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
RepoMigrator - Migrates git repositories from one remote to another.(ghub bitbucket gitlab)? | |
<site>tools - Extracts stuff from a useful website and other stuff (???) | |
RaspPiCam - Raspberry pi security camera | |
ShellScriptGen - Generates a shell script for first install of ubuntu (installs stuff, sets up packages etc etc) | |
PiC - Make a computer in python with a simple cpu etc etc (will help knowledge of cs) | |
Algs&DS - Implement common (and not so common) algorithms and data structs in python | |
PyNav - Satellite naviagation system in python (with data not satellites) | |
Shell script to batch install jetbrains stuff from downloaded .tar(s) and set up desktop entries |
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 | |
cd ~ | |
FROM_REPOS="git nautilus-dropbox vlc keepass2 python-pip shutter steam" | |
FROM_PIP="virtualenv" | |
REMOVE_HOME_FOLDERS=true | |
HOME_FOLDERS="Music Videos Templates Pictures" | |
sudo apt install `echo $FROM_REPOS` -y |