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
| jobs: | |
| claude: | |
| if: github.event.requested_team.slug == 'ai-code-reviewers' | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| id-token: write | |
| steps: |
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-videoad.js text/javascript | |
| (function() { | |
| if ( /(^|\.)twitch\.tv$/.test(document.location.hostname) === false ) { return; } | |
| //This stops Twitch from pausing the player when in another tab and an ad shows. | |
| try { | |
| Object.defineProperty(document, 'visibilityState', { | |
| get() { | |
| return 'visible'; | |
| } | |
| }); |
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
| import {Button} from '@material-ui/core'; | |
| import {CloseOutlined} from '@material-ui/icons'; | |
| import {addBreadcrumb, BreadcrumbCategory} from 'addBreadcrumb'; | |
| import {useSnackbar} from 'notistack'; | |
| import React, {useState} from 'react'; | |
| const MANIFEST = '/asset-manifest.json'; | |
| const POLL_INTERVAL = 60000; | |
| export const VersionCheck: React.FC = ({children}) => { |
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
| const fs = require('fs'); | |
| const season = 7; | |
| const path = `\\\\192.168.1.75\\plex\\tv\\Star Trek- Deep Space Nine\\Season ${season}` | |
| let count = 1; | |
| fs.readdirSync(path).forEach((file) => { | |
| console.log(`original: ${file}`) |
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
| 0) Go to https://mullvad.net/en/download/#linux <-- Latest Link when I made this guide or just go to your mullvad account page | |
| 1) Download your mullvad VPN files by clicking "GenerateOpenVPN configuration files" . Make sure to keep "Use IP addresses" and "Connect via our bridges" left unchecked | |
| 2) Unzip the downloaded file. | |
| 3) Move all four files (you should have four) to appdata/deluge/openvpn | |
| 3a) change the file extension of mullvad_<whatever region you selected>.conf to mullvad_<whatever region you selected>.ovpn | |
| 3b) Open mullvad_<whatever region you selected>.ovpn with a text editor and add the following lines to the bottom: | |
| pull-filter ignore "route-ipv6" | |
| pull-filter ignore "ifconfig-ipv6" | |
| 3c) save the file. | |
| 4) In your deluge container, edit the following settings: |
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
| @import url('https://fonts.googleapis.com/css?family=Roboto'); | |
| * { | |
| font-family: 'Roboto', sans-serif; | |
| font-weight:bold; | |
| } | |
| .ng-star-inserted h1, .ng-star-inserted h4 { | |
| display:none; | |
| } |
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
| @import url('https://fonts.googleapis.com/css?family=Roboto:700%27); | |
| * { | |
| font-family: 'Roboto', sans-serif; | |
| font-weight:bold; | |
| } | |
| .ng-star-inserted h1, .ng-star-inserted h4 { | |
| display:none; | |
| } |
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
| unbindall | |
| alias +knife slot3 | |
| alias -knife lastinv | |
| bind 0 slot10 |
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 config --global alias.clean-branches "!git branch | grep -v master | xargs git branch -D" | |
| -- `git clean-branches` |
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
| choco install git -y | |
| choco install poshgit -y | |
| choco install visualstudio2017community -y | |
| choco install googlechrome -y | |
| choco install visualstudiocode -y | |
| choco install slack -y |
NewerOlder