Skip to content

Instantly share code, notes, and snippets.

View rick-nu's full-sized avatar
🇳🇱
https://rick.nu

Rick van der Staaij rick-nu

🇳🇱
https://rick.nu
View GitHub Profile
@rick-nu
rick-nu / README.md
Last active September 19, 2022 12:49
Taskfile base
@rick-nu
rick-nu / dash-to-panel.ini
Last active February 7, 2021 14:37
My Ubuntu Gnome extension "Dash to Panel" config
[/]
animate-app-switch=false
animate-show-apps=false
animate-window-launch=false
appicon-margin=2
available-monitors=[1, 0, 2]
dot-color-1='#606060'
dot-color-2='#606060'
dot-color-3='#606060'
dot-color-4='#606060'
Verifying that +rickvdstaaij is my blockchain ID. https://onename.com/rickvdstaaij
@rick-nu
rick-nu / .gitconfig
Last active June 2, 2023 12:26
.gitconfig
[alias]
# View the SHA, description, and history graph of the latest 30 commits
l = log --pretty=oneline -n 30 --graph --abbrev-commit
# View the current working tree status using the short format
s = status -sb
# Show the diff between the latest commit and the current state
d = !"git diff-index --quiet HEAD -- || clear; git --no-pager diff --patch-with-stat"
@rick-nu
rick-nu / A-grunt-setup-for-sass-and-js.md
Last active February 7, 2017 17:00
Grunt, the ultimate javascript and sass setup

Grunt

The ultimate SASS and Javascript setup

Most of us know that Grunt is a really nice javascript task runner. Here you'll find a Grunt setup for a project with sass and javascript.

Features

  • A grunt setup for javascript and sass files
  • Quick javascript watcher
@rick-nu
rick-nu / .scss-lint.yml
Last active August 29, 2015 14:13
My scss code style checking configuration file for scss-lint 0.32.0 (.scss-lint.yml)
# https://github.com/causes/scss-lint/blob/master/lib/scss_lint/linter/README.md
linters:
# bad : color: #000!important;
# good: color: #000 !important;
BangFormat:
enabled: true
# bad : border: none;
# good: border: 0;
BorderZero: