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
| docker run \ | |
| --name {{printf "%q" .Name}} \ | |
| {{- with .HostConfig}} | |
| {{- if .Privileged}} | |
| --privileged \ | |
| {{- end}} | |
| {{- if .AutoRemove}} | |
| --rm \ | |
| {{- end}} | |
| {{- if .Runtime}} |
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 | |
| # Grab oauth token for use with Nitter (requires Twitter account). | |
| # results: {"oauth_token":"xxxxxxxxxx-xxxxxxxxx","oauth_token_secret":"xxxxxxxxxxxxxxxxxxxxx"} | |
| username="" | |
| password="" | |
| if [[ -z "$username" || -z "$password" ]]; then | |
| echo "needs username and password" | |
| exit 1 |
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
| /graphql/30bHSx-YYMzaygsBwfhftA/AddRemoveUserFromList | |
| /graphql/xIZJPQBK0Zz62_BDLNLHKw/AddSuperFollowPrivacy | |
| /graphql/R1ks8NLVisD-416R3mAk_w/AllSubscribedListsTimeline | |
| /graphql/nxtTgq_TxeEDm0gmsGqK_Q/ArticleTweetsTimeline | |
| /graphql/zacmhLyVLzFAKvH-yia8OA/AudiospaceAddSharing | |
| /graphql/IZ1drq74xph2Gym7gGgtRw/AudiospaceBrowseSpaceTopicsQuery | |
| /graphql/N80MQ7fkrpuq1-kCWVSvzQ/AudiospaceByRestId | |
| /graphql/PTAe3LYPhlCcPJtwpyyx-w/AudiospaceDeleteSharing | |
| /graphql/NiYfwFZDe-90MSqpGEI16w/AudiospaceGiveawayTickets | |
| /graphql/g1mB1D5y3z_NkFsN-FwZdA/AudiospaceIsSubscribedQuery |
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
| { | |
| "name": "node-telnet-server", | |
| "version": "1.0.0", | |
| "bin": "./server.js", | |
| "description": "npx https://gist.github.com/Vaviloff/7f8103362fc83e4fbff0d179bc7b2441", | |
| "dependencies": { | |
| "chalk": "^4.1.0" | |
| } | |
| } |
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
| "workbench.colorCustomizations": { | |
| // Contrast Colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast. | |
| "contrastActiveBorder": "", | |
| "contrastBorder": "", | |
| // Base Colors | |
| "focusBorder": "", | |
| "foreground": "", | |
| "widget.shadow": "", | |
| "selection.background": "", | |
| "descriptionForeground": "", |
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 | |
| # list of programs we depend on | |
| progs="xdpyinfo grep head sed ffmpeg pacat parec sox" | |
| # check for programs we depend on | |
| result=0 | |
| for prog in $progs | |
| do | |
| type -p $prog > /dev/null |
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
| <script type='text/javascript' src='/static/js/jquery.js'></script> | |
| <script type='text/javascript' src='/static/js/fancybox-1.3.1/jquery.fancybox-1.3.1.js'></script> | |
| <script type='text/javascript'> | |
| $(function(){ | |
| $('#main-top-news .mind a[class!="button"]').mouseenter(function () { | |
| if (!$(this).hasClass('current')) { | |
| var n = $('#main-top-news #preview_texts a').index($(this)), | |
| videos = $('#main-top-news .video a'), | |
| sel = videos.eq(n); |