Skip to content

Instantly share code, notes, and snippets.

View nikolaswise's full-sized avatar
🌵

Nikolas Wise nikolaswise

🌵
View GitHub Profile
@nikolaswise
nikolaswise / gist:4770511
Last active December 12, 2015 12:18
Processes and steps to complete goals and responsibilities with We Love Words

We Love Words Processes

Storyboarding

  1. Define and prioritize information and actions.
  2. Express sites information hierarchy for each element of the site. Focus on the most important user actions and pages.
    1. Homepage
    2. Member Profile
    3. Dashboard
    4. Word Market
@nikolaswise
nikolaswise / gist:8291365
Created January 6, 2014 22:53
How to put a polyline on a map with the Esri ArcGIS JS SDK
require([
"esri/map",
"esri/geometry/Polyline",
"esri/symbols/SimpleLineSymbol",
"esri/graphic",
"dojo/domReady!"],
function(Map, Polyline, SimpleLineSymbol, Graphic) {
window.map = new Map("mapDiv", {
@nikolaswise
nikolaswise / circle.js
Created February 4, 2014 21:34
simple symbol simple marker simple
require([
"esri/map",
"esri/request",
"esri/geometry/Point",
"esri/symbols/SimpleMarkerSymbol",
"esri/graphic",
"dojo/domReady!"],
function(Map, request, Point, SimpleMarkerSymbol, Graphic) {
@nikolaswise
nikolaswise / multi-layered-icon
Last active August 29, 2015 13:56
Terraformer Six Color Icon Font
.terraformer {
color: rgba(38,122,64, 0.5);
}
.terraformer:after {
content: "terraformerfront";
color: #000000;
opacity: 0.5;
margin-left: -1em;
}
.terraformer:before {
@nikolaswise
nikolaswise / Talk.md
Created March 12, 2014 18:33
Pixel Perfect Design for Mobile - Esri Dev Semmit '14

Pixel Perfect Design for Mobile Applications

[Intro Slide][00][x] This talk is Pixel Perfect Design for Mobile - presumably Mobile Web or Mobile Applications.

[Cow + @NikolasWise][00b][x] My name is Nikolas Wise. I'd like to briefly introduce myself and let you know the perspective I'm coming from before I launch into my talk.

I'm a designer with Esri Portland Research and Development. I work with a team of designers, some of you might be familiar with our work – our team is largely responsible for developers.arcgis.com. [Screenshot of Developers][01][x]

@nikolaswise
nikolaswise / ng-chart.js
Created May 14, 2014 23:43
Dimple.js line graph directive
.directive('dngLineGraph', function(){
return {
restrict: 'E',
template: '<div class="dng-line-graph" id="line-graph"></div>',
replace: true,
controller: function($scope, $element, $attrs) {
var svg = dimple.newSvg('#line-graph', '100%', '100%');
d3.tsv($attrs.data, function (data) {
var chart = new dimple.chart(svg, data);
@nikolaswise
nikolaswise / world-cup.md
Last active August 29, 2015 14:02
2014 World Cup Schedule

World Cup Brazil

All times in PST.

Thursday, June 12

  • 13:00 Brazil vs. Croatia (ESPN)

Friday, June 13

  • 9:00 Mexico vs. Cameroon (ESPN2)
  • 12:00 Spain vs. Netherlands (ESPN)
  • 15:00 Chile vs. Australia (ESPN2)
@nikolaswise
nikolaswise / sample.html
Created August 28, 2014 00:15
leaflet map container
<html>
<head>
</head>
<body>
<div id="map"></div>
</body>
</html>
body, html {
@nikolaswise
nikolaswise / md5.js
Created April 10, 2015 15:00
Joseph Myer's md5 hash implementatio
function md5cycle(x, k) {
var a = x[0], b = x[1], c = x[2], d = x[3];
a = ff(a, b, c, d, k[0], 7, -680876936);
d = ff(d, a, b, c, k[1], 12, -389564586);
c = ff(c, d, a, b, k[2], 17, 606105819);
b = ff(b, c, d, a, k[3], 22, -1044525330);
a = ff(a, b, c, d, k[4], 7, -176418897);
d = ff(d, a, b, c, k[5], 12, 1200080426);
c = ff(c, d, a, b, k[6], 17, -1473231341);
@nikolaswise
nikolaswise / sample-graphs-and-data.html
Created April 13, 2015 18:50
sample line graphs with angular dimple
[
{
"x": 0,
"y": 12,
"for": "Foo"
},
{
"x": 1,
"y": 24,
"for": "Foo"