Power BI Clue

Recent Posts

HTML HTML structure image
HTML structure
Author image

<pre> <code class="language-html">&lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta charset="utf-8" /&gt; &lt;title&gt;Example&lt;/title&gt; &lt;style&gt; /* Also works here */ a.not-a-class { color: blue; } &lt;/style&gt; &lt;body&gt; &lt;div style="color: green;"&gt;&lt;/div&gt; &lt;div style="color: yellow;"&gt;&l...

Read More
Web Design Inline color image
Inline color
Author image

span.foo { background-color: navy; color: #BFD; } span.bar { background: rgba(105, 0, 12, .38); color: hsl(30, 100%, 50%); border-color: transparent; }  

Read More
JavaScript add prism code snippet in to a website image
Add prism code snippet in to a website
Author image

This is an example of code snippet how it display the content of you code (function () { if (typeof Prism === 'undefined' || typeof document === 'undefined') { return; } /** * Plugin name which is used as a class name for <pre> which is activating the plugin * * @type {string} */ var PLUGIN_NAME = 'line-numbers'; ...

Read More
HTML Html code snippet image
Html code snippet
Author image

<pre> <code class="language-html">&lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta charset="utf-8" /&gt; &lt;link rel="icon" href="assets/favicon.png" /&gt; &lt;title&gt;Line Numbers ? Prism plugins&lt;/title&gt; &lt;base href="../.." /&gt; &lt;link rel="stylesheet" href="assets/style.css" /&gt; &lt;link rel="stylesheet...

Read More
JavaScript using Line Numbers in code snippet   image
Using Line Numbers in code snippet
Author image

<pre> <code class="language-javascript"> (function () { if (typeof Prism === 'undefined' || typeof document === 'undefined') { return; } function mapClassName(name) { var customClass = Prism.plugins.customClass; if (customClass) { return customClass.apply(name, 'none'); } else { return name; } } var PARTNER ...

Read More
JAVA JavaScript image
JavaScript
Author image

<pre> <code class="language-css">// Variables $font-stack: Helvetica, sans-serif; $primary-color: #333; @mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; -ms-border-radius: $radius; border-radius: $radius; } body { font: 100% $font-stack; color: $primary-color; } .box { @...

Read More
JavaScript Email Verification using JavaScript image
Email Verification using JavaScript
Author image

<p>Protect fake email&nbsp;</p> <pre> <code class="language-javascript">function validate_email() { var request; try { request= new XMLHttpRequest(); } catch (tryMicrosoft) { try { request= new ActiveXObject("Msxml2.XMLHTTP"); } catch (otherMicrosoft) { try { request= new ActiveXObject("Microsoft.XMLHTTP"); } ca...

Read More
Web Design Protect hacker image
Protect hacker
Author image

<p>Hacker can damage your website data, they redirect your DNS, use the bandwidth, add malicious data and use illegal activity by someone license so how we secure&nbsp;</p>

Read More
PHP How to limit the number of login attempts  image
How to limit the number of login attempts
Author image

Let's create a login form page a user can login. &lt;form class="modal-contentloginform" id="table" method="post" action="&lt;?php echo BASE_URL . 'login.php'; ?&gt;" onSubmit = "return validate()"&gt; &lt;div class="header_login"&gt; &lt;?php include(ROOT_PATH . '/includes/errors.php'); ?&gt; &lt;?php include(ROOT_PATH . ...

Read More
PHP How to limit the number of login attempt using PHP part 2(PHP functionality) image
How to limit the number of login attempt using PHP part 2(PHP functionality)
Author image

In previous post we design the login form, so finally  implement PHP code // LOG USER IN if (isset($_POST['login_btn'])) { $email = esc($_POST['email']); $password = esc($_POST['password']); $time=time()-60; $ip_address=getIpAddr(); $check_login_result= "SELECT count(*) as total_count from login_log WHERE try_time&g...

Read More

Search


Archives

Find Us on Facebook

Subscribe for new updates



Back to Top

   Subscribe for new updates

G3 Tech logo image