I hereby claim:
- I am snodnipper on github.
- I am snodnipper (https://keybase.io/snodnipper) on keybase.
- I have a public key ASAwQEXQ2KfFIhORLAXfxcIsEAuBAOwarLOoey4VyGaTogo
To claim this, I am signing this object:
Course notes from http://courses.angularclass.com/courses/modern-javascript | |
Afterwards, we are encourage to complete: http://courses.angularclass.com/courses/angular-2-fundamentals | |
Note: not repeating too much here - just points to remember! | |
--- | |
npm init <-- initialize a package.json by the CLI | |
npm run build <-- build just sits within package.json...and could be a simple "echo hello world" |
<?xml version='1.0' encoding='UTF-8'?> | |
<osm version='0.6' upload='true' generator='JOSM'> | |
<node id='-52575' action='modify' visible='true' lat='-13.50448483093' lon='-62.08751677871' /> | |
<node id='-52576' action='modify' visible='true' lat='-15.12250742666' lon='-59.97814177871' /> | |
<node id='-52577' action='modify' visible='true' lat='-15.24973961872' lon='-55.10021209121' /> | |
<node id='-52578' action='modify' visible='true' lat='-17.98657033036' lon='-54.35314177871' /> | |
<node id='-52579' action='modify' visible='true' lat='-21.3379901871' lon='-55.31993865371' /> | |
<node id='-52580' action='modify' visible='true' lat='-21.66508607218' lon='-56.72618865371' /> | |
<node id='-52581' action='modify' visible='true' lat='-22.60133321822' lon='-57.82482146621' /> | |
<node id='-52582' action='modify' visible='true' lat='-23.41032659659' lon='-58.70372771621' /> |
#!/bin/bash | |
#====================================================================== | |
# Prepare Docker Installation | |
# https://docs.docker.com/engine/installation/linux/ubuntulinux/#/install-the-latest-version | |
#====================================================================== | |
if [ $EUID != 0 ]; then | |
sudo "$0" "$@" | |
exit $? |
I hereby claim:
To claim this, I am signing this object:
python -m SimpleHTTPServer 8000
#!/bin/bash | |
gradle init --type java-library --project-name jvm-library --dsl groovy --test-framework junit-jupiter --package uk.co.snodnipper.blah |
import org.apache.commons.math3.analysis.interpolation.NevilleInterpolator; | |
public class WtfCreator { | |
public static void main(String[] args) { | |
var text = "Hello, world!\n"; | |
double[] x = new double[text.length() + 1]; | |
double[] y = new double[text.length() + 1]; | |
for(var i = 0; i < text.length(); i++) { | |
x[i] = i; |