-
30 ЯНВ 20180
-
29 ЯНВ 20180
-
16 ЯНВ 20180
-
15 ЯНВ 20180
hutnikau/job-scheduler - планировщик задач на пхп
$executionTime = new \DateTime('2017-12-12 20:00:00'); //run monthly, at 20:00:00, 5 times $rule = new \Scheduler\Job\RRule('FREQ=MONTHLY;COUNT=5', $executionTime); $job = new \Scheduler\Job\Job($rule, function () { //do something });
https://github.com/hutnikau/job-scheduler -
12 ЯНВ 20180
hyperapp - js библиотека для создания фронтенда
import { h, app } from "hyperapp" const state = { count: 0 } const actions = { down: () => state => ({ count: state.count - 1 }), up: () => state => ({ count: state.count + 1 }) } const view = (state, actions) => ( <main> <h1>{state.count}</h1> <button onclick={actions.down}>-</button> <button onclick={actions.up}>+</button> </main> ) export const main = app(state, actions, view, document.body)
https://github.com/hyperapp/hyperapp -
11 ЯНВ 20181
-
04 ЯНВ 20181
-
03 ЯНВ 20181
prettier - скрипт форматирования js кода
Было
станетfoo(reallyLongArg(), omgSoManyParameters(), IShouldRefactorThis(), isThereSeriouslyAnotherOne());
foo( reallyLongArg(), omgSoManyParameters(), IShouldRefactorThis(), isThereSeriouslyAnotherOne() );
https://github.com/prettier/prettier
Категории:
Оставить на заметку в: