Skip to content

Instantly share code, notes, and snippets.

View mikoloism's full-sized avatar
💻
@ry 🥇

mikoloism mikoloism

💻
@ry 🥇
View GitHub Profile
@mikoloism
mikoloism / http-proxy.pac
Created May 29, 2024 07:49
http-proxy.pac file
function FindProxyForURL(url, host) {
var PROXY_LIST_FILE = 'https://raw.githubusercontent.com/TheSpeedX/PROXY-List/master/http.txt';
var TEST_TARGET_URL = 'https://google.com';
var TEST_TIMEOUT = 5000;
var proxyList = [];
function addProxy(proxy) {
if (proxyList.indexOf(proxy) === -1) {
proxyList.push(proxy);
}
@mikoloism
mikoloism / type-safe-getter-hoc.ts
Last active April 18, 2024 11:48
Safest Object Getter Higher-Order Function and Clousor
function typeSafeGetter<V extends object>(o: V) {
return function <
K extends keyof V,
P extends undefined | K = undefined,
R = P extends K ? V[P] : V,
>(property?: P): R {
if (typeof o === 'undefined') throw 'error';
if (typeof property === 'undefined') {
return o as never
@mikoloism
mikoloism / (0) readme.md
Last active January 18, 2024 21:42
DOTFILES Installer.py script

DOTFILES (Installer.py script)

Contents:

  • installer.sh
  • installer.py

Requirments:

Python3

@mikoloism
mikoloism / (1) storage.ts
Created May 17, 2023 22:02
Class based `localStorage` API
export class storage {
public static canUse(): boolean {
return typeof localStorage !== 'undefined';
}
public static hasKey(key: string): boolean {
return storage.canUse() && localStorage.getItem(key) !== null;
}
public static getJson<T>(key: string): T | null {
@mikoloism
mikoloism / (1) assign.ts
Last active May 30, 2023 08:46
Global Utilities #Assign and #Object
export function define<T extends {}>(source: T, ...sources: any[]): T {
return Object.assign(source, ...sources) as T;
}
export function assign<T extends {}>(...sources: any[]): T {
return Object.assign({}, ...sources) as T;
}
export function sureAssign<T>(
value: T | undefined,
@mikoloism
mikoloism / (1) countdown.store.ts
Last active May 17, 2023 13:16
Countdown OTP Form by Zustand.js (persistent)
import { create, type SetState } from '@core/module/store';
import {
COUNTDOWN_DEFAULT_DURATION,
COUNTDOWN_DEFAULT_STATE,
COUNTDOWN_STORAGE_KEY,
} from './countdown.constants';
import type {
CountDownAction,
CountDownState,
CountDownStore,
@mikoloism
mikoloism / readme.md
Created March 13, 2023 15:24
Webpack Import Hierarchy Tree Visualizer

Just for entertainment:

  1. Compile with webpack --profile --json > stats.json (node.js API: { profile: true } and stats.toJson())
  2. Go to http://webpack.github.io/analyse/#modules
  3. Load your stats file (It's not uploaded, the analyse tools is a client only tool).
  4. Wait a bit until the graph has been stabilized.
  5. Screenshot and cut the graph area.
  6. Post it into this thread.
@mikoloism
mikoloism / direction.ts
Last active January 12, 2023 10:19
Direction Detection by Typescript
export class Direction implements Direction.Interface {
private _direction: Direction.Direct | `${Direction.Direct}` | null = null;
private _startPoint: Point | null = null;
private _endPoint: Point | null = null;
public constructor() {}
public setStartPoint(startPoint: Point): void {
this._startPoint = startPoint;
}
@mikoloism
mikoloism / (linux) autorun.inf
Created February 12, 2022 15:21
The USB Flash Driver Auto-Run scripts
[autorun]
open = "./.@Autorun/.setup.sh"
label = MY_USB_NAME
icon = "./.@Autorun/icon.ico"
@mikoloism
mikoloism / linux-auto-update-wallpaper.py
Created February 12, 2022 15:05
Python script to change automatically background wallpaper of the OS in time interval (each minute or you can change it)
#!/usr/bin/env python3
import time
import os
# home path to user
user_home = os.environ["HOME"]
# setp - 1
os.system('clear')
# define default value for variable