View machine.js
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
View postcss-function-sass-color-mod
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
// reproduce sass darken/lighten/fade function syntax on top of | |
// postcss-color-function (https://github.com/postcss/postcss-color-function) via | |
// postcss-functions https://github.com/andyjansson/postcss-functions | |
// https://github.com/jonathantneal/precss/issues/38 | |
// postcss-sass-colors.js | |
const colorFn = require('css-color-function') | |
function applyFn(value, fn, frac) { | |
return colorFn.convert('color(' + value + ' ' + fn + '(' + frac + '))') |
View Dockerfile
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 an official Python runtime as a parent image | |
FROM python:2.7-slim | |
# Set the working directory to /app | |
WORKDIR /app | |
# Copy the current directory contents into the container at /app | |
COPY . /app | |
# Install any needed packages specified in requirements.txt |
View gist:4064dc457a80ced1ab29
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
var express = require("express"); | |
var app = express(); | |
var TOO_MANY = 8000; | |
function handler(req, res) { | |
res.send("handler"); | |
} | |
// test higher routes, eventually you will get |
View gist:3777562
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
/** | |
* @typedef {Object} | |
*/ | |
var vendor = Vendor = {}; | |
///** | |
// * @constructor | |
// */ | |
//Vendor.VendorType = function() {}; |
View gist:3764001
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
/** | |
* Copyright 2012 Incandescent Software LLC | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
View gist:3626285
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
# config/initializers/comfortable_mexican_sofa.rb | |
require 'cms_renderer' | |
# lib/cms_renderer.rb | |
require 'action_view/renderer/renderer' | |
require 'action_view/renderer/template_renderer' | |
class CMSRenderer < ActionView::TemplateRenderer |
View spec_helper.rb
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
require 'ruby-prof' | |
require 'benchmark' | |
module BenchmarkHelpers | |
PROFILE_OUTPUT_DIR = "profiling" | |
def self.safe_filename(name) | |
name.gsub(" ", "_") | |
end | |
def self.example_output_target_file!(example) |
View replace.go
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
package main | |
import ( | |
"regexp" | |
"os" | |
"io/ioutil" | |
) | |
func main() { | |
regexp, _ := regexp.Compile(os.Args[1]) |
View restorecon.rb
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
libraries/restorecon.rb | |
def restorecon_cmd(path) | |
%Q(restorecon "#{path}") | |
end | |
# restores selinux label for path | |
def restorecon(path) | |
execute restorecon_cmd(path) do | |
action :nothing |
NewerOlder