Aug 23:
marineam is terrible at writing readable emails
vitaminmoo: marineam: Have you tried more profane interjections?
marineam: vitaminmoo: @$#*!
vitaminmoo: marineam: You don't have to bring perl into this
| ### | |
| Browse to http://localhost:8080 to see the following output: | |
| # Hello | |
| ### | |
| # Ignore | |
| app = require('express')() | |
| # Important stuff! | |
| app.use (req, res)-> |
Aug 23:
marineam is terrible at writing readable emails
vitaminmoo: marineam: Have you tried more profane interjections?
marineam: vitaminmoo: @$#*!
vitaminmoo: marineam: You don't have to bring perl into this
| module.exports = (grunt) -> | |
| # Package configuration. | |
| grunt.initConfig | |
| pkg: grunt.file.readJSON 'package.json' | |
| coffee: | |
| options: | |
| join: true | |
| bare: true | |
| files: | |
| src: "src/**/*.coffee" |
| block = [] | |
| switch req.workshop.session | |
| # Block 1 | |
| when 1 | |
| block = [1, 2, 3] | |
| when 2 | |
| block = [1, 2] | |
| when 3 | |
| block = [1, 3] | |
| # Block 2 |
| // BEGIN DIFFERENT CODE | |
| // Make a SYN | |
| packet_t syn_packet; | |
| syn_packet.type = SYN; | |
| syn_packet.seqno = (unsigned short) rand(); | |
| syn_packet.ackno = 0; | |
| syn_packet.payload = 0; | |
| syn_packet.window = 0; | |
| syn_packet.data = calloc(1, sizeof(char)); | |
| strcpy(syn_packet.data, ""); |
This is a bl.ocks.org version of Jan Willem Tulp's Game of Life D3 implementation, lightly edited.
This script downloads the latest nightly and installs (or uninstalls) it as needed.
The steps are:
install.sh script with the options provided. (Like --uninstall)To use:
I hereby claim:
To claim this, I am signing this object:
| fn move_to(&mut self, line: u64) { | |
| let mut lines_read = 0; | |
| let chars = self.log.chars(); | |
| // Go until we've reached `from` new lines. | |
| chars.skip_while(|&opt| { | |
| match opt { | |
| Ok(val) => { | |
| if val == '\n' { | |
| lines_read += 1; | |
| if lines_read == line { |