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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>untitled</title> | |
<link rel="stylesheet" href="style.css" /> | |
</head> | |
<body> | |
<script type="text/javascript" src=""></script> |
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
#!/bin/sh | |
# A pre-commit hook for git to lint JavaScript files with jshint | |
# @see https://github.com/jshint/jshint/ | |
if git rev-parse --verify HEAD >/dev/null 2>&1 | |
then | |
against=HEAD | |
else | |
# Initial commit: diff against an empty tree object | |
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 |
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
{ | |
// Enforcing | |
"bitwise": true, | |
"camelcase": true, | |
"eqeqeq": true, | |
"forin": true, | |
"immed": true, | |
"indent": 4, | |
"latedef": true, | |
"newcap": true, |
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
#!/bin/bash | |
# --- Command line | |
refname="$1" | |
oldrev="$2" | |
newrev="$3" | |
branch=${refname#refs/heads/} | |
# Make a temp directory for writing the .jshintrc file | |
TMP_DIR=`mktemp -d` |
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
# Install with | |
# brew install -HEAD https://gist.github.com/guillaume-algis/5743554/raw | |
require 'formula' | |
class Fswatch < Formula | |
homepage 'https://github.com/alandipert/fswatch' | |
head 'https://github.com/alandipert/fswatch.git', :tag => 'r0.0.1' | |
version '0.0.1' |
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
#!/usr/bin/env python2 | |
# -*- coding: utf-8 -*- | |
from __future__ import (unicode_literals, absolute_import, | |
division, print_function) | |
def main(): | |
pass |
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
+ (instancetype)sharedInstance | |
{ | |
static id sharedObject = nil; | |
static dispatch_once_t onceToken; | |
dispatch_once(&onceToken, ^{ | |
sharedObject = [[self alloc] init]; | |
}); | |
return sharedObject; | |
} |
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
Pod::Spec.new do |spec| | |
spec.name = "NSAttributedStringMarkdownParser" | |
spec.version = "0.0.1" | |
spec.summary = "A Markdown NSAttributedString parser." | |
spec.description = "This is a Markdown => NSAttributedString parser built on top of a flex parser. It takes an NSString and returns an NSAttributedString with markdown tags replaced by CoreText formatting attributes." | |
spec.homepage = "https://github.com/jverkoey/NSAttributedStringMarkdownParser" | |
spec.license = "Apache License, Version 2.0" | |
spec.authors = { | |
"Jeff Verkoeyen" => "[email protected]" | |
} |
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
{ | |
"name": "IQKeyboardManager", | |
"version": "3.2.0", | |
"summary": "Keyboard TextField Manager", | |
"homepage": "https://github.com/hackiftekhar/IQKeyboardManager", | |
"screenshots": "https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/KeyboardTextFieldDemo/Screenshot/IQKeyboardManagerScreenshot.png", | |
"license": "MIT", | |
"authors": { | |
"Iftekhar Qurashi": "[email protected]" | |
}, |
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
Process: Xcode [75072] | |
Path: /Applications/Xcode.app/Contents/MacOS/Xcode | |
Identifier: com.apple.dt.Xcode | |
Version: 6.4 (7720) | |
Build Info: IDEFrameworks-7720000000000000~8 | |
App Item ID: 497799835 | |
App External ID: 812725084 | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: Xcode [75072] |
OlderNewer