Different services I can suggest when a non-tech friend or family member asks me how they can cheaply make a website and possibly use it to sell stuff online.
Website Hosting
| #!/usr/bin/env ruby | |
| require "optparse" | |
| require "ostruct" | |
| $options = OpenStruct.new | |
| $options.verbose = false | |
| $options.local_port = nil | |
| $opts = OptionParser.new do |o| |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script type="text/javascript" src="http://mbostock.github.com/d3/d3.js?2.0.0"></script> | |
| <script type="text/javascript" src="http://mbostock.github.com/d3/d3.csv.js?2.0.0"></script> | |
| <script type="text/javascript" src="http://mbostock.github.com/d3/d3.time.js?2.0.0"></script> | |
| <style type="text/css"> | |
| body { | |
| font: 10px sans-serif; |
| package main | |
| import( | |
| "fmt" | |
| "reflect" | |
| ) | |
| func main(){ | |
| // iterate through the attributes of a Data Model instance | |
| for name, mtype := range attributes(&Dish{}) { |
Different services I can suggest when a non-tech friend or family member asks me how they can cheaply make a website and possibly use it to sell stuff online.
Website Hosting
| - http://www.coffeepowered.net/2009/06/13/fine-tuning-your-garbage-collector/ | |
| - http://snaprails.tumblr.com/post/241746095/rubys-gc-configuration | |
| article’s settings: ("spec spec" took 17-23!sec) | |
| export RUBY_HEAP_MIN_SLOTS=1250000 | |
| export RUBY_HEAP_SLOTS_INCREMENT=100000 | |
| export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1 | |
| export RUBY_GC_MALLOC_LIMIT=30000000 | |
| export RUBY_HEAP_FREE_MIN=12500 |