Skip to content

Instantly share code, notes, and snippets.

@dobsondev
dobsondev / .bash_profile
Last active July 23, 2019 14:42
My personal .bash_profile file on my Mac. It styles my bash prompt in a way I like and also adds some useful alias.
# ~/.bash_profile
[[ -s ~/.bashrc ]] && source ~/.bashrc
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
alias subl='/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl'
alias ls='ls -GFh'
alias ll='ls -l'
@frr149
frr149 / frr.xcolortheme
Created July 4, 2013 12:07
Tema de Xcode usado en el Curso Online de Desarrollo iOS de Agbo
<?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>Colors</key>
<dict>
<key>Background</key>
<string>0.168627 0.168627 0.207843</string>
<key>InsertionPoint</key>
<string>0.994444 0.988889 1</string>
@kgdesouz
kgdesouz / gist:5542543
Last active December 17, 2015 03:19
A quick a dirty JSON example using Objective C (requires clean up and refactoring of the code into better methods). This code goes to one of my VPS's that has Tiny Tiny RSS running. The example shows you how to log into the system, then extract the categories necessary. Code that has been mashed together from : iOS6 Cookbook and http://www.raywe…
//
// ViewController.m
// JSONExample
//
// Created by Kenny on 2013-05-08.
// Copyright (c) 2013 tkee.org. All rights reserved.
//
#import "ViewController.h"