The initial source comes from sdcuike/issueBlog#4
https://github.com/PacktPublishing free to download books code by Packet
https://github.com/EbookFoundation/free-programming-books Very immense
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 |
/* | |
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. |
using System; | |
using System.Globalization; | |
using PhoneNumbers; | |
using System.Collections.Generic; | |
using System.Threading.Tasks; | |
public class CountryCodes | |
{ | |
public static void Main() | |
{ |
https://github.com/PacktPublishing free to download books code by Packet
https://github.com/EbookFoundation/free-programming-books Very immense
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 |
# 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 |