- USA
- KSAN
- KDEN
- KMSP
- KIAD
- KPHX
- KSFO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| home.file = { | |
| ".config/kitty/kitty.conf".source = | |
| config.lib.file.mkOutOfStoreSymlink "${config.xdg.configHome}/nix-darwin/dotfiles/kitty.conf"; | |
| ".config/nvim/".source = | |
| config.lib.file.mkOutOfStoreSymlink "${config.xdg.configHome}/nix-darwin/dotfiles/nvim"; | |
| ".npmrc".source = dotfiles/npmrc; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "title": "Caps Lock Modifications", | |
| "rules": [ | |
| { | |
| "description": "Caps Lock Modifications", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "caps_lock", | |
| "modifiers": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MY_BIRTHDAY = 89 | |
| SIMULATIONS = 100000 | |
| # true if found someone with my birthday | |
| def run_test(num_people) | |
| ((1..num_people).filter do | |
| rand(365) == MY_BIRTHDAY | |
| end).length > 0 | |
| end |
An analysis by Vincent Amendolare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ###################################################################################################### | |
| # This script will toggle minimize/activate first window with specified class | |
| # If window not found program will be launched | |
| # | |
| # window class can be found with next programs: | |
| # wmctrl -x -l | |
| # xprop | |
| # | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| name = Sebastião Ferreira, Jr | |
| email = [email protected] | |
| username = sebastorama | |
| [core] | |
| editor = vim | |
| autocrlf = true | |
| whitespace = trailing-space | |
| [diff] | |
| [color] |