This is a page I made for experimenting with different color schemes for a client logo I made. It provides a sample favicon in the upper-left-hand corner, by employing an SVG use element at 16x16.
This is a page I made for experimenting with different color schemes for a client logo I made. It provides a sample favicon in the upper-left-hand corner, by employing an SVG use element at 16x16.
This file contains hidden or 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 mongodb = require("mongodb") | |
| var env = require("jsdom").env | |
| var url = require('url') | |
| var queue = require("queue-async") | |
| function onSuccess(cb){ | |
| return function(err) { | |
| if (err) { | |
| console.error(err) | |
| } else { |
This file contains hidden or 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
| <script> | |
| // sample data | |
| var shortSubject = 'hello, world', | |
| shortWin = 'he', | |
| shortFail = 'bye'; | |
| longSubject = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam imperdiet feugiat bibendum. In in mi odio. Donec sed urna massa, sed fermentum risus. Proin non erat orci. Ut at mauris eget diam mollis tristique. Praesent ornare, dolor ut consectetur tempor, diam dolor luctus metus, eget pharetra mauris nulla id mauris. Phasellus id arcu ut ipsum pretium vulputate sit amet nec metus. Ut lacinia ante dignissim mauris vehicula id placerat diam ornare. Quisque ut eros eget lectus suscipit blandit quis nec ligula. Nulla hendrerit pulvinar leo, sit amet dictum mauris fermentum et. Curabitur vitae consequat purus. Phasellus odio orci, viverra a interdum sit amet, placerat sit amet augue. Vestibulum justo orci, feugiat vitae imperdiet non, molestie ac ante. Praesent in enim est, eget placerat tellus. Suspendisse augue nibh, placerat non pellentesque id, pellentesque sit amet nibh. Mauri |
This file contains hidden or 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>TF2 Color Kanger</title> | |
| <style> | |
| body {font-family: sans-serif} | |
| textarea {width:100%; height:7em;} | |
| #output {height: 44em;} | |
| </style> |
This file contains hidden or 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 iup = require "iuplua" | |
| local cairo = require "lcairo" | |
| local dlg | |
| local sqx, sqy = 0, 0 | |
| local dragx, dragy | |
| local mx, my = 0, 0 | |
| local sqsize = 50 | |
| local can = iup.canvas{} |
This file contains hidden or 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
| magic | |
| fairy | |
| pixie | |
| pony | |
| glitter | |
| sparkle | |
| pearl | |
| rainbow | |
| unicorn | |
| princess |
This file contains hidden or 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
| ### General List of Reserved Words | |
| ### Stuart P. Bentley <[email protected]>, June 4, 2013 | |
| ## This is a general list of words you may want to consider reserving, | |
| ## in a system where users can pick any name, in a context where the | |
| ## system may use names as well. One prominent example of a system | |
| ## where this is the case would be a site that serves pages for users, | |
| ## at their username, from the site root, like | |
| ## http://twitter.com/stuartpb . In this system, you would want to | |
| ## reserve some routes for pages that would commonly be expected to |