Skip to content

Instantly share code, notes, and snippets.

View ytspar's full-sized avatar

Yury Tsukerman ytspar

View GitHub Profile
@joeguilmette
joeguilmette / gist:ef231d10554da29c6782
Last active October 1, 2015 05:41
Bangkok for Jean and Chris

#Bangkok Survival Guide This is by no means complete or anything, but hopefully it'll give you a quick rundown of how I learned to enjoy and indeed fall in love with Bangkok. It is by no means everyone's cup of tea, so I will take no offense if you hate it, hate my ideas of what to do, or whatever. So... Here we go!

PS I didn't proofread this at all.

##Stay Near Saphan Taksin It has a BTS station and a boat pier. The neighborhood sucks but you wont spend any time there. You'll get the fuck out and thanks to the public transit available there you'll be able to go anywhere in the city ASAP regardless of traffic.

##Transportation The key to the city is access to transportation next to your bed. Once you have access, you just need to understand the different ways to get around, how they are effected by traffic, and how to mitigate those effects. Kind of like any city in the world.

@kevin-smets
kevin-smets / iterm2-solarized.md
Last active May 10, 2025 09:31
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k

@BrianGilbert
BrianGilbert / pngout.rb
Last active March 11, 2016 17:35 — forked from paulredmond/pngout.rb
PNGOut Homebrew Formula
require 'formula'
class Pngout < Formula
url 'http://static.jonof.id.au/dl/kenutils/pngout-20130221-darwin.tar.gz'
homepage 'http://www.jonof.id.au/kenutils'
sha256 '995cc1df35e68b723c8143ad82c058be763f9af4fc373894ec74de3e7f18d0dd'
version '20130221'
def install
prefix.install Dir['*']
@mkitt
mkitt / helvetica_neue_font_stack.sass
Last active April 8, 2024 23:07
Helvetica Neue Font Stacks for SASS.
@function helvetica_neue_stack($weight, $variant)
@return "Helvetica Neue CE #{$weight} #{$variant}", "Helvetica Neue LT #{$weight} #{$variant}", "Helvetica Neue #{$weight} #{$variant}", "HelveticaNeue-#{$variant}", "Helvetica Neue #{$variant}", "Helvetica Neue", "Helvetica", "Arial", sans-serif
// Fonts
$sans-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif
$sans-neue-family: "HelveticaNeue", "Helvetica Neue", "Helvetica", "Arial", sans-serif
$sans-light-family: helvetica_neue_stack("45", "Light")
$sans-thin-family: helvetica_neue_stack("35", "Thin")
$sans-ultra-family: helvetica_neue_stack("25", "Ultra Light")
@scalopus
scalopus / TrueWifi.user.js
Created August 9, 2012 08:37
True Wifi - Autologin script
// ==UserScript==
// @name Truewifi Auto Login/Logout 2
// @version 1.01
// @author Warun Kietduriyakul, script derived from Mr.Montree Phomkam
// @namespace http://www.jomyut.net
// @description True Wifi automatic login/re-login script when time is exceed.
// @include http*://portal.trueinternet.co.th/*
// ==/UserScript==
//################################################################
@minipai
minipai / gist:3150020
Created July 20, 2012 10:18
Middleman 3 Template Layouts
title
Layouts &amp; Partials

Layouts

Layouts allow the common HTML surrounding individual pages to be shared across all your templates. The most basic layout has some shared content and a yield call where templates will place their contents. Furthermore, With wrap_layout, content_for and partial you can build a complex layout inheritance, reduce the duplication of you code in templates to a minimal amount.

Basic layout