This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function generateRandom() { | |
// Generate a secure random 32-bit unsigned integer | |
const randomBuffer = new Uint32Array(1); | |
window.crypto.getRandomValues(randomBuffer); | |
// Convert the random integer to a floating-point number between 0 (inclusive) and 1 (exclusive) | |
return randomBuffer[0] / (0xFFFFFFFF + 1); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const os = require("os"); | |
function getLocalIPAddress() { | |
const interfaces = os.networkInterfaces(); | |
for (const name of Object.keys(interfaces)) { | |
for (const iface of interfaces[name]) { | |
if (iface.family === "IPv4" && !iface.internal) { | |
return iface.address; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const allCountries = [ | |
[ | |
'Afghanistan (افغانستان)', | |
'af', | |
'93' | |
], | |
[ | |
'Albania (Shqipëri)', | |
'al', | |
'355' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var CryptoJS = require("crypto-js");//replace thie with script tag in browser env | |
//encrypt | |
var rawStr = "hello world!"; | |
var wordArray = CryptoJS.enc.Utf8.parse(rawStr); | |
var base64 = CryptoJS.enc.Base64.stringify(wordArray); | |
console.log('encrypted:', base64); | |
//decrypt | |
var parsedWordArray = CryptoJS.enc.Base64.parse(base64); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
F1:: ; ShortCut | |
ClipSaved := ClipboardAll ; Save the entire clipboard to a variable of your choice. | |
StringReplace, Clipboard, Clipboard,\,/, All ; Replace \ with / in clipboard | |
clipboard := clipboard ; //chanage clipboard content | |
Send, ^v ; Input Ctrl+V is passed | |
clipboard := ClipSaved ; Restore the original clipboard. | |
ClipSaved := "" ; Free the memory in case the clipboard was very large. | |
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function swapNodes(a, b) { | |
var aparent = a.parentNode; | |
var asibling = a.nextSibling === b ? a : a.nextSibling; | |
b.parentNode.insertBefore(a, b); | |
aparent.insertBefore(b, asibling); | |
} | |
/** USING JQUERY ***/ | |
function swaptwoID(a,b) { | |
var nextID = $('#'+a).next().prop('id'); | |
nextID= nextID==b?a:nextID; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://greasyfork.org/en/scripts/by-site/feedly.com | User scripts for feedly.com | |
https://www.bing.com/images/search?q=csv&qs=n&form=QBIR&sp=-1&pq=csv&sc=8-3&cvid=8632C9AAFA2F40858B468BF74A3DED54&first=1&scenario=ImageHoverTitle | csv - Bing images | |
https://www.google.com/search?q=csv&tbm=isch | csv - Google Search | |
https://www.easyicon.net/iconsearch/csv | Csv icons - 21 free vector icons - Easyicon | |
https://www.flaticon.com/search?word=csv&search-type=icons&license=selection&order_by=4&grid=small | Search results for Csv - Flaticon | |
https://icons8.com/icons/set/csv | Csv Icons - Free Download, PNG and SVG | |
https://www.iconfont.cn/search/index?searchType=icon&q=csv | Iconfont-阿里巴巴矢量图标库 | |
https://www.iconshock.com/csv-icons/ | Csv Icons - Iconshock | |
https://www.easyicon.net/language.en/iconsearch/iconset:ledicons/?s=addtime_DESC | Ledicons icons - 512 free vector icons - Easyicon | |
https://www.google.com/search?q=ledicons | ledicons - Google Search |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Flipkart | |
Slider Image should be 150x150px. For adjustment Width 150px is made constant. | |
For Gallery Image Height is made constant with 280px | |
(For gallery image 230x230px. For adjustment Height is made constant.) | |
For Product Image 416x416px. For adjustment Width 416px is made constant. | |
For thumb strip 128x128px. For adjustment, if horizontal slider, then height is made constnat. If vertical height, then width is made constant. | |
For gallery, maximum of 1660x1660px. For adjustment, width is made constant. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Image Comparing Function (C)2011 Robert Lerner, All Rights Reserved | |
* $image1 STRING/RESOURCE Filepath and name to PNG or passed image resource handle | |
* $image2 STRING/RESOURCE Filepath and name to PNG or passed image resource handle | |
* $RTolerance INTEGER (0-/+255) Red Integer Color Deviation before channel flag thrown | |
* $GTolerance INTEGER (0-/+255) Green Integer Color Deviation before channel flag thrown | |
* $BTolerance INTEGER (0-/+255) Blue Integer Color Deviation before channel flag thrown | |
* $WarningTolerance INTEGER (0-100) Percentage of channel differences before warning returned | |
* $ErrorTolerance INTEGER (0-100) Percentage of channel difference before error returned |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Vue=function(e){"use strict";function n(e,n){const t=Object.create(null),o=e.split(",");for(let e=0;e<o.length;e++)t[o[e]]=!0;return n?e=>!!t[e.toLowerCase()]:e=>!!t[e]}const t={1:"TEXT",2:"CLASS",4:"STYLE",8:"PROPS",16:"FULL_PROPS",32:"HYDRATE_EVENTS",64:"STABLE_FRAGMENT",128:"KEYED_FRAGMENT",256:"UNKEYED_FRAGMENT",1024:"DYNAMIC_SLOTS",512:"NEED_PATCH",[-1]:"HOISTED",[-2]:"BAIL"},o=n("Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl"),r=2;const s=n("itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly");function i(e){if(k(e)){const n={};for(let t=0;t<e.length;t++){const o=i(e[t]);if(o)for(const e in o)n[e]=o[e]}return n}if($(e))return e}function l(e){let n="";if(C(e))n=e;else if(k(e))for(let t=0;t<e.length;t++)n+=l(e[t])+" ";else if($(e))for(const t in e)e[t]&&(n+=t+" ");return n.trim()}const c=n("html,body,base,head,link,meta,style,title,address, |
NewerOlder