Skip to content

Instantly share code, notes, and snippets.

View f2face's full-sized avatar
🌴
On vacation

Surya Oktafendri f2face

🌴
On vacation
  • Riau, Indonesia
  • 10:10 (UTC +07:00)
View GitHub Profile
@ccnokes
ccnokes / axios-instance-config.js
Created July 6, 2017 16:23
Good default configuration for axios in node.js
const axios = require('axios');
const http = require('http');
const https = require('https');
module.exports = axios.create({
//60 sec timeout
timeout: 60000,
//keepAlive pools and reuses TCP connections, so it's faster
httpAgent: new http.Agent({ keepAlive: true }),
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active July 13, 2025 05:11 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy

Exporting your 2FA tokens from Authy to transfer them into another 2FA application

IMPORTANT - Update regarding deprecation of Authy desktop apps

Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.

And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.

If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.

@erydactyl
erydactyl / tweetdeck-limit-override.js
Last active January 29, 2018 18:04 — forked from Zemnmez/tweetdeck-limit-override-dm-rt-fix.js
tweetdeck-limit-override.js
// ==UserScript==
// @name TweetDeck Cramming
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Allow 280 characters in a Tweet sent from TweetDeck automatically
// @author Erydactyl and Zemnmez
// @run-at document-idle
// @match https://tweetdeck.twitter.com/*
// @grant *
// ==/UserScript==
@lenosi
lenosi / README.md
Last active May 20, 2023 07:58
MIUI bloatware

Get list of system apps on the device:

adb shell "echo 'apps:' && pm list packages -f | grep /system/app/ | sed 's/.*=/  - /'"

Remove application command

pm uninstall -k --user 0 app
@danielwetan
danielwetan / nodejs-cicd-github-actions.md
Last active July 9, 2025 17:09
Deploy Node.js to VPS using Github Actions

Deploy Node.js to VPS using Github Actions

Steps to deploy Node.js to VPS using PM2 and Github Actions

1. Clone repo to VPS folder

@amemiya
amemiya / TwitterOauthService.ts
Created December 28, 2022 12:45
Extended OAuth2User in twitter-api-sdk to allow external injection of codeVerifier and codeChallenge.
import {OAuth2User, OAuth2UserOptions} from "twitter-api-sdk/dist/OAuth2User.js";
export default class TwitterOauthService extends OAuth2User {
#options: OAuth2UserOptions
#code_verifier?: string
#code_challenge?: string
/**
* Modified so that codeVerifier and codeChallenge can be set in the constructor.
* Also, codeVerifier and codeChallenge need to be saved in cookies etc., so I made a getter.
@travisbrown
travisbrown / legacy-verified.csv
Last active December 19, 2024 01:21
Twitter accounts with legacy verification on 4 April 2023 (see https://twitter.com/travisbrown/status/1643229276278235136)
We can't make this file beautiful and searchable because it's too large.
Twitter ID, Screen name, Followers
12,jack,6526006
13,biz,2608289
20,ev,1679155
57,SarahM,17448
59,Tim535353,9340
76,marciadorsey,19501
224,davepell,57523
291,goldman,916937
295,joshk,149086
@ThioJoe
ThioJoe / Appx-Uninstaller.ps1
Last active July 8, 2025 15:41
A basic script for uninstalling a list of app packages in Windows 10/11, including those pre-installed with Windows
# A basic script for uninstalling app packages in Windows 10/11, including those pre-installed with Windows
#
# Note: If you get an error about the script not being allowed to run, the below command will change the execution polciy temporarily for one session only:
# Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
#
# To execute the script, open a Powershell window to the directory with the script and run the following command using your scripts file name (and don't forget the .\ )
# .\WhateverScriptName.ps1
# -------------------------------------------------------------------------------------------
# Script by ThioJoe - https://github.com/ThioJoe