Skip to content

Instantly share code, notes, and snippets.

View cornedor's full-sized avatar
🚀
gotta go fast

Corné Dorrestijn cornedor

🚀
gotta go fast
View GitHub Profile
@cornedor
cornedor / comment.md
Last active August 29, 2015 14:19
Using "-->" as a single line comment.

Using "-->" as a single line comment.

Typing --> on the beginning of a line of code in JavaScript seems to comment it. But looks like there isn't almost no info available about this.

What i found so far is a v8 (test)[https://github.com/crosswalk-project/v8-crosswalk/blob/master/test/webkit/parser-xml-close-comment.js] that does test for this feature. So it looks like it is done intentionally.

Looks like v8 and Firefox's JS engine do both parse this correctly. MuJS does throw an syntax error

SyntaxError: test.js:2: unexpected token in expression: '>'
@cornedor
cornedor / index.html
Created June 2, 2015 10:10
Simple React+Material UI example
<!doctype html>
<html>
<title>Minimal React/Material test</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,500' rel='stylesheet' type='text/css'>
<div id="holder"></div>
<script src="bundle.js"></script>
</html>
set nocompatible
" Vundle
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'pangloss/vim-javascript'
Plugin 'Valloric/YouCompleteMe'
@cornedor
cornedor / TextInput.js
Last active February 19, 2016 10:24
Wrapper around React Native's TextInput to make getting the text easier.
import React, {
Component,
PropTypes,
TextInput as NativeTextInput
} from 'react-native';
/**
* Wrapper for the native TextInput which adds getValue()
**/
class TextInput extends Component {
@cornedor
cornedor / test_mocha.opts
Last active April 13, 2016 18:51 — forked from jmreidy/test_mocha.opts
Unit test React Native with Mocha
--compilers js:./test/support/compiler
--require ./test/support/init

Keybase proof

I hereby claim:

  • I am cornedor on github.
  • I am cornedor (https://keybase.io/cornedor) on keybase.
  • I have a public key ASBqa5vQ9TJ8lWCw7pd58b39zgI36fq1FH-8n7wpuuE58Qo

To claim this, I am signing this object:

@cornedor
cornedor / index.html
Last active November 19, 2019 13:14
Retina image
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
</head>
<body>
<img src="https://via.placeholder.com/200x100" srcset="https://via.placeholder.com/800x400 4x" />
</body>
</html
@cornedor
cornedor / IntCode.re
Created December 3, 2019 07:36
Advent of Code 2019
let template = [
3,
1,
1,
2,
3,
1,
3,
4,
3,