- 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 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
List just aliases | |
$ git config --get-regexp alias | |
List all config parameters | |
$ git config --list |
This file contains 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
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using Flurl; | |
namespace ConsoleApp1 | |
{ | |
public class Launcher | |
{ | |
public Launcher() |
This file contains 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
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
namespace ConsoleApp1 | |
{ | |
public class DictionaryConverter : JsonConverter | |
{ | |
private IEqualityComparer<string> _comparer = StringComparer.OrdinalIgnoreCase; | |
private readonly bool _considerEverythingAsString; |
See also: https://github.com/vbauer/java-blogs
- Androcid http://www.androcid.com
- Androidized http://www.androidized.com
- Androinica http://androinica.com
This file contains 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
// | |
// Regular Expression for URL validation | |
// | |
// Author: Diego Perini | |
// Updated: 2010/12/05 | |
// License: MIT | |
// | |
// Copyright (c) 2010-2013 Diego Perini (http://www.iport.it) | |
// | |
// Permission is hereby granted, free of charge, to any person |