This file contains hidden or 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
cls | |
taskkill /F /FI "USERNAME eq %username%" /IM rdpclip.exe | |
ping -n 1 -w 1000 1.1.1.1>nul | |
start rdpclip.exe |
This file contains hidden or 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
http://www.latimes.com/politics/la-pol-ca-property-taxes-wildfires-northern-california-20171103-htmlstory.html | |
Start with the small list: | |
1. Get a PO Box | |
2. Longer term rental search - include insurance on it so they pay directly for rental. Find a nice place that you like, don't settle. You should be able to get a "Like Property" so insurance should cover a nice place for you to live while you work through all this. You might be living here for 2 years, so choose wisely. | |
3. Find a place to buy some sturdy boots and gloves. Get some shovels. |
- Code Complete (2nd edition) by Steve McConnell
- The Pragmatic Programmer
- Structure and Interpretation of Computer Programs
- The C Programming Language by Kernighan and Ritchie
- Introduction to Algorithms by Cormen, Leiserson, Rivest & Stein
- Design Patterns by the Gang of Four
- Refactoring: Improving the Design of Existing Code
- The Mythical Man Month
This file contains hidden or 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
products.drop_while { | product | | |
$log.debug "Comparing: " | |
$log.debug product[:affiliate_network_id] | |
$log.debug product[:affiliate_network_id].class | |
if (product[:affiliate_network_id] != 8) | |
$log.debug "No Match" | |
return false | |
else | |
$log.debug "Match" | |
end |
This file contains hidden or 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
#get root access | |
$su - | |
$ cd /tmp | |
#Remove old Ruby | |
$ yum remove ruby | |
# Install dependencies | |
$ yum groupinstall "Development Tools" | |
$ yum install zlib zlib-devel |
This file contains hidden or 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
set nocompatible " be iMproved | |
filetype off " required! | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" let Vundle manage Vundle | |
" required! | |
Bundle 'gmarik/vundle' |
This file contains hidden or 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
#Good References | |
https://github.com/facelessuser/ApplySyntax | |
https://github.com/nathos/sass-textmate-bundle | |
https://github.com/dzhibas/SublimePrettyJson | |
https://github.com/kemayo/sublime-text-2-git | |
https://github.com/Kronuz/SublimeCodeIntel | |
https://github.com/wbond/sublime_alignment | |
https://github.com/revolunet/sublimetext-markdown-preview | |
https://github.com/SublimeLinter/SublimeLinter | |
https://github.com/mpecan/sublime-xmllint |
This file contains hidden or 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
#On AWS: | |
#Create a new "Standard" volumn. | |
#Attach it do the Instance you want it on. | |
#- aws will likely give it /dev/sdf , most likely your linux distro will create /dev/xvdf (just replace s with xv) | |
#Now you can see your unpartition disk by running | |
fdisk -l | |
#You should see /dev/xvdf | |
#Partition it: | |
#Create the directory name for how you want to refer to it. |
NewerOlder