Skip to content

Instantly share code, notes, and snippets.

DROP DATABASE Test;
DROP DATABASE Test_ADR;
DROP DATABASE Test_ADR_RCSI;
DROP DATABASE Test_RCSI;
CREATE DATABASE Test;
CREATE DATABASE Test_ADR;
ALTER DATABASE Test_ADR SET ACCELERATED_DATABASE_RECOVERY = ON;
GO
@autb
autb / TwitterFollowingCSV.js
Created January 29, 2025 20:54 — forked from roshanmirajkar/TwitterFollowingCSV.js
Twitter Following List Exporter
/*
Collect and export a list of Twitter usernames you're following, along with follow-back status, to a CSV file every 80 seconds. Done client-side using Javascript running in the Console window of the web browser.
Instructions:
1) Modify the 'LANGUAGE' variable to match your Twitter interface language.
2) Customize 'SKIP_USERS' with usernames you do not wish to include in the CSV.
3) 'PRINT_FOLLOW_INFORMATION' determines whether follow-back status is included.
4) 'SKIP_FOLLOWERS' and 'SKIP_NON_FOLLOWERS' settings filter out respective user groups.
5) 'MS_PER_CYCLE' controls the frequency of data collection cycles.
6) Load the Twitter page showing users you're following, open the console (F12), paste this code, and run it.
@autb
autb / CountryCodes.cs
Created December 17, 2024 08:57 — forked from Venoli/CountryCodes.cs
List of Country Codes and Country Names - C#
using System;
using System.Globalization;
using PhoneNumbers;
using System.Collections.Generic;
using System.Threading.Tasks;
public class CountryCodes
{
public static void Main()
{
@autb
autb / it-ebooks.md
Created June 12, 2024 20:18 — forked from baiwfg2/it-ebooks.md
Download ebooks as you want
@autb
autb / rfc3161.txt
Last active March 22, 2023 17:27 — forked from Manouchehri/rfc3161.txt
List of free rfc3161 servers.
http://timestamp.globalsign.com/scripts/timstamp.dll
http://timestamp.globalsign.com/?signature=sha2
http://rfc3161timestamp.globalsign.com/advanced
https://timestamp.geotrust.com/tsa
http://timestamp.sectigo.com
http://timestamp.wosign.com
http://tsa.startssl.com/rfc3161
http://time.certum.pl
http://timestamp.digicert.com
https://freetsa.org
@autb
autb / wsl-cheatsheet.ps1
Created March 21, 2023 09:58 — forked from karthiks/wsl-cheatsheet.ps1
WSL 2 CLI Cheat-sheet To Be Run In Powershell
# To list installed distributions
wsl -l
wsl --list
# To list installed distributions along with its running status and wsl config being 1 or 2
wsl -l --verbose
wsl -l -v
# To run a specific distro
wsl -d distro_name