- Itty Bitty Labs — creators of Reveal
- NSHipster — highlighting different, sometimes obscure, parts of Cocoa, Cocoa Touch, Foundation, and more
- objc.io — A monthly-ish periodical of Objective-C / Cocoa / Cocoa Touch development; one of the best
- Peter Steinberger — he's a young curmudgeon, a grudgeful iOS developer; an excellent counterpoint to all the iOS/OS X love letters, with decent common sense
- Use Your Loaf — quasi-frequent (every other week, now?) iOS development tips
- iOS Dev Weekly*— a weekly digest of great iOS development articles; I get these via email
- Ray Wenderlich — mostly tutorials, but many of them catch my eye as they pop up in my RSS feed
- Ole Begemann — more general Apple developer culture and things
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
| " Vim color file - benlight | |
| " Generated by http://bytefluent.com/vivify 2013-10-07 | |
| set background=dark | |
| if version > 580 | |
| hi clear | |
| if exists("syntax_on") | |
| syntax reset | |
| endif | |
| endif |
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
| #!/usr/bin/env ruby | |
| # | |
| # gem install nokogiri OR gem install hpricot | |
| # gem install mail diffy premailer | |
| # webcheck URL EMAIL | |
| # | |
| require 'open-uri' | |
| require 'mail' |
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
| (function () { | |
| if (!window.fluid) { | |
| alert("This script is meant to be run in Fluid! You should disable it."); | |
| return; | |
| } | |
| window.fluid.dockBadge = ''; | |
| setInterval(newNotif, 500); |
These two classes are designed to work together to provide access to a common Core Data store, along with the contexts that go with it. The main NSManagedObjectContext is designed to be accessed on the main thread only. Safe background operations happen in a background NSOperationQueue to ensure that multiple reads and writes don't step on each others' toes.
It could use a tad of cleanup, but it's served me well for a few apps.
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
| #!/usr/bin/env ruby | |
| require 'fileutils' | |
| require 'pp' | |
| directory = File.expand_path ARGV[0] | |
| args = ARGV[1,ARGV.length-1].join(' ') | |
| class Track | |
| attr_accessor :source, :destination, :base_dir |
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
| <?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>comment</key> | |
| <string> | |
| TODO: unresolved issues | |
| text: | |
| "p << end |
Even though I star these on GitHub, it's so easy to lose track of 'em, so I'm compiling a list here.
The CocoaPods team is looking into what it'll take to get Swift code to work more cleanly with iOS 8 and Xcode 6.
I hereby claim:
- I am kreeger on github.
- I am kreeger (https://keybase.io/kreeger) on keybase.
- I have a public key whose fingerprint is B22D 3423 BD76 F174 5E42 E7DE 489E A7C5 BF21 1B40
To claim this, I am signing this object:
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
| Disable-UAC | |
| Disable-InternetExplorerESC | |
| Enable-MicrosoftUpdate | |
| Install-WindowsUpdate | |
| Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart -EnableShowStartOnActiveScreen -EnableShowAppsViewOnStartScreen -EnableSearchEverywhereInAppsView -EnableListDesktopAppsFirst | |
| Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
| cinst chocolatey | |
| cinst git |