Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
[user] | |
name = Joe User | |
email = [email protected] | |
[branch] | |
autosetupmerge = true | |
[branch "master"] | |
remote = origin | |
merge = refs/heads/master |
#!/usr/bin/ruby | |
# Markdown to Evernote, RubyCocoa edition | |
# by Brian Gernhardt | |
# Adapted from Martin Kopichke's "Markdown to Evernote" service | |
# https://gist.github.com/kopischke/1009149 | |
# Which was adapted from Brett Terpstra’s original | |
# http://brettterpstra.com/a-better-os-x-system-service-for-evernote-notes-with-multimarkdown/ |
/* Better styles for embedding GitHub Gists */ | |
.gist{font-size:13px;line-height:18px;margin-bottom:20px;width:100%} | |
.gist pre{font-family:Menlo,Monaco,'Bitstream Vera Sans Mono','Courier New',monospace !important} | |
.gist-meta{font-family:Helvetica,Arial,sans-serif;font-size:13px !important} | |
.gist-meta a{color:#26a !important;text-decoration:none} | |
.gist-meta a:hover{color:#0e4071 !important} |
#!/usr/bin/ruby | |
# Markdown to Evernote, RubyCocoa edition | |
# by Brian Gernhardt | |
# Adapted from Martin Kopichke's "Markdown to Evernote" service | |
# https://gist.github.com/kopischke/1009149 | |
# Which was adapted from Brett Terpstra’s original | |
# http://brettterpstra.com/a-better-os-x-system-service-for-evernote-notes-with-multimarkdown/ |
######################### | |
# .gitignore file for Xcode4 / OS X Source projects | |
# | |
# Version 2.0 | |
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
# | |
# 2013 updates: | |
# - fixed the broken "save personal Schemes" | |
# | |
# NB: if you are storing "built" products, this WILL NOT WORK, |
// | |
// iOS_API+Blocks.h | |
// | |
// Created by Bobby Schultz on 12/1/11. | |
@interface UIAlertView (PBBlocks) | |
+ (id) alertWithTitle:(NSString*)title | |
message:(NSString*)message | |
clickedBlock:(void(^)(NSInteger))buttonIndexClickedBlock |
// http://cocoawithlove.com/2009/10/ugly-side-of-blocks-explicit.html has a nice breakdown of the syntax--it helps to think of the ^ as similar to a pointer dereference symbol * | |
// block typedef: | |
typedef void(^Block)(); | |
typedef void(^ConditionalBlock)(BOOL); | |
typedef NSString*(^BlockThatReturnsString)(); | |
typedef NSString*(^ConditionalBlockThatReturnsString)(BOOL); | |
// block property with typedef: |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>DVTConsoleDebuggerInputTextColor</key> | |
<string>1 1 1 1</string> | |
<key>DVTConsoleDebuggerInputTextFont</key> | |
<string>Monaco - 12.0</string> | |
<key>DVTConsoleDebuggerOutputTextColor</key> | |
<string>1 1 1 1</string> |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>DVTConsoleDebuggerInputTextColor</key> | |
<string>1 1 1 1</string> | |
<key>DVTConsoleDebuggerInputTextFont</key> | |
<string>Monaco - 12.0</string> | |
<key>DVTConsoleDebuggerOutputTextColor</key> | |
<string>1 1 1 1</string> |