Skip to content

Instantly share code, notes, and snippets.

View ichaida's full-sized avatar

Ismail Chaida ichaida

View GitHub Profile
@ichaida
ichaida / PyQt5_Setup.md
Last active July 20, 2016 10:54
Qt 5 Framework PyQt5 setup on Mac OS X El Capitan

Qt 5 Framework PyQt5 setup on Mac OS X El Capitan


First of all we have to install SIP binary, I found some issue linking the binary to Python Qt therefore, I've used Hombrew to do the job

brew install sip

Let's force the symlinks creation if there is any previous versions of SIP brew link --overwrite sip

Mac OS X 10.10 Yosemite

Custom recipe to get OS X 10.10 Yosemite running from scratch, setup applications and developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.

This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.

You are encouraged to fork this and modify it to your heart's content to match your own needs.

Install Software

@ichaida
ichaida / 0Inbox.sh
Last active August 29, 2015 14:11 — forked from msis/0Inbox.sh
#!/bin/bash
#this script looks for a window named Mozilla Firefox and then starts procedure to select all mails in the current folder and archive them
for i in {1..30}
do
xdotool search --name "Mozilla Firefox" key s+a
xdotool search --name "Mozilla Firefox" key e
sleep 5
done