clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

adding newest instalations and shortcuts

sspaeti 456ccc28 eacfb790

+336 -315
+13 -3
Brewfile
··· 10 10 tap "osx-cross/avr" 11 11 tap "qmk/qmk" 12 12 tap "scalacenter/bloop" 13 + brew "ack" 13 14 brew "bash-completion" 14 15 brew "commitizen" 15 16 brew "docker", link: false 16 17 brew "docker-machine" 18 + brew "fzf" 19 + brew "httping" 17 20 brew "hub" 18 21 brew "hugo" 19 - brew "neovim", args: ["HEAD"] 22 + brew "neovim" 20 23 brew "node" 21 24 brew "okteto", link: false 22 - brew "pandoc" 25 + brew "pandoc", link: false 26 + brew "pipenv" 23 27 brew "postgresql", restart_service: true 24 - brew "python@3.8", link: true 28 + brew "python@3.8" 29 + brew "python@3.9" 30 + brew "ranger" 31 + brew "ripgrep" 25 32 brew "sbt" 26 33 brew "scala" 34 + brew "the_platinum_searcher" 35 + brew "the_silver_searcher" 27 36 brew "tig" 28 37 brew "tmux" 29 38 brew "tree" ··· 36 45 brew "qmk/qmk/qmk" 37 46 cask "adoptopenjdk11" 38 47 cask "istat-menus" 48 + cask "kitty" 39 49 cask "mark-text"
+16 -8
nvim/init.vim
··· 34 34 Plug 'nvim-telescope/telescope.nvim' 35 35 Plug 'nvim-telescope/telescope-fzy-native.nvim' 36 36 37 + " search 38 + Plug 'dyng/ctrlsf.vim' 39 + 40 + "File Navigation 41 + Plug 'francoiscabrol/ranger.vim' 42 + 43 + "fast async search 44 + Plug 'dyng/ctrlsf.vim' 37 45 " prettier 38 46 Plug 'sbdchd/neoformat' 39 47 ··· 183 191 " nnoremap <C-l> <C-w>l 184 192 185 193 "tab and airline tabs navigation 186 - " nmap <leader>1 :bfirst<CR> 187 - " nmap <leader>2 :bfirst<CR>:bn<CR> 188 - " nmap <leader>3 :bfirst<CR>:2bn<CR> 189 - " nmap <leader>4 :bfirst<CR>:3bn<CR> 190 - " nmap <leader>5 :bfirst<CR>:4bn<CR> 191 - " nmap <leader>6 :bfirst<CR>:5bn<CR> 192 - " nmap <leader>7 :bfirst<CR>:6bn<CR> 193 - " nmap <leader>8 :bfirst<CR>:7bn<CR> 194 + nmap <leader>1 :bfirst<CR> 195 + nmap <leader>2 :bfirst<CR>:bn<CR> 196 + nmap <leader>3 :bfirst<CR>:2bn<CR> 197 + nmap <leader>4 :bfirst<CR>:3bn<CR> 198 + nmap <leader>5 :bfirst<CR>:4bn<CR> 199 + nmap <leader>6 :bfirst<CR>:5bn<CR> 200 + nmap <leader>7 :bfirst<CR>:6bn<CR> 201 + nmap <leader>8 :bfirst<CR>:7bn<CR> 194 202 195 203 " Split window 196 204 nmap ss :split<Return>
+1 -1
obsidian/app.json
··· 29 29 "newFileLocation": "folder", 30 30 "showUnsupportedFiles": false, 31 31 "attachmentFolderPath": "./", 32 - "readableLineLength": false, 32 + "readableLineLength": true, 33 33 "pdfExportSettings": { 34 34 "pageSize": "A4", 35 35 "landscape": false,
+1 -1
obsidian/appearance.json
··· 1 1 { 2 - "baseFontSize": 17, 2 + "baseFontSize": 18, 3 3 "cssTheme": "Obsidian gruvbox", 4 4 "theme": "obsidian", 5 5 "enabledCssSnippets": [
+3 -1
obsidian/community-plugins.json
··· 22 22 "tag-wrangler", 23 23 "extract-highlights-plugin", 24 24 "oz-image-plugin", 25 - "obsidian-languagetool-plugin" 25 + "obsidian-languagetool-plugin", 26 + "obsidian-kindle-plugin", 27 + "obsidian-admonition" 26 28 ]
+70
obsidian/hotkeys.json
··· 65 65 ], 66 66 "key": "T" 67 67 } 68 + ], 69 + "workspace:split-vertical": [ 70 + { 71 + "modifiers": [ 72 + "Ctrl" 73 + ], 74 + "key": "S" 75 + } 76 + ], 77 + "workspace:split-horizontal": [ 78 + { 79 + "modifiers": [ 80 + "Ctrl" 81 + ], 82 + "key": "V" 83 + } 84 + ], 85 + "workspace:close": [ 86 + { 87 + "modifiers": [ 88 + "Ctrl" 89 + ], 90 + "key": "W" 91 + }, 92 + { 93 + "modifiers": [ 94 + "Mod" 95 + ], 96 + "key": "W" 97 + } 98 + ], 99 + "switcher:open": [ 100 + { 101 + "modifiers": [ 102 + "Ctrl" 103 + ], 104 + "key": "O" 105 + }, 106 + { 107 + "modifiers": [ 108 + "Mod" 109 + ], 110 + "key": "O" 111 + } 112 + ], 113 + "graph:open-local": [ 114 + { 115 + "modifiers": [ 116 + "Mod", 117 + "Shift" 118 + ], 119 + "key": "G" 120 + } 121 + ], 122 + "note-folder-autorename:make-folder-note": [ 123 + { 124 + "modifiers": [ 125 + "Mod", 126 + "Shift" 127 + ], 128 + "key": "S" 129 + } 130 + ], 131 + "sliding-panes-obsidian:toggle-sliding-panes-leaf-auto-width": [ 132 + { 133 + "modifiers": [ 134 + "Ctrl" 135 + ], 136 + "key": ";" 137 + } 68 138 ] 69 139 }
+43 -34
obsidian/workspace
··· 4 4 "type": "split", 5 5 "children": [ 6 6 { 7 - "id": "60866eeb15d7097a", 7 + "id": "342d191483e36d49", 8 8 "type": "leaf", 9 9 "state": { 10 10 "type": "markdown", 11 11 "state": { 12 - "file": "⚛️ Areas/📬 Inbox/My Mental Workflow with GTD, SecondBrain and SmartNoteTaking.md", 13 - "mode": "source", 12 + "file": "💡 Resources/🌍 Wiki 📂 Files/🔗 Data Engineering/Python Pandas Koalas/Python/3_CHEAT SHEETs/5_Create virtual environment (virtualenv)/Create virtual environment (virtualenv).md", 13 + "mode": "preview", 14 14 "source": false 15 15 } 16 16 } ··· 40 40 "state": { 41 41 "type": "search", 42 42 "state": { 43 - "query": "duckdb", 43 + "query": "LG 34UC88-B", 44 44 "matchingCase": false, 45 45 "explainSearch": false, 46 46 "collapseAll": true, ··· 64 64 } 65 65 ], 66 66 "direction": "horizontal", 67 - "width": 319.5, 67 + "width": 240.5, 68 68 "collapsed": true 69 69 }, 70 70 "right": { ··· 74 74 { 75 75 "id": "ea371bd70ce46513", 76 76 "type": "tabs", 77 - "dimension": 23.58490566037736, 77 + "dimension": 41.26074498567335, 78 78 "children": [ 79 79 { 80 80 "id": "15a2709836bbd16c", ··· 82 82 "state": { 83 83 "type": "outline", 84 84 "state": { 85 - "file": "⚛️ Areas/📬 Inbox/My Mental Workflow with GTD, SecondBrain and SmartNoteTaking.md" 85 + "file": "💡 Resources/🌍 Wiki 📂 Files/🔗 Data Engineering/Python Pandas Koalas/Python/3_CHEAT SHEETs/5_Create virtual environment (virtualenv)/Create virtual environment (virtualenv).md" 86 86 } 87 87 } 88 88 }, 89 89 { 90 - "id": "ddb0bcce15e78a0d", 90 + "id": "96c102a3d9cbb92b", 91 + "type": "leaf", 92 + "state": { 93 + "type": "advanced-tables-toolbar", 94 + "state": {} 95 + } 96 + }, 97 + { 98 + "id": "9f49691c0d3e55d3", 91 99 "type": "leaf", 92 100 "state": { 93 101 "type": "online.larslockefeer.obsidian-plugin-todo", ··· 99 107 { 100 108 "id": "682b71d3e4b0b542", 101 109 "type": "tabs", 102 - "dimension": 30.424528301886795, 110 + "dimension": 29.441260744985676, 103 111 "children": [ 104 112 { 105 113 "id": "f12a4c27da0cfe28", ··· 107 115 "state": { 108 116 "type": "localgraph", 109 117 "state": { 110 - "file": "⚛️ Areas/📬 Inbox/My Mental Workflow with GTD, SecondBrain and SmartNoteTaking.md", 118 + "file": "💡 Resources/🌍 Wiki 📂 Files/🔗 Data Engineering/Python Pandas Koalas/Python/3_CHEAT SHEETs/5_Create virtual environment (virtualenv)/Create virtual environment (virtualenv).md", 111 119 "options": { 112 - "collapse-filter": false, 120 + "collapse-filter": true, 113 121 "search": "", 114 122 "localJumps": 1, 115 123 "localBacklinks": true, 116 124 "localForelinks": true, 117 - "localInterlinks": false, 125 + "localInterlinks": true, 118 126 "showTags": false, 119 127 "showAttachments": false, 120 128 "hideUnresolved": false, ··· 137 145 ], 138 146 "collapse-display": true, 139 147 "showArrow": false, 140 - "textFadeMultiplier": 0, 141 - "nodeSizeMultiplier": 1, 148 + "textFadeMultiplier": -0.4, 149 + "nodeSizeMultiplier": 0.925827991452992, 142 150 "lineSizeMultiplier": 1, 143 151 "collapse-forces": true, 144 - "centerStrength": 0.518713248970312, 145 - "repelStrength": 10, 146 - "linkStrength": 1, 147 - "linkDistance": 250, 148 - "scale": 0.47791357988681826, 152 + "centerStrength": 0.692174145299145, 153 + "repelStrength": 10.6383547008547, 154 + "linkStrength": 0.786324786324786, 155 + "linkDistance": 256, 156 + "scale": 0.7590679155213744, 149 157 "close": true 150 158 } 151 159 } ··· 156 164 { 157 165 "id": "f02bd5e72b99ee5d", 158 166 "type": "tabs", 159 - "dimension": 45.990566037735846, 167 + "dimension": 29.297994269340975, 160 168 "children": [ 161 169 { 162 170 "id": "f6ec3c3761eee3d3", ··· 164 172 "state": { 165 173 "type": "backlink", 166 174 "state": { 167 - "file": "⚛️ Areas/📬 Inbox/My Mental Workflow with GTD, SecondBrain and SmartNoteTaking.md", 175 + "file": "💡 Resources/🌍 Wiki 📂 Files/🔗 Data Engineering/Python Pandas Koalas/Python/3_CHEAT SHEETs/5_Create virtual environment (virtualenv)/Create virtual environment (virtualenv).md", 168 176 "collapseAll": true, 169 177 "extraContext": false, 170 178 "sortOrder": "alphabetical", 171 179 "showSearch": false, 172 180 "searchQuery": "", 173 181 "backlinkCollapsed": false, 174 - "unlinkedCollapsed": true 182 + "unlinkedCollapsed": false 175 183 } 176 184 } 177 185 } ··· 179 187 } 180 188 ], 181 189 "direction": "horizontal", 182 - "width": 269.5 190 + "width": 264.5, 191 + "collapsed": true 183 192 }, 184 - "active": "60866eeb15d7097a", 193 + "active": "342d191483e36d49", 185 194 "lastOpenFiles": [ 186 - "⚛️ Areas/📬 Inbox/My Mental Workflow with GTD, SecondBrain and SmartNoteTaking.md", 187 - "⚛️ Areas/⌨️ sspaeti-com/✍🏻 Writing/✍🏻 Writing Kanban.md", 188 - "⚛️ Areas/📬 Inbox/Obsidian Hotkeys.md", 189 - "💡 Resources/🌍 Wiki 📂 Files/🔧 Productivity/Tools/💎 Obsidian/Obsidian.md", 190 - "⚛️ Areas/📓 Journal/Dalies/2021 Daily.md", 191 - "💡 Resources/🗃 Zettelkasten/Second Brain.md", 192 - "💡 Resources/🌍 Wiki 📂 Files/🔧 Productivity/🧠 Second Brain/Zettelkasten Literature/How To Take Smart Notes- 10 Principles to Revolutionize Your Note-Taking and Writing.md", 193 - "⚛️ Areas/📬 Inbox/R Readwise/Articles/Building a Second Brain - ReadWise.md", 194 - "💡 Resources/🌍 Wiki 📂 Files/🔧 Productivity/🧠 Second Brain/Visual/Building a Second Brain Visual.md", 195 - "💡 Resources/🌍 Wiki 📂 Files/🔧 Productivity/🧠 Second Brain/How to build a Second Brain.md" 195 + "💡 Resources/🌍 Wiki 📂 Files/🔗 Data Engineering/Python Pandas Koalas/Python/3_CHEAT SHEETs/5_Create virtual environment (virtualenv)/Create virtual environment (virtualenv).md", 196 + "⚛️ Areas/📬 Inbox/ctrlsf - vim search in file.md", 197 + "⚛️ Areas/📬 Inbox/Steuererkärung 2022 - Simon Stöckli.md", 198 + "💡 Resources/🌍 Wiki 📂 Files/🐧 Linux/Vim & Tmux/Vim and Tmux Shortcuts.md", 199 + "🌿 Projects/21-08-01 - Personal Finance DWH/21-08-01 - Personal Finance DWH.md", 200 + "⚛️ Areas/💻 Computer Stuff/Macbook/3_Monitor/Monitor.md", 201 + "⚛️ Areas/📓 Journal/Thoughts On/Side Projects.md", 202 + "⚛️ Areas/💳 Finance/Ausgaben/Subscriptions.md", 203 + "⚛️ Areas/🐙 Airbyte/Admin/Work Set-Up/Home Office Set-up.md", 204 + "💡 Resources/🗃 Zettelkasten/🔩 Tools/Pandera.md" 196 205 ] 197 206 }
+73 -69
python/venvs/banking.txt
··· 1 1 alembic==1.6.5 2 2 aniso8601==7.0.0 3 - appdirs==1.4.4 4 - astroid==2.6.6 5 - attrs==21.2.0 6 - black==21.7b0 7 - bleach==4.0.0 8 - certifi==2021.5.30 9 - charset-normalizer==2.0.4 10 - click==7.1.2 3 + anyio==3.5.0 4 + appnope==0.1.3 5 + asgiref==3.5.0 6 + asttokens==2.0.5 7 + attrs==21.4.0 8 + backcall==0.2.0 9 + black==22.3.0 10 + bleach==5.0.0 11 + certifi==2021.10.8 12 + charset-normalizer==2.0.12 13 + click==8.1.2 11 14 coloredlogs==14.0 12 - croniter==1.0.15 13 - dagit==0.13.8 14 - dagster==0.13.8 15 - dagster-graphql==0.13.8 16 - dagster-pandas==0.13.8 17 - DateTime==4.3 15 + croniter==1.3.4 16 + dagit==0.14.8 17 + dagster==0.14.8 18 + dagster-graphql==0.14.8 19 + dagster-pandas==0.14.8 20 + DateTime==4.4 21 + decorator==5.1.1 18 22 defusedxml==0.7.1 19 - docstring-parser==0.10 20 - entrypoints==0.3 21 - Flask==1.1.4 22 - Flask-Cors==3.0.10 23 - Flask-GraphQL==2.0.1 24 - Flask-Sockets==0.2.1 25 - future==0.18.2 26 - gevent==21.8.0 23 + docstring-parser==0.13 24 + duckdb==0.3.3 25 + entrypoints==0.4 26 + executing==0.8.3 27 + gevent==21.12.0 27 28 gevent-websocket==0.10.1 28 29 gql==2.0.0 29 30 graphene==2.1.9 30 31 graphql-core==2.3.2 31 32 graphql-relay==2.0.1 32 - graphql-server-core==1.2.0 33 - graphql-ws==0.3.1 34 - greenlet==1.1.1 35 - grpcio==1.39.0 36 - grpcio-health-checking==1.39.0 37 - humanfriendly==9.2 38 - idna==3.2 39 - iniconfig==1.1.1 33 + greenlet==1.1.2 34 + grpcio==1.44.0 35 + grpcio-health-checking==1.43.0 36 + h11==0.13.0 37 + httptools==0.4.0 38 + humanfriendly==10.0 39 + idna==3.3 40 + ipython==8.2.0 40 41 ipython-genutils==0.2.0 41 - isort==5.9.3 42 - itsdangerous==1.1.0 43 - jedi==0.17.2 42 + jedi==0.18.1 44 43 Jinja2==2.11.3 45 - jsonschema==3.2.0 46 - jupyter-core==4.7.1 47 - lazy-object-proxy==1.6.0 48 - Mako==1.1.4 44 + jsonschema==4.4.0 45 + jupyter-core==4.9.2 46 + Mako==1.2.0 49 47 MarkupSafe==2.0.1 50 - mccabe==0.6.1 48 + matplotlib-inline==0.1.3 51 49 mistune==0.8.4 52 - msgpack==1.0.2 53 50 mypy-extensions==0.4.3 54 51 nbconvert==5.6.1 55 52 nbformat==5.1.3 56 - neovim==0.3.1 57 - numpy==1.21.1 58 - packaging==21.0 59 - pandas==1.3.1 60 - pandocfilters==1.4.3 61 - parso==0.7.1 53 + numpy==1.22.3 54 + packaging==21.3 55 + pandas==1.4.2 56 + pandocfilters==1.5.0 57 + parso==0.8.3 62 58 pathspec==0.9.0 63 59 pendulum==2.1.2 64 - pluggy==0.13.1 60 + pep562==1.1 61 + pexpect==4.8.0 62 + pickleshare==0.7.5 63 + platformdirs==2.5.1 65 64 promise==2.3 66 - protobuf==3.17.3 67 - py==1.10.0 68 - Pygments==2.9.0 69 - pylint==2.9.6 70 - pynvim==0.4.3 71 - pyparsing==2.4.7 72 - pyrsistent==0.18.0 73 - pytest==6.2.4 65 + prompt-toolkit==3.0.29 66 + protobuf==3.20.0 67 + ptyprocess==0.7.0 68 + pure-eval==0.2.2 69 + Pygments==2.11.2 70 + pyparsing==3.0.8 71 + pyrsistent==0.18.1 74 72 python-dateutil==2.8.2 73 + python-dotenv==0.20.0 75 74 python-editor==1.0.4 76 - pytz==2021.1 75 + pytz==2022.1 77 76 pytzdata==2020.1 78 - PyYAML==5.4.1 79 - regex==2021.8.3 80 - requests==2.26.0 77 + PyYAML==6.0 78 + requests==2.27.1 81 79 Rx==1.6.1 82 80 six==1.16.0 83 - SQLAlchemy==1.4.22 81 + sniffio==1.2.0 82 + SQLAlchemy==1.4.35 83 + stack-data==0.2.0 84 + starlette==0.19.0 84 85 tabulate==0.8.9 85 - testpath==0.5.0 86 - toml==0.10.2 87 - tomli==1.2.1 88 - toposort==1.6 89 - tqdm==4.62.0 90 - traitlets==5.0.5 86 + testpath==0.6.0 87 + tomli==2.0.1 88 + toposort==1.7 89 + tqdm==4.64.0 90 + traitlets==5.1.1 91 91 typing-compat==0.1.0 92 - urllib3==1.26.6 93 - watchdog==2.1.3 92 + typing-extensions==4.1.1 93 + urllib3==1.26.9 94 + uvicorn==0.17.6 95 + uvloop==0.16.0 96 + watchdog==2.1.7 97 + watchgod==0.8.2 98 + wcwidth==0.2.5 94 99 webencodings==0.5.1 95 - Werkzeug==1.0.1 96 - wrapt==1.12.1 100 + websockets==10.2 97 101 xlrd==2.0.1 98 102 zope.event==4.5.0 99 103 zope.interface==5.4.0
+112 -194
python/venvs/dagster.txt
··· 1 - alembic==1.4.2 2 - amqp==2.6.0 1 + alembic==1.6.5 3 2 aniso8601==7.0.0 4 3 ansiwrap==0.8.4 5 4 anyio==3.5.0 6 5 appdirs==1.4.4 7 - appnope==0.1.0 6 + appnope==0.1.3 8 7 asgiref==3.5.0 9 - astroid==2.4.2 8 + astroid==2.5 9 + asttokens==2.0.5 10 10 atomicwrites==1.4.0 11 - attrs==19.3.0 12 - aws-sam-translator==1.27.0 13 - aws-xray-sdk==2.6.0 11 + attrs==21.4.0 14 12 backcall==0.2.0 15 - beautifulsoup4==4.9.3 16 - billiard==3.6.3.0 17 13 black==19.10b0 18 - bleach==3.1.5 19 - boto==2.49.0 20 - boto3==1.14.23 21 - botocore==1.17.23 22 - branca==0.4.1 23 - cached-property==1.5.2 24 - cachetools==4.1.1 25 - celery==4.4.6 26 - certifi==2020.6.20 27 - cffi==1.14.3 28 - cfn-lint==0.37.1 29 - chardet==3.0.4 30 - click==7.1.2 31 - click-plugins==1.1.1 32 - cligj==0.5.0 14 + bleach==5.0.0 15 + boto3==1.21.42 16 + botocore==1.24.42 17 + branca==0.4.2 18 + certifi==2021.10.8 19 + charset-normalizer==2.0.12 20 + click==8.1.2 33 21 coloredlogs==14.0 34 - contextlib2==0.6.0.post1 35 - croniter==0.3.34 36 - cryptography==3.1.1 37 - cycler==0.10.0 22 + croniter==1.3.4 23 + cycler==0.11.0 38 24 dagit==0.14.1 39 25 dagster==0.14.1 40 26 dagster-aws==0.14.1 41 - dagster-cron==0.11.9 42 27 dagster-graphql==0.14.1 43 28 dagster-pandas==0.14.1 44 29 dagster-postgres==0.14.1 45 30 dagster-pyspark==0.14.1 46 31 dagster-spark==0.14.1 47 32 dagstermill==0.14.1 48 - decorator==4.4.2 49 - defusedxml==0.6.0 50 - descartes==1.1.0 51 - distlib==0.3.1 52 - docker==3.7.3 53 - docker-compose==1.23.2 54 - docker-pycreds==0.4.0 55 - dockerpty==0.4.1 56 - docopt==0.6.2 57 - docstring-parser==0.7.1 58 - docutils==0.15.2 59 - ecdsa==0.14.1 60 - entrypoints==0.3 61 - filelock==3.0.12 62 - Fiona==1.8.17 63 - flake8==3.8.3 64 - Flask==1.1.2 65 - Flask-Cors==3.0.8 66 - Flask-GraphQL==2.0.1 67 - Flask-Sockets==0.2.1 68 - flower==0.9.5 69 - folium==0.11.0 70 - funcsigs==1.0.2 71 - future==0.18.2 72 - geopandas==0.8.1 73 - gevent==20.6.2 33 + debugpy==1.6.0 34 + decorator==5.1.1 35 + defusedxml==0.7.1 36 + distlib==0.3.4 37 + docstring-parser==0.13 38 + entrypoints==0.4 39 + executing==0.8.3 40 + fastjsonschema==2.15.3 41 + filelock==3.6.0 42 + flake8==4.0.1 43 + folium==0.12.1.post1 44 + fonttools==4.32.0 45 + gevent==21.12.0 74 46 gevent-websocket==0.10.1 75 - google-api-core==1.21.0 76 - google-api-python-client==1.10.0 77 - google-auth==1.19.2 78 - google-auth-httplib2==0.0.4 79 - google-cloud-bigquery==1.25.0 80 - google-cloud-core==1.3.0 81 - google-cloud-storage==1.29.0 82 - google-resumable-media==0.5.1 83 - googleapis-common-protos==1.52.0 84 47 gql==2.0.0 85 - graphene==2.1.8 48 + graphene==2.1.9 86 49 graphql-core==2.3.2 87 50 graphql-relay==2.0.1 88 - graphql-server-core==1.2.0 89 - graphql-ws==0.3.1 90 - greenlet==0.4.16 91 - grpcio==1.33.2 92 - grpcio-health-checking==1.33.2 51 + greenlet==1.1.2 52 + grpcio==1.44.0 53 + grpcio-health-checking==1.43.0 93 54 h11==0.13.0 94 - httplib2==0.18.1 95 - httptools==0.3.0 96 - humanfriendly==8.2 97 - humanize==2.5.0 98 - idna==2.10 99 - ijson==3.1.3 100 - importlib-metadata==1.7.0 101 - iniconfig==1.0.1 102 - ipykernel==5.3.3 103 - ipython==7.16.1 104 - ipython-genutils==0.2.0 55 + httptools==0.4.0 56 + humanfriendly==10.0 57 + idna==3.3 58 + ijson==3.1.4 59 + ipykernel==6.13.0 60 + ipython==8.2.0 105 61 isort==4.3.21 106 - itsdangerous==1.1.0 107 - jedi==0.17.2 108 - jedi-language-server==0.19.5 109 - Jinja2==2.11.2 110 - jmespath==0.10.0 111 - joblib==0.17.0 112 - jsondiff==1.2.0 113 - jsonpatch==1.26 114 - jsonpickle==1.4.1 115 - jsonpointer==2.0 116 - jsonschema==2.6.0 117 - junit-xml==1.9 118 - jupyter-client==6.1.6 119 - jupyter-core==4.6.3 120 - kiwisolver==1.2.0 121 - koalas==1.4.0 122 - kombu==4.6.11 123 - kubernetes==11.0.0 124 - lazy-object-proxy==1.4.3 125 - Mako==1.1.3 126 - MarkupSafe==1.1.1 127 - matplotlib==3.3.0 62 + jedi==0.18.1 63 + Jinja2==2.11.3 64 + jmespath==1.0.0 65 + joblib==1.1.0 66 + jsonschema==4.4.0 67 + jupyter-client==7.2.2 68 + jupyter-core==4.9.2 69 + kiwisolver==1.4.2 70 + koalas==1.8.2 71 + lazy-object-proxy==1.7.1 72 + Mako==1.2.0 73 + MarkupSafe==2.0.1 74 + matplotlib==3.5.1 75 + matplotlib-inline==0.1.3 128 76 mccabe==0.6.1 129 77 mistune==0.8.4 130 78 mock==3.0.5 131 - more-itertools==8.5.0 132 - moto==1.3.16 133 - msgpack==1.0.2 134 - munch==2.5.0 135 - mypy==0.931 79 + more-itertools==8.12.0 80 + mypy==0.942 136 81 mypy-extensions==0.4.3 137 - natsort==7.0.1 82 + nbclient==0.6.0 138 83 nbconvert==5.6.1 139 - nbformat==5.0.7 140 - neovim==0.3.1 141 - networkx==2.5 142 - nteract-scrapbook==0.4.1 143 - numpy==1.19.0 144 - oauth2client==4.1.3 145 - oauthlib==3.1.0 84 + nbformat==5.3.0 85 + nest-asyncio==1.5.5 86 + numpy==1.22.3 146 87 packaging==21.3 147 - pandas==1.0.5 88 + pandas==1.4.2 148 89 pandasql==0.7.3 149 - pandocfilters==1.4.2 150 - papermill==1.2.1 151 - parso==0.7.0 152 - pathspec==0.8.0 153 - pathtools==0.1.2 154 - pendulum==1.4.4 90 + pandocfilters==1.5.0 91 + papermill==2.3.4 92 + parso==0.8.3 93 + pathspec==0.9.0 94 + pendulum==2.1.2 155 95 pexpect==4.8.0 156 96 pickleshare==0.7.5 157 - Pillow==7.2.0 97 + Pillow==9.1.0 98 + platformdirs==2.5.1 158 99 pluggy==0.13.1 159 - prometheus-client==0.8.0 160 100 promise==2.3 161 - prompt-toolkit==3.0.5 162 - protobuf==3.13.0 163 - psycopg2-binary==2.8.5 164 - ptyprocess==0.6.0 165 - py==1.9.0 101 + prompt-toolkit==3.0.29 102 + protobuf==3.20.0 103 + psutil==5.9.0 104 + psycopg2-binary==2.9.3 105 + ptyprocess==0.7.0 106 + pure-eval==0.2.2 107 + py==1.11.0 166 108 py4j==0.10.9 167 - pyarrow==0.17.1 168 - pyasn1==0.4.8 169 - pyasn1-modules==0.2.8 170 - pycodestyle==2.6.0 171 - pycparser==2.20 172 - pyflakes==2.2.0 173 - pygls==0.9.1 174 - Pygments==2.6.1 109 + pyarrow==7.0.0 110 + pycodestyle==2.8.0 111 + pyflakes==2.4.0 112 + Pygments==2.11.2 175 113 pylint==2.6.0 176 - pynvim==0.4.3 177 - pyparsing==2.4.7 178 - pyproj==2.6.1.post1 179 - pyrsistent==0.16.0 180 - # Editable install with no version control (pyspark==3.0.1) 181 - -e /Users/sspaeti/Documents/spark/spark-3.0.1-bin-hadoop3.2/python 114 + pyparsing==3.0.8 115 + pyrsistent==0.18.1 116 + pyspark==3.0.3 182 117 pyspark-stubs==3.0.0.dev8 183 118 pytest==4.6.7 184 - python-crontab==2.5.1 185 - python-dateutil==2.8.1 186 - python-dotenv==0.19.2 119 + python-dateutil==2.8.2 120 + python-dotenv==0.20.0 187 121 python-editor==1.0.4 188 - python-jose==3.2.0 189 - pytz==2020.1 122 + pytz==2022.1 190 123 pytzdata==2020.1 191 - PyYAML==5.4.1 192 - pyzmq==19.0.1 193 - redis==3.5.3 194 - regex==2020.7.14 195 - requests==2.24.0 196 - requests-oauthlib==1.3.0 197 - responses==0.12.0 198 - rope==0.18.0 199 - rsa==4.6 124 + PyYAML==6.0 125 + pyzmq==22.3.0 126 + regex==2022.3.15 127 + requests==2.27.1 200 128 Rx==1.6.1 201 - s3transfer==0.3.3 202 - scikit-learn==0.23.2 203 - scipy==1.5.4 129 + s3transfer==0.5.2 130 + scikit-learn==1.0.2 131 + scipy==1.8.0 204 132 scrapbook==0.5.0 205 - seaborn==0.11.0 206 - Shapely==1.7.1 207 - six==1.15.0 133 + seaborn==0.11.2 134 + six==1.16.0 208 135 sniffio==1.2.0 209 - soupsieve==2.0.1 210 - SQLAlchemy==1.3.18 211 - sshpubkeys==3.1.0 212 - starlette==0.18.0 213 - tabulate==0.8.7 214 - tenacity==6.2.0 215 - testpath==0.4.4 216 - texttable==0.9.1 136 + SQLAlchemy==1.4.35 137 + stack-data==0.2.0 138 + starlette==0.19.0 139 + tabulate==0.8.9 140 + tenacity==8.0.1 141 + testpath==0.6.0 217 142 textwrap3==0.9.2 218 - threadpoolctl==2.1.0 219 - toml==0.10.1 143 + threadpoolctl==3.1.0 144 + toml==0.10.2 220 145 tomli==2.0.1 221 - toposort==1.5 222 - tornado==6.0.4 146 + toposort==1.7 147 + tornado==6.1 223 148 tox==3.14.2 224 - tqdm==4.48.0 225 - traitlets==4.3.3 226 - typed-ast==1.4.1 149 + tqdm==4.64.0 150 + traitlets==5.1.1 151 + typed-ast==1.5.2 227 152 typing-compat==0.1.0 228 - typing-extensions==4.1.1 229 - tzlocal==1.5.1 230 - uritemplate==3.0.1 231 - urllib3==1.25.10 232 - uvicorn==0.17.5 153 + typing_extensions==4.1.1 154 + urllib3==1.26.9 155 + uvicorn==0.17.6 233 156 uvloop==0.16.0 234 - vine==1.3.0 235 - virtualenv==20.0.34 236 - watchdog==0.10.3 237 - watchgod==0.7 157 + virtualenv==20.14.1 158 + watchdog==2.1.7 159 + watchgod==0.8.2 238 160 wcwidth==0.2.5 239 161 webencodings==0.5.1 240 - websocket-client==0.57.0 241 162 websockets==10.2 242 - Werkzeug==1.0.1 243 163 wrapt==1.12.1 244 - xmltodict==0.12.0 245 - zipp==3.1.0 246 - zope.event==4.4 247 - zope.interface==5.1.0 164 + zope.event==4.5.0 165 + zope.interface==5.4.0
-1
vim/vimrc
··· 36 36 "auto format on save with Black 37 37 autocmd BufWritePre *.py execute ':Black' 38 38 39 - 40 39 "plugs to intall 41 40 call plug#begin('~/.vim/bundle') 42 41 "theme
+2 -2
vscode/settings.json
··· 283 283 "redhat.telemetry.enabled": false, 284 284 "editor.inlineSuggest.enabled": true, 285 285 "security.workspace.trust.untrustedFiles": "open", 286 - "window.zoomLevel": 1, 287 286 "github.copilot.enable": { 288 287 "*": true, 289 288 "yaml": false, ··· 294 293 "**/.bloop": true, 295 294 "**/.metals": true, 296 295 "**/.ammonite": true 297 - } 296 + }, 297 + "telemetry.telemetryLevel": "off" 298 298 }
+2 -1
zsh/aliases.shrc
··· 9 9 alias pip='noglob pip' 10 10 alias ide=~/.tmux/ide 11 11 alias tmux-session=~/.tmux/tmux-session 12 - 12 + # when closing ranger it will be at the path you were 13 + alias ranger='ranger --choosedir=$HOME/.rangerdir; LASTDIR=`cat $HOME/.rangerdir`; cd "$LASTDIR"' 13 14 14 15 #git shortcuts 15 16 alias g='git'