What is DevOps by Adam Jacobs (6:48) - http://www.youtube.com/watch?v=Fx8OBeNmaWw
Executive Value DevOps Cafe Episode 19 (John Willis and Damon Edwards) Interview with Jesse Robbins - http://castroller.com/Podcasts/DevopsCafePodcast/3210786
| #!/usr/bin/python | |
| # encoding: utf-8 | |
| """ | |
| csv2xml.py | |
| Created by Justin van Wees on 2011-04-18. | |
| """ | |
| import sys | |
| import os | |
| import string |
| <?php | |
| //absolute path to wp-load.php, or relative to this script | |
| //e.g., ../wp-core/wp-load.php | |
| include( 'trunk/wp-load.php' ); | |
| //grab the WPDB database object, using WP's database | |
| //more info: http://codex.wordpress.org/Class_Reference/wpdb | |
| global $wpdb; |
| <?php | |
| include( '/codedata/code/wp-core-trunk/wp-load.php' ); | |
| //grab the WPDB database object, using WP's database | |
| global $wpdb; | |
| //make a new DB object using a different database | |
| $cdbs = new wpdb('root','galgren','cdbs','localhost'); ?> | |
| <?php define('WP_USE_THEMES', true); ?> | |
| <?php get_header(); ?> | |
| <?php |
| > irb | |
| >> require 'fech' | |
| => true | |
| >> |
| " URL: http://vim.wikia.com/wiki/Example_vimrc | |
| " Authors: http://vim.wikia.com/wiki/Vim_on_Freenode | |
| " Description: A minimal, but feature rich, example .vimrc. If you are a | |
| " newbie, basing your first .vimrc on this file is a good choice. | |
| " If you're a more advanced user, building your own .vimrc based | |
| " on this file is still a good idea. | |
| "------------------------------------------------------------ | |
| " Features {{{1 | |
| " |
What is DevOps by Adam Jacobs (6:48) - http://www.youtube.com/watch?v=Fx8OBeNmaWw
Executive Value DevOps Cafe Episode 19 (John Willis and Damon Edwards) Interview with Jesse Robbins - http://castroller.com/Podcasts/DevopsCafePodcast/3210786
| sublime | |
| http://net.tutsplus.com/articles/news/perfect-workflow-in-sublime-text-free-course/ | |
| https://tutsplus.com/lesson/http-requests-within-sublime/ | |
| https://tutsplus.com/lesson/livereload/ | |
| https://tutsplus.com/lesson/vintage-mode/ | |
| https://tutsplus.com/lesson/sublime-and-markdown-with-marked/ | |
| http://netatoo.github.com/phoenix-theme/ |
| try | |
| tell application "Finder" | |
| -- a little reset | |
| close every window | |
| activate | |
| -- a variable which holds the path to the folder opened in the left window | |
| -- the path uses ":" instead of "/" to separate parent from children folders | |
| set left_window_path to "Macintosh HD:Users:stelian:Dropbox:911:python" as alias | |
| make new Finder window to left_window_path | |
| -- resizing the first window {left, top, width, height} |
| <html><head><title>API Test</title> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | |
| </head><body> | |
| <div id='tweet-list'></div> | |
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| // Get query string from URL |