// jQuery
$(document).ready(function() {
// code
})
open -a Google\ Chrome --args --disable-web-security --allow-running-insecure-content |
var nextLink; | |
function open_page(url) { | |
console.log("Opening " + url); | |
osmosis.get(url) | |
.find('#nav td:last a') | |
.set({ | |
'nextLink': '@href' | |
}) | |
.find('.g') | |
.set({ |
var nextLink; | |
function open_page(url) { | |
console.log("Opening " + url); | |
osmosis.get(url) | |
.find('#nav td:last a') | |
.set({ | |
'nextLink': '@href' | |
}) | |
.find('.g') | |
.set({ |
[alias] | |
cleanfeature = branch --merged | grep "feature/" | xargs -n 1 git branch -d | |
[merge] | |
tool = p4mergetool | |
renameLimit = 8000 | |
[mergetool "p4mergetool"] | |
cmd = /Applications/p4merge.app/Contents/Resources/launchp4merge $PWD/$BASE $PWD/$REMOTE $PWD/$LOCAL $PWD/$MERGED | |
trustExitCode = false | |
[mergetool] | |
keepBackup = false |
Another big ol' list of React resources
Tutorials
- https://medium.com/@firasd/quick-start-tutorial-using-redux-in-react-apps-89b142d6c5c1
- https://github.com/firasd/react-redux-tutorial
- https://github.com/reactjs/react-redux
- http://www.youhavetolearncomputers.com/blog/2015/9/15/a-conceptual-overview-of-redux-or-how-i-fell-in-love-with-a-javascript-state-container
React redux project structure
'use strict'; | |
/** | |
* @ngdoc directive | |
* @name myapp.directive:forceLowerCase | |
* @description | |
* # forceLowerCase | |
*/ | |
angular.module('myApp').directive('forceLowerCase', [ | |
'$parse', |
A type is a collection of possible values. An integer can have values 0, 1, 2, 3, etc.; a boolean can have values true and false. We can imagine any type we like: for example, a HighFive type that allows the values "hi" or 5, but nothing else. It's not a string and it's not an integer; it's its own, separate type.
Statically typed languages constrain variables' types: the programming language might know, for example, that x is an Integer.
In that case, the programmer isn't allowed to say x = true
; that would be an invalid program.
The compiler will refuse to compile it, so we can't even run it.
[ | |
{ | |
"class": "icon_file_type", | |
"content_margin": [0,0] | |
}, | |
{ | |
"class": "icon_folder", | |
"content_margin": [0,0] | |
}, | |
{ |
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
- Stores data elements based on an sequential, most commonly 0 based, index.
- Based on tuples from set theory.