This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm install -g yo | |
npm install -g generator-fluxible | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.get( "your_partial.html", function( data ) { | |
$( "#your_div" ).html( data ); | |
alert( "Load was performed." ); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
filterText: '', | |
locations: [] | |
} | |
} | |
updateFilter(e) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isTaiwanId(id) { | |
const mapping = [10, 11, 12, 13, 14, 15, 16, 17, 34, 18, 19, 20, 21, 22, 35, 23, 24, 25, 26, 27, 28, 29, 32, 30, 31, 33]; | |
const ID_REGEX = /^[A-Z][12]\d{8}$/i; | |
if (!ID_REGEX.test(id)) { | |
return false; | |
} | |
return `${mapping[id.toUpperCase().charCodeAt(0)-65]}${id.slice(1)}` | |
.split('') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Roman do | |
@roman_symbols [ | |
["M", 1000], | |
["CM", 900], | |
["D", 500], | |
["CD", 400], | |
["C", 100], | |
["XC", 90], | |
["L", 50], | |
["XL", 40], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- await CrumbService.read(mockReq, 'CrumbService', { foo: 'foo' }, {}, callback); | |
+ await new Promise(resolve => | |
+ CrumbService.read(mockReq, 'CrumbService', { foo: 'foo' }, {}, (...args) => { | |
+ callback(...args); | |
+ resolve(); | |
+ }) | |
+ ); |
OlderNewer