Sources:
- https://gist.github.com/joahking/780877
- https://stackoverflow.com/questions/14348874/git-repository-url-ssh-syntax-without-absolute-path
$ cd ~/git
$ mkdir myapp.git
#!/bin/sh | |
for a in *.flac; do | |
echo ffmpeg -i "$a" -qscale:a 0 "${a[@]/%flac/mp3}" | |
done |
#!/bin/sh | |
wget -m ftp://username:password@ftphostname |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Maintainer: | |
" Amir Salihefendic | |
" http://amix.dk - [email protected] | |
" | |
" Version: | |
" 5.0 - 29/05/12 15:43:36 | |
" | |
" Blog_post: | |
" http://amix.dk/blog/post/19691#The-ultimate-Vim-configuration-on-Github |
Sources:
$ cd ~/git
$ mkdir myapp.git
#!/bin/env/coffee | |
json2csv = require('json2csv') | |
JSONStream = require('JSONStream') | |
expandHomeDir = require('expand-home-dir') | |
_ = require('lodash') | |
# { camelize, underscored } = require('underscore.string') | |
fs = require('fs') | |
options = require('yargs') |
The MIT License (MIT)
Copyright (c) 2016 Philipp Ständer
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WI
#!/bin/bash | |
# Source: https://www.topbug.net/blog/2013/04/14/install-and-use-gnu-command-line-tools-in-mac-os-x/ | |
# First comes the most important one -- GNU Coreutils: | |
brew install coreutils | |
# Then you may probably want to install the following ones (For some of the packages, you need to run brew tap homebrew/dupes first, but only once for your system): | |
brew install binutils |
Language | Stars | Forks | Projects | |
---|---|---|---|---|
JavaScript | 252891 | 134294 | 323938 | |
Python | 132995 | 74924 | 164852 | |
Java | 115249 | 83361 | 222852 | |
Ruby | 105547 | 55153 | 132848 | |
PHP | 97112 | 57332 | 138771 | |
C | 59920 | 36506 | 73075 | |
C++ | 53706 | 33105 | 86505 | |
Objective-C | 44734 | 24845 | 36568 | |
C# | 35859 | 22157 | 56062 |
<% if not CookieUsageConfirmed %> | |
<div id="desktop-cookie-disclosure" style="position: fixed; z-index: 10000; top: 0; left: 0; width: 100%;"> | |
<div onclick="$.ajax({ url: 'home/confirmCookieUsage', method: 'post' }); $(this).parent().fadeOut(300, function() { $(this).remove(); });" style="cursor: pointer; color: #fff; background: rgba(0,0,0,0.8); border-radius: 10px; padding: 2px 5px; position: absolute; top: 0.4em; right: 0.5em; font-size: 9px; line-height: 13px;">✖</div> | |
<div style="color: #fff; background: #666; padding: 0.5em 1em; font-size: 0.9em; text-align: center;"> | |
<span style="" lang="en"> | |
We have placed cookies on your computer to help make this website better. We use a Google Analytics script which sets cookies. More details can be found in our <a href="impressum/#cookies" style="color: #fff;">privacy policy</a> | |
</span> | |
<span style="display: none;" lang="de"> | |
Wir verwenden bei Ihrem Besuch auf unserer Webseite Cookies. Indem Sie unsere Webseite benutzen, |
#!/usr/bin/env coffee | |
process.stdin.on 'data', (s) -> | |
line = s.toString().replace(/\n/g, '_newline_') | |
replaceRuleset = [ | |
# remove tables | |
[ /\\begin\{(table)\}.*?\\end\{(table)\}/ig, '' ] | |
# remove tables | |
[ /\\begin\{(tabular)\}.*?\\end\{(tabular)\}/ig, '' ] |