THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
Now located at https://github.com/JeffPaine/beautiful_idiomatic_python.
Github gists don't support Pull Requests or any notifications, which made it impossible for me to maintain this (surprisingly popular) gist with fixes, respond to comments and so on. In the interest of maintaining the quality of this resource for others, I've moved it to a proper repo. Cheers!
| #!/bin/bash | |
| # INSTALL ORACLE INSTANT CLIENT # | |
| ################################# | |
| # NOTE: Oracle requires at least 1176 MB of swap (or something around there). | |
| # If you are using CentOS in a VMWare VM, there's a good chance that you don't have enough by default. | |
| # If this describes you and you need to add more swap, see the | |
| # "Adding a Swap File to a CentOS System" section, here: | |
| # http://www.techotopia.com/index.php/Adding_and_Managing_CentOS_Swap_Space |
| s/NUMBER(22,0)/BIGINT/ | |
| s/NUMBER(9,0)/INT/ | |
| s/NUMBER(8,0)/INT/ | |
| s/NUMBER(6,0)/MEDIUMINT/ | |
| s/NUMBER(5,0)/SMALLINT/ | |
| s/NUMBER(3,0)/TINYINT/ | |
| s/NUMBER(2,0)/TINYINT/ | |
| s/NUMBER(1,0)/BIT/ | |
| s/NUMBER(16,2)/DECIMAL(16,2)/ | |
| s/NUMBER(11,2)/DECIMAL(11,2)/ |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Blue Component</key> | |
| <real>0.19370138645172119</real> | |
| <key>Green Component</key> | |
| <real>0.15575926005840302</real> |
| repo for a more modern version of qt (4.7) | |
| http://atrpms.net/documentation/install/ | |
| http://packages.atrpms.net/dist/el5/qt4/ | |
| cat /etc/yum.repos.d/atrpms.repo | |
| [atrpms] | |
| name=ATrpms manual | |
| baseurl=http://dl.atrpms.net/el5-$basearch/atrpms/testing/ | |
| gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms |
| #!/usr/bin/env python | |
| from __future__ import with_statement | |
| import os | |
| import re | |
| import shutil | |
| import subprocess | |
| import sys | |
| import tempfile |
| [10:44][~/dev/Mikrob.chrome master]: phantomjs testrunner.js file://`pwd`/test.html | |
| Running tests | |
| file:///Users/optimor/dev/Mikrob.chrome/test/collection_store_test.js:71 Clearing localStorage | |
| Passed: 14, Failed: 1 Total: 15 | |
| [10:44][~/dev/Mikrob.chrome master]: echo $? | |
| 1 |
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |