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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDcn3fwDH5AhVle/PgysQCDuci597AMZLwHLhtHiLODytMCoF+ibWr8123Kzbx0fl8V3xPYXALFYcSfrhhf0HZh0KZ9tfAklbVSVLLRWPWz30nVtnOGXJaNYpVj3lFBmssVkTjRZdpumBobGlD3QriFZc4Eaznv/revpBAeyfB7tMW3EJkhtSU9EmSf6eigFRqgjzn8y6G0vOkwhEXY0R/yNT/3UA1fkijd+HxCBqtNA2lEjT5BGhPynCvl07wxoaHV4P+NVRIPC43Ey6okTKtl0t+uZPfTPHM0Yv25f49/4jIb/pfVKIbHjHa5kDLWd8RjMyU57StrVJLlQvyql1ZR balapa@balapas-Macbook-Pro.local |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDG181NZdxq18wXMVqaw2N/vDXqY9Ak8iP3AM/ej/E95sjlMmq42i0852N+SBGJgHvJxqkmvxTbMaqo8Yj3rqhIv8vQDBAIaJsMqnqq2X5a6x7pvKBtmGx0AcIcGMP+uzGPbeisQYTJFNPftAfWq2hmZFoW0gJhfsxGXyAro2G8krEWAClcwI/diNVJ3xIX6MpX5BKmgNfG0j/imVuJ4qiGV1f1xwkuHhxd5iOzBK9vfxfTU872gvLiN67yttcMXSDI8LTRJ69vnG4ccY72EYAdJ05526IA7PyXFXN3R/ueJmGBHP+Vn3oT4YllDb4Ls6ENQmv4JeWMUGuPWDRf49Mt balapa@MacBook-Pro.local |
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
| # If you come from bash you might have to change your $PATH. | |
| export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH=/Users/balapa/.oh-my-zsh | |
| export LANG=C | |
| # Set name of the theme to load. Optionally, if you set this to "random" | |
| # it"ll load a random theme each time that oh-my-zsh is loaded. | |
| # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes |
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
| filetype off | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| " fzf vim runtime path | |
| set rtp+=/usr/local/opt/fzf | |
| " Vundle begin | |
| call vundle#begin() |
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
| # --------------------------------------------------- | |
| # Vimeo | |
| # --------------------------------------------------- | |
| 104.156.85.217 vimeo.com | |
| 23.214.58.223 secure-c.vimeocdn.com | |
| 74.113.233.128 developer.vimeo.com | |
| 23.235.43.143 i.vimeocdn.com | |
| 23.235.43.143 f.vimeocdn.com | |
| 80.239.137.98 a.vimeocdn.com |
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
| function getSiblings(el){ | |
| var siblings = [], | |
| sibling = el.parentNode.firstChild; | |
| for( ; sibling; sibling = sibling.nextSibling ) { | |
| if(sibling.nodeType === 1 && sibling != el){ | |
| siblings.push(sibling); | |
| } | |
| } |