- Created doc while stumbling upon this PR / issue in https://github.com/night/betterttv
- Also kudos Chrome network panel
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
| --- | |
| id: yggapi | |
| name: YggAPI | |
| description: Indexeur non-officiel pour YggTorrent (YGG) - MOVIES / TV | |
| language: fr-FR | |
| type: private | |
| encoding: UTF-8 | |
| testlinktorrent: false | |
| links: | |
| - https://yggapi.eu/ |
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
| package main | |
| import ( | |
| "fmt" | |
| "io/ioutil" | |
| "net/http" | |
| "os" | |
| "regexp" | |
| ) |
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
| # ================================================================================================== | |
| # | |
| # NOTICE | |
| # | |
| # This gist is no longer maintained. It was moved to repo: | |
| # | |
| # https://github.com/maratori/golangci-lint-config | |
| # | |
| # Full history and all v2 releases are preserved in the repo. | |
| # |
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
| """ | |
| Used to write logs on Stackdriver logging using the https://googleapis.dev/python/logging/latest/client.html | |
| Detect if we are in Google Runtime environment and enable this logger or not | |
| Change the default format | |
| Append all urllib3 debug request into these loggers | |
| https://stackoverflow.com/questions/16337511/log-all-requests-from-the-python-requests-module | |
| https://github.com/psf/requests/issues/1297 | |
| https://stackoverflow.com/questions/11820338/replace-default-handler-of-python-logger | |
| https://stackoverflow.com/questions/879732/logging-with-filters |
create_user_for_namespace.sh: Create$namespace-userServiceAccount with full access to specified namespace and get KUBECONFIGkubeconfig-generator.sh: Generate the KUBECONFIG of an existing sericeaccout + namespace
GIST_URL=https://gist.githubusercontent.com/mikamboo/5e20ea4a0aef8289e40f62844dec7bc8
curl $GIST_URL/raw/bb5ba7e3cc2b1e7be0006f7a2bc3d0f5d73958ec/create_user_for_namespace.sh | bash -s gitlab
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
| #!/usr/bin/env zsh -f | |
| # Purpose: get the RSS feed for a YouTube page | |
| # Inspired By: https://eggfreckles.net/notes/youtube-rss/ | |
| # Gist: https://gist.github.com/tjluoma/fdbc63ceb78a2aecd3d638fd18b6ec6e | |
| # | |
| # From: Timothy J. Luoma | |
| # Mail: luomat at gmail dot com | |
| # Date: 2020-01-17; updated 2021-01-10 | |
| # 2021-01-10 YouTube currently has both 'rssUrl' and |
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
| git_current_branch () { | |
| local ref | |
| ref=$(command git symbolic-ref --quiet HEAD 2> /dev/null) | |
| local ret=$? | |
| if [[ $ret != 0 ]] | |
| then | |
| [[ $ret == 128 ]] && return | |
| ref=$(command git rev-parse --short HEAD 2> /dev/null) || return | |
| fi | |
| echo ${ref#refs/heads/} |
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: '3' | |
| services: | |
| master: | |
| build: | |
| context: . | |
| dockerfile: ./master.Dockerfile | |
| working_dir: /root/playbooks | |
| volumes: | |
| - /c/repos/ansible/playbooks:/root/playbooks | |
| - /c/repos/ansible/config:/etc/ansible |
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
| /* | |
| Twitch chat browsersource CSS for OBS | |
| Original by twitch.tv/starvingpoet modified by github.com/Bluscream | |
| Just set the URL as either one of | |
| - https://www.twitch.tv/%%TWITCHCHANNEL%%/chat?popout=true | |
| - https://www.twitch.tv/popout/%%TWITCHCHANNEL%%/chat | |
| - https://www.twitch.tv/embed/%%TWITCHCHANNEL%%/chat?parent=localhost | |
| And paste this entire file into the CSS box or paste direct import css like |
NewerOlder