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
<% if paginate && num_pages > 1 %> | |
<div class="pagination"> | |
<% if prev_page %> | |
<%= link_to '<i class="icon-arrow-left"></i> Prev', prev_page, class: 'prev page-numbers' %> | |
<% else %> | |
<span class="disabled"><i class="icon-arrow-left"></i> Prev</span> | |
<% end %> | |
<% for p in 1..num_pages %> | |
<% if p == page_number %> |
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
// Download rollbar.js and rollbar.min.js from: | |
// http://d37gvrvc0wt4s1.cloudfront.net/js/1/rollbar.js | |
// http://d37gvrvc0wt4s1.cloudfront.net/js/1/rollbar.min.js | |
// | |
// Place them into vendor/ and this code into lib/rollbar.js, or something | |
(function(w, d) { | |
w._rollbarParams = { | |
"server.environment": "production", | |
"notifier.snippet_version": "2" |
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
(ns beatstream.songs | |
(:require clojure.java.io) | |
(:import [org.jaudiotagger.audio AudioFileIO] | |
[org.jaudiotagger.tag FieldKey])) | |
(def music-path "/Users/ajk/Music/") | |
(defn get-song-files [directory] | |
(->> directory | |
clojure.java.io/file |
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
fi: | |
viewer: | |
comment_on_twitter: 'Kommentoi Twitterissä' | |
older: 'Vanhemmat' | |
newer: 'Uudemmat' | |
feed: 'Syöte' | |
share: 'Jaa' | |
close: 'Sulje' | |
next_post: 'Seuraava artikkeli' | |
previous_post: 'Edellinen artikkeli' |
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
// Converts pixels to EMs | |
// Usage: em(16) em(16px) em(16, 24) em(16px, 24px) em(16px, 1em) | |
@function strip-units($number) { | |
@return $number / ($number * 0 + 1); | |
} | |
@function em($pixels, $context: 16) { | |
$base: 16; | |
$value: strip-units($pixels); | |
$value_unit: unit($pixels); |
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
#!/bin/bash | |
# | |
# ember - Ember.JS starter kit script | |
# Download this and place it into e.g. /usr/local/bin | |
# | |
# Original: https://github.com/Darep/dotfiles/blob/master/bin/ember | |
# | |
[ -z "$1" ] && echo "No argument supplied" && exit |
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
SSH_USER = 'test' | |
SSH_HOST = 'example.com' | |
SSH_DIR = '/home/test/website/releases' | |
RSYNC = false | |
desc "Run the preview server at http://localhost:4567" | |
task :preview do | |
system("middleman server") | |
end |
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
buildData: function () { | |
var newData, data = api.getSongs(); | |
// Fix paths | |
var transformPath = this.transformPath.bind(this); | |
newData = data.map(function (row) { | |
row.path = transformSongPath(row.path); | |
return row; | |
}); |
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
<!-- source/layouts/layout.html.erb --> | |
<ul class="nav-float products"> | |
<% for cat in data.products.main_categories do %> | |
<li> | |
<h4> | |
<% link_to cat.url do %> | |
<%= cat.name %> | |
<% end %> | |
</h4> | |
<ul> |
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
// Breakpoints for responsive design ($cols are from Frameless Grid) | |
$breakpoint-1: $cols5; | |
$breakpoint-2: $cols7; | |
$breakpoint-3: $cols9; | |
@mixin breakpoint($point) { | |
@if $point == wide { | |
@media (min-width: $breakpoint-3) { @content; } | |
.oldie & { @content; } | |
} |