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
<?php | |
// memcache test code | |
$memcache = memcache_connect('127.0.0.1', 11211); | |
if ($memcache) { | |
$memcache->set("str_key", "String to store in memcached"); | |
var_dump($memcache->get('str_key')); | |
} |
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
<?php | |
// Some sample codes | |
// For more information, see http://pear.php.net/manual/en/package.http.http-request.php | |
require_once "HTTP/Request.php"; | |
// request url | |
$url = "http://www.example.com"; | |
$option = array( |
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
### in Terminal | |
# create rails app | |
rails new test_app | |
############ start: edit Gemfile ############## | |
#wrap sqlite3 in | |
group :test, :development do | |
gem 'sqlite3' | |
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
# mysql_connect.rb - simple MySQL script using Ruby MySQL module | |
require "mysql" | |
begin | |
# connect to the MySQL server | |
dbh = Mysql.real_connect("localhost", "testuser", "testpass", "testdb") | |
# get server version string and display it | |
puts "Server version: " + dbh.get_server_info | |
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
require 'net/https' | |
require 'nokogiri' | |
url = "https://example.com" | |
url = URI.parse( url ) | |
http = Net::HTTP.new( url.host, url.port ) | |
http.use_ssl = true if url.port == 443 | |
http.verify_mode = OpenSSL::SSL::VERIFY_NONE if url.port == 443 | |
path = url.path | |
path += "?" + url.query unless url.query.nil? |
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
# Herodu Dev Center Doc: | |
# http://devcenter.heroku.com/articles/memcache | |
# Dalli gem heroku url: | |
# https://github.com/mperham/dalli | |
####################### | |
# Local Setup memcached | |
####################### | |
sudo port install memcached |
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
require 'net/http' | |
require 'uri' | |
#1: Simple POST | |
res = Net::HTTP.post_form(URI.parse('http://www.example.com/search.cgi'), | |
{'q' => 'ruby', 'max' => '50'}) | |
puts res.body | |
#2: POST with basic authentication | |
res = Net::HTTP.post_form(URI.parse('http://jack:[email protected]/todo.cgi'), |
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
#!/usr/bin/env bash | |
mkdir -p /Library/Application\ Support/TextMate/ | |
sudo chown -R $(whoami) /Library/Application\ Support/TextMate | |
cd /Library/Application\ Support/TextMate/ | |
if [[ -d Bundles/.svn ]] ; then | |
cd Bundles && svn up |
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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'open-uri' | |
require 'rexml/document' | |
require 'mechanize' | |
# ------------------------ | |
YOUR_GOOGLE_ACCOUNT = '[email protected]' |
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
# don't forget to update your port tree first | |
sudo port selfupdate | |
# install coffee script using macport | |
sudo port install nodejs | |
node -v | |
# install npm - the Node Package Manager | |
git clone http://github.com/isaacs/npm.git | |
cd npm |
OlderNewer