This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* description: Basic multi-line calculator */ | |
%lex | |
%% | |
[^\n\S]+ /* ignore whitespace */ | |
[0-9]+ { return 'INT' } | |
(\n|\;) { return 'TERMINATOR' } | |
"-" { return '-' } | |
"+" { return '+' } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<!-- Head is the container for all of the head elements --> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>QUT Video Gaming Society</title> | |
<!-- The title is what is shown in the window of the browser or in the tab of the browser --> | |
<meta name="description" content="Come join us play Video Games at QUT" /> | |
<!-- This is the meta tag for the description of the website which will be given to search engines --> | |
<link rel="stylesheet" type="text/css" href="stylesheet.css" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var parser = require('./parser'); | |
parser._performAction = parser.performAction; | |
parser.performAction = function anonymous(yytext,yyleng,yylineno,yy,yystate,$$,_$) { | |
var ret = parser._performAction.call(this, yytext, yyleng, yylineno, yy, yystate, $$, _$); | |
// do stuff | |
if (this.$._type) { | |
this.$.lineNo = yylineno; | |
} | |
return ret; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* backbone.collectioncache.js v0.0.2 | |
* Copyright 2012, Tim Branyen (@tbranyen) | |
* backbone.collectioncache.js may be freely distributed under the MIT license. | |
*/ | |
(function(window) { | |
"use strict"; | |
// Dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App.module('ModuleOne', function(ModuleOne, App) { | |
var members = new Backbone.Collection(); | |
members.on('reset', function() { | |
App.vent.queueTrigger('moduleone:members:reset', members); | |
}); | |
members.fetch(); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var MyView = Marionette.ItemView.extend({ | |
listeners: { | |
model: { | |
'add': 'modelAdd' | |
}, | |
collection: { | |
'reset': 'reset' | |
}, | |
appVent: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="description" content=""> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<!-- Example: Hello, ${1:this} is a ${2:snippet}. --> | |
<content><![CDATA[ | |
import ipdb; ipdb.set_trace() | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>ipdb</tabTrigger> | |
<description>Set an ipdb breakbpoint with ipdb.set_trace</description> | |
<!-- Optional: Set a scope to limit where the snippet will trigger --> | |
<scope>source.python, keyword.control.import.python</scope> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var alt = require('../alt'); | |
var TodoActions = require('./TodoActions'); | |
// Reactive data layer | |
var Todos = alt.Todos; | |
class TodoStore { | |
constructor() { | |
this.bindActions(TodoActions); |