- IssueHunt - Anyone can fund any issues on open-source projects with some money which will be distributed to its maintainers and contributors.
- Bountysource - Users can improve the open-source projects they love by creating/collecting bounties and pledging to fundraisers.
- Salt - open-source projects can collect monthly contributions from supporters in order to reliably and predictably fund ongoing development.
- Gitcoin - open source bounties platform on the Ethereum blockchain
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
{ | |
// Place your snippets for markdown here. Each snippet is defined under a snippet name and has a prefix, body and | |
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
// same ids are connected. | |
// Example: | |
"subscript": { | |
"prefix": "sub", | |
"body": [ | |
"<sub>$1</sub>" |
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
[alias] | |
rescue = !git fsck --full --no-reflogs --unreachable --lost-found | grep commit | cut -d\\ -f3 | xargs -n 1 git log -n 1 --pretty=oneline > .git/lost-found.txt | |
ignore = !files={$(echo \"$@\" | tr ' ' ,)}.gitignore && echo '<-' github:$files && curl -sL https://raw.githubusercontent.com/github/gitignore/master/$files >> .gitignore && echo '->' .gitignore || echo FAIL && : | |
license-osi = !curl -sL https://raw.githubusercontent.com/OpenSourceOrg/licenses/master/texts/plain/$1 > LICENSE | |
license = !curl -sL https://raw.githubusercontent.com/github/choosealicense.com/gh-pages/_licenses/$1.txt > LICENSE | |
fork = !git clone $1 $3 --depth 1 && pushd ${3:-$(basename $1 .git)} > /dev/null && git remote add upstream $(git remote get-url origin) && git remote set-url origin $2 && popd > /dev/null && : | |
modlink = !pushd $1 && repo=$(git remote get-url origin) && popd && git submodule add $repo $2 && rm $2 && ln -s $1 $2 && : | |
first-commit = !git log $(git rev-list |
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
Section "ServerLayout" | |
Identifier "layout" | |
Screen 0 "nvidia" | |
Inactive "intel" | |
EndSection | |
Section "Device" | |
Identifier "nvidia" | |
Driver "nvidia" | |
BusID "PCI:1:0: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
{ | |
loader: 'binaryen-loader', | |
options: { | |
optimization: { | |
level: 2, | |
shrinkLevel: 2 | |
}, | |
transformation: { | |
// https://github.com/WebAssembly/binaryen/blob/master/src/passes/pass.cpp#L67-L126 | |
passes: [ |
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 python | |
import module1, module2 | |
from bottle import run | |
run(host='localhost', port='8080') |
In general, you will learn some markdown tricks combined with standard HTML tags. In more details what you will learn:
- Hide-show content
- Writing codeblocks inside codeblocks
- Combining and using italic, bold, superscript, subscript, and/or strikethrough
- Quoting long sentence (using nested blockquotes)
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 lxml.html | |
def add_css_code(webpageString, linkString): | |
root = lxml.html.fromstring(webpageString) | |
link = lxml.html.fromstring(linkString).find('.//link') | |
head = root.find('.//head') | |
title = head.find('title') | |
if title == None: | |
where = 0 | |
else: |
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
let streetmap = [ | |
"http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", | |
"http://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png", | |
"http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}", | |
]; | |
let topologymap = [ | |
"http://stamen-tiles-{s}.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png", | |
"http://{s}.tile.opentopomap.org/{z}/{x}/{y}.png", | |
"http://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x)", |