Skip to content

Instantly share code, notes, and snippets.

View akashsky44's full-sized avatar
💻
Busy in writing miles of Code.

Akash Kumar akashsky44

💻
Busy in writing miles of Code.
View GitHub Profile
@akashsky44
akashsky44 / codeSecurity.js
Created April 13, 2020 11:06
codeSecurity or Right Click and Ctrl+u disable
var codeSecurity = function() {
document.onkeydown = function(e) {
if (e.keyCode === 123 || (e.ctrlKey &&
(e.keyCode === 67 ||
e.keyCode === 115 ||
e.keyCode === 99 ||
e.keyCode === 85 ||
e.keyCode === 117))) {
return false;
} else {
@akashsky44
akashsky44 / back-to-top.js
Created April 13, 2020 11:06
Page Scroll To Top
/* page scroll top on click function */
jQuery("button.back-to-top").on('click',function() {
jQuery('html').animate({ scrollTop: 0 }, 500);
return false;
})
jQuery(window).on("scroll", function() {
var scrollWindowHeight = jQuery(window).scrollTop();
if (scrollWindowHeight > 900) {
jQuery("button.back-to-top").slideDown(1000).fadeIn(1000);
@akashsky44
akashsky44 / checkMobileDevice.js
Created April 13, 2020 10:55
checkMobileDevice
var checkMobileDevice = function() {
var isMobile = false;
(function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ip
<?php
/*
* Now, we pretend to be a graphic file that is a 1 pixel GIF.
*/
header('Content-type: image/gif');
/*
* Instead of creating a graphic file, or reading one from disk, we just embed
* the file as data, right into the script.
@akashsky44
akashsky44 / node-1x1-pixel.js
Created October 17, 2018 13:18
Pixel Code in Node js whenever you used insert in href of img tag
var fs = require('fs'),
http = require('http'),
url = require('url'),
img = fs.readFileSync(__dirname + '/stat.png'),
stats = {};
var collectStats = function(type) {
console.log('collectStats type=' + type);
if(!stats[type]) stats[type] = 0;
@akashsky44
akashsky44 / javascript-disabled-with-google-analytics.php
Created October 17, 2018 13:04
Track when users have JavaScript disabled with Google Analytics
<?php
function gaParseCookie() {
if (isset($_COOKIE['_ga'])) {
list($version,$domainDepth, $cid1, $cid2) = explode('.', $_COOKIE["_ga"], 4);
$contents = array('version' => $version, 'domainDepth' => $domainDepth, 'cid' => $cid1 . '.' . $cid2);
$cid = $contents['cid'];
} else {
$cid = gaGenerateUUID();
}
return $cid;
@akashsky44
akashsky44 / server-side-google-analytics-for-sending-pageviews.php
Last active September 27, 2019 16:51
Using server-side Google Analytics for sending pageviews and event tracking
//Parse the GA Cookie
function gaParseCookie() {
if (isset($_COOKIE['_ga'])) {
list($version, $domainDepth, $cid1, $cid2) = explode('.', $_COOKIE["_ga"], 4);
$contents = array('version' => $version, 'domainDepth' => $domainDepth, 'cid' => $cid1 . '.' . $cid2);
$cid = $contents['cid'];
} else {
$cid = gaGenerateUUID();
}
return $cid;
@akashsky44
akashsky44 / random_value.js
Last active October 17, 2018 11:03
JavaScript Random String Value
function randomString() {
var chars = "0123456789";
var string_length = 7;
var randomstring = '';
for (var i = 0; i < string_length; i++) {
var rnum = Math.floor(Math.random() * chars.length);
randomstring += chars.substring(rnum, rnum + 1);
}
return randomstring;
}