Skip to content

Instantly share code, notes, and snippets.

View artfulrobot's full-sized avatar

Rich Lott artfulrobot

View GitHub Profile
@artfulrobot
artfulrobot / Date-arFormat.js
Last active November 15, 2019 11:33
Limited English only Jacascript version of php's date formatter
/**
* Simple and limited English implementation of PHP's date()
*
* Usage:
*
* const d = new Date();
* const format = 'j M Y H:i:s';
* const s = d.arFormat(format);
*
* Results are cached
@artfulrobot
artfulrobot / PetitionForm.vue
Created November 20, 2019 12:03
oD Petition template
<div class="remote-petition" ref="petition">
<div class="remote-petition__totaliser">
<div class="remote-petition__bar-domain">
<div class="remote-petition__bar" :style="barStyles"></div>
</div>
<p class="remote-petition__count-text">This petition has been signed <span class="remote-petition__count-number">{{ supporterCountDisplay }}</span> times.</p>
</div>
<div v-if="stage === 'form'" class="remote-petition__form-view">
<div class="remote-petition__text-input-wrapper remote-petition__first_name" :class=""><label for="remote-petition__first_name" >First name</label><input required type="text" id="remote-petition__first_name" v-model="first_name"/></div>
<div class="remote-petition__text-input-wrapper remote-petition__last_name"><label for="remote-petition__last_name" >Last name</label><input required type="text" id="remote-petition__last_name" v-model="last_name"/></div>
@artfulrobot
artfulrobot / mpv keyboard shortcuts
Last active February 20, 2021 20:17 — forked from flatlinebb/mpv keyboard shortcuts
mpv keyboard shortcuts
Keyboard Control
Shift+A Aspect ratio override
LEFT and RIGHT
Seek backward/forward 5 seconds. Shift+arrow does a 1 second exact seek (see --hr-seek).
UP and DOWN
Seek forward/backward 1 minute. Shift+arrow does a 5 second exact seek (see --hr-seek).
Ctrl+LEFT and Ctrl+RIGHT
Seek to the previous/next subtitle. Subject to some restrictions and might not always work; see sub-seek command.