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
" This is Aziz's .vimrc file, that he is currently working on. | |
set nocompatible | |
syntax enable | |
" Use pathogen to easily modify the runtime path to include all | |
" plugins under the ~/.vim/bundle directory | |
call pathogen#helptags() | |
call pathogen#runtime_append_all_bundles() | |
let g:JSLintHightlightErrorLine = 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
From: Matt Jones 615-345-6350 x. 204 | |
Date: January 18, 2012 | |
Subject RE: Sr Linux Administrator Job Opportunity | |
Thanks for letting me know and for passing this along. Please do let any interested candidates know that they will need to contact me asap as the client is setting up interviews now! | |
Required: | |
• Experience with multi-server environments | |
• Experience with High Availability and failover scenarios, load balanced environments | |
• Strong shell programming skills in Bash and sh | |
• Strong PHP and MySQL programming skills |
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
>> $States = Hash.new() | |
=> {} | |
>> $States["California"] = Hash.new() | |
=> {} | |
>> $States["California"]["Los Angeles"] = Hash.new() | |
=> {} | |
>> $States["California"]["Los Angeles"]["District 1"] = "90035" | |
=> "90035" | |
>> $States["California"]["Los Angeles"]["District 1"] = Hash.new() | |
=> {} |
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
#create a playlist with all the music not found | |
#select the playlist | |
tell application "iTunes" | |
set thePlaylist to current playlist | |
log (get name of thePlaylist) | |
repeat with i from 1 to (count tracks of thePlaylist) | |
set oldfi to fixed indexing | |
set fixed indexing to true | |
play track i of thePlaylist | |
delay 3 |
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
Programming Resources, Inc. is looking for a highly motivated | |
individual for a Linux System Administrator/Engineer position for one | |
of our great clients! If your skilled in Linux and any of the | |
following technologies and feel like hearing more about this | |
opportunity then shoot me an email to [email protected]. I'd love | |
to hear from you! | |
Job Profile and Description | |
The Linux/Unix Administrator will work with others in the Operations | |
team to define architecture of new solutions and manage/maintain |
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
>> f = "substitute a wrd in the middle of the string" | |
=> "substitute a wrd in the middle of the string" | |
>> f['wrd'] = "word" | |
=> "word" | |
>> f | |
=> "substitute a word in the middle of the string" | |
>> |
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
--format documentation | |
--color |
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
--format documentation | |
--color |
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
# change foo to your library name | |
# change Foo::Database to your Sequel database | |
namespace :bundler do | |
task :setup do | |
require 'rubygems' | |
require 'bundler/setup' | |
end | |
end |
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
default: &default | |
vbox: superfastjellyfish-aws | |
orgname: superfastjellyfish.test | |
web1: | |
<<: *default | |
web2: | |
<<: *default | |
web3: | |
<<: *default | |
app1: |