Texas map

Offshore to… Texas!Learn more »


Texas: It's like a whole other country

Five reasons to offshore to the Lone Star State

  1. We are an easy two or three hour flight to anywhere in the country.
  2. We speak your language (with a charming Texas drawl).
  3. We are in the Central time zone which allows us to easily be available during working hours for clients on both coasts.
  4. All our developers are in Texas and we will never outsource your project overseas (or Oklahoma for that matter).
  5. With a booming startup and tech culture in Austin, Dallas and Houston, Texas is the place to do business.
Sold? Let's get started »
Texas map

MindBites

Video instructional marketplace and publishing platform.

Goalistics

Chronic pain management application.

TickStart

Go beyond time tracking.

April

Name Change



Saving Hashes and Arrays to the Database With Rails

When objects (hashes, arrays, etc) are saved to the database through ActiveRecord in Rails, they are transformed to YAML before saving. Therefore, when you go back to access this data, the following will have to be performed to get the object back to its original state:

<code class='ruby'>YAML::load(object_name)

where _*object_name*_ is the name the model_name.attribute field you are accessing.