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
const Background = styled(LinearGradient).attrs(() => ({ | |
colors: ['#464769', '#1B1A1F'], | |
}))` | |
padding-top: 50px; | |
flex: 1; | |
` |
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
import { Context, dependency, Get, render, TokenRequired } from '@foal/core'; | |
import * as React from 'react'; | |
import * as ReactDOMServer from 'react-dom/server'; | |
import { User } from '../entities'; | |
import { TypeORMStore } from '@foal/typeorm'; | |
export class ViewController { | |
@dependency | |
store: TypeORMStore; |
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
const retry = (fn, options = {}) => new Promise((resolve, reject) => { | |
const { retryInterval = 500, retries = 1 } = options; | |
fn() | |
.then(resolve) | |
.catch(err => ( | |
(retries === 0) | |
? reject(err) | |
: setTimeout( | |
() => retry(fn, { retryInterval, retries: retries - 1 }).then(resolve, reject), | |
retryInterval, |
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
# save it on /etc/init | |
start on startup | |
task | |
exec /path/to/command |
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
<html> | |
<head> | |
<script> | |
function myFunc() { | |
var email = document.getElementById("email").value | |
var e = document.getElementById("select") | |
var selectedOption = e.options[e.selectedIndex].value | |
var checkBox = document.getElementById('defaultCheck1').checked | |
if (email == 'foo@bar' && checkBox && selectedOption == "audi") { |
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
browser | |
.setValue('input[placeholder=E-mail]', email) | |
.setValue('input[placeholder=Password]', password) | |
.useXpath() | |
.click("//*[text()='Login']") | |
.pause(200) | |
.expect.element("//*[text()='John Doe']").to.be.present |
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
browser | |
.setValue('.input-text', email) | |
.setValue('input.input-text[type=password]', password) | |
.click('.btn-success') | |
.pause(200) | |
.assert.urlEquals(url) | |
.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
class MockPromise { | |
then(fn) { | |
this.thenFn = fn | |
return this | |
} | |
catch(fn) { | |
this.catchFn = fn | |
return this | |
} |
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
petto@mac ~/dev/bento/packer (master●)$ packer build --only=parallels-iso debian-7.6-amd64.json [ruby-2.1.1] | |
parallels-iso output will be in this color. | |
==> parallels-iso: Downloading or copying ISO | |
parallels-iso: Downloading or copying: http://cdimage.debian.org/debian-cd/7.6.0/amd64/iso-cd/debian-7.6.0-amd64-CD-1.iso | |
==> parallels-iso: Starting HTTP server on port 8081 | |
==> parallels-iso: Creating virtual machine... | |
==> parallels-iso: Executing: prlctl [create packer-debian-7.6-amd64 --distribution debian --dst packer-debian-7.6-amd64-parallels --vmtype vm] | |
==> parallels-iso: Executing: prlctl [set packer-debian-7.6-amd64 --cpus 1] | |
==> parallels-iso: Executing: prlctl [set packer-debian-7.6-amd64 --memsize 512] |
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
var cursor = db.places.find(); | |
while (cursor.hasNext()) { | |
var x = cursor.next(); | |
x['source']['url'].replace('aaa', 'bbb'); // is this correct? | |
db.foo.update({_id : x._id}, x); | |
} |
NewerOlder