Skip to content

Instantly share code, notes, and snippets.

View nothingismagick's full-sized avatar

nothingismagick

View GitHub Profile
@jonathandixon
jonathandixon / .gitignore
Last active January 5, 2021 22:01
Cordova CLI project .gitignore and helper script. Useful when you don't want to commit the platforms and plugins directories to version control. http://stackoverflow.com/q/17911204/417568
platforms/
plugins/
@kwk
kwk / README.md
Created October 1, 2014 13:52
Forgot to sign-off commits?

No problem,

run

git filter-branch --msg-filter "cat - && echo && echo 'Signed-off-by: Your Name <Your.Name@example.com>'" HEAD~2..HEAD

To sign-off the last two commits.

Then force to push them to the remote repo with the -f option:

@raine
raine / ramda
Last active May 4, 2020 12:14
Browse Ramda documentation in Terminal
#!/usr/bin/env bash
# Browse Ramda documentation in Terminal
# Requires jq and a tool such as fzf or peco for interactive filtering
LATEST="http://raine.github.io/ramda-json-docs/latest.json"
DOCS_URL="http://ramdajs.com/docs/"
json=$(curl -s $LATEST)
functions=$(echo "$json" | jq -r '.[] | if .sig and (.sig | length > 0) then .name + " :: " + .sig else .name end')
@autumnwoodberry
autumnwoodberry / user.js
Last active March 24, 2022 06:49
vuex + vuelidate
import Vue from 'vue'
import { validationMixin } from 'vuelidate'
import { required, minLength } from 'vuelidate/lib/validators'
export default function (store) {
const validator = new Vue({
mixins: [
validationMixin
],
computed: {
@claus
claus / ipfs-server-setup.md
Last active May 9, 2023 03:51
Host Your Site Under Your Domain on IPFS

Host Your Site Under Your Domain on IPFS

This is a step-by-step tutorial for hosting your website under your domain on IPFS, from zero, on a DigitalOcean Ubuntu 16.04.3 x64 Droplet (i am using the $10 variant with 2GB RAM).

Install IPFS

Log in as root.

First, make sure the system is up to date, and install tar and wget:

@boohooman007
boohooman007 / Kinoonik_en.md
Last active April 14, 2018 09:48
Kinoonik

KINO KABARET was founded in 1999 in Montreal, Canada, by Christian Laurence and some friends. “Do well with nothing, do better with little and do it right NOW!” This is our motto. By now there are 121 physical chapters around the world and The Netherlands is part of it. Welcome to KinooniK Holland.

KinoKabaret

KinoKabaret is a film movement that strives to make short films with little to no budget. We do this by putting together a small team and filming in a non-competitive collaborative environment with other filmmakers. There are now many Kino groups around the world. These groups are also called cells. Many of these cells have a monthly film screening where fellow filmmakers show their films and can ask for help on their projects.

All these Kino cells have an annual KinoKabaret. The KinoKabaret can also be called a film camp. During a KinoKabaret you do everything together. You share in success and in "failure".

@boohooman007
boohooman007 / kinoonik_nl.md
Last active April 22, 2018 11:29
kinoon_nl.md

KINO KABARET is in 1999 opgericht in Montreal, Canada, door Christian Laurence en enkele vrienden. Het doel van deze film beweging is; Doe iets met niets, doe meer met minder en doe het nu! Ondertussen zijn er 121 fysieke Kino Cellen over de hele wereld en Nederland hoort daar vanaf nu ook bij. Welkom bij KinooniK Holland.

Vlaardingen/ Holland bestaat 1000 jaar en tergelegenheid van dit vieren wij dat met Kinoonik 1018!

KinoKabaret

@Lukino2000
Lukino2000 / screen.js
Last active November 9, 2021 20:02
quasar 15.10 plugin for responsive screen reactive properties
import VueObject from 'vue'
var resizeManager = (function () {
var callbacks = [],
running = false
function resize() {
if (!running) {
running = true
@nothingismagick
nothingismagick / ._CLI.md
Last active May 29, 2018 14:46
Installing JEST on Quasar 0.16
npm install --save-dev jest vue-jest vue-test-loader regenerator-runtime babel-jest 'babel-core@7.0.0-bridge.0'

Add the following to your package.json

package.json

  "scripts": {
    "jest": "jest",
 "jest:cover": "jest --coverage",
@snowyu
snowyu / ts-quasar-cli.md
Created September 8, 2018 13:19
Add the typescript supports to quasar framework

Note: This guide applies to the project created by quasar-cli.

First install typescript and ts-loaderpackages in your project.

npm i -D typescript ts-loader

Then modified the quasar.conf.js file in your project: