Skip to content

Instantly share code, notes, and snippets.

View tehmaspc's full-sized avatar
💭
I may be slow to respond.

Tehmasp Chaudhri tehmaspc

💭
I may be slow to respond.
View GitHub Profile
@tehmaspc
tehmaspc / userstyle.css
Last active August 29, 2015 14:16 — forked from roustem/userstyle.css
Flowdock userstyle.css
/* install as '~/Library/Application Support/Flowdock/userstyle.css' */
@media screen {
* {
font-family: "San Francisco Display";
}
#chat li[class*="message"] {
font-family: "San Francisco Display";
font-size: 9pt;
#!/usr/bin/env sh
# Download lists, unpack and filter, write to gzipped file
curl -s https://www.iblocklist.com/lists.php \
| grep -A 2 Bluetack \
| sed -n "s/.*value='\(http:.*\)'.*/\1/p" \
| xargs wget -O - \
| gunzip \
| egrep -v '^#' \
| gzip - > bt_blocklist.gz
This statement grants permissions to any user to perform any S3 action on objects in the specified bucket. However, the request must originate from the range of IP addresses specified in the condition. The condition in this statement identifies 192.168.143.* range of allowed IP addresses with one exception, 192.168.143.188.
Note that the IPAddress and NotIpAddress values specified in the condition uses CIDR notation described in RFC 2632. For more information, go to http://www.rfc-editor.org/rfc/rfc4632.txt.
@tehmaspc
tehmaspc / .tmux.conf
Created May 21, 2012 00:55 — forked from wridgers/.tmux.conf
tmux config file
# Make it use C-a, similar to screen..
unbind C-b
unbind l
set -g prefix C-a
bind-key C-a last-window
# Reload key
bind r source-file ~/.tmux.conf
set -g history-limit 1000