Skip to content

Instantly share code, notes, and snippets.

View dutzi's full-sized avatar
🎯
Focusing

Eldad Bercovici dutzi

🎯
Focusing
View GitHub Profile
@dutzi
dutzi / karabiner.json
Created May 7, 2022 18:06
Karabiner Elements Config for RealForce
{
"global": {
"check_for_updates_on_startup": true,
"show_in_menu_bar": false,
"show_profile_name_in_menu_bar": false
},
"profiles": [
{
"complex_modifications": {
"parameters": {
@dutzi
dutzi / settings.json
Created March 9, 2017 12:55
Set VSCode font size same as Sublime Text
{
"editor.fontSize": 13.3,
"editor.lineHeight": 17
}
@dutzi
dutzi / gist:0277e4b9c57a99639b3e
Last active August 29, 2015 14:15
Don't forget to disable `mockery`

Here's something I learned the hard way...

When using mockery to mock modules while testing, don't forget to disable it after the tests are done:

after(function () {
	mockery.disable();
});