List is a work in progress:
pythonistas – python
rubyist – ruby
List is a work in progress:
pythonistas – python
rubyist – ruby
REST uses HTTP for all four CRUD (Create/Read/Update/Delete) operations
Reference: http://rest.elkstein.org/
One thing that is not part of a good REST design is cookies: The “ST” in “REST” stands for “State Transfer”
[root@server ~]# mysql -uroot
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.0.77 Source distribution
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> GRANT ALL ON *.* TO sequelpro@'192.168.0.100' IDENTIFIED BY 'sequelpro';
Query OK, 0 rows affected (0.05 sec)
mysql> commit;
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
[root@server ~]#
defaults write com.apple.dock mouse-over-hilite-stack -boolean yes
killall Dock
note: saw this hack on a youtube video:
#!/usr/bin/env ruby
# This script renames files with white spaces with
# files with underscores in the current working directory.
require 'fileutils'
Dir.glob("*\ *").each do |original_file|
underscore_file = original_file.gsub(" ","_")
FileUtils.mv(original_file,underscore_file)
puts "Renamed: #{original_file} => #{underscore_file}"
end