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:
let template = [ | |
3, | |
1, | |
1, | |
2, | |
3, | |
1, | |
3, | |
4, | |
3, |
<!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 |
I hereby claim:
To claim this, I am signing this object:
--compilers js:./test/support/compiler | |
--require ./test/support/init |
import React, { | |
Component, | |
PropTypes, | |
TextInput as NativeTextInput | |
} from 'react-native'; | |
/** | |
* Wrapper for the native TextInput which adds getValue() | |
**/ | |
class TextInput extends Component { |
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' |
<!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> |
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: '>'
In Minecraft 1.6.4 the following check is made:
if (this.worldObj.canLightningStrikeAt(this.posX, this.posY + 1, this.posZ))
This will check if rain can reach the block AND if it is raining. If that is true the possibility to catch a fish goes up from 1 in 500 to 1 in 300
From EntityFishHook.java:
(function(timeout, urls) { | |
var times = {}; | |
setInterval(function() { | |
for(var i = 0; i < urls.length; i++) { | |
var x = new XMLHttpRequest(), | |
url = urls[i]; | |
x.url = url; | |
x.open('HEAD', url + (url.indexOf("?") === -1 ? "?v=" : "&v=") + Date.now(), true); | |
x.onreadystatechange = function(e) { | |
var x = e.target; |