Skip to content

Instantly share code, notes, and snippets.

View tomerd's full-sized avatar
🏴‍☠️

tomer doron tomerd

🏴‍☠️
View GitHub Profile
@tomerd
tomerd / gist:4179337
Created November 30, 2012 23:05
init.d script to control resque + resque-scheduler with rvm and bundler
#!/bin/sh
#
# chkconfig: - 85 15
# Source function library.
. /etc/rc.d/init.d/functions
ROOT="app_path"
USER="user"
ENVIRONMENT="development"
@tomerd
tomerd / LessSimpleHtmlSanitizer.java
Created December 19, 2011 23:43
a less simple HtmlSanitizer
public final class LessSimpleHtmlSanitizer implements HtmlSanitizer
{
private static final String[] SIMPLE_TAGS = {"b", "em", "i", "h1", "h2", "h3", "h4", "h5", "h6", "hr", "br", "ul", "ol", "li", "img"};
private static final String[] CONTAINER_TAGS = {"html", "body", "table", "tbody", "tfoot", "th", "tr", "td", "p", "div", "span", "pre"};
public SafeHtml sanitize(String html)
{
return sanitizeHtml(html);
}
@tomerd
tomerd / gauge.js
Last active August 6, 2022 11:53
google style gauges using javascript d3.js
function Gauge(placeholderName, configuration)
{
this.placeholderName = placeholderName;
var self = this; // for internal d3 functions
this.configure = function(configuration)
{
this.config = configuration;