I hereby claim:
- I am m9dfukc on github.
- I am m9dfukc (https://keybase.io/m9dfukc) on keybase.
- I have a public key ASBegh8Okru67VHtwTWQoMOdbw5wUSH4W0ZuXGParJcpAQo
To claim this, I am signing this object:
Screensaver | |
interrupt -> User | |
Init* | |
next -> Intro | |
Intro | |
next -> TranslationA | |
TranslationA |
license: mit |
I hereby claim:
To claim this, I am signing this object:
#include "ofMain.h" | |
#include "ofApp.h" | |
//======================================================================== | |
int main( ){ | |
ofGLFWWindowSettings settings; | |
settings.width = 1024; | |
settings.height = 480; |
#include "ofApp.h" | |
using namespace ofxCv; | |
using namespace cv; | |
void Glow::setup(const cv::Rect& track) { | |
color.setHsb(ofRandom(0, 255), 255, 255); | |
cur = toOf(track).getCenter(); | |
smooth = cur; | |
} |
This assumes you are now connected to the server via SSH.
sudo -s
Enter root mode for admin accessgroupadd devgroup
Create new group to be later granted access to /var/www/htmluseradd -G root,devgroup masterdev
Create new root user. Also add to the devgrouppasswd masterdev
Change password for the new root user/* | |
* skrollr svg patch | |
* @m9dfukc | |
* Free to use under terms of MIT license | |
* | |
* Add this file after your skrollr.js script. | |
* Example usage: | |
* <div data-0="svg-transform: translate(0 0);" data-1000="svg-transform: translate(200 0);">...</div> | |
*/ | |
(function(document, skrollr) { |
{:user {:dependencies [[org.clojure/tools.namespace "0.2.3"] | |
[spyscope "0.1.3"] | |
[criterium "0.4.1"]] | |
:injections [(require '(clojure.tools.namespace repl find)) | |
; try/catch to workaround an issue where `lein repl` outside a project dir | |
; will not load reader literal definitions correctly: | |
(try (require 'spyscope.core) | |
(catch RuntimeException e))] | |
:plugins [;[lein-marginalia "0.8.0-SNAPSHOT"] | |
[lein-pprint "1.1.2-SNAPSHOT"] |
/* | |
* Based on: http://www.quirksmode.org/js/cookies.html | |
* and https://github.com/wojodesign/local-storage-js/blob/master/storage.js | |
* and https://gist.github.com/350433 | |
* License: http://www.opensource.org/licenses/MIT | |
*/ | |
(function(window) { | |
'use strict'; | |
window.sessionStorage = window.sessionStorage || { |
### | |
Module dependencies. | |
### | |
express = require 'express' | |
http = require 'http' | |
app = module.exports = express() | |
server = http.createServer app | |
### | |
Modules paths |