- 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
| # This file is licensed under the terms of the MIT license https://opensource.org/license/mit | |
| # Copyright (c) 2021-2025 Marat Reymers | |
| ## Golden config for golangci-lint v2.6.1 | |
| # | |
| # This is the best config for golangci-lint based on my experience and opinion. | |
| # It is very strict, but not extremely strict. | |
| # Feel free to adapt it to suit your needs. | |
| # If this config helps you, please consider keeping a link to this file (see the next comment). |
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