This file contains hidden or 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 goUp(){ | |
| let parts = window.location.pathname.split('/').filter(Boolean); | |
| parts.pop(); | |
| let newPath = '/' + parts.join('/'); | |
| window.location.href = newPath || '/'; | |
| } | |
| // goUp() will take you one level up. |
This file contains hidden or 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
| # USAGE: python visual_cryptography.py file_to_encrypt.png | |
| # $ pip install Pillow | |
| from PIL import Image, ImageDraw | |
| import os, sys | |
| from random import SystemRandom | |
| random = SystemRandom() | |
| # If you want to use the more powerful PyCrypto ($ pip install pycrypto) then uncomment the next line and comment out the previous two lines |
This file contains hidden or 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 newtab(href) { | |
| let a = document.createElement("a"); | |
| a.href = href; | |
| a.setAttribute("target", "_blank"); | |
| a.click(); | |
| a.remove(); | |
| } | |
| // You can use it like this: | |
| document.querySelector("span").addEventListener("click", () => newtab("http://al1almasi.ir")); |
This file contains hidden or 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 readline = require("node:readline"); | |
| const input = readline.createInterface({ | |
| input: process.stdin, | |
| output: process.stdout | |
| }); | |
| const str_reverse = (string) => { | |
| let reverse = ""; | |
| for (let index = string.length; index > 0; index--) |
This file contains hidden or 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 nIndex = (array, nIndex) => array.slice(nIndex)[0]; | |
| // Example: | |
| const arr = [1,2,3,5,7,9]; | |
| console.log(nIndex(arr, -2)); // output: 7 | |
| console.log(nIndex(arr, -4)); // output: 3 |
This file contains hidden or 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
| namespace WindowsFormApplication1 { | |
| public partial class Form1: Form { | |
| public Form1() { | |
| InitializeComponent(); | |
| } | |
| public const int WM_NCLBUTTONDOWN = 0xA1; | |
| public const int HT_CAPTION = 0x2; | |
| [System.Runtime.InteropServices.DllImport("user32.dll")] |
This file contains hidden or 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 IrIdCheck(code) { | |
| var L = code.length; | |
| if (L < 8 || parseInt(code, 10) === 0) return false; | |
| code = ('0000' + code).substr(L + 4 - 10); | |
| if (parseInt(code.substr(3, 6), 10) === 0) return false; | |
| int c = parseInt(code.substr(9, 1), 10); | |
| int s = 0; | |
| for (int i = 0; i < 9; i++) | |
| s += parseInt(code.substr(i, 1), 10) * (10 - i); | |
| s = s % 11; |
This file contains hidden or 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
| class PersianDate extends Date { | |
| constructor(...args) { | |
| super(...args); | |
| } | |
| toLocaleDateString = () => super.toLocaleDateString("fa-IR-u-nu-latn"); | |
| getParts = () => this.toLocaleDateString().split("/"); | |
| getDay = () => (super.getDay() === 6 ? 0 : super.getDay() + 1); | |
| getDate = () => this.getParts()[2]; | |
| getMonth = () => this.getParts()[1] - 1; |
This file contains hidden or 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
| <link rel="preload" href="css/global.min.css" as="style" onload="this.rel='stylesheet'"> | |
| <noscript><link rel="stylesheet" href="css/global.min.css"></noscript> | |
| <script> | |
| /*! loadCSS. [c]2017 Filament Group, Inc. MIT License */ | |
| !function(a){"use strict";var b=function(b,c,d){function j(a){if(e.body)return a();setTimeout(function(){j(a)})}function l(){f.addEventListener&&f.removeEventListener("load",l),f.media=d||"all"}var g,e=a.document,f=e.createElement("link");if(c)g=c;else{var h=(e.body||e.getElementsByTagName("head")[0]).childNodes;g=h[h.length-1]}var i=e.styleSheets;f.rel="stylesheet",f.href=b,f.media="only x",j(function(){g.parentNode.insertBefore(f,c?g:g.nextSibling)});var k=function(a){for(var b=f.href,c=i.length;c--;)if(i[c].href===b)return a();setTimeout(function(){k(a)})};return f.addEventListener&&f.addEventListener("load",l),f.onloadcssdefined=k,k(l),f};"undefined"!=typeof exports?exports.loadCSS=b:a.loadCSS=b}("undefined"!=typeof global?global:this); | |
| /*! loadCSS rel=preload po |
NewerOlder