Skip to content

Instantly share code, notes, and snippets.

View gschurck's full-sized avatar

Guillaume Schurck gschurck

View GitHub Profile
@gschurck
gschurck / bulma.min.css
Created September 5, 2023 15:41
Bulma v0.9.4 without `overflow-x: auto` for media-content of cards on mobile
/*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */.button,.file-cta,.file-name,.input,.pagination-ellipsis,.pagination-link,.pagination-next,.pagination-previous,.select select,.textarea{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.5em - 1px);padding-left:calc(.75em - 1px);padding-right:calc(.75em - 1px);padding-top:calc(.5em - 1px);position:relative;vertical-align:top}.button:active,.button:focus,.file-cta:active,.file-cta:focus,.file-name:active,.file-name:focus,.input:active,.input:focus,.is-active.button,.is-active.file-cta,.is-active.file-name,.is-active.input,.is-active.pagination-ellipsis,.is-active.pagination-link,.is-active.pagination-next,.is-active.pagination-previous,.is-active.textarea,.is-focused.button,.is-focused.file-cta,.is-focused.file-name,.is-focused.input,.is-focused.pagination-ellipsi
@gschurck
gschurck / .zshrc
Last active November 2, 2022 17:59
Todoist CLI zshrc
# snippet to display Todoist tasks of the day with todoist-cli above prompt when launching a shell
todoist-cli sync
today_tasks=$(todoist-cli list --filter '(overdue | today)')
if (( ($(echo "$today_tasks" | wc -l)) > 0)); then
echo "$today_tasks"
fi
C 1 hr 15 mins █████████▌░░░░░░░░░░░ 45.4%
Makefile 28 mins ███▋░░░░░░░░░░░░░░░░░ 17.4%
Svelte 28 mins ███▋░░░░░░░░░░░░░░░░░ 17.4%
Markdown 19 mins ██▌░░░░░░░░░░░░░░░░░░ 12.0%
ObjectiveC 8 mins █░░░░░░░░░░░░░░░░░░░░ 5.2%