Skip to content

Instantly share code, notes, and snippets.

View hemenkapadia's full-sized avatar

Hemen Kapadia hemenkapadia

View GitHub Profile
@hemenkapadia
hemenkapadia / pycharm_shortcuts_cheatsheet.md
Last active March 21, 2019 20:29
[Pycharm Cheatsheet] A cheatsheet for pycharm shortcuts an tricks #cheatsheet

Pycharm Shortcuts Cheatsheet

List of important shortcuts for pycharm

Navigation

Ctrl + B                        Navigate to the definition to the term under the cursor
Ctrl + Alt + left arrow         Navigate back to last location in code
@hemenkapadia
hemenkapadia / bootstrap.sh
Created September 30, 2019 20:16
[Ubuntu Bootstrap]
#!/bin/bash
# Check sudo.
# If credentials not already cached, ask for password and cache credentials.
# If already cached, increase sudo timeout by 5 min
sudo -v && exit 1 'Sudo access needed to execute this script'
# First update
echo "Updating apt list ...."