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(); | |
| + }) | |
| + ); |
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
| 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
| 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
| $.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
| 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
| $ npm install -g yo | |
| $ npm install -g generator-fluxible | |
| $ yo 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
| def twenty_four(*operands) | |
| p operands | |
| operators = %w(+ - * /) | |
| operands.map! {|op| op.to_f} | |
| operands.permutation.to_a.uniq.each do |ordered_operands| | |
| operators.repeated_permutation(operands.length-1) do |ordered_operators| | |
| check_answer(ordered_operands, ordered_operators) | |
| end | |
| end |
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
| brew install readline | |
| CONFIGURE_OPTS="--disable-install-doc --with-readline-dir=$(brew --prefix readline)" rbenv install 1.9.3-p392 |
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
| // bootstrap-ckeditor-modal-fix.js | |
| // hack to fix ckeditor/bootstrap compatiability bug when ckeditor appears in a bootstrap modal dialog | |
| // | |
| // Include this AFTER both bootstrap and ckeditor are loaded. | |
| // From: http://stackoverflow.com/questions/14420300/bootstrap-with-ckeditor-equals-problems | |
| // Author: http://stackoverflow.com/users/185839/aaron | |
| $.fn.modal.Constructor.prototype.enforceFocus = function() { | |
| modal_this = this | |
| $(document).on('focusin.modal', function (e) { |
NewerOlder