Skip to content

Instantly share code, notes, and snippets.

View technogleb's full-sized avatar

Gleb Sinyakov technogleb

  • Moscow
View GitHub Profile
from abc import ABCMeta, abstractmethod
class EditableObject(metaclass=ABCMeta):
def __init__(self, contents=''):
self.contents = list(contents)
def __iter__(self):
return iter(self.contents)
@technogleb
technogleb / karabiner.json
Created August 19, 2020 12:29
My karabiner config
{
"global": {
"check_for_updates_on_startup": true,
"show_in_menu_bar": true,
"show_profile_name_in_menu_bar": false
},
"profiles": [
{
"complex_modifications": {
"parameters": {