Put flip
somewhere in your $PATH
and chmod a+x
it.
Copy fuck
into ~/.bashrc
.
#!/usr/bin/env perl | |
# | |
# http://daringfireball.net/2007/03/javascript_bookmarklet_builder | |
use strict; | |
use warnings; | |
use URI::Escape qw(uri_escape_utf8); | |
use open IO => ":utf8", # UTF8 by default | |
":std"; # Apply to STDIN/STDOUT/STDERR |
The regex patterns in this gist are intended only to match web URLs -- http, | |
https, and naked domains like "example.com". For a pattern that attempts to | |
match all URLs, regardless of protocol, see: https://gist.github.com/gruber/249502 | |
# Single-line version: | |
(?i)\b((?:https?:(?:/{1,3}|[a-z0-9%])|[a-z0-9.\-]+[.](?:com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|s |
Note: If you want to use your personal Twitter account to post commits, go to Step 2
<?php | |
/** | |
* File: apigen-hooks.php | |
* | |
* NOTE: this code is used internally in WPGlobus project. | |
* It's a W.I.P. - please use it, but do not forget to adapt for your project. | |
* | |
* @package WPGlobus\APIGen | |
* @author Gregory Karpinsky (@tivnet) | |
*/ |
# https://gist.github.com/timabell/bc90e0808ec1cda173ca09225a16e194 | |
# MIT license | |
$exts=@( | |
"csv", | |
"csproj", | |
"json", | |
"log", | |
"md", | |
"patch", | |
"sql", |
<?php | |
/* | |
Need to encode given (finished) path and query?, for example | |
'http://example.org:port/path1/path2/data?key1=value1&argument#fragment' (1) | |
or 'scheme://user:[email protected]:port/path1/path2/data?key1=value1&key2=value2#fragment' (2) | |
e.g. this (2) should be encoded: | |
'scheme://'.rawurlencode('user').':'.rawurlencode('password').'@example.com:port/' | |
.rawurlencode('path1').'/'.rawurlencode('path2').'/'.rawurlencode('data') | |
.'?'.htmlentities(urlencode('key1').'='.urlencode('value1').'&'.urlencode('key2').'='.urlencode('value2')) |
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
KUTT_HOST="https://kutt.it" | |
KUTT_API_KEY="API_KEY" | |
kutt() { | |
if [[ "$1" == "delete" ]] && [[ -n "$2" ]]; then | |
curl -s -H "X-API-KEY: $KUTT_API_KEY" \ | |
-X DELETE \ | |
"$KUTT_HOST/api/v2/links/$2" | jq | |
elif [[ -z "$1" ]]; then | |
curl -s -H "X-API-KEY: $KUTT_API_KEY" \ | |
"$KUTT_HOST/api/v2/links" | jq |
<?php | |
// src/App.php | |
namespace Example; | |
class App | |
{ | |
public function redirect($url) | |
{ | |
header('Location: ' . $url, true, 302); | |
die(); |