Skip to content

Instantly share code, notes, and snippets.

@pettomartino
pettomartino / script.conf
Created May 22, 2018 08:14
execute a command on start up ubuntu
# save it on /etc/init
start on startup
task
exec /path/to/command
@pettomartino
pettomartino / retry.js
Last active March 12, 2019 18:14
Retry promise
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,
@pettomartino
pettomartino / view.controller.tsx
Created December 16, 2019 11:42
Authenticate controller
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;
@pettomartino
pettomartino / styledExtended.tsx
Last active August 9, 2020 15:56
Use styled components with LinearGradient and pass props
const Background = styled(LinearGradient).attrs(() => ({
colors: ['#464769', '#1B1A1F'],
}))`
padding-top: 50px;
flex: 1;
`