mass of moon = 73.483E+21 kg
mass = 3,000 kg
mass of moon * mass => 22.0449e25kg^2
mass of moon = 73.483E+21 kg
mass = 3,000 kg
mass of moon * mass => 22.0449e25kg^2
| We the People of Utopia establish this Constitution to enhance Liberty, establish Justice, insure domestic Tranquility, provide for the common defense, and promote the general Welfare. | |
| Article I. | |
| Section I. All legislative Powers herein granted shall be vested in a Congress of Utopia, which shall consist of a Senate and House of Representatives. |
| tell application "Contacts" | |
| set thisContact to item 1 of (get selection) | |
| set creationDate to creation date of thisContact | |
| tell thisContact | |
| make new custom date at end of custom dates with properties {label:"creation date", value:creationDate} | |
| end tell | |
| save thisContact | |
| end tell |
| # FileMaker Pro! | |
| module Simple | |
| class FMPRepository | |
| attr_reader :cases | |
| def initialize | |
| @cases = [] | |
| end |
| module Simple | |
| class Repository | |
| def self.configure(options = {}) | |
| @mappings ||= {} | |
| @mappings.merge!(options) | |
| end | |
| def self.reset! | |
| @mappings = {} | |
| end |
| Check out README.md to get started editing Clojure with Emacs. |
| require 'roar/representer/json' | |
| require 'roar/representer/json/hal' | |
| require 'roar/representer/feature/hypermedia' | |
| require 'lib/api/representers/dealership_representer' | |
| module DealershipsRepresenter | |
| include Roar::Representer::JSON | |
| include Roar::Representer::JSON::HAL | |
| include Roar::Representer::Feature::Hypermedia |
| class CompressedRequests | |
| def initialize(app) | |
| @app = app | |
| end | |
| def method_handled?(env) | |
| !!(env['REQUEST_METHOD'] =~ /(POST|PUT)/) | |
| end | |
| def encoding_handled?(env) |
| Mac OS X 10.8.2 | |
| 2.6 GHz i7 Processor | |
| 16 GB RAM | |
| JRUBY_OPTS="-J-Xmx1024m --1.9" | |
| ########## | |
| maglev-ruby --version | |
| maglev 1.1RC1 (ruby 1.8.7) (2012-12-06 rev 1.1RC1-29699)[Darwin x86_64] |
| class StaticResource < Webmachine::Resource | |
| def encodings_provided | |
| {"gzip" => :encode_gzip, "identity" => :encode_identity} | |
| end | |
| def allowed_methods | |
| %W[GET] | |
| end |