Skip to content

Instantly share code, notes, and snippets.

View pvlvld's full-sized avatar
🇺🇦

Vladyslav Pavlenko pvlvld

🇺🇦
View GitHub Profile
@0xdevalias
0xdevalias / _deobfuscating-unminifying-obfuscated-web-app-code.md
Last active November 3, 2025 03:57
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@nikosson
nikosson / Dockerfile
Created February 20, 2023 20:26
Dockerfile nodejs alpine with puppeteer support
ARG NODE_VERSION='16.13.1-alpine'
# base
FROM node:${NODE_VERSION} as base
ENV HUSKY_SKIP_INSTALL 1
ENV DISABLE_OPENCOLLECTIVE 1
ENV SUPPRESS_SUPPORT 1
ENV NODE_ENV CI
@sorokadima
sorokadima / Українські імена список.txt
Last active January 21, 2025 21:22
Українські імена список
Ніка
Адріана
Адріан
Тіна
Аліна
Ангеліна
Алінка
Ліна
Аліса
Алла
@raveenb
raveenb / ssh_into_android.md
Last active October 31, 2025 11:24
SSH into Android

Connecting to an Android device over SSH

Initial Setup

Install Android App Termux from APKPure or AppStore. If the app exists, just delete and re-install it to get the latest version, The APK can be downloaded from https://apkpure.com/termux/com.termux/ Install the APK using by running

adb install ~/Downloads/Termux_v0.73_apkpure.com.apk
@pat-dill
pat-dill / undeleter.js
Last active May 2, 2024 18:52
Listens for deleted messages on discord and dumps them to a channel.
const Discord = require("discord.js");
const client = new Discord.Client();
const config = require("./config.json"); // config from file
/* example config.json:
{
"token": "abcdefghijklmnopqrstuvwxyz", // user or bot token,
"listenTo": ["167423382697148416", "353615025589714946", "210321071511961600"], // list of channel OR guild id's
@tpae
tpae / Trie.js
Created November 20, 2016 23:49
Trie.js - super simple JavaScript implementation
// Trie.js - super simple JS implementation
// https://en.wikipedia.org/wiki/Trie
// -----------------------------------------
// we start with the TrieNode
function TrieNode(key) {
// the "key" value will be the character in sequence
this.key = key;