[ Launch: Higher-order fun ] 6532277 by davidmason[ Launch: Tributary inlet ] 6026457 by codemiller
#!/bin/sh | |
# | |
# Set-up Sublime settings + packages sync over Dropbox | |
# | |
# Will sync settings + Installed plug-ins | |
# | |
# Tested on OSX - should support Linux too as long as | |
# you set-up correct SOURCE folder | |
# | |
# Copyright 2012 Mikko Ohtamaa http://opensourcehacker.com |
wget http://en.wikipedia.org/wiki/Caml ; wget http://en.wikipedia.org/wiki/OCaml ; diff Caml OCaml |
If you just want to watch the talk, you don't need anything. If you want to follow along or play around with webpack and/or browserify at the camp, I recommend preinstalling the following before setting out.
Just in case the npm mirror is not available at the camp, you can preinstall the following if you want to play around with browserify and webpack:
nodejs is the runtime on which webpack and browserify run (just in case youmanaged not to hear about it somehow)
These are the steps I used today to get node installed and working on my Red Hat Enterprise Linux 6 machine. Note that the first step can cause potential issues, so you should understand and weigh those up. You can skip the first step, it just means you will have to run global module installs (npm install -g ...
) with elevated permissions (sudo/su).
- change owner of
/usr/local
so thatnpm install -g
will Just Work. I think this has to go before installing node so that everything works properly.
sudo chown -R $USER /usr/local
# This evening I got Ally (https://github.com/AllyG) to | |
# show me some basics for methods/functions in Ruby. | |
# I still have some major gaps in my mental model of all | |
# this, but I feel like I know a lot more than I did this | |
# morning. | |
def haldo name | |
puts "Haldo " + name | |
end |
import Html exposing (text) | |
main = drink rum ye scurvies |> yarrrrrr | |
drink up me hearties = | |
case hearties of | |
[] -> me | |
capn :: lads -> drink up me lads |> up capn | |
yarrrrrr = text << String.fromInt |
import Color exposing (..) | |
import Graphics.Collage exposing (..) | |
import Graphics.Element exposing (..) | |
import Time exposing (fps) | |
import Transform2D exposing (scaleX) | |
framerate = 100.0 | |
cow = image 24 28 "http://i.neoseeker.com/cm/42/badges/BCow2.png" | |
chicken = image 40 40 "http://fogu.com/hm/snes/img/chicken.gif" |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Commonly used HTML things</title> | |
<link rel="stylesheet" type="text/css" href="stylesheet.css" /> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- Useful screen size calculators: http://www.silisoftware.com/tools/screen.php --> | |
<style type="text/css"> | |
body { |