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
var el = ( function () { | |
var doc = document; | |
var directProperties = { | |
'class': 'className', | |
className: 'className', | |
defaultValue: 'defaultValue', | |
'for': 'htmlFor', | |
html: 'innerHTML', |
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
# Unofficial brew formula for proxychains 4 | |
# Instruction: | |
# $ git clone https://gist.github.com/gvlx/5441972 gist-5441972 | |
# $ brew install --HEAD gist-5441972/proxychains_formula.rb | |
# | |
# The default config file will be located in /usr/local/etc/proxychains.conf | |
# | |
require 'formula' | |
class ProxychainsFormula < Formula |
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
/** | |
* Circular Tooltip (SO) | |
* http://stackoverflow.com/q/13132864/1397351 | |
*/ | |
* { margin: 0; padding: 0; } | |
body { | |
overflow: hidden; | |
background: url(http://theearlcarlson.com/experiments/amTooltip/img/bg.jpg); | |
} | |
/* generic styles for button & circular menu */ |
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
#!/bin/bash | |
# A bash script to create a time machine disk image suitable for | |
# backups with OS X 10.6 (Snow Leopard) | |
# This script probably only works for me, so try it at your own peril! | |
# Use, distribute, and modify as you see fit but leave this header intact. | |
# (R) sunkid - September 5, 2009 | |
# | |
# retrived from http://www.insanelymac.com/forum/topic/184462-guide-106-snow-leopard-time-machine-backup-to-network-share/ | |
# http://www.insanelymac.com/forum/index.php?app=core&module=attach§ion=attach&attach_id=55807 |
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
https://blog.abstratt.com/2008/05/05/on-code-and-diagrams/ | |
https://web.archive.org/web/20120127085644/http://blog.objectmentor.com/articles/2007/09/06/why-we-write-code-and-dont-just-draw-diagrams | |
https://web.archive.org/web/20101118004330/http://www.rgoarchitects.com/nblog/2007/08/28/AD2007BuildingDSLsInStaticAndDynamicLanguagesNealFord.aspx |
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
http://dave.cheney.net/2012/01/18/why-go-gets-exceptions-right |
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
http://stackoverflow.com/a/16293580/43408 | |
https://stackoverflow.com/questions/3958350/removing-duplicate-rows-in-notepad | |
Since Notepad++ Version 6 you can use this regex in the search and replace dialogue: | |
^(.*?)$\s+?^(?=.*^\1$) | |
and replace with *nothing*. This leaves from all duplicate rows the last occurrence in the file. | |
- ^ - matches the start of the line. |
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
L10n - Localization resources | |
ICU - International Components for Unicode | |
http://site.icu-project.org/ | |
CLDR - Unicode Common Locale Data Repository | |
http://cldr.unicode.org/ | |
http://l10ns.org/ | |
https://www.youtube.com/watch?v=4ZXagCR9urg |
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
Email accessibility compliance | |
http://www.interactiveaccessibility.com/services/wcag-20-compliance | |
http://www.headstar.com/ten/ | |
http://www.email-standards.org/ |
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
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title>interactive xpath tester</title> | |
<!-- From http://ponderer.org/download/xpath/ by ([email protected]) on 2017-03-28 --> | |
<!-- license unknown --> | |
<style> | |
body { | |
background-color: #eee; | |
} | |
#in { |
OlderNewer