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
/*! | |
* jQuery JavaScript Library v1.9.1 | |
* http://jquery.com/ | |
* | |
* Includes Sizzle.js | |
* http://sizzlejs.com/ | |
* | |
* Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors | |
* Released under the MIT license | |
* http://jquery.org/license |
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
;;;; | |
;; This is the main config file, It is loaded first, automatically by emacs. | |
;; It firsts downloads and initializes packages, then loads custom user code | |
;; and settings. | |
;;;; | |
;;;;;; | |
;; Initialize el-get | |
;;;;;; |
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
import sbt._ | |
import Keys._ | |
import AndroidKeys._ | |
object General { | |
val settings = Defaults.defaultSettings ++ Seq ( | |
name := "BlahBlah", | |
version := "0.1", | |
versionCode := 0, |
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
STACKTRACE #1: | |
Result of typing: | |
cs" | |
inside of the string: | |
"yodel" | |
which was in a ruby-mode buffer that only contained that string. | |
************ BEGIN STACK TRACE *************** |
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
## Make sure you install nokogiri: 'gem install nokogiri' | |
require 'nokogiri' | |
require 'set' | |
HTML5_TAGS = [ | |
"section", "nav", "article", | |
"aside", "hgroup", "header", | |
"footer", "figure", "figcaption", | |
"data", "time", "mark", | |
"ruby", "rt", "rp", |
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
require 'set' | |
# Union | |
Set[1,2,3] | Set[3,4,5] | |
#=> #{1,2,3,4,5} | |
# Intersection | |
Set[1,2,3] & Set[2,3,4,5] | |
#=> #{2,3} |