Skip to content

Instantly share code, notes, and snippets.

View HeinPauwelyn's full-sized avatar
🎧

Hein Pauwelyn HeinPauwelyn

🎧
View GitHub Profile
{
"name": "ewalswebvr",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"ng": "ng",
"start": "ng serve",
"test": "ng test",
"pree2e": "webdriver-manager update --standalone false --gecko false",
@HeinPauwelyn
HeinPauwelyn / index.vr.js
Last active March 8, 2017 16:15
pokeball blend, mtl en obj file
import React from 'react';
import {
AppRegistry,
asset,
StyleSheet,
Pano,
Text,
View,
Mesh
} from 'react-vr';
@HeinPauwelyn
HeinPauwelyn / .travis.yml
Last active January 7, 2017 18:23
Travis failed push but passed PR
install:
- npm install
- npm install -g angular-cli
language: node_js
script:
- gulp html
- gulp scss
- gulp ts
- gulp node
- npm run build
@HeinPauwelyn
HeinPauwelyn / index.css
Last active January 4, 2017 12:10 — forked from michielzyde96/index
.seriescontainer {
padding: 0;
overflow: hidden;
float: left;
position: relative; }
@media (min-width: 768px) {
.seriescontainer {
width: 50%; } }
@media (min-width: 992px) {
.seriescontainer {
@HeinPauwelyn
HeinPauwelyn / gpsdata.ino
Created December 2, 2016 11:39
GPS data
void loop() {
bool gotGPGGA = false;
int teller = 0;
String text = "";
String json = "";
if (SoftSerial.available())
{
while (SoftSerial.available())
{