conda create -n venv python=3.7
conda activate venv
conda install nb_conda pandas matplotlib numpy scikit-learn
conda install -c conda-forge keras tensorflow
python -m ipykernel install --user name venv
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am gretzky on github. | |
| * I am gretzky (https://keybase.io/gretzky) on keybase. | |
| * I have a public key ASCvipdkHmBm2AVxc-sQMXI6rqlYEJzjn9dPANOoMrPlQgo | |
| To claim this, I am signing this object: |
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
| ############################################ | |
| setting up pihole + pivpn on 1 raspberry pi | |
| for fun and profit (and privacy) | |
| ############################################ | |
| ################# | |
| # what you need # | |
| ################# | |
| # - 1 raspberry pi |
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
| ##################################################### | |
| # dual booting arch linux & macOS | |
| # on a macbook pro 12,1 | |
| # ft. rEFInd | |
| # | |
| # this guide has been smashed together from a variety | |
| # of other awesome guides out there for dual booting | |
| # including but not limited to: | |
| # mark nichols' 5 part guide: https://zanshin.net/2015/02/05/arch-linux-on-a-macbook-pro-part-1-creating-a-usb-installer/ | |
| # the arch linux docs: https://wiki.archlinux.org/index.php/mac#Arch_Linux_with_OS_X_or_other_operating_systems |
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
| ################# | |
| # dual booting arch linux onto macos | |
| ################# | |
| ##### | |
| step 1 - get connected | |
| ##### | |
| run `wifi-menu` | |
| ##### |
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
| " make vim more useful | |
| set nocompatible | |
| filetype off | |
| " vundle! | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'VundleVim/Vundle.vim' |
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
| # Configuration for Alacritty, the GPU enhanced terminal emulator | |
| # Any items in the `env` entry below will be added as | |
| # environment variables. Some entries may override variables | |
| # set by alacritty it self. | |
| env: | |
| # TERM env customization. | |
| # | |
| # If this property is not set, alacritty will set it to xterm-256color. | |
| # |
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
| /*! | |
| * classie - class helper functions | |
| * from bonzo https://github.com/ded/bonzo | |
| * | |
| * classie.has( elem, 'my-class' ) -> true/false | |
| * classie.add( elem, 'my-new-class' ) | |
| * classie.remove( elem, 'my-unwanted-class' ) | |
| * classie.toggle( elem, 'my-class' ) | |
| */ |
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(a) { | |
| a.fn.animatedModal = function(n) { | |
| function o() { | |
| m.css({ | |
| "z-index": e.zIndexOut | |
| }), e.afterClose() | |
| } | |
| function t() { | |
| e.afterOpen() |