Skip to content

Instantly share code, notes, and snippets.

@virtualandy
virtualandy / resumehacks.md
Last active April 3, 2019 17:54
Thoughts on resumes - tips, tricks and links to other good resources

TBD: Will live at https://nomatter.press at some point

In the age of Github, Stack Overflow and several ways to look at someone's education or work history, resumes are still important.

More than once, I've been told "Thank you for giving me a one page resume."

Here's a few things I've learned as I've changed and updated my resume over time. (Link to my own resume coming soon...)

Keep it Short

@virtualandy
virtualandy / react_ecosystem.md
Last active September 2, 2015 04:19 — forked from mcmire/react_ecosystem.md
Notes on the React ecosystem: Flux, Reflux, Nuclear.js, and more

Following are notes I've compiled while researching the React ecosystems and frameworks/tools that people use within it.

@virtualandy
virtualandy / echoHttpRequest.js
Last active August 29, 2015 14:22 — forked from Marak/echoHttpRequest.js
Echo HTTP requests
module['exports'] = function echoHttp (hook) {
hook.debug("Debug messages are sent to the debug console");
hook.debug(hook.params);
hook.debug(hook.req.path);
hook.debug(hook.req.method);
@virtualandy
virtualandy / index.html
Last active August 29, 2015 14:18 — forked from kyrasteen/hat.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link type="text/css" href="hat.css" rel="stylesheet"/>
<script src="http://d3js.org/d3.v3.min.js"></script>
</head>
<body>
<div id="hat"></div>
"use strict";
var chai = require("chai");
var sinon = require("sinon");
var sinonChai = require("sinon-chai");
chai.should();
chai.use(sinonChai);
function asyncHello(name, delay, cb) {
setTimeout(function() {
console.log("running after ", delay);
var dkrm = new Darkroom('#target', {
// Size options
minWidth: 100,
minHeight: 100,
maxWidth: 500,
maxHeight: 500,
plugins: {
//save: false,
crop: {
@virtualandy
virtualandy / index.html
Last active October 25, 2022 20:17
Simple demo using Here maps and Leaflet.
<!doctype html>
<html>
<head>
<title>Just a simple demo.</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
<link rel="stylesheet" href="./map.css" />
</head>
<body>
<p><strong>Here</strong> we go!</p>
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel='stylesheet' type='text/css' href='' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<style>
body {
width:500px;
margin:0 auto;
@virtualandy
virtualandy / index.md
Last active December 16, 2015 02:09
Resources for learning about presentations, slides, etc. Presented as a list of people, with some links to their information and resources.
@virtualandy
virtualandy / flickrmap.js
Last active August 28, 2017 22:07 — forked from anonymous/index.html
simple example of using google maps and the flickr api.
function initialize(searchLat, searchLon) {
var mapOptions = {
center: new google.maps.LatLng(searchLat, searchLon),
zoom: 15,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions);
var marker = new google.maps.Marker();
google.maps.event.addListener(marker, "mouseover", function(event) {