Skip to content

Instantly share code, notes, and snippets.

id first_name last_name email balance
1 Jonathon Bernardeau jbernardeau0@princeton.edu $708.51
2 Matt Greenroyd mgreenroyd1@e-recht24.de $404.61
3 Minna Gepp mgepp2@webmd.com $454.82
4 Mic Ingreda mingreda3@ca.gov $248.90
5 Maxwell Matelyunas mmatelyunas4@imgur.com $227.47
6 Ariadne Scantleberry ascantleberry5@hatena.ne.jp $714.30
7 Harold Coston hcoston6@mashable.com $676.43
8 Gabbey Gatland ggatland7@bbc.co.uk $441.86
9 Alric Askaw aaskaw8@ustream.tv $643.66
#version 330
out vec4 pixelColor;
uniform mat4 M;
uniform vec3 viewPos;
uniform sampler2D materialTex;
uniform vec3 materialColor;
uniform float materialShininess;
(node:59276) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.
Running dev server: http://localhost:8100
Running live reload server: http://localhost:35729
Watching : [ 'www/**/*', '!www/lib/**/*' ]
Ionic server commands, enter:
restart or r to restart the client app from the root
goto or g and a url to have the app navigate to the given url
consolelogs or c to enable/disable console log output
serverlogs or s to enable/disable server log output
quit or q to shutdown the server and exit
var canvas = document.getElementById('canvas');
canvas.addEventListener('mousedown', function(event) {
// ta zmienna "event" ma wszystko czego potrzebujesz
// chociaż możliwe, że będziesz musiał coś policzyć względem całej strony
console.log(event);
});
@kasperekt
kasperekt / LandscapeSidebar.jsx
Created September 2, 2015 15:56
Sidebar Snippet
import React from 'react/addons';
import classNames from 'classnames';
let filterControlsNode = null;
const LandscapeSidebar = React.createClass({
propTypes: {
children: React.PropTypes.node,
startOpen: React.PropTypes.bool,
},