bazel query 'rdeps(..., //vistar/geo/qtdb:go_default_library)' --output package
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
https://www.amazon.in/TP-Link-TL-WA855RE-Wi-Fi-Range-Extender/dp/B0195Y0A42?th=1 | |
https://www.amazon.in/Dualband-1200Mbps-Frequency-Directional-app-Parental/dp/B09MKG4ZCM/ref=sr_1_1?crid=17WS6D5619L0I&keywords=mi+router+4a+gigabit&qid=1644388143&sprefix=mi+router+4a+gigabit+%2Caps%2C667&sr=8-1 | |
https://www.amazon.in/TP-Link-Archer-C6-Wireless-MU-MIMO/dp/B07GVR9TG7/ref=sr_1_3?crid=17WS6D5619L0I&keywords=mi%2Brouter%2B4a%2Bgigabit&qid=1644388143&sprefix=mi%2Brouter%2B4a%2Bgigabit%2B%2Caps%2C667&sr=8-3&th=1 | |
https://www.amazon.in/TP-Link-Outdoor-Wireless-Access-300Mbps/dp/B01MT4T8TN/ref=pd_lpo_2?pd_rd_i=B01MT4T8TN&th=1 | |
https://www.amazon.in/Tenda-N301-Wireless-N300-Setup-Router/dp/B00D3GO8R4/ref=sr_1_28?keywords=wireless%2Bbridge&qid=1644386113&sr=8-28&th=1 | |
https://www.amazon.in/TP-Link-EAP110-300Mbps-Wireless-Ceiling/dp/B00V4BGE7C/ref=asc_df_B00V4BGE7C/?tag=googleshopdes-21&linkCode=df0&hvadid=396987023727&hvpos=&hvnetw=g&hvrand=13023668990694609490&hvpone=&hvptwo=&hvqmt=&hvdev=c&hvdvcmdl=&hvlocint=&hvlocphy=10077 |
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
mkdir -p ~/.ssh | |
touch ~/.ssh/authorized_keys | |
curl -sL github.com/pratikbalar.keys >>~/.ssh/authorized_keys | |
systemctl start sshd | |
echo 'Server = http://10.0.1.12:9129/repo/archlinux/$repo/$arch' | sudo tee /etc/pacman.d/mirrorlist | |
ip a |
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
#!/bin/bash -e | |
# | |
# Caching to persistence volume for self hosted ghar | |
[[ $DEBUG ]] && set -x | |
export PZSTD_NUM_THREADS=${PZSTD_NUM_THREADS:-"$(nproc)"} | |
[[ -z "${1}" ]] && echo "KEY is not set (arg 1)" >&2 && exit 2 | |
[[ -z "${2}" ]] && echo "FROM is not set (arg 2)" >&2 && exit 2 | |
[[ -z "${3}" ]] && echo "TO is not set (arg 3)" >&2 && exit 2 |
If you don't want to build Squid from scratch, you can simply Setup a Squid anonymous proxy
Please note that this whole manual refers to the version 3.5.23 of Squid. You probably would have to adapt some commands to the version you will actually download.
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
create `youtube-dl.bat` file and paste all this below code | |
> youtube-dl.exe --output "c:/YourDownloadPath/Pluralsight%%(playlist)s%%(chapter_number)s - %%(chapter)s%%(playlist_index)s - %%(title)s.%%(ext)s" --cookies "pluralsight_cookie.txt" --no-overwrites --no-post-overwrites --verbose --write-sub --rate-limit 1M --add-header Referer:"https://app.pluralsight.com/library/courses" --user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 Edg/92.0.902.62" --batch-file=batch_filelist_pluralsight.txt | |
> pause | |
* Go to https://www.whatismybrowser.com/detect/what-is-my-user-agent make a note of your user agent i.e. `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 Edg/92.0.902.62` | |
* Install [EditThisCookie](https://chrome.google.com/webstore/detail/editthiscookie/fngmhnnpilhplaeedifhccceomclgfbg) extension, go to settings and set format (defaults to JSON) to Netscape HTTP Co |
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
## Delete namespace from terminating state | |
kubectl get namespace "stucked-namespace" -o json \ | |
| tr -d "\n" | sed "s/\"finalizers\": \[[^]]\+\]/\"finalizers\": []/" \ | |
| kubectl replace --raw /api/v1/namespaces/stucked-namespace/finalize -f - | |
## Delete cascade in sts | |
kc delete sts --cascade=false | |
## Secret decode | |
kc -n <namespace-name> get secret <secret-name> -o go-template=' |
NewerOlder