Extension Name | Version | Status | Link |
---|---|---|---|
Add-ons Search Detection | 2.0.0 | ✅ Enabled | Built-in |
Auxilium Rewriter | 1.0.0 | ✅ Enabled | Not on AMO |
Bypass Paywalls Clean | 3.0.4.0 | ✅ Enabled | Not on AMO |
Capital One Shopping: Save Now | 0.1.1219 | ✅ Enabled | AMO |
Clippings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "1.9.2", | |
"date": 1751157387934, | |
"preferences": { | |
"automaticMode": { | |
"active": true, | |
"newTab": "created" | |
}, | |
"notifications": false, | |
"container": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set CRAN mirror | |
options(repos = c(CRAN = "https://cloud.r-project.org")) | |
# Install optparse if not already installed | |
if (!requireNamespace("optparse", quietly = TRUE)) { | |
install.packages("optparse") | |
} | |
library(optparse) |
- https://www.youtube.com/@rajasekharmamidanna7918
- https://www.youtube.com/@IsmoComedian
- https://www.youtube.com/@SindhuVComedy
- https://www.youtube.com/@ZarnaGarg
- https://www.youtube.com/@CertifiedRascals
- https://www.youtube.com/@Bldg18ComedyClub
- https://www.youtube.com/@bollywoodgandu
- https://www.youtube.com/@HumourClubTriplicaneChapter
- https://www.youtube.com/@jeffdunham
- DMV Fast Test 0: https://forms.office.com/r/tvYuYDUZ7R
- DMV Fast Test 1: https://forms.office.com/r/mVEq7UWH6U
- DMV Fast Test 2: https://forms.office.com/r/jLhLuCc1Ni
- DMV Fast Test 3: https://forms.office.com/r/n0rv8SWj0d
- DMV Fast Test 4: https://forms.office.com/r/X9aZUPdMd6
- DMV Slow Test 0: https://forms.office.com/r/VH6Y4gbg6z
- DMV Slow Test 1: https://forms.office.com/r/wqC1N1KNMt
- DMV Slow Test 2: https://forms.office.com/r/hDDFmcySBH
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# filterjson.py | |
#! /usr/bin/env python3 | |
# python script to extract key, value pair from a json based using a text file with keys as filter | |
# | |
# contents.json | |
# { | |
# "031648494230": "ETUI-JNredServices-PrivateLink-Prod", | |
# "230148474224": "ETUI-JNSPlanningViewer-Test", | |
# "432541444253": "ETUI-JNCOE-Dev", |
wsl hostname -I
netsh interface portproxy add v4tov4 listenport=8000 listenaddress=0.0.0.0 connectport=8000 connectaddress=172.17.225.2
netsh interface portproxy add v4tov4 listenport=4443 listenaddress=0.0.0.0 connectport=4443 connectaddress=172.17.225.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# extract all the links from firefox bookmarks export | |
# the following uses grep to get both http, https url | |
# then uses sed - non-greedy match to extract the link alone | |
grep 'HREF="http' bookmarks.html | sed -e 's,.*HREF="\([^"]*\)".*,\1,g' | sort | less | |
# replace a bunch of lines in the middle of a file with ... blah ... | |
cat 40lines.txt | sed -e '6,34d; 35{i ... blah ...' -e 'd}' | |
cat 40lines.txt | sed -e '6,33d; 34,36s,.*,,;35s// ... blah .../' |
NewerOlder