Skip to content

Instantly share code, notes, and snippets.

View MightyMirko's full-sized avatar

Mirko MightyMirko

  • UAS Karlsruhe
  • Germany
View GitHub Profile
@heroheman
heroheman / ranger-cheatsheet.md
Last active June 16, 2025 15:09
Ranger Cheatsheet

Ranger Cheatsheet

General

Shortcut Description
ranger Start Ranger
Q Quit Ranger
R Reload current directory
? Ranger Manpages / Shortcuts
@evantoli
evantoli / GitConfigHttpProxy.md
Last active June 9, 2025 06:25
Configure Git to use a proxy

Configure Git to use a proxy

In Brief

You may need to configure a proxy server if you're having trouble cloning or fetching from a remote repository or getting an error like unable to access '...' Couldn't resolve host '...'.

Consider something like:

@harmonbc
harmonbc / ffhisttocsv.py
Created April 10, 2014 15:10
Turn Firefox's History into a CSV file.
"""
@author: Brandon Harmon
@date : 9 April, 2014
@description:
Pass this program the location of the places.sqlite file for firefox
(for me it is ~/.mozilla/firefox/mwad0hks.default/places.sqlite)
It will output a csv file where you designate in the 2nd param
"""
import sqlite3 as lite
@hindol
hindol / sudoers
Last active January 30, 2024 00:27
How to setup proxy for `sudo` environment. Tested for `Ubuntu` and `Linux Mint`.
# The following should be in `/etc/sudoers`. To edit `/etc/suoders` use the command `sudo visudo` in a terminal.
# *Do NOT attempt to modify the file directly*
Defaults env_reset
Defaults mail_badpass
Defaults env_keep+="http_proxy ftp_proxy all_proxy https_proxy no_proxy" # Add this line
...