Skip to content

Instantly share code, notes, and snippets.

@alexkilla
alexkilla / .bash_profile
Last active May 5, 2021 13:59
This is my bash profile
# Ifortune
# In some cases you might need this
export TZ="UTC"
# This is to avoid to have further problems with compass
export LANG=en_US.UTF-8
export PATH="/System/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export WORKON_HOME=~/Envs
@alexkilla
alexkilla / NewProjectQuestions.md
Created January 4, 2019 19:06
These are some questions that can help you know more of a new project before you decide you want to work there.

Questions worth doing when entering a new project

whats the domain of the project meaning to know the field and the types of problems the app/software solves?

what are the major problems engineering right now??

what are the tools(techStack) used by the application and why were they chosen or think they were chosen??

what is the flow of a single ticket, describe the workflow in general from req to delivery?

@alexkilla
alexkilla / arrow_keys_to_option_ijkl_and_more.json
Last active September 21, 2018 15:57
This file is to replace arrow keys for option + ijkl. To import in karabiner elements (click link in the comments)
{
"title": "Option + IJKL",
"rules": [
{ "description": "Caps Lock to Ctrl",
"manipulators": [{"type": "basic", "from": {"key_code": "caps_lock", "modifiers": {"optional": ["any"]}}, "to": [{"key_code": "right_control"}]}] },
{ "description": "Alt to Command",
"manipulators": [{"type": "basic", "from": {"key_code": "left_options", "modifiers": {"optional": ["any"]}}, "to": [{"key_code": "left_command"}]}] },
{ "description": "Command to Alt",
"manipulators": [{"type": "basic", "from": {"key_code": "left_command", "modifiers": {"optional": ["any"]}}, "to": [{"key_code": "left_option"}]}] },
{ "description": "option + I/J/K/L to Arrow Keys",
@alexkilla
alexkilla / arroy_keys_to_option_ijkl.json
Created September 21, 2018 14:55
This file is to replace arrow key for option + ijkl, just import in karabiner elements (click link in the comments
{
"title": "Option + IJKL",
"rules": [
{ "description": "Caps Lock to Fn",
"manipulators": [{"type": "basic", "from": {"key_code": "caps_lock", "modifiers": {"optional": ["any"]}}, "to": [{"key_code": "fn"}]}] },
{ "description": "option + I/J/K/L to Arrow Keys",
"manipulators": [{"type": "basic", "from": {"key_code": "i", "modifiers": {"mandatory": ["option"], "optional": ["any"]}}, "to": [{"key_code": "up_arrow"}] },
{"type": "basic", "from": {"key_code": "j", "modifiers": {"mandatory": ["option"], "optional": ["any"]}}, "to": [{"key_code": "left_arrow"}]},
{"type": "basic", "from": {"key_code": "k", "modifiers": {"mandatory": ["option"], "optional": ["any"]}}, "to": [{"key_code": "down_arrow"}]},
{"type": "basic", "from": {"key_code": "l", "modifiers": {"mandatory": ["option"], "optional": ["any"]}}, "to": [{"key_code": "right_arrow"}]}] },
@alexkilla
alexkilla / arroy_keys_to_option_ijkl.json
Created September 21, 2018 14:54
This file is to import
{
"title": "Option + IJKL",
"rules": [
{ "description": "Caps Lock to Fn",
"manipulators": [{"type": "basic", "from": {"key_code": "caps_lock", "modifiers": {"optional": ["any"]}}, "to": [{"key_code": "fn"}]}] },
{ "description": "option + I/J/K/L to Arrow Keys",
"manipulators": [{"type": "basic", "from": {"key_code": "i", "modifiers": {"mandatory": ["option"], "optional": ["any"]}}, "to": [{"key_code": "up_arrow"}] },
{"type": "basic", "from": {"key_code": "j", "modifiers": {"mandatory": ["option"], "optional": ["any"]}}, "to": [{"key_code": "left_arrow"}]},
{"type": "basic", "from": {"key_code": "k", "modifiers": {"mandatory": ["option"], "optional": ["any"]}}, "to": [{"key_code": "down_arrow"}]},
{"type": "basic", "from": {"key_code": "l", "modifiers": {"mandatory": ["option"], "optional": ["any"]}}, "to": [{"key_code": "right_arrow"}]}] },