This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git push heroku master | |
-----> Ruby/Rails app detected | |
-----> Using Ruby version: ruby-2.0.0 | |
-----> Installing dependencies using Bundler version 1.3.2 | |
New app detected loading default bundler cache | |
Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin --deployment | |
Fetching gem metadata from https://rubygems.org/.......... | |
Fetching gem metadata from https://rubygems.org/.. | |
Using rake (10.1.0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
curl -o xubuntu.iso http://mirror.anl.gov/pub/ubuntu-iso/CDs-Xubuntu/12.10/release/xubuntu-12.10-desktop-amd64.iso | |
# iso to img | |
$ sudo hdiutil convert -format UDRW -o ./xubuntu.img ./xubuntu.iso | |
Password: | |
Reading Driver Descriptor Map (DDM : 0)… | |
Reading Xubuntu 12.10 amd64 (Apple_ISO : 1)… | |
Reading Apple (Apple_partition_map : 2)… | |
Reading Xubuntu 12.10 amd64 (Apple_ISO : 3)… |
#Hardware
ASUS M5A97 R2.0 AM3+ AMD 970 SATA 6Gb/s USB 3.0 ATX AMD Motherboard 2 of ASUS M5A97 R2.0 AM3+ AMD 970 SATA 6Gb/s USB 3.0 ATX AMD Motherboard
I am still deciding if it is limiting my gpu output, I will know soon.
AMD FX 4100 4-Core Processor, 3.6 4 Socket AM3+ FD4100WMGUSBX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mmcdaris@mmcdaris-desktop:~/Desktop$ ls /lib/x86_64-linux-gnu/libudev.so* | |
ls: cannot access /lib/x86_64-linux-gnu/libudev.so.0: Too many levels of symbolic links | |
ls: cannot access /lib/x86_64-linux-gnu/libudev.so.1: Too many levels of symbolic links | |
/lib/x86_64-linux-gnu/libudev.so.0.13.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# location: /etc/init/tunnel.conf | |
description "persistent ssh tunnel through reboots" | |
author "morgan mcdaris <[email protected]>" | |
start on (local-filesystems and net-device-up IFACE=eth0) | |
stop on runlevel [016] | |
respawn | |
respawn limit 5 60 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ C cc -o hello hello.c | |
➜ C ls -la | |
total 40 | |
drwxr-xr-x+ 5 mmcdaris staff 170 Jan 28 23:06 . | |
drwxr-xr-x+ 108 mmcdaris staff 3672 Jan 28 14:57 .. | |
-rw-r--r--+ 1 mmcdaris staff 78 Jan 28 22:38 Makefile | |
-rwxr-xr-x+ 1 mmcdaris staff 8496 Jan 28 23:06 hello | |
-rw-r--r--+ 1 mmcdaris staff 60 Jan 28 22:40 hello.c | |
➜ C ./hello | |
Hello, world. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
colors = [] | |
(20..130).each do |num| | |
colors << "\033[#{num}m#{num} \033[0m" | |
end | |
colors.each_slice(10).each { |ar| ar.map {|c| print c }; puts "\n" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Attachment to exports style | |
var name = exports.name = 'module_one'; | |
var pass = 'beer'; | |
exports.lower = function(input) { return input.toLowerCase() }; | |
exports.upper = function(input) { return input.toUpperCase() }; | |
exports.get_name = function() { return name }; | |
exports.get_pass = function() { return pass }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" syntax and line numbers | |
set nu | |
syntax on | |
set ruler | |
" use vim settings | |
set nocompatible | |
" Tab customization | |
set autoindent | |
set expandtab | |
set softtabstop=2 |