Skip to content

Instantly share code, notes, and snippets.

View denzuko's full-sized avatar
💬
twitter.com/denzuko

Dwight Spencer (denzuko@mastodon.social) denzuko

💬
twitter.com/denzuko
View GitHub Profile

Privacy Policy

Last revised on [DATE]

The Gist

[COMPANY] will collect certain non-personally identify information about you as you use our sites. We may use this data to better understand our users. We can also publish this data, but the data will be about a large group of users, not individuals.

We will also ask you to provide personal information, but you'll always be able to opt out. If you give us personal information, we won't do anything evil with it.

Terms of Service

Last revised on [DATE]

The Gist

[COMPANY] operates the [SERVICE] service, which we hope you use. If you use it, please use it responsibly. If you don't, we'll have to terminate your account.

For paid accounts, you'll be charged on a monthly basis. You can cancel anytime, but there are no refunds.

I <a rel="me" href="http://denzuko.co.cc">blog</a>, <a rel="me" href="http://twitter.com/denzuko">tweet</a>, and <a rel="me" href="http://github.com/denzuko">code</a> geeky things. All the while working at <a href="http://computekindustries.co.cc" rel="work">CompuTEK Industries</a> building great web apps and prototyping cool tech toys.
@denzuko
denzuko / webapp.rb
Created February 10, 2011 12:19 — forked from igrigorik/webapp.rb
require 'rubygems'
require 'rack'
class Object
def webapp
class << self
define_method :call do |env|
func, *attrs = env['PATH_INFO'].split('/').reject(&:empty?)
[200, {}, send(func, *attrs)]
end
require 'rubygems'
require 'rack'
require 'uri'
require 'json'
class Object
def webapp
class << self
define_method :call do |env|
func, *attrs = env['PATH_INFO'].split('/').reject(&:empty?).collect! { |item| URI.unescape(item)}
@denzuko
denzuko / denzuko-blog-tumblr.liquid
Created May 9, 2011 18:59
Tumblr Theme for Denzuko.co.cc
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:og="http://opengraphprotocol.org/schema/"
xmlns:fb="http://www.facebook.com/2008/fbml"
xml:lang="en" dir="ltr" lang="en">
<head profile="http://purl.org/uF/hCard/1.0/ http://purl.org/uF/hAtom/0.1/ http://gmpg.org/xfn/11 http://purl.org/uF/pattern-data-class/1">
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="content-language" content="en" />
@denzuko
denzuko / LICENSE
Created May 10, 2011 22:52 — forked from hugs/LICENSE
The Node.js "Hello World" web server ported to CoffeeScript
I, Jason Huggins, the author of the work "CoffeeScript Web Server" (2010), irrevocably renounce
all current and future legal rights to the work in any medium whatsoever.
I stand behind the merit of the work, but disclaim all liability for it under law.
I encourage you, the audience, to share, copy, distribute, perform, remix, mash up, interpret,
excerpt, translate, and otherwise enjoy and use the work as you will.
I request that you acknowledge my authorship.
@denzuko
denzuko / denzuko-sdf.pgpkey
Created May 15, 2011 13:37
PGP public Key
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.9 (NetBSD)
mQGiBEyJWlARBACteqatbbB/1iCrAxbV5Qogg/gPDJfPfIzNHs7CqqsCa9l8MKAz
uwXAURMga2JKPdUNg4zPT4cYwb1jlzX3OLlxMpZ9+dVBDpqIo3heFhvaPIF+26WM
7Wq8VQRstK9oYfV0Hf9Y33di6RL59stJXhDeBELHe18yOhJn8xJnIyYa2wCgwefL
Q73wvzSpn71D2xjn1iXpVQsD/3vN+yrVSoplcfDqrpZJ9A/ecJQOFOhpKjp0Bo+K
dPmdRuVuOG/1cPGvwsbgijQAajCZNobHRKdd+BorTRKx6P0/m4MAcCKdrWhLvMWT
mV1Xy5pZUtXfWXF34M3Aq5iy0h9Iiw+40e/pMJNGIEE+YSb9AdvGiuD830zxAVmJ
sWz9A/4md+ll9AA6fQs1iCB3hSEpmYPVTmk+PQDWqly0kNVuqvL7q5JeoSZzlGpx
body { color: white; }
h1 { font-size: 14px }
@denzuko
denzuko / denzuko.co.cc-screen.cc
Created June 22, 2011 22:27
The default screen css fro denzuko.co.cc tumblr theme
body {
margin: 0px;
padding: 0px;
background: {color:Background} url({image:Background}) top left fixed repeat;
font-family: {font:Body};
font-size: 0.9em;
}
a { color:#069; }