Skip to content

Instantly share code, notes, and snippets.

View AliAlmasi's full-sized avatar
:bowtie:
Learning something

Ali Almasi AliAlmasi

:bowtie:
Learning something
View GitHub Profile
@AliAlmasi
AliAlmasi / FormMove.cs
Last active June 23, 2024 17:46
Makes a Windows Form Application program movable when user drags any part of the form.
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")]
@AliAlmasi
AliAlmasi / NegativeIndex.js
Last active October 24, 2024 21:47
A simple function to help you access array values from the end. Source: https://stackoverflow.com/a/64296726
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
@AliAlmasi
AliAlmasi / str_reverse.js
Last active October 24, 2024 21:45
Reverse a string in JS & PHP using this `str_reverse()` function
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--)
@AliAlmasi
AliAlmasi / newtab.js
Created August 12, 2024 23:33
A good way to navigate the user to a new tab (without using `location.replace` or `window.open`) in JS
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"));
# 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
@AliAlmasi
AliAlmasi / win11ContextMenu.py
Created March 15, 2025 16:21
Change Windows 11 context menu style (legacy style and Fluent UI style)
import time, os, sys
from sty import fg, ef, rs # pip install sty
def typing(str):
for char in str:
time.sleep(0.05)
sys.stdout.write(char)
sys.stdout.flush()
print("\n")
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.