Forked from Chris Coyier's Pen Colored Countdown.
A Pen by Captain Anonymous on CodePen.
/*`de x&* ``^~x&* *``^~x&*`` *``^~x&* *``^~x&*`` *``^~x&*`` *``^*``^~x~x&*``~ `*xc | |
`` ` | |
` _____ ______ _________________________________ _____ ______ _______ (R) ` | |
` | ||_____] | |______| | | | || \|______ ` | |
` |_____||_____]__| |______|_____ | |_____ |_____||_____/|______ ` | |
` `^*+**: Disruptiveware, LLP. ` | |
` ` |
Forked from Chris Coyier's Pen Colored Countdown.
A Pen by Captain Anonymous on CodePen.
Forked from Chris Coyier's Pen Colored Countdown.
A Pen by Captain Anonymous on CodePen.
// this shows a client implementation for HTTP & HMAC hashing using AES256bit encryption | |
// it also shows date functions and other things that might be useful as I start to move all my gateway code to compiled go-lang interfaces | |
// copied from: https://github.com/tav/dynamodb/blob/master/dynamodb.go#L436 | |
// looking forward towards implementing this kind of code for ubernetes and beanstalk containers | |
func (c *Client) RawRequest(method string, payload []byte) ([]byte, error) { | |
req, err := http.NewRequest("POST", c.endpoint.url, bytes.NewReader(payload)) | |
if err != nil { | |
return nil, err |
#!/usr/bin/env bash | |
# Utility to change the connection method for a git repo. | |
# === Colour Definitions === | |
red='\e[0;31m' | |
green='\e[0;32m' | |
purple='\e[0;35m' | |
orange='\e[0;33m' | |
# No Color, i.e. turn off color |
<?php | |
/* | |
Creator: Lynsei | |
On: 11. December 2015 */ | |
/* | |
The following code is just a reminder of why I'm using Closures to develop the object model |
<?php | |
/*+--------------------[objectcode: 12/20/2015 1:32:39 PM] [/end.automation]+--------------------+*/ | |
/* | |
_____ ______ _________________________________ _____ ______ _______ (R) | |
| ||_____] | |______| | | | || \|______ | |
|_____||_____]__| |______|_____ | |_____ |_____||_____/|______ | |
`*+**: Disruptiveware, LLP. Authorized Sales USA/Canada | |
Creator: Lynsei Asynynivynya |
<?php | |
/* | |
_____ ______ _________________________________ _____ ______ _______ (R) | |
| ||_____] | |______| | | | || \|______ | |
|_____||_____]__| |______|_____ | |_____ |_____||_____/|______ | |
/**** | |
* @desc: sift and filter through data like a mothafuka | |
* @vers: reliable v3.3 this is ported from old old code that is quite stable |
source "https://rubygems.org" | |
gem 'eventmachine' | |
gem 'rubysl-stringio' | |
gem 'sinatra' | |
gem 'yajl-ruby', require: 'yajl' | |
gem 'thin' | |
gem 'em-websocket', :git=>'https://github.com/igrigorik/em-websocket.git' |
# Author: Pieter Noordhuis | |
# Description: Simple demo to showcase Redis PubSub with EventMachine | |
# | |
# Update 7 Oct 2010: | |
# - This example does *not* appear to work with Chrome >=6.0. Apparently, | |
# the WebSocket protocol implementation in the cramp gem does not work | |
# well with Chrome's (newer) WebSocket implementation. | |
# | |
# Requirements: | |
# - rubygems: eventmachine, thin, cramp, sinatra, yajl-ruby |