Skip to content

Instantly share code, notes, and snippets.

View VadimBrodsky's full-sized avatar

Vadim Brodsky VadimBrodsky

View GitHub Profile
;; -*- 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) {
@VadimBrodsky
VadimBrodsky / git-tricks.md
Created October 20, 2015 23:33
git tricks

Ignoring files from local work folder, without altering the .gitignore.

git update-index --assume-unchanged <file1> <file2> <file3>
@VadimBrodsky
VadimBrodsky / sudoku.rb
Last active October 15, 2015 00:48
Sudoku solver
require 'pry'
#
# +---+---+---+
# | | | |
# | 3 | 5 | 4 |
# | | | |
# +---+---+---+
#
@VadimBrodsky
VadimBrodsky / jsbooks.md
Last active December 8, 2015 04:11
JavaScript Books

Tracking Event on File Download in Google Analytics

function trackDownload(link) {
  var fileName = link.getAttribute('href');
  fileName  = fileName.split('/').pop();
  
  // Track event in GA
  _gaq.push(['_trackEvent', 'Download', 'Resources Download', fileName]);
}
@VadimBrodsky
VadimBrodsky / db-connect-test.php
Last active August 29, 2015 14:27 — forked from chales/db-connect-test.php
Script for a quick PHP MySQL DB connection test.
<?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 {