Skip to content

Instantly share code, notes, and snippets.

View mauricesvay's full-sized avatar
💭
🍗

Maurice Svay mauricesvay

💭
🍗
View GitHub Profile
@mauricesvay
mauricesvay / git-clean.sh
Created April 29, 2021 12:22
Remove deleted branches
git branch -vv | grep gone | awk '{ print $1 }' | xargs git branch -D
@mauricesvay
mauricesvay / programming-words.md
Last active July 31, 2019 09:45
Programming words
  • engine
  • height
  • integer
  • charset
  • any word that has "ough" (through, though, dough, thought, etc.)
<?php
/*
How to use:
- In Dashlane, export data as CSV
- Copy this file in the same folder as the exported csv
- Run in a terminal: php dashlane-to-1password.php
- This should generate 2 files: Dashlane_passwords.csv and Dashlane_others.csv
- In 1Password, import Dashlane_passwords.csv
- Do whatever you want with Dashlane_others.csv
@mauricesvay
mauricesvay / model-tools.js
Created September 2, 2016 16:13
Model tools tampermonkey script
// ==UserScript==
// @name Sketchfab Model tools
// @namespace http://svay.com/
// @version 0.1
// @description Useful tools for Sketchfab models
// @author Maurice Svay
// @match https://sketchfab.com/models/*
// @grant GM_addStyle
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==