You may want to use AdGuard's DNS over HTTPS[^2] service if you
- Want to make it harder for your ISP to know what websites you are requesting
- Want to block most traditional ads from your web browsing experience across your entire PC
- Open PowerShell
Get-ChildItem -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Lxss | Get-ItemProperty -Name DistributionName | Select-Object @{Name='Distro';Expression={$PSItem.DistributionName}},@{Name='GUID';Expression={$PSItem.PSChildName}} |
$parameters = Read-Host "Enter parameters, leave blank for defaults" | |
$parameterArray = $parameters.Split(" ") | |
Write-Host "For single subtitle, base name must match video file name (without extension).`nIf files have multiple external subtitles, they must be named like so: videoFileName_Track[0 - 99].[ext]" | |
$numSubs = Read-Host "Number of external subtitles to merge? (0 for none)" | |
if ($numSubs -gt 0) { | |
Write-Host "External subtitles:`n`tass,pgs,vobsub,srt,etc." | |
$subsExt = Read-Host "Subtitle file type?" | |
} | |
$subsName = @() |
javascript:var video_id = prompt('YouTube video ID');void(location.href='https://web.archive.org/web/2oe_/http://wayback-fakeurl.archive.org/yt/' + video_id); |
#!/bin/bash | |
# curl, jq, git, and trim are required | |
echo "This script clones all repos under the specified subgroups in any gitlab instance" | |
echo "for even more nested subgroups, you must use %2F instead of / because gitlab is weird" | |
echo "ex.: subgroup%2Fsubsubgroup%2Fsubsubsubgroup" | |
read -p "Enter gitlab instance url (include http(s)://): " gitlabInstance | |
read -p "Enter the group id: " groupId |
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'bundler/setup' | |
# TWO WAYS TO RUN THIS SCRIPT: | |
# ---------------------------- | |
# --->>> THE FIRST WAY> Run this script as executable: `./clone_gitlab_projects.rb` | |
# You need to make the script executable: `chmod +x gitlab_clone_all_repos.rb` | |
# ---- ANYTHING ABOVE THIS LINE IS ONLY REQUIRED IF YOU WANT TO RUN THE SCRIPT WITH SINGLE COMMAND `./clone_gitlab_projects.rb` ---- # |
! Title: AdGuard Google whitelist | |
! Homepage: https://gist.github.com/DessertArbiter/ba13c026c0d3058fd122e082898c2c84 | |
! Expires: 4 days (update frequency) | |
! Version: 0.2.1 | |
@@||0.client-channel.google.com^$important,document,~extension | |
@@||2.android.pool.ntp.org^$important,document,~extension | |
@@||android.clients.google.com^$important,document,~extension | |
@@||appsbackup-pa.clients6.google.com^$important,document,~extension | |
@@||appsbackup-pa.googleapis.com^$important,document,~extension |
require 'csv' | |
require 'twitter' | |
@client = Twitter::REST::Client.new do |config| | |
config.consumer_key = '' | |
config.consumer_secret = '' | |
config.oauth_token = '' | |
config.oauth_token_secret = '' | |
end |
opkg install kmod-fs-ntfs ntfs-3g kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-usb-storage e2fsprogs fdisk usbutils mount-utils block-mount kmod-fs-ext4 kmod-fs-vfat kmod-nls-utf-8 kmod-nls-cp437 kmod-nls-iso8859-1
reboot
blkid
, run opkg update && opkg install blkid
;block.sh
to directory /lib/functions
;10-mount
and 20-swap
to directory /etc/hotplug.d/block
;logread -f
command then plug in a USB stick to test.var button = document.getElementsByClassName("subscribed-label"); | |
for(var i=0;i<button.length;i++) | |
{ | |
button[i].click(); | |
var unsub = document.getElementsByClassName("overlay-confirmation-unsubscribe-button"); | |
//console.log(unsub.length) | |
for(var j=0;j<unsub.length;j++) | |
unsub[j].click(); | |
} |