Skip to content

Instantly share code, notes, and snippets.

View vampirepapi's full-sized avatar
🎯
Focusing

Shubham Sourabh vampirepapi

🎯
Focusing
View GitHub Profile
@rumansaleem
rumansaleem / clean-up-arch-linux.md
Created May 28, 2019 08:51
Instructions to clean up Arch Linux (Manjaro)

Contents

  • Clean pkg cache
  • Remove unused packages (orphans)
  • Clean cache in /home
  • remove old config files
  • Find and Remove
    • duplicates
    • empty files
    • empty directories
  • broken symlinks
@nirix
nirix / TODO.md
Last active March 2, 2023 16:56
Stuff to do after Arch Linux install
  1. Install Xfce
    1. Install gvfs (for trash)
    2. Add exec startxfce4 to ~/.xinitrc
    3. Set it up like our old friend, GNOME 2
    4. Install networkmanager and network-manager-applet
    5. Install the Bluebird theme
    6. Install the elementary icons
    7. Get the Arch logo and use it as the Applications menu icon
  2. Install Chromium
  3. Clone dotfiles repo and "install"
@jasonrdsouza
jasonrdsouza / gmail.py
Created January 25, 2012 04:52
Python script to access a gmail account and download particular emails
import email, getpass, imaplib, os
detach_dir = '.' # directory where to save attachments (default: current)
user = raw_input("Enter your GMail username:")
pwd = getpass.getpass("Enter your password: ")
# connecting to the gmail imap server
m = imaplib.IMAP4_SSL("imap.gmail.com")
m.login(user,pwd)
m.select("cs2043") # here you a can choose a mail box like INBOX instead