Skip to content

Instantly share code, notes, and snippets.

View hamishrouse's full-sized avatar

Hamish hamishrouse

  • Auckland, New Zealand
View GitHub Profile
@hamishrouse
hamishrouse / index.html
Created October 26, 2017 19:34
React and Redux // source http://jsbin.com/dahogo
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>React and Redux</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/redux/3.7.2/redux.js"></script>
<script src="https://fb.me/react-15.1.0.js"></script>
<script src="https://fb.me/react-dom-15.1.0.js"></script>
</head>
@hamishrouse
hamishrouse / Brightcove.Windows.d.ts
Last active October 23, 2017 20:15
Brightcove Player, React and Typescript
export interface BCWindowInterface extends Window {
bc: Function;
}
@hamishrouse
hamishrouse / README.md
Last active March 8, 2024 18:30
Typescript, React and Video.js (VideoJS)
@hamishrouse
hamishrouse / README.md
Last active August 11, 2021 21:07
CSS Naming Conventions

CSS Naming Convention

BEM

Button Example

Block:

.button {}
function _extend (target, obj) {
for ( var i in obj ) {
target[i] = obj[i];
}
return target;
}