sudo pip install virtualenv
mkdir ~/.virtualenvs && cd $_
virtualenv theproject
. theproject/bin/activate
install packages now using pip (the prompt should show the active project name)
The current kernel/drivers of Fedora 24 do not support the Wifi chip used on my Mac Book Pro. Proprietary Broadcom drivers are packaged and available in the rpmfusion repo.
Verify that your card is a Broadcom using: lspci -vnn -d 14e4:
Sample output:
02:00.0 Network controller [0280]: Broadcom Corporation BCM4360 802.11ac Wireless Network Adapter [14e4:43a0] (rev 03)
Install the rpmfusion repo, note only "nonfree" is required, as the Broadcom Driver is proprietry: http://rpmfusion.org/
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
package main | |
import ( | |
"crypto/tls" | |
"crypto/x509" | |
"flag" | |
"io/ioutil" | |
"log" | |
"net/http" | |
) |
--[[ | |
Awesome WM configuration template | |
github.com/lcpz | |
--]] | |
-- {{{ Required libraries | |
local awesome, client, mouse, screen, tag = awesome, client, mouse, screen, tag | |
local ipairs, string, os, table, tostring, tonumber, type = ipairs, string, os, table, tostring, tonumber, type |
# Source : https://raw.githubusercontent.com/chjj/compton/master/compton.sample.conf | |
# Shadow | |
shadow = true; | |
no-dnd-shadow = true; | |
no-dock-shadow = true; | |
clear-shadow = true; | |
shadow-radius = 7; | |
shadow-offset-x = -7; | |
shadow-offset-y = -7; |
/* == Montserrat Font Family Styles == */ | |
/* @group Montserrat | |
-------------------------------------------------------------- */ | |
/* = Weights Montserrat | |
-------------------------------------------------------------- */ | |
.thin { |
1. Enable the Fedora 19 YUM Repository for CentOS | |
http://paperiniktips.sviluppo-siti-web.com/how-to-enable-the-fedora-19-yum-repository-for-centos/ | |
Get the Release.key | |
http://paperiniktips.sviluppo-siti-web.com/how-to-install-fedora-19-gpg-key/ | |
rpm --import /mnt/Release.key | |
vi /etc/yum.repos.d/f19.repo |
SPC s c remove highlight | |
**** Files manipulations key bindings | |
Files manipulation commands (start with ~f~): | |
| Key Binding | Description | | |
|-------------+----------------------------------------------------------------| | |
| ~SPC f c~ | copy current file to a different location | | |
| ~SPC f C d~ | convert file from unix to dos encoding | | |
| ~SPC f C u~ | convert file from dos to unix encoding | |