Write here Write here
Write here
Write here
| Bug Report Template | |
| ==================== | |
| Bug ID: | |
| Bug Name: | |
| Summary: | |
| Submit Date: | |
| Reporter: | |
| Platform: | |
| Operating System: | |
| Browser: |
| sudo apt-get install bbswitch-dkms | |
| then | |
| gksudo gedit /etc/modprobe.d/blacklist.conf | |
| and add the following lines | |
| # Blacklist the alternative nvidia module | |
| blacklist nouveau |
I hereby claim:
To claim this, I am signing this object:
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
| var fs = require('fs') | |
| fs.readFile('/Does/not/exist', handleFile) | |
| function handleFile (error, file) { | |
| if (error) return console.error('Uhoh, there was an error', error) | |
| // otherwise, continue on and use `file` in your code | |
| } |
| function returnObject(aString){ | |
| //object initializer | |
| var obj = {}; | |
| //loop through letters of string and populate keys | |
| for (i = 0; i < aString.length; i++) { | |
| obj[aString[i]] = (obj[aString[i]] || 0) + 1; | |
| } | |
| //return obj to function | |
| return obj; |