ruby script /plugin install http://gearsonrails.googlecode.com/svn/trunk/acts_as_local
acts_as_local :except=>['hello']
def create_local ' post = Post.build(params("post")); Post.create_local(post); window.location.reload( false ); 'end
qr
cht=qrchl=<text>choe=<output>
hello
world
%20
UTF-8
Shift_JIS
ISO-8859-1
An open protocol to allow secure API authentication in a simple and standard method from desktop and web applications.
scope
https://www.google.com/accounts/AuthSubRequest? next=http://localhost/authsub &scope=http://www.google.com/calendar/feeds%20 http://picasaweb.google.com/data &secure=1 &session=1
Protocol buffers are a flexible, efficient, automated mechanism for serializing structured data – think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the "old" format
message Person { required string name = 1; required int32 id = 2; optional string email = 3; enum PhoneType { MOBILE = 0; HOME = 1; WORK = 2; } message PhoneNumber { required string number = 1; optional PhoneType type = 2 [default = HOME]; } repeated PhoneNumber phone = 4;}
Person person;person.set_name("John Doe");person.set_id(1234);person.set_email("jdoe@example.com");fstream output("myfile", ios::out | ios::binary);person.SerializeToOstream(&output);