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
/gems/maruku-0.6.1/lib/maruku/string_utils.rb:71:in `normalize_key_and_value': undefined method `strip' for nil:NilClass (NoMethodError) |
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
/* Tricky stuff */ | |
.range{ height: 30px; position: relative; width: 50px;} | |
.range input[type=range] { | |
-webkit-appearance: none; | |
outline: none; | |
width: 100%; | |
} | |
.range input[type=range]::-webkit-slider-thumb { |
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> | |
<head> | |
<meta charset="utf-8"> | |
<title>Monokai Extended Colors</title> | |
<style type="text/css"> | |
body{ font-family: monospace; font-size: 12px; line-height: 20px; min-width: 480px;} | |
span,strong,em{ display: inline-block; vertical-align: top;} | |
span{ text-align: right; width: 240px;} | |
strong{ height: 20px; width: 20px;} |
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 ruby | |
# | |
# Ruby script to download a number of files | |
# from individual URLs via HTTP/HTTPS/FTP | |
# specified in an external file. | |
# | |
# Author: Tobias Preuss | |
# Revision: 2013-04-18 16:26 +0100 UTC | |
# License: Creative Commons Attribution-ShareAlike 3.0 Unported |
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
jQuery(document).ready(function ($) { | |
;(function() { | |
function Centerify(elem, options) { | |
var self = this; | |
self.$elem = $(elem); | |
self.$sections = self.$elem.children('section'); | |
self.isAnimating = false; | |
self.bodyAndHeadEl = $('body'); |
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 ruby | |
# https://www.reddit.com/r/movies/comments/1ebi5y/decent_who_done_it_films/ | |
require 'json' | |
require 'open-uri' | |
@films=[] | |
def get_film(id) | |
json = JSON.parse(open('http://www.omdbapi.com/?i='+id).read()) |
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
.breaking-news.tickets { | |
background: #00c596; | |
background: linear-gradient(to right,#00c596 0,#009dcd 100%); | |
} |
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
/* Blocks */ | |
html, | |
body, | |
p, | |
ol, | |
ul, | |
li, | |
dl, | |
dt, | |
dd, |
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
.atvImg { | |
border-radius: 5px; | |
transform-style: preserve-3d; | |
-webkit-tap-highlight-color: rgba(#000,0); | |
} | |
.atvImg img { | |
border-radius: 5px; | |
box-shadow: 0 2px 8px rgba(14,21,47,0.25); | |
} |
OlderNewer