-
Find the Discord channel in which you would like to send commits and other updates
-
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
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 | |
| # ----------------------------------------------------------------------- # | |
| # I N F O | |
| # ----------------------------------------------------------------------- # | |
| # | |
| # | |
| # ********************************************************************** * | |
| # | |
| # Get the latest version of this file from: |
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
| --------------------------------------------------------------- | |
| oooo | |
| `888 | |
| oooo d8b .ooooo. oooo ooo 888 oooo oooo | |
| `888""8P d88' `88b `88b..8P' 888 `888 `888 | |
| 888 888 888 Y888' 888 888 888 | |
| 888 888 888 .o8"'88b 888 888 888 | |
| d888b `Y8bod8P' o88' 888o o888o `V88V"V8P' |
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
| #include <assert.h> | |
| #include <GLFW/glfw3.h> | |
| #include <swnt/GUI.h> | |
| GUI::GUI() | |
| :win_w(0) | |
| ,win_h(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
| #!/bin/sh | |
| # Compiling nginx + php + mysql on Mac OSX 10.9 | |
| # --------------------------------------------- | |
| # | |
| # | |
| # CONFIGURE | |
| # --------------- | |
| # 1) Edit `conf/nginx.conf` and add this to the between the server { ... } config. | |
| # NOTE: the current config you only need to uncomment the example that looks like this, |
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
| def removecomments(s): | |
| inCommentSingle = False | |
| inCommentMulti = False | |
| inString = False | |
| t = [] | |
| l = len(s) | |
| i = 0 | |
| fromIndex = 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
| { | |
| "//field": "These 'double quote' 'double quote' are used as comments, because JSON doesnt' allow comment", | |
| "field": {}, | |
| "#another-field": "Another comment", | |
| "another-field": {}, | |
| "/*stuff": "Be careful to use them when you have full control of the content :)", | |
| "stuff": [], | |
| "bla": "bla" | |
| } |
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
| <!DOCTYPE html><html lang="en"><head><meta charset="utf-8" /><meta name="description" content="A BitTorrent community focused on Eastern Asian media including anime, manga, music, and more." /><meta name="keywords" content="Daiz, anime, manga, music, Japan, Japanese, torrent, download, community" /><title>NyaaTorrents >> Torrent Information >> [AOT] Fullmetal Alchemist Brotherhood Full [Episodes 1-64 Complete Batch] [720p BD 100MB] | Anime, manga, and music - Just say the word</title><link rel="icon" type="image/png" href="http://files.nyaa.eu/favicon.png" /><link rel="stylesheet" type="text/css" href="http://files.nyaa.eu/www.css" title="CSS" /><link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://www.nyaa.eu/?page=rss" /><script src="http://files.nyaa.eu/functions.js" type="text/javascript"></script></head><body><div id="topbar"><div id="navbar"><ul id="tabnav"><li><a href="http://www.nyaa.eu/">Browse</a></li><li><a href="http://www.nyaa.eu/?page=upload">Upload</a></l |
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
| # abort if already under tmux | |
| [[ -n $TMUX_PANE ]] && return | |
| # zsh-specific includes | |
| zmodload -i zsh/datetime | |
| zmodload -i zsh/stat | |
| # place to store the chart | |
| RAINBARF_OUT=~/.rainbarf.out | |
| # update period, in seconds |
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 | |
| // https://gist.github.com/phiresky/5025490526ba70663ab3b8af6c40a8db | |
| fname="$1" | |
| cachedir=/tmp/pdfextract | |
| mkdir -p "$cachedir" | |
| mtime="$(stat -c %Y "$1")" |

