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 | |
require 'redcarpet' | |
class HTMLWithPants < Redcarpet::Render::HTML | |
include Redcarpet::Render::SmartyPants | |
end | |
markdown = Redcarpet::Markdown.new(HTMLWithPants, fenced_code_blocks: true) | |
puts markdown.render STDIN.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
using UnityEngine; | |
using Unity.Mathematics; | |
public class Noise : MonoBehaviour { | |
public int width; | |
public int height; | |
public float scaleX; | |
public float scaleY; | |
public float offsetX; |
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
#!/bin/bash | |
multiline() { | |
read -r -d '' "$@" | |
} | |
multiline text << 'END' | |
Hello, world! | |
Multiline docstrings seems to work today... |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
import json | |
import requests | |
API_TOKEN = 'XXX' | |
CAMPAIGN_ID = 'XXX' | |
def get_page(url, headers): | |
result = requests.get(url, headers=headers) |
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
raw.githack.com is working! |
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
local m = {} | |
m.mods = {} | |
function m.mtime(filepath) | |
local info = love.filesystem.getInfo(filepath) | |
return info and info.modtime | |
end |
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
'use strict'; | |
var GoL = function () { | |
function touch(ctx, x, y, alive) { | |
ctx[alive ? 'fillRect' : 'clearRect'](x * 11, y * 11, 10, 10); | |
return alive; | |
} | |
function renderDiff(ctx, diff) { | |
for (var d of diff) touch(ctx, d[0], d[1], d[2]); |
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
module SCSSLint | |
# Reports lints in an JUnit (XML) format. | |
class Reporter::JUnitReporter < Reporter | |
def report_lints | |
output = "<?xml version=\"1.0\"?>\n" | |
output << "<testsuite name=\"SCSS\" tests=\"#{lints.count}\" failures=\"#{lints.count}\">\n" | |
lints.group_by(&:filename).each do |filename, file_lints| | |
output << "<testcase name=#{filename.encode(xml: :attr)} failures=\"#{file_lints.count}\">\n" |
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
// code from https://github.com/neoascetic/compless | |
// >> .prefix(box-shadow, 5px); | |
// -webkit-box-shadow: 5px; | |
// -moz-box-shadow: 5px; | |
// -ms-box-shadow: 5px; | |
// -o-box-shadow: 5px; | |
// box-shadow: 5px; | |
// | |
// >> .prefix(box-shadow, 5px, webkit ms); |
NewerOlder