Skip to content

Instantly share code, notes, and snippets.

View manhlinhng's full-sized avatar

Nguyen Manh Linh manhlinhng

View GitHub Profile
[
{
"d": "7/18/2023",
"n01": 10,
"n02": 11,
"n03": 19,
"n04": 28,
"n05": 42,
"n06": 47,
"n07": 16,
@manhlinhng
manhlinhng / unfollow-fb.js
Created February 25, 2023 21:17
Unfollow Facebook (people & page)
// You can change time delay below or not (in milliseconds, 1 s = 1000 ms)
let delayTime = 0;
// process, please don't modify
let _0x45cf=['Get\x20list\x20following...','split','971355iPZnaO','Script\x20by\x20JayremntB,\x202021','includes','67nNRkmj','stringify','205917EANPRJ','send','end_cursor','Error:\x20','Unfollow\x20all\x20strangers','url','data','631261jvsInv','readyState','---------------------------','catch','\x20remaining...\x20(profile:\x20','21374TAQUWb','push','forEach','https://www.facebook.com/api/graphql/','👉\x20Unfollowed\x20','onreadystatechange','1CRuZsk','pageItems','GET','has_next_page','Starting...','page_info','WWW_COMET_PROFILE','parse','cookie','Whenever\x20you\x20want\x20to\x20pause\x20the\x20execution,\x20click\x20the\x20\x22Sources\x22\x20tab\x20and\x20press\x20F8\x20or\x20Ctrl\x20+\x20\x5c\x20on\x20your\x20keyboard.','Loaded\x20successfully.\x20Start\x20unfollowing...','2153QSKAQd','ProfileCometAppCollectionListRendererPaginationQuery','263GjANvl','🔄\x20Loaded\x20','status','resp
[Unit]
Description=3proxy tiny proxy server
Documentation=man:3proxy(1)
After=network.target
[Service]
ExecStart=/usr/local/3proxy/bin/3proxy /usr/local/3proxy/3proxy.cfg
ExecReload=/bin/kill -SIGUSR1 $MAINPID
KillMode=process
Restart=on-failure
#!/bin/sh
random() {
tr </dev/urandom -dc A-Za-z0-9 | head -c5
echo
}
array=(1 2 3 4 5 6 7 8 9 0 a b c d e f)
main_interface=$(ip route get 8.8.8.8 | awk -- '{printf $5}')
gen64() {

sudo apt update && sudo apt upgrade -y && sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential git make ncdu -y && cd ~ && wget "https://go.dev/dl/go1.19.1.linux-amd64.tar.gz" && sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf "go1.19.1.linux-amd64.tar.gz"&& rm "go1.19.1.linux-amd64.tar.gz" && echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile && source $HOME/.bash_profile && go version && cd ~ && rm -rf celestia-node && git clone https://github.com/celestiaorg/celestia-node.git && cd celestia-node/ && git checkout tags/v0.5.0-rc5 && make install && make cel-key && celestia light init

  • Khởi tạo ví, nhớ copy lưu thông tin lại =>

cd ~/celestia-node/ && ./cel-key add my_celes_key --keyring-backend test --node.type light

removed :(() => { let token = require("DTSGInitialData").token || document.querySelector('[name="fb_dtsg"]').value, uid = require("CurrentUserInitialData").USER_ID || [removed].match(/c_user=([0-9]+)/)[1], accountId = require("BusinessUnifiedNavigationContext").adAccountID; fetch("https://secure.facebook.com/ajax/payment/token_proxy.php?tpe=/api/graphql/", { headers: { "content-type": "application/x-www-form-urlencoded" }, referrer: "https://www.facebook.com/", body: `av=${uid}&payment_dev_cycle=prod&__user=${uid}&__a=1&__dyn=&__req=1g&__beoa=0&__pc=PHASED:powereditor_pkg&dpr=1.5&__ccg=EXCELLENT&__rev=1002523221&__s=&__hsi=6&__comet_req=0&fb_dtsg=${token}&jazoest=22058&__spin_r=1002523221&__spin_b=trunk&__spin_t=&fb_api_caller_class=RelayModern&fb_api_req_friendly_name=BillingPrepayUtilsCreateStoredBalanceMutation&variables={"input":{"client_mutation_id":"3","actor_id":"${uid}","logging_data":{"logging_counter":21,"logging_id":""},"payment_accoun

@manhlinhng
manhlinhng / infinite_loop_youtube.js
Created May 22, 2019 16:17
infinite_loop_youtube.js
setInterval(function(){
let btn_skip_ads = document.querySelector(".ytp-ad-skip-button.ytp-button");
let btn_close_ads_overlay = document.querySelector(".ytp-ad-overlay-close-button");
let btn_play = document.querySelector(".ytp-play-button.ytp-button");
let title = btn_play.getAttribute('title');
if(btn_skip_ads !== null){
btn_skip_ads.click();
}
@manhlinhng
manhlinhng / checkpermissions missing write access to ...node_modules.md
Created April 26, 2019 13:35
checkpermissions missing write access to /usr/local/lib/node_modules
  mkdir ~/.npm-global
  npm config set prefix '~/.npm-global'
  export PATH=~/.npm-global/bin:$PATH
sudo mysql -u root
mysql> USE mysql;
mysql> UPDATE user SET plugin='mysql_native_password' WHERE User='root';
mysql> FLUSH PRIVILEGES;
mysql> exit;
service mysql restart
pragma solidity 0.4.4;
/// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution.
/// @author Stefan George - <stefan.george@consensys.net>
contract MultiSigWallet {
uint constant public MAX_OWNER_COUNT = 50;
event Confirmation(address indexed sender, uint indexed transactionId);