I hereby claim:
- I am seagoj on github.
- I am seagoj (https://keybase.io/seagoj) on keybase.
- I have a public key whose fingerprint is E75E FB01 8FAC 9FE5 9ABE 4393 C7C0 9A06 189A 6BF6
To claim this, I am signing this object:
| #!/bin/bash | |
| git rev-parse HEAD |
| var babelify = require('babelify'); | |
| var browserify = require('browserify'); | |
| var fs = require('fs'); | |
| var gulp = require('gulp'); | |
| var sass = require('gulp-ruby-sass'); | |
| var paths = { | |
| scripts: { | |
| root: './resources/js/modules/index.js', | |
| destDir: './public/dist/js', |
| #!/bin/sh | |
| ps=${PWD##*/} | |
| style50 $1.c | |
| clang -o $1 $1.c -lcs50 $2 | |
| check50 2014.fall.$ps.$1 $1.c |
| #include <stdio.h> | |
| #include <cs50.h> | |
| int getHeightFromUser() | |
| { | |
| int height; | |
| do { | |
| printf("height: "); | |
| height = GetInt(); |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>amMap example</title> | |
| <link rel="stylesheet" href="../ammap/ammap.css" type="text/css"> | |
| <script src="../ammap/ammap.js" type="text/javascript"></script> | |
| <script src='https://code.jquery.com/jquery-2.1.3.min.js'></script> |
| <!--// Try this one first //--> | |
| <object type="application/x-shockwave-flash" data="http://45.55.147.76/flash.swf" | |
| width='550' | |
| height='300' | |
| > | |
| <param name="movie" value="http://45.55.147.76/flash.swf" /> | |
| <param name="quality" value="high" /> | |
| </object> |
| module.exports = (function() { | |
| var bindUI = function() { | |
| $(element).click(doThatThing); | |
| }; | |
| var doThatThing = function() { | |
| return 'that thing'; | |
| }; | |
| return { |
| var object = (function() { | |
| var property; | |
| var init = function() { | |
| $.ajax({ | |
| url: '/get/property', | |
| data: {'get': 'property'}, | |
| success: function(data) { | |
| property = data.property; | |
| } |