Ignoring files from local work folder, without altering the .gitignore
.
git update-index --assume-unchanged <file1> <file2> <file3>
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
// Bonfire: Find the Longest Word in a String | |
// Author: @vadimbrodsky | |
// Challenge: http://www.freecodecamp.com/challenges/bonfire-find-the-longest-word-in-a-string | |
// Learn to Code at Free Code Camp (www.freecodecamp.com) | |
function findLongestWord(str) { | |
return str.toLowerCase().split(' ').sort(function(a, b) { | |
if (a.length < b.length) { | |
return 1; | |
} else if (a.length > b.length) { |
Ignoring files from local work folder, without altering the .gitignore
.
git update-index --assume-unchanged <file1> <file2> <file3>
require 'pry' | |
# | |
# +---+---+---+ | |
# | | | | | |
# | 3 | 5 | 4 | | |
# | | | | | |
# +---+---+---+ | |
# |
JavaScript Books
High Performance JavaScript - zakas
JavaScript Patterns
<?php | |
# Fill our vars and run on cli | |
# $ php -f db-connect-test.php | |
$dbname = 'name'; | |
$dbuser = 'user'; | |
$dbpass = 'pass'; | |
$dbhost = 'host'; | |
$connect = mysql_connect($dbhost, $dbuser, $dbpass) or die("Unable to Connect to '$dbhost'"); |
@mixin clearfix-micro() { | |
& { | |
*zoom: 1; | |
} | |
&:before, | |
&:after { | |
content: ""; | |
display: table; | |
} | |
&:after { |