ruby_desk 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -9,11 +9,11 @@ Initialize with your api key
9
9
  Gets the URL that will ask the user to authenticate your application
10
10
  rd.auth_url
11
11
 
12
- This will get you the frob you need to access all APIs.
12
+ You should then redirect the user to the returned URL to get the frob.
13
13
  When you get the frob set it using
14
14
  rd.frob = frob
15
15
 
16
- After that you should request an api_token
16
+ Finally, you should request an api_token
17
17
  rd.get_token
18
18
 
19
19
  Now you are ready to use all the APIs you need
data/Rakefile CHANGED
@@ -11,6 +11,7 @@ begin
11
11
  gem.homepage = "http://github.com/aseldawy/ruby_desk"
12
12
  gem.authors = ["Ahmed ElDawy"]
13
13
  gem.files = FileList['lib/**/*.rb', '[A-Z]*', 'test/**/*'].to_a
14
+ gem.add_dependency('json')
14
15
  # gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
15
16
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
16
17
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.0
@@ -0,0 +1,3 @@
1
+ class RubyDesk::DeveloperSkill < RubyDesk::OdeskEntity
2
+ attributes :order, :description, :avg_category_score_recent, :avg_category_score, :label
3
+ end
@@ -0,0 +1,45 @@
1
+ class RubyDesk::OdeskEntity
2
+ @@complex_attributes = {}
3
+
4
+ class << self
5
+ def attribute(*att_names)
6
+ options = nil
7
+ if att_names.last.is_a?Hash
8
+ options = att_names.delete_at -1
9
+ end
10
+ att_names.each do |att_name|
11
+ attr_reader att_name
12
+ @@complex_attributes[att_name.to_s] = options if options
13
+ end
14
+ end
15
+
16
+ alias attributes attribute
17
+ end
18
+
19
+
20
+ def initialize(params={})
21
+ params.each do |k, v|
22
+ attribute_options = @@complex_attributes[k.to_s] || {}
23
+ if attribute_options[:class]
24
+ if attribute_options[:sub_element]
25
+ # This attribute has many elements each of the given class
26
+ if v[attribute_options[:sub_element]]
27
+ # There is values for it
28
+ # Initialize the value to an empty array
29
+ values = []
30
+ self.instance_variable_set("@#{k}", values)
31
+ [v[attribute_options[:sub_element]]].flatten.each do |element|
32
+ # Create an element of the correct class
33
+ values << attribute_options[:class].new(element)
34
+ end
35
+ end
36
+ else
37
+ # This attribute is a single comple attribute
38
+ self.instance_variable_set("@#{k}", attribute_options[:class].new(v))
39
+ end
40
+ else
41
+ self.instance_variable_set("@#{k}", v)
42
+ end
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,231 @@
1
+ class RubyDesk::Provider < RubyDesk::OdeskEntity
2
+ class << self
3
+ def all_categories
4
+ text = <<-CATEGORIES
5
+ Web Development
6
+ * Web Design
7
+ * Web Programming
8
+ * Ecommerce
9
+ * UI Design
10
+ * Website QA
11
+ * Website Project Management
12
+ * Other - Web Development
13
+ Software Development
14
+ * Desktop Applications
15
+ * Game Development
16
+ * Scripts & Utilities
17
+ * Software Plug-ins
18
+ * Mobile Apps
19
+ * Application Interface Design
20
+ * Software Project Management
21
+ * Software QA
22
+ * VOIP
23
+ * Other - Software Development
24
+ Networking & Information Systems
25
+ * Network Administration
26
+ * DBA - Database Administration
27
+ * Server Administration
28
+ * ERP / CRM Implementation
29
+ * Other - Networking & Information Systems
30
+ Writing & Translation
31
+ * Technical Writing
32
+ * Website Content
33
+ * Blog & Article Writing
34
+ * Copywriting
35
+ * Translation
36
+ * Creative Writing
37
+ * Other - Writing & Translation
38
+ Administrative Support
39
+ * Data Entry
40
+ * Personal Assistant
41
+ * Web Research
42
+ * Email Response Handling
43
+ * Transcription
44
+ * Other - Administrative Support
45
+ Design & Multimedia
46
+ * Graphic Design
47
+ * Logo Design
48
+ * Illustration
49
+ * Print Design
50
+ * 3D Modeling & CAD
51
+ * Audio Production
52
+ * Video Production
53
+ * Voice Talent
54
+ * Animation
55
+ * Presentations
56
+ * Engineering & Technical Design
57
+ * Other - Design & Multimedia
58
+ Customer Service
59
+ * Customer Service & Support
60
+ * Technical support
61
+ * Phone Support
62
+ * Order Processing
63
+ * Other - Customer Service
64
+ Sales & Marketing
65
+ * Advertising
66
+ * Email Marketing
67
+ * SEO - Search Engine Optimization
68
+ * SEM - Search Engine Marketing
69
+ * SMM - Social Media Marketing
70
+ * PR - Public Relations
71
+ * Telemarketing & Telesales
72
+ * Business Plans & Marketing Strategy
73
+ * Market Research & Surveys
74
+ * Sales & Lead Generation
75
+ * Other - Sales & Marketing
76
+ Business Services
77
+ * Accounting
78
+ * Bookkeeping
79
+ * HR / Payroll
80
+ * Financial Services & Planning
81
+ * Payment Processing
82
+ * Legal
83
+ * Project Management
84
+ * Business Consulting
85
+ * Recruiting
86
+ * Statistical Analysis
87
+ * Other - Business Services
88
+ CATEGORIES
89
+ lines = text.split(/[\r\n]+/).map{|line| line.strip}
90
+ categories = {}
91
+ subcategories = nil
92
+ lines.each do |line|
93
+ if line[0] == ?*
94
+ subcategories << line[2..-1]
95
+ else
96
+ categories[line] = (subcategories = [])
97
+ end
98
+ end
99
+ return categories
100
+ end
101
+
102
+ # Implements search with the given criteria
103
+ #* q - ProfileData (ProfileData)
104
+ # * Profile data is any text that appears in a provider's profile. For example if q = 'odesk' the search would return any user's with the word odesk in their profile.
105
+ #* c1 - JobCategory (First Level Job Category)
106
+ # * This is the first level of job categories, there are a static number of catergories to select from and only one can be submitted at a time.
107
+ #* c2 - second_category (Second Category)
108
+ # * Each level one category has a list of subcategories, again only on can be listed at a time and for a full list of what these are see our complete list of categories.
109
+ #* fb - adjusted_score (the providers adjusted score) This searches for providers who have an adjusted feedback score equal or greater (up to 5) than the number passed in this parameter (decimals are ok).
110
+ # * For example fb=4.5 will return providers who have a combined feedback score of 4.5 or greater.
111
+ #* hrs - ui_total_hours (Total hours) This searches for providers who have a total number of hours equal or greater to the number passed in this parameter.
112
+ # * ir(has worked within the last 6 months) This boolean parameter is used in combination with the total hours worked parameter, and searches providers who have worked within the last six months.
113
+ # + Yes or No are the only valid searches. Omiting this will default to 'No' = not searching recent workers.
114
+ #* min - hourly_charge_rate_min (The provider's minimum rate they have charged in the past)
115
+ # * Exludes providers with a public rate less than this amount.
116
+ #* max - hourly_charge_rate_max (The provider's maximum rate they have charged in the past)
117
+ # o Exludes provides with a public rate greater than this amount.
118
+ # * loc - country_region (Country Region)
119
+ # o Limit your searches to a specific country region:
120
+ # + Australasia
121
+ # + East Asia
122
+ # + Eastern Europe
123
+ # + Misc
124
+ # + North America
125
+ # + South Asia
126
+ # + Western Europe
127
+ # * pt - provider_type (Provider type, indipendent or affiliate)
128
+ # o Limit your search to indipendent or affiliate providers.
129
+ # * last - last_provider_activity (Date last active)
130
+ # o Limit your search to providers who were active after the date passed in this parameter. Dates should be formated like: 07-13-2009
131
+ # * test - cmp_ref (specify a test taken)
132
+ # o Limit your search to providers who have passed a specific test (based on the test id), one test can be passed at a time. See the complete list of tests here.
133
+ # * port - total_portfolio_items (the number of portfolio items)
134
+ # o Limit your search to providers who have at least this many portfolio items.
135
+ # * rdy - is_ready (are they odesk ready)
136
+ # o Only return oDesk ready providers.
137
+ # * eng - ui_english (English skill rating)
138
+ # o Limit your results to providers who have at least the rating passed in the parameter.
139
+ # + Only the following english levels are available (no decimals): [1,2,3,4,5]
140
+ # * ag - Agency Ref (Agency name)
141
+ # o Limit your search to a specific agency.
142
+ # * to - titles_only (Titles Search)
143
+ # o Search the provider profile title text only.
144
+ # * g - group (group members)
145
+ # o Limit your search to a specific group. See our list of available groups here.
146
+ # * Page(offset;count)
147
+ # * sort($field_name1;$field_name2;..$field_nameN;AD...A)
148
+ #
149
+ #Notes on Pagination
150
+ # * If $page is ommited, 0;SEARCH_PROVIDER_DEFAULT_PAGE_SIZE is assumed
151
+ # * $count < SEARCH_PROVIDER_MAX_PAGE_SIZE
152
+ #
153
+ #Notes on Sorting
154
+ # * Listing all fields on which to sort separated by a semi-colon with last value in the list a "direction vector" (A(Ascending) or D(Descending)).
155
+ #* If the number of fields is bigger/smaller than number of chars in the "directions vector" then the application will return a "400 Bad request" error.
156
+ #* sort using the field_names
157
+ def search(connector, options={})
158
+ if options.respond_to? :to_str
159
+ return search(connector, :q=>options.to_str)
160
+ end
161
+ response = connector.prepare_and_invoke_api_call 'profiles/v1/search/providers', {:api_token=>@api_token, :api_key=>@api_key}, :method=>:get, :format=>'json'
162
+ # parses a JSON result returned from oDesk and extracts an array of Providers out of it
163
+ json = JSON.parse(response)
164
+ providers = []
165
+ [json['providers']['provider']].flatten.each do |provider|
166
+ providers << self.new(provider)
167
+ end
168
+ return providers
169
+ end
170
+
171
+ def get_profile(connector, id, options={})
172
+ brief = options.delete :brief || false
173
+ response = connector.prepare_and_invoke_api_call("profiles/v1/providers/#{id}" + (brief ? "/brief" : ""),
174
+ {:api_token=>@api_token, :api_key=>@api_key}, :method=>:get, :format=>'json')
175
+ json = JSON.parse(response)
176
+ return self.new(json['profile'])
177
+ end
178
+ end
179
+ # Save categories in a constant
180
+ AllCategories = all_categories
181
+
182
+ attributes :ag_name, :ag_description, :dev_adj_score_recent, :dev_is_affiliated,
183
+ :profile_title_full, :dev_total_hours_rounded, :favorited, :ag_member_since,
184
+ :ag_tot_feedback, :ag_recent_hours, :dev_last_worked, :ciphertext,
185
+ :dev_pay_rate, :dev_agency_ref, :competencies, :dev_usr_score, :dev_eng_skill,
186
+ :dev_ic, :dev_bill_rate, :dev_tot_feedback_recent, :ag_rank_percentile,
187
+ :dev_agency_ciphertext, :ag_total_developers, :ag_hours_lastdays,
188
+ :dev_blurb, :agency_ciphertext, :dev_total_assignments, :tsexams,
189
+ :dev_short_name, :dev_active_interviews, :dev_full_name, :dev_country,
190
+ :dev_expose_full_name, :dev_city, :provider_profile_api, :ag_manager_blurb,
191
+ :job_categories, :dev_year_exp, :dev_billed_assignments, :dev_portrait,
192
+ :experiences, :ag_total_hours, :candidacies, :dev_last_activity,
193
+ :dev_billed_assignments_recent, :dev_rank_percentile, :assignments, :dev_region,
194
+ :search_affiliate_providers_url, :ag_billed_assignments, :ag_teamid_rollup,
195
+ :dev_member_since, :dev_availability, :dev_profile_title, :dev_category,
196
+ :assignments_count, :dev_total_hours, :dev_portfolio_items_count,
197
+ :dev_recno, :certification, :ag_teamid, :education, :dev_cur_assignments,
198
+ :version, :oth_experiences, :dev_recent_rank_percentile, :is_odesk_ready,
199
+ :response_time, :ag_cny_recno, :ag_country, :ag_portrait, :dev_is_ready,
200
+ :dev_adj_score, :dev_groups, :dev_blurb_short, :ag_last_date_worked,
201
+ :ag_adj_score_recent, :dev_ui_profile_access, :dev_pay_agency_rate, :trends,
202
+ :dev_location, :dev_est_availability, :tsexams_count, :permalink, :ag_logo,
203
+ :ag_adj_score, :dev_recent_hours, :dev_timezone, :ag_country_tz, :ag_city,
204
+ :dev_test_passed_count, :dev_tot_feedback, :ag_summary, :ag_manager_name,
205
+ :ag_active_assignments, :portfolio_items
206
+
207
+ attribute :skills, :class=>RubyDesk::Skill, :sub_element=>'skill'
208
+ attribute :dev_scores, :class=>RubyDesk::DeveloperSkill, :sub_element=>'dev_score'
209
+ attribute :dev_ac_agencies, :class=>RubyDesk::Agency, :sub_element=>'dev_ac_agency'
210
+ attribute :competencies, :class=>RubyDesk::Competency, :sub_element=>'competency'
211
+ attribute :tsexams, :class=>RubyDesk::Exam, :sub_element=>'tsexam'
212
+ attribute :job_categories, :class=>RubyDesk::JobCategory, :sub_element=>'job_category'
213
+ attribute :experiences, :class=>RubyDesk::Experience, :sub_element=>'experience'
214
+ attribute :candidacies, :class=>RubyDesk::Candidacy, :sub_element=>'candidacy'
215
+ attribute :assignments, :class=>RubyDesk::Assignment, :sub_element=>'assignments'
216
+ attribute :certification, :class=>RubyDesk::Certificate, :sub_element=>'certificate'
217
+ attribute :education, :class=>RubyDesk::Institution, :sub_element=>'institution'
218
+ attribute :oth_experiences, :class=>RubyDesk::OtherExperience, :sub_element=>'oth_experience'
219
+ attribute :trends, :class=>RubyDesk::Trend, :sub_element=>'trend'
220
+ attribute :portfolio_items, :class=>RubyDesk::PortfolioItem, :sub_element=>'portfolio_item'
221
+
222
+ def iinitialize(params={})
223
+ params.each do |k, v|
224
+ case k.to_s
225
+ when "portfolio_items" then
226
+ else
227
+ self.instance_variable_set("@#{k}", v)
228
+ end
229
+ end
230
+ end
231
+ end
@@ -1,19 +1,11 @@
1
- module RubyDesk
2
- class Snapshot
3
- attr_reader :status, :time, :billing_status, :report_url, :screenshot_img, :activity,
4
- :online_presence, :user, :screenshot_url, :mouse_events_count, :company_id,
5
- :timezone, :uid, :keyboard_events_count, :last_worked_status, :last_worked,
6
- :memo, :active_window_title, :portrait_img, :report24_img, :computer_name,
7
- :screenshot_img_thmb, :online_presence_img, :user_id, :role, :client_version,
8
- :snapshot_api, :workdiary_api
9
- def initialize(params={})
10
- params.each do |k, v|
11
- if k.to_s == 'user'
12
- @user = RubyDesk::User.new(v)
13
- else
14
- self.instance_variable_set("@#{k}", v)
15
- end
16
- end
17
- end
18
- end
1
+ class RubyDesk::Snapshot < RubyDesk::OdeskEntity
2
+ attribute :status, :time, :billing_status, :report_url, :screenshot_img, :activity,
3
+ :online_presence, :screenshot_url, :mouse_events_count, :company_id,
4
+ :timezone, :uid, :keyboard_events_count, :last_worked_status, :last_worked,
5
+ :memo, :active_window_title, :portrait_img, :report24_img, :computer_name,
6
+ :screenshot_img_thmb, :online_presence_img, :user_id, :role, :client_version,
7
+ :snapshot_api, :workdiary_api
8
+
9
+ attribute :user, :class=>RubyDesk::User
10
+
19
11
  end
@@ -1,37 +1,34 @@
1
- module RubyDesk
2
- class TeamRoom
3
- class << self
4
- def get_teamrooms(connector)
5
- response = connector.prepare_and_invoke_api_call 'team/v1/teamrooms', {:api_token=>@api_token, :api_key=>@api_key}, :method=>:get, :format=>'json'
6
- # parses a JSON result returned from oDesk and extracts an array of TeamRooms out of it
7
- json = JSON.parse(response)
8
- team_rooms = []
9
- json['teamrooms']['teamroom'].each do |teamroom|
10
- # Append this TeamRoom to array
11
- team_rooms << self.new(teamroom)
12
- end
13
- # return the resulting array
14
- team_rooms
1
+ class RubyDesk::TeamRoom
2
+ class << self
3
+ def get_teamrooms(connector)
4
+ response = connector.prepare_and_invoke_api_call 'team/v1/teamrooms', {:api_token=>@api_token, :api_key=>@api_key}, :method=>:get, :format=>'json'
5
+ # parses a JSON result returned from oDesk and extracts an array of TeamRooms out of it
6
+ json = JSON.parse(response)
7
+ team_rooms = []
8
+ [json['teamrooms']['teamroom']].flatten.each do |teamroom|
9
+ # Append this TeamRoom to array
10
+ team_rooms << self.new(teamroom)
15
11
  end
16
-
12
+ # return the resulting array
13
+ team_rooms
17
14
  end
18
15
 
19
- # Attribute readers for all attributes
20
- attr_reader :company_recno, :company_name, :name, :id, :recno, :teamroom_api
21
-
22
- # Create a new TeamRoom from a hash similar to the one in ActiveRecord::Base.
23
- # The given hash maps each attribute name to its value
24
- def initialize(params={})
25
- params.each do |k, v|
26
- self.instance_variable_set("@#{k}", v)
27
- end
28
- end
16
+ end
29
17
 
30
- def snapshot(connector, online='now')
31
- response = connector.prepare_and_invoke_api_call "team/v1/teamrooms/#{self.id}", {:api_token=>@api_token, :api_key=>@api_key, :online=>online}, :method=>:get, :format=>'json'
32
- json = JSON.parse(response)
33
- RubyDesk::Snapshot.new(json['teamroom']['snapshot'])
18
+ # Attribute readers for all attributes
19
+ attr_reader :company_recno, :company_name, :name, :id, :recno, :teamroom_api
20
+
21
+ # Create a new TeamRoom from a hash similar to the one in ActiveRecord::Base.
22
+ # The given hash maps each attribute name to its value
23
+ def initialize(params={})
24
+ params.each do |k, v|
25
+ self.instance_variable_set("@#{k}", v)
34
26
  end
35
-
27
+ end
28
+
29
+ def snapshot(connector, online='now')
30
+ response = connector.prepare_and_invoke_api_call "team/v1/teamrooms/#{self.id}", {:api_token=>@api_token, :api_key=>@api_key, :online=>online}, :method=>:get, :format=>'json'
31
+ json = JSON.parse(response)
32
+ RubyDesk::Snapshot.new(json['teamroom']['snapshot'])
36
33
  end
37
34
  end
data/lib/ruby_desk.rb CHANGED
@@ -1,5 +1,56 @@
1
+ require 'rubygems'
2
+ require 'json'
3
+
4
+ module RubyDesk
5
+ end
6
+
7
+ # This first file is required by other files
8
+ require File.join(File.dirname(__FILE__), 'ruby_desk', 'odesk_entity')
9
+
1
10
  module RubyDesk
11
+ # Classes for simple entities are defined here for simplicity and to decrease number of files
12
+ def self.define_simple_class(*attribute_names)
13
+ Class.new RubyDesk::OdeskEntity do
14
+ attributes *attribute_names
15
+ end
16
+ end
17
+
18
+ Competency = define_simple_class(:cmp_url, :cmp_when, :cmp_provider, :cmp_ref,
19
+ :cmp_percentile, :cmp_name, :cmp_recno, :cmp_score, :cmp_id)
20
+ Skill = define_simple_class(:skl_level_num, :skl_ref, :skl_name, :skl_last_used,
21
+ :skl_recno, :skl_level, :skl_comment, :skl_year_exp)
22
+ Agency = define_simple_class(:ag_adj_score, :ag_logo, :ag_name, :ag_recent_hours, :ag_tot_feedback,
23
+ :ag_recno, :ciphertext, :ag_adj_score_recent, :ag_total_hours)
24
+ Exam = define_simple_class(:ts_name, :ts_rank, :ts_duration, :ts_when,
25
+ :ts_provider, :ts_score, :ts_percentile, :ts_curl_name, :ts_ref,
26
+ :ts_is_certification, :ts_id, :ts_pass, :ts_seo_link)
27
+ JobCategory = define_simple_class(:seo_link, :second_level, :first_level)
28
+ Experience = define_simple_class(:exp_comment, :exp_from, :exp_recno,
29
+ :exp_title, :exp_company, :exp_to)
30
+ Candidacy = define_simple_class(:permalink, :dev_recno, :opening_ciphertext,
31
+ :rel_requested_assignment, :created_type, :developer_ciphertext,
32
+ :ciphertext, :create_date, :profile_seo_link, :Agencyref, :agency_ciphertext,
33
+ :op_title, :record_id, :job_profile_access)
34
+ Assignment = define_simple_class(:as_type, :as_blended_cost_rate, :as_total_hours,
35
+ :as_to, :as_from, :as_client, :as_opening_access, :as_agency_name, :as_rate,
36
+ :as_blended_charge_rate, :as_amount, :as_total_charge, :as_opening_recno,
37
+ :as_description, :as_opening_title, :as_status, :as_job_type,
38
+ :as_ciphertext_opening_recno, :as_total_cost)
39
+ Certificate = define_simple_class(:cmp_url, :cmp_when, :cmp_provider, :cmp_ref,
40
+ :cmp_percentile, :cmp_name, :cmp_recno, :cmp_score, :cmp_id)
41
+ Institution = define_simple_class(:ed_area, :ed_school, :ed_degree, :ed_to,
42
+ :ed_recno, :ed_comment, :ed_from)
43
+ OtherExperience = define_simple_class(:exp_recno, :exp_description, :exp_subject)
44
+ Trend = define_simple_class(:trend_word, :trend_url, :trend_recno, :trend_skill)
45
+ PortfolioItem = define_simple_class(:pi_recno, :pi_description, :pi_attachment,
46
+ :pi_completed, :pi_thumbnail, :pi_title, :pi_category, :pi_url, :pi_image)
47
+ User = define_simple_class(:messenger_id, :timezone, :uid, :timezone_offset, :last_name,
48
+ :mail, :creation_time, :first_name)
49
+ # = define_simple_class()
50
+ # = define_simple_class()
51
+ # = define_simple_class()
2
52
  end
3
53
 
4
- require 'ruby_desk/connector'
5
- require 'ruby_desk/team_room'
54
+ Dir.glob(File.join(File.dirname(__FILE__), 'ruby_desk', '*.rb')).each do |file|
55
+ require file
56
+ end
data/test/helper.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  require 'rubygems'
2
2
  require 'test/unit'
3
- require 'shoulda'
4
3
 
5
4
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
5
  $LOAD_PATH.unshift(File.dirname(__FILE__))
data/test/profile.json ADDED
@@ -0,0 +1 @@
1
+ {"server_time":"1262866545","profile":{"dev_usr_score":"4.91","skills":{"skill":[{"skl_ref":"128","skl_name":"AJAX","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2008","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"88299"},{"skl_ref":"85","skl_name":"Borland C++ Builder","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2004","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"88297"},{"skl_ref":"3","skl_name":"C\/C++\/Win32SDK","skl_level":"Very Good","skl_level_num":"3","skl_last_used":"2005","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"88298"},{"skl_ref":"49","skl_name":"CSS","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2007","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"88300"},{"skl_ref":"18","skl_name":"HTML\/DHTML","skl_level":"Very Good","skl_level_num":"3","skl_last_used":"2007","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"88301"},{"skl_ref":"25819","skl_name":"JavaME","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2008","skl_year_exp":"2 yrs","skl_comment":"<p>Bidirectional dictionaries<br \/>Dictionaries for mobile phones using JavaME.<br \/><a href=\"http:\/\/badrit.com\/portfolio\/badr_dictionary_arabic\">http:\/\/badrit.com\/portfolio\/badr_dictionary_arabic<\/a><br \/><a href=\"http:\/\/badrit.com\/portfolio\/badr_dictionary_german\">http:\/\/badrit.com\/portfolio\/badr_dictionary_german<\/a><\/p>","skl_recno":"88302"},{"skl_ref":"28","skl_name":"LaTeX","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2008","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"88303"},{"skl_ref":"113","skl_name":"MySQL","skl_level":"Good","skl_level_num":"2","skl_last_used":"2007","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"88304"},{"skl_ref":"58","skl_name":"Oracle Forms","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2007","skl_year_exp":"3 yrs","skl_comment":"","skl_recno":"88305"},{"skl_ref":"61","skl_name":"Oracle PL\/SQL","skl_level":"Very Good","skl_level_num":"3","skl_last_used":"2007","skl_year_exp":"3 yrs","skl_comment":"","skl_recno":"88306"},{"skl_ref":"59","skl_name":"Oracle Reports","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2007","skl_year_exp":"3 yrs","skl_comment":"","skl_recno":"88307"},{"skl_ref":"18004","skl_name":"Ruby\/Rails","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"3 yrs","skl_comment":"http:\/\/github.com\/aseldawy\/detective\nMy latest project is Detective. A ruby gem that extracts the source code for a method you name\nCheck it out at\nhttp:\/\/github.com\/aseldawy\/detective\n\nYou may also like to check this\nhttp:\/\/github.com\/aseldawy\/quick_magick","skl_recno":"111821"},{"skl_ref":"87","skl_name":"Windows Administration","skl_level":"Good","skl_level_num":"2","skl_last_used":"2007","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"88308"},{"skl_ref":"22","skl_name":"XML","skl_level":"Good","skl_level_num":"2","skl_last_used":"2007","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"88309"}]},"tsexams":{"tsexam":[{"ts_duration":"25","ts_id":"78042","ts_rank":"713","ts_ref":"519","ts_provider":"25100","ts_is_certification":"","ts_percentile":"87","ts_seo_link":"Certified Java Developers","ts_score":"3.6","ts_pass":"1","ts_when":"04\/11\/2008","ts_name":"Java Test","ts_curl_name":"Certified Java Developer"},{"ts_duration":"28","ts_id":"11064","ts_rank":"378","ts_ref":"561","ts_provider":"25100","ts_is_certification":"","ts_percentile":"86","ts_seo_link":"Certified C++ Programmers","ts_score":"3.6","ts_pass":"1","ts_when":"04\/01\/2007","ts_name":"Programming with C++ Test","ts_curl_name":"Certified C++ Programmer"},{"ts_duration":"27","ts_id":"11058","ts_rank":"692","ts_ref":"559","ts_provider":"25100","ts_is_certification":"","ts_percentile":"81","ts_seo_link":"Certified C Programmers","ts_score":"3.75","ts_pass":"1","ts_when":"04\/01\/2007","ts_name":"Programming with C Test","ts_curl_name":"Certified C Programmer"},{"ts_duration":"25","ts_id":"705777","ts_rank":"260","ts_ref":"602","ts_provider":"25100","ts_is_certification":"","ts_percentile":"80","ts_seo_link":"Certified Ruby on Rails Developers","ts_score":"4","ts_pass":"1","ts_when":"08\/11\/2009","ts_name":"Ruby on Rails Test","ts_curl_name":"Certified Ruby on Rails Developer"},{"ts_duration":"19","ts_id":"11057","ts_rank":"26889","ts_ref":"511","ts_provider":"25100","ts_is_certification":"","ts_percentile":"62","ts_seo_link":"Certified English (Sentence Structure) Experts","ts_score":"4.1","ts_pass":"1","ts_when":"04\/01\/2007","ts_name":"U.S. English Basic Skills Test ","ts_curl_name":"Certified English (Sentence Structure) Expert"},{"ts_duration":"38","ts_id":"12654","ts_rank":"3594","ts_ref":"570","ts_provider":"25100","ts_is_certification":"","ts_percentile":"44","ts_seo_link":"Certified Technical Writing Experts","ts_score":"2.9","ts_pass":"1","ts_when":"04\/28\/2007","ts_name":"Technical Writing Skills Certification","ts_curl_name":"Certified Technical Writing Expert"}]},"dev_scores":{"dev_score":[{"avg_category_score_recent":"5.0000000000001","order":"1","label":"Skills","avg_category_score":"5.0000000000001","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5.0000000000001","order":"2","label":"Quality","avg_category_score":"5.0000000000001","description":"quality of work deliverables"},{"avg_category_score_recent":"4.4260211506925","order":"3","label":"Availability","avg_category_score":"4.4260211506925","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"4.4260211506925","order":"4","label":"Deadlines","avg_category_score":"4.4260211506925","description":"ability to complete tasks on time"},{"avg_category_score_recent":"4.4260211506925","order":"5","label":"Communication","avg_category_score":"4.4260211506925","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5.0000000000001","order":"6","label":"Cooperation","avg_category_score":"5.0000000000001","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"37","dev_total_hours":"987.16666666667","experiences":{"experience":[{"exp_from":"08\/2006","exp_company":"BadrIT","exp_to":"Present","exp_title":"IT Engineer \/ Independent Contributor","exp_recno":"13699","exp_comment":"My current work involves working with new technologies and allows me to investigate different approaches to problem solving. During the past period i used AJAX, Ruby on Rails, J2ME and other technologies. Working is very flexible and learning new technologies is welcome here."},{"exp_from":"08\/2005","exp_company":"Ejada","exp_to":"10\/2005","exp_title":"IT Engineer \/ Independent Contributor","exp_recno":"13696","exp_comment":"- My work at Ejada was mainly using Oracle technologies.\n- Development was done using Oracle 9i, Oracle developer, PL\/SQL, and OWB (Oracle Warehouse Builder)."}]},"dev_eng_skill":"5","dev_category":"Programmer \/ Developer","dev_est_availability":"35 of 35","dev_country":"Egypt","dev_tot_feedback":"5","dev_is_affiliated":"1","portfolio_items":{"portfolio_item":[{"pi_title":"Detective","pi_thumbnail":"","pi_description":"Detective is a gem built by BadrIT (www.badrit.com\/) to investigate the ruby source code.\nIt digs through the code on your machine and extracts the exact source code that is currently written for a method.","pi_recno":"236906","pi_category":{"pi_category_level":["Software Development","Scripts & Utilities"],"pi_category_recno":"21"},"pi_attachment":"","pi_completed":"1259625600","pi_image":"","pi_url":"http:\/\/github.com\/aseldawy\/detective"},{"pi_title":"QuickMagick","pi_thumbnail":"","pi_description":"QuickMagick is a gem built by BadrIT (www.badrit.com) for easily accessing ImageMagick command line tools from Ruby programs.","pi_recno":"236905","pi_category":{"pi_category_level":["Software Development","Software Plug-ins"],"pi_category_recno":"22"},"pi_attachment":"","pi_completed":"1255564800","pi_image":"","pi_url":"http:\/\/github.com\/aseldawy\/quick_magick"},{"pi_title":"SWEQ","pi_thumbnail":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4mXfMD7ZrbxpXJqfIs1K-JRRI3bf0Z1taA==","pi_description":"&nbsp;SWEQ&nbsp;stands for Sweet Equity. This is a network for entrepreneurs and suppliers. A supplier can set his skills, location, time availability ... etc. An entrepreneur creates projects and sets skills requirements for his projects and time and place preferences. This application automatically connects suppliers to entrepreneurs according to projects using advanced techniques for matching.<br \/>I've made a working prototype for this application using Ruby on Rails for Infonium Inc. I've got an excellent feedback (5)&nbsp;for this project.","pi_recno":"101833","pi_category":{"pi_category_level":["",""],"pi_category_recno":"10"},"pi_attachment":"","pi_completed":"1216684800","pi_image":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4mXfMD7ZrbxpH-TjH0ywIgcC9Hr*tml5xw==","pi_url":""},{"pi_title":"Quanta3","pi_thumbnail":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4i*kpnfAlfv7XJqfIs1K-JRRI3bf0Z1taA==","pi_description":"&nbsp;This web site allows to browse hospitals and medical agencies and check relationships between them. For example one can select an agency and see all subagencies to it.<br \/>I've converted this project from Java EE (using Hibernate and Spring) to Ruby on Rails. Also I made a smal component using Adobe Flex 3 to browse organizations and make incremental search. I've got an excellent feedback (5)&nbsp;for this project. I've made this project for Infonium Inc.","pi_recno":"101832","pi_category":{"pi_category_level":["",""],"pi_category_recno":"10"},"pi_attachment":"","pi_completed":"1216684800","pi_image":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4i*kpnfAlfv7H-TjH0ywIgcC9Hr*tml5xw==","pi_url":""},{"pi_title":"MedTrainee","pi_thumbnail":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4rsohL5hhIeeXJqfIs1K-JRRI3bf0Z1taA==","pi_description":"&nbsp;MedTrainee is a web application to track Medical Trainees in hospitals. It allows trainees to signup and got enrolled to hospitals. Hospitals managers may accept trainees according to their portfolio (including University). Managers and trainees are automatically notified through emails with new updates. I've made a working prototype for this project using Ruby on Rails for Infonium Inc. I've got an excellent feedback (5)&nbsp;for this prototype.<br \/>","pi_recno":"101831","pi_category":{"pi_category_level":["",""],"pi_category_recno":"10"},"pi_attachment":"","pi_completed":"1216684800","pi_image":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4rsohL5hhIeeH-TjH0ywIgcC9Hr*tml5xw==","pi_url":""},{"pi_title":"360 Reviews","pi_thumbnail":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4nl30HXKJf8aXJqfIs1K-JRRI3bf0Z1taA==","pi_description":"&nbsp;360 Review is a review system for hospitals. A physician is reviewed by himsleft, his manager, patients and coworkers. Results are collected and a summary is viewed to the admin.<br \/>I&nbsp;have developed a working prototype for Infonium Inc. among a team of 3 developers using Ruby on Rails. I've got an excellent feedback (5)&nbsp;for this project.","pi_recno":"101828","pi_category":{"pi_category_level":["",""],"pi_category_recno":"10"},"pi_attachment":"","pi_completed":"1216684800","pi_image":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4nl30HXKJf8aH-TjH0ywIgcC9Hr*tml5xw==","pi_url":""},{"pi_title":"Oline Takeoff","pi_thumbnail":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4iXtt9k5INZrXJqfIs1K-JRRI3bf0Z1taA==","pi_description":"&nbsp;<strong>Online Takeoff<\/strong> is a remake for the desktop application PlanSwift (www.planswift.com). It was remade as a web application from scratch using Ruby on Rails for the backend and Adobe Flex 3 for the front end.<br \/>I was a the project manager and a senior developer in this project. I have developed the backend using Ruby on Rails and parts of the front end using Adobe Flex 3. I've applied some security techniques in this application to keep logging in secure.","pi_recno":"101824","pi_category":{"pi_category_level":["",""],"pi_category_recno":"10"},"pi_attachment":"","pi_completed":"1211414400","pi_image":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4iXtt9k5INZrH-TjH0ywIgcC9Hr*tml5xw==","pi_url":"http:\/\/www.onlinetakeoff.com"},{"pi_title":"Badr Dictionary","pi_thumbnail":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4iyGJUpqGj9vXJqfIs1K-JRRI3bf0Z1taA==","pi_description":"&nbsp;Badr Dictionary is a two way French-English-French dictionary for mobile phones. It is made using Java ME (j2me) so that it can work on most modern mobiles.<br \/>It is also available in other languages like (Arabic, Germany, Italian and Spain)","pi_recno":"101826","pi_category":{"pi_category_level":["Software Development","Mobile Apps"],"pi_category_recno":"23"},"pi_attachment":"","pi_completed":"1203638400","pi_image":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4iyGJUpqGj9vH-TjH0ywIgcC9Hr*tml5xw==","pi_url":"http:\/\/www.badrit.com\/portfolio\/badr_dictionary_french"},{"pi_title":"Memory Game","pi_thumbnail":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4q-QlyjdX*ZsXJqfIs1K-JRRI3bf0Z1taA==","pi_description":"A memory game for mobile phones using Java ME&nbsp;(J2me). I've made the first part of this application a long time ago. After that, I used it a training example for junior developers and trainees. They kept it updated under my supervision.","pi_recno":"101825","pi_category":{"pi_category_level":["Software Development","Mobile Apps"],"pi_category_recno":"23"},"pi_attachment":"","pi_completed":"1200960000","pi_image":"http:\/\/www.odesk.com\/att\/~~8Cen7zpTWXydf3Q6RU*s4q-QlyjdX*ZsH-TjH0ywIgcC9Hr*tml5xw==","pi_url":""}]},"dev_year_exp":"3","dev_ic":"BadrIT","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.8187530060925","ciphertext":"~~478ea491dd4a2dd1","ag_adj_score":"4.8560786855","ag_tot_feedback":"46","ag_recent_hours":"2427","ag_total_hours":"10725.8333333333","ag_recno":"5634","ag_name":"BadrIT","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKZ0Wulq6gNZLlQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw=="}},"dev_adj_score":"4.7417095178116","dev_adj_score_recent":"4.7417095178116","dev_availability":"35","dev_location":"Alex, Egypt (GMT+02:00)","dev_total_hours_rounded":"987","dev_expose_full_name":"","dev_is_ready":"1","education":{"institution":[{"ed_school":"Alexandria University","ed_from":"09\/2005","ed_to":"Present","ed_recno":"245039","ed_area":"Computer Systems and Engineering","ed_degree":"Masters","ed_comment":""},{"ed_school":"Faculty of Engineering - Alexandria University","ed_from":"09\/2000","ed_to":"07\/2005","ed_recno":"17924","ed_area":"Computer Engineering","ed_degree":"Bachelors","ed_comment":"- Grade: Excellent with degree of honor [90.32%]\n- Graduation Project: \n - Title: Client\/server Communication Center\n - Description: building a client\/server communication center that allows people to chat with their online friends, \n make voice chat, video conversations, share files and play online games.\n Implementation was done using Java, eclipse and IBM CloudScape. \n - Tools: eclipse and IBM CloudScape.\n - Grade: excellent"}]},"dev_last_worked":"November 22, 2009","version":"2","dev_blurb":"Utilizing my solid academic study as a Software Engineer for developing Both Web and Mobile applications.","dev_portfolio_items_count":"9","dev_ui_profile_access":"Authenticated users","dev_full_name":"Ahmed El-Dawy .","dev_groups":"","dev_billed_assignments":"8","dev_rank_percentile":"43","dev_active_interviews":"0","assignments":{"assignment":[{"as_rate":"$20.00","as_from":"03\/2009","as_to":"Present","as_total_hours":"284","as_agency_name":"BadrIT","as_opening_access":"private","as_client":"81112","as_total_cost":"5109","as_opening_title":"\u0650Arabic classifiad website development -phase one \u0650","as_ciphertext_opening_recno":"~~5b3234618e40c9d2","as_amount":"","as_blended_charge_rate":"20","as_description":"Working for a buyer from Saudi Arabia in a Web Development\/Other - Web Development job","as_blended_cost_rate":"18","as_type":"20","as_total_charge":"5676.6666666667","as_opening_recno":"2602947","as_job_type":"Hourly","as_status":"Active"},{"as_rate":"$24.00","as_from":"06\/2009","as_to":"Present","as_total_hours":"100","as_agency_name":"BadrIT","as_opening_access":"private","as_client":"28705","as_total_cost":"2167.2","as_opening_title":"Enhancements to OnlineTakeoff.com","as_ciphertext_opening_recno":"~~e22295be55c8804a","as_amount":"","as_blended_charge_rate":"24","as_description":"Working for a buyer from United States in a Web Development\/Web Programming job","as_blended_cost_rate":"21.6","as_type":"40","as_total_charge":"2408","as_opening_recno":"3341330","as_job_type":"Hourly","as_status":"Active"},{"as_rate":"$18.00","as_from":"11\/2007","as_to":"10\/2008","as_total_hours":"106.83","as_agency_name":"BadrIT","as_opening_access":"private","as_reason_api_ref":"API_REAS_RATE_CHANGE","as_client":"16273","as_total_cost":"1459.8","as_opening_title":"Senior Java Developer","as_ciphertext_opening_recno":"~~dcd3f7435c16793d","as_amount":"0","as_blended_charge_rate":"15.14","as_description":"Worked for a buyer from United States in a Software Development\/Other - Software Development job","as_reason_recno":"54","as_reason":"Developer Rate Change","as_blended_cost_rate":"13.62","as_total_charge":"1622","as_type":"20","as_opening_recno":"243387","as_job_type":"Hourly","as_status":"Closed"},{"as_rate":"$19.99","as_from":"04\/2008","as_to":"09\/2008","as_total_hours":"255","as_agency_name":"BadrIT","feedback":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"label":"Quality","score":"5","description":"quality of work deliverables"},{"label":"Availability","score":"4","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"4","description":"ability to complete tasks on time"},{"label":"Communication","score":"4","description":"communication skills, frequent progress updates, responsiveness"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"comment_is_public":"1","comment":"","score":"4.55"},"as_opening_access":"public","as_client":"28705","as_reason_api_ref":"","as_total_cost":"4590.4483333333","as_opening_title":"Adobe Flex - Duplicate an Existing Windows Program as a Web App.","as_ciphertext_opening_recno":"~~53b10caf98303ec7","as_amount":"","as_blended_charge_rate":"19.99","as_description":"Worked for a buyer from United States in a Web Development\/Web Programming job","as_reason_recno":"70","as_reason":"Job was completed successfully","as_blended_cost_rate":"17.99","feedback_given":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of task complexities"},{"label":"Quality","score":"5","description":"quality of specifications\/instructions"},{"label":"Availability","score":"4","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"5","description":"understanding of complexities and trade-offs"},{"label":"Communication","score":"5","description":"communication skills and responsiveness, feedback and guidance"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, open to suggestions for improvement"}]},"comment_is_public":"1","comment":"Tech Unlimited is a great company to work with. Specifications are very clear. They understand technical limitations of some technologies and do not ask you for mysterious features. I am willing to work with Tech Unlimited again.","score":"4.85"},"as_total_charge":"5100.7816666667","as_type":"40","as_opening_recno":"786440","as_job_type":"Hourly","as_status":"Closed","profile_seo_link":"Adobe-Flex-Duplicate-Existing-Windows-Program-Web-App_~~53b10caf98303ec7","permalink":"http:\/\/www.odesk.com\/jobs\/Adobe-Flex-Duplicate-Existing-Windows-Program-Web-App_~~53b10caf98303ec7"},{"as_rate":"$19.99","as_from":"05\/2008","as_to":"07\/2008","as_total_hours":"104","as_agency_name":"BadrIT","feedback":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"label":"Quality","score":"5","description":"quality of work deliverables"},{"label":"Availability","score":"5","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"5","description":"ability to complete tasks on time"},{"label":"Communication","score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"comment_is_public":"1","comment":"Ahmed is a great RoR developer - very satisfied with his work.","score":"5.00"},"as_opening_access":"public","as_client":"44117","as_reason_api_ref":"","as_total_cost":"1870.96","as_opening_title":"Ruby on Rails Application Developer","as_ciphertext_opening_recno":"~~00e6a4883f7db6d3","as_amount":"","as_blended_charge_rate":"19.99","as_description":"Worked for a buyer from Canada in a Web Development\/Web Programming job","as_reason_recno":"70","as_reason":"Job was completed successfully","as_blended_cost_rate":"17.99","as_total_charge":"2078.96","as_type":"40","as_opening_recno":"914599","as_job_type":"Hourly","as_status":"Closed","profile_seo_link":"Ruby-Rails-Application-Developer_~~00e6a4883f7db6d3","permalink":"http:\/\/www.odesk.com\/jobs\/Ruby-Rails-Application-Developer_~~00e6a4883f7db6d3"},{"as_rate":"$12.00","as_from":"07\/2007","as_to":"10\/2007","as_total_hours":"78","as_agency_name":"BadrIT","feedback":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"label":"Quality","score":"5","description":"quality of work deliverables"},{"label":"Availability","score":"5","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"5","description":"ability to complete tasks on time"},{"label":"Communication","score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"comment_is_public":"1","comment":"Ahmed's work was very satisfactory, would consider him for future projects.","score":"5.00"},"as_opening_access":"private","as_client":"21721","as_reason_api_ref":"","as_total_cost":"1058.8","as_opening_title":"Java\/Ruby Developer","as_ciphertext_opening_recno":"~~ffca66f144655e11","as_amount":"","as_blended_charge_rate":"15.15","as_description":"Worked for a buyer from United States in a Software Development\/Other - Software Development job","as_reason_recno":"72","as_reason":"Job was cancelled or postponed","as_blended_cost_rate":"13.63","as_total_charge":"1176.44","as_type":"0","as_opening_recno":"254144","as_job_type":"Hourly","as_status":"Closed"},{"as_rate":"$9.94","as_from":"07\/2007","as_to":"10\/2007","as_total_hours":"35","as_agency_name":"BadrIT","feedback":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"label":"Quality","score":"5","description":"quality of work deliverables"},{"label":"Availability","score":"5","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"5","description":"ability to complete tasks on time"},{"label":"Communication","score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"comment_is_public":"1","comment":"","score":"5.00"},"as_opening_access":"private","as_client":"16273","as_reason_api_ref":"API_REAS_RATE_CHANGE","as_total_cost":"314.74166666667","as_opening_title":"Senior Java Developer","as_ciphertext_opening_recno":"~~dcd3f7435c16793d","as_amount":"","as_blended_charge_rate":"9.94","as_description":"Worked for a buyer from United States in a Software Development\/Other - Software Development job","as_reason_recno":"54","as_reason":"Developer Rate Change","as_blended_cost_rate":"8.95","as_total_charge":"349.55666666667","as_type":"20","as_opening_recno":"243387","as_job_type":"Hourly","as_status":"Closed"},{"as_rate":"$6.67","as_from":"02\/2007","as_to":"03\/2007","as_total_hours":"24","as_agency_name":"BadrIT","feedback":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"label":"Quality","score":"5","description":"quality of work deliverables"},{"label":"Availability","score":"5","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"5","description":"ability to complete tasks on time"},{"label":"Communication","score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"comment_is_public":"1","comment":"I would highly recommend this provider.","score":"5.00"},"as_opening_access":"public","as_client":"18002","as_reason_api_ref":"","as_total_cost":"163","as_opening_title":"C++ programmer","as_ciphertext_opening_recno":"~~5497030cd4bcebd2","as_amount":"","as_blended_charge_rate":"7.59","as_description":"Worked for a buyer from United States in a Software Development\/Desktop Applications job","as_reason_recno":"73","as_reason":"Job continues with other oDesk Providers","as_blended_cost_rate":"6.84","as_total_charge":"180.96833333333","as_type":"20","as_opening_recno":"137958","as_job_type":"Hourly","as_status":"Closed","profile_seo_link":"programmer_~~5497030cd4bcebd2","permalink":"http:\/\/www.odesk.com\/jobs\/programmer_~~5497030cd4bcebd2"}],"hr":{"job":[{"as_rate":"$20.00","as_from":"03\/2009","as_to":"Present","as_total_hours":"284","as_agency_name":"BadrIT","as_opening_access":"private","as_client":"81112","as_total_cost":"5109","as_opening_title":"\u0650Arabic classifiad website development -phase one \u0650","as_ciphertext_opening_recno":"~~5b3234618e40c9d2","as_amount":"","as_blended_charge_rate":"20","as_description":"Working for a buyer from Saudi Arabia in a Web Development\/Other - Web Development job","as_blended_cost_rate":"18","as_type":"20","as_total_charge":"5676.6666666667","as_opening_recno":"2602947","as_job_type":"Hourly","as_status":"Active"},{"as_rate":"$24.00","as_from":"06\/2009","as_to":"Present","as_total_hours":"100","as_agency_name":"BadrIT","as_opening_access":"private","as_client":"28705","as_total_cost":"2167.2","as_opening_title":"Enhancements to OnlineTakeoff.com","as_ciphertext_opening_recno":"~~e22295be55c8804a","as_amount":"","as_blended_charge_rate":"24","as_description":"Working for a buyer from United States in a Web Development\/Web Programming job","as_blended_cost_rate":"21.6","as_type":"40","as_total_charge":"2408","as_opening_recno":"3341330","as_job_type":"Hourly","as_status":"Active"},{"as_rate":"$18.00","as_from":"11\/2007","as_to":"10\/2008","as_total_hours":"106.83","as_agency_name":"BadrIT","as_opening_access":"private","as_reason_api_ref":"API_REAS_RATE_CHANGE","as_client":"16273","as_total_cost":"1459.8","as_opening_title":"Senior Java Developer","as_ciphertext_opening_recno":"~~dcd3f7435c16793d","as_amount":"0","as_blended_charge_rate":"15.14","as_description":"Worked for a buyer from United States in a Software Development\/Other - Software Development job","as_reason_recno":"54","as_reason":"Developer Rate Change","as_blended_cost_rate":"13.62","as_total_charge":"1622","as_type":"20","as_opening_recno":"243387","as_job_type":"Hourly","as_status":"Closed"},{"as_rate":"$19.99","as_from":"04\/2008","as_to":"09\/2008","as_total_hours":"255","as_agency_name":"BadrIT","feedback":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"label":"Quality","score":"5","description":"quality of work deliverables"},{"label":"Availability","score":"4","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"4","description":"ability to complete tasks on time"},{"label":"Communication","score":"4","description":"communication skills, frequent progress updates, responsiveness"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"comment_is_public":"1","comment":"","score":"4.55"},"as_opening_access":"public","as_client":"28705","as_reason_api_ref":"","as_total_cost":"4590.4483333333","as_opening_title":"Adobe Flex - Duplicate an Existing Windows Program as a Web App.","as_ciphertext_opening_recno":"~~53b10caf98303ec7","as_amount":"","as_blended_charge_rate":"19.99","as_description":"Worked for a buyer from United States in a Web Development\/Web Programming job","as_reason_recno":"70","as_reason":"Job was completed successfully","as_blended_cost_rate":"17.99","feedback_given":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of task complexities"},{"label":"Quality","score":"5","description":"quality of specifications\/instructions"},{"label":"Availability","score":"4","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"5","description":"understanding of complexities and trade-offs"},{"label":"Communication","score":"5","description":"communication skills and responsiveness, feedback and guidance"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, open to suggestions for improvement"}]},"comment_is_public":"1","comment":"Tech Unlimited is a great company to work with. Specifications are very clear. They understand technical limitations of some technologies and do not ask you for mysterious features. I am willing to work with Tech Unlimited again.","score":"4.85"},"as_total_charge":"5100.7816666667","as_type":"40","as_opening_recno":"786440","as_job_type":"Hourly","as_status":"Closed"},{"as_rate":"$19.99","as_from":"05\/2008","as_to":"07\/2008","as_total_hours":"104","as_agency_name":"BadrIT","feedback":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"label":"Quality","score":"5","description":"quality of work deliverables"},{"label":"Availability","score":"5","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"5","description":"ability to complete tasks on time"},{"label":"Communication","score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"comment_is_public":"1","comment":"Ahmed is a great RoR developer - very satisfied with his work.","score":"5.00"},"as_opening_access":"public","as_client":"44117","as_reason_api_ref":"","as_total_cost":"1870.96","as_opening_title":"Ruby on Rails Application Developer","as_ciphertext_opening_recno":"~~00e6a4883f7db6d3","as_amount":"","as_blended_charge_rate":"19.99","as_description":"Worked for a buyer from Canada in a Web Development\/Web Programming job","as_reason_recno":"70","as_reason":"Job was completed successfully","as_blended_cost_rate":"17.99","as_total_charge":"2078.96","as_type":"40","as_opening_recno":"914599","as_job_type":"Hourly","as_status":"Closed"},{"as_rate":"$12.00","as_from":"07\/2007","as_to":"10\/2007","as_total_hours":"78","as_agency_name":"BadrIT","feedback":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"label":"Quality","score":"5","description":"quality of work deliverables"},{"label":"Availability","score":"5","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"5","description":"ability to complete tasks on time"},{"label":"Communication","score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"comment_is_public":"1","comment":"Ahmed's work was very satisfactory, would consider him for future projects.","score":"5.00"},"as_opening_access":"private","as_client":"21721","as_reason_api_ref":"","as_total_cost":"1058.8","as_opening_title":"Java\/Ruby Developer","as_ciphertext_opening_recno":"~~ffca66f144655e11","as_amount":"","as_blended_charge_rate":"15.15","as_description":"Worked for a buyer from United States in a Software Development\/Other - Software Development job","as_reason_recno":"72","as_reason":"Job was cancelled or postponed","as_blended_cost_rate":"13.63","as_total_charge":"1176.44","as_type":"0","as_opening_recno":"254144","as_job_type":"Hourly","as_status":"Closed"},{"as_rate":"$9.94","as_from":"07\/2007","as_to":"10\/2007","as_total_hours":"35","as_agency_name":"BadrIT","feedback":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"label":"Quality","score":"5","description":"quality of work deliverables"},{"label":"Availability","score":"5","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"5","description":"ability to complete tasks on time"},{"label":"Communication","score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"comment_is_public":"1","comment":"","score":"5.00"},"as_opening_access":"private","as_client":"16273","as_reason_api_ref":"API_REAS_RATE_CHANGE","as_total_cost":"314.74166666667","as_opening_title":"Senior Java Developer","as_ciphertext_opening_recno":"~~dcd3f7435c16793d","as_amount":"","as_blended_charge_rate":"9.94","as_description":"Worked for a buyer from United States in a Software Development\/Other - Software Development job","as_reason_recno":"54","as_reason":"Developer Rate Change","as_blended_cost_rate":"8.95","as_total_charge":"349.55666666667","as_type":"20","as_opening_recno":"243387","as_job_type":"Hourly","as_status":"Closed"},{"as_rate":"$6.67","as_from":"02\/2007","as_to":"03\/2007","as_total_hours":"24","as_agency_name":"BadrIT","feedback":{"scores":{"score":[{"label":"Skills","score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"label":"Quality","score":"5","description":"quality of work deliverables"},{"label":"Availability","score":"5","description":"online presence on a consistent schedule"},{"label":"Deadlines","score":"5","description":"ability to complete tasks on time"},{"label":"Communication","score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"label":"Cooperation","score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"comment_is_public":"1","comment":"I would highly recommend this provider.","score":"5.00"},"as_opening_access":"public","as_client":"18002","as_reason_api_ref":"","as_total_cost":"163","as_opening_title":"C++ programmer","as_ciphertext_opening_recno":"~~5497030cd4bcebd2","as_amount":"","as_blended_charge_rate":"7.59","as_description":"Worked for a buyer from United States in a Software Development\/Desktop Applications job","as_reason_recno":"73","as_reason":"Job continues with other oDesk Providers","as_blended_cost_rate":"6.84","as_total_charge":"180.96833333333","as_type":"20","as_opening_recno":"137958","as_job_type":"Hourly","as_status":"Closed"}]},"fp":""},"oth_experiences":{"oth_experience":[{"exp_description":"This program is used to backup files on CDs, its real power comes when the files you want to backup are larger than one CD. the program will then split them on many CDs. You can drag and drop the files and\/or folders you want to burn from your computer to this program, then it will automatically split them on different CDs trying to minimize the total number of CDs and maximize the utilization of each CD.\nThe program was made with Java, and I found it a good chance to learn about many features in Java GUI building. I learnt Drag'n'Drop and many other features in Swing.\nhttp:\/\/www.geocities.com\/aseldawy\/projects.html#others","exp_recno":"10095","exp_subject":"CD Builder"},{"exp_description":"This game is a mixture of puyo-puyo and columns. You have to arrange the colored blocks in order to form a line of three similar colors.\nhttp:\/\/www.geocities.com\/aseldawy\/haridy_columns.html","exp_recno":"10093","exp_subject":"Haridy Columns"},{"exp_description":"- This program is made for charity, it enable users to search the holy quran and many hadith books in arabic, this program is developed in java, using the apache Lucene search engine and aramorph.\n\n- Currently a desktop version is available but i am working on developing a web-based version to deploy over the internet.","exp_recno":"10182","exp_subject":"Islamic Books Search"},{"exp_description":"A beautiful brick-out clone game with many levels. You enter an items shop before every level to buy many helpful and beautiful items. An editor is included. \nhttp:\/\/www.geocities.com\/aseldawy\/arkanoid.html","exp_recno":"10092","exp_subject":"New Arkanoid"},{"exp_description":"Basic, Pascal, C\/C++, Assembly, C#\nVisual Basic, Delphi, Visual C++, \nBorland C++ Builder, Eclipse\nJSP, Servlet, ASP, ASP.Net, HTML, XML\/XSL\nSQL, PL\/SQL\nOracle Administration, Oracle Developer, Oracle Designer, SQL Server.","exp_recno":"10217","exp_subject":"Other skills and technologies"},{"exp_description":"Various small projects\/ mini assignments using different programming languages and tools.\nSome of these projects have been made as assignment\/ homework during my study. Some are made just for fun.\nYou can see a detailed list with links to download (source code\/ binaries)\nhttp:\/\/www.geocities.com\/aseldawy\/projects.html","exp_recno":"10096","exp_subject":"Various projects"}]},"ciphertext":"~~e57e209c94c8578c","candidacies":{"candidacy":[{"create_date":"January 7, 2010","dev_recno":"25100","ciphertext":"~~8783533f6ebee003","developer_ciphertext":"~~e57e209c94c8578c","agency_ciphertext":"~~478ea491dd4a2dd1","opening_ciphertext":"~~05d860988fe72091","rel_requested_assignment":"100661030","created_type":"Professional","job_profile_access":"public","record_id":"5762752","op_title":"Senior Web architect needed for Manhattan based startup","Agencyref":"5634","profile_seo_link":"Senior-Web-architect-needed-for-Manhattan-based-startup_~~05d860988fe72091","permalink":"http:\/\/www.odesk.com\/jobs\/Senior-Web-architect-needed-for-Manhattan-based-startup_~~05d860988fe72091"},{"create_date":"January 7, 2010","dev_recno":"25100","ciphertext":"~~9979cda363c45310","developer_ciphertext":"~~e57e209c94c8578c","agency_ciphertext":"~~478ea491dd4a2dd1","opening_ciphertext":"~~6804519522d5d374","rel_requested_assignment":"100661120","created_type":"Professional","job_profile_access":"public","record_id":"5760883","op_title":"I am looking for someone to creaat a Social Networking like myspace of facebook platform for my country.","Agencyref":"5634","profile_seo_link":"looking-for-someone-creaat-Social-Networking-like-myspace-facebook-platform-for-country_~~6804519522d5d374","permalink":"http:\/\/www.odesk.com\/jobs\/looking-for-someone-creaat-Social-Networking-like-myspace-facebook-platform-for-country_~~6804519522d5d374"},{"create_date":"December 22, 2009","dev_recno":"25100","ciphertext":"~~f1256ea6e7699ec3","developer_ciphertext":"~~e57e209c94c8578c","agency_ciphertext":"~~478ea491dd4a2dd1","opening_ciphertext":"~~584076991d42bb46","rel_requested_assignment":"100646947","created_type":"Professional","job_profile_access":"public","record_id":"5579463","op_title":"Project Manager for Large, Complex Ruby Rails App. I need a Superstar","Agencyref":"5634","profile_seo_link":"Project-Manager-for-Large-Complex-Ruby-Rails-App-need-Superstar_~~584076991d42bb46","permalink":"http:\/\/www.odesk.com\/jobs\/Project-Manager-for-Large-Complex-Ruby-Rails-App-need-Superstar_~~584076991d42bb46"},{"create_date":"December 1, 2009","dev_recno":"25100","ciphertext":"~~c2852a6f77b42476","developer_ciphertext":"~~e57e209c94c8578c","agency_ciphertext":"~~478ea491dd4a2dd1","opening_ciphertext":"~~88aca62e11a426e9","rel_requested_assignment":"100627115","created_type":"Professional","job_profile_access":"public","record_id":"5318597","op_title":"Web software engineer","Agencyref":"5634","profile_seo_link":"Web-software-engineer_~~88aca62e11a426e9","permalink":"http:\/\/www.odesk.com\/jobs\/Web-software-engineer_~~88aca62e11a426e9"},{"create_date":"July 23, 2008","dev_recno":"25100","ciphertext":"~~96373c429f0d0fe3","developer_ciphertext":"~~e57e209c94c8578c","agency_ciphertext":"~~478ea491dd4a2dd1","opening_ciphertext":"~~98929e0afd19cd83","rel_requested_assignment":"1141606","created_type":"Client","job_profile_access":"public","record_id":"1145917","op_title":"Web Developement and Management","Agencyref":"5634","profile_seo_link":"Web-Developement-and-Management_~~98929e0afd19cd83","permalink":"http:\/\/www.odesk.com\/jobs\/Web-Developement-and-Management_~~98929e0afd19cd83"}]},"dev_bill_rate":"28.5","dev_recno":"25100","dev_region":"Misc","dev_portrait":"http:\/\/www.odesk.com\/att\/~~oy9gEuXE7mKK7JyrN9-B0JhRNxClN6qVh8jWpLvsgDE=","dev_pay_rate":"","dev_recent_hours":"88.0000000000001","dev_tot_feedback_recent":"0","dev_agency_ref":"5634","dev_city":"Alex","dev_cur_assignments":"3","dev_test_passed_count":"6","trends":{"trend":[{"trend_word":"Windows Administration Professionals","trend_skill":"Windows Administration","trend_recno":"65","trend_url":"Windows%20Administration"},{"trend_word":"J2EE Developers ","trend_skill":"J2EE","trend_recno":"46","trend_url":"J2EE"},{"trend_word":"Java Developers","trend_skill":"Java","trend_recno":"57","trend_url":"Java"},{"trend_word":"C++ Programmers ","trend_skill":"C++","trend_recno":"47","trend_url":"c%2B%2B"},{"trend_word":"CSS Designers","trend_skill":"CSS","trend_recno":"52","trend_url":"CSS"},{"trend_word":"Technical Writers ","trend_skill":"Tech Writer","trend_recno":"39","trend_url":"Tech%20Writer"},{"trend_word":"MySQL Administrators","trend_skill":"MySQL","trend_recno":"60","trend_url":"MySQL"},{"trend_word":"AJAX Developers","trend_skill":"AJAX","trend_recno":"41","trend_url":"Ajax"},{"trend_word":"Technical Writers","trend_skill":"Tech Writer","trend_recno":"72","trend_url":"Tech%20Writer"},{"trend_word":"Ruby on Rails Developers ","trend_skill":"Rails","trend_recno":"48","trend_url":"Rails"},{"trend_word":"Freelance Writers ","trend_skill":"Writer","trend_recno":"114","trend_url":"Writer"}]},"dev_total_assignments":"9","dev_agency_ciphertext":"~~478ea491dd4a2dd1","job_categories":{"job_category":[{"second_level":"Web Programming","seo_link":"Web Developers","first_level":"Web Development"},{"second_level":"Other - Web Development","seo_link":"Web Developers","first_level":"Web Development"},{"second_level":"Desktop Applications","seo_link":"Software Developers","first_level":"Software Development"},{"second_level":"Game Development","seo_link":"Software Developers","first_level":"Software Development"},{"second_level":"Mobile Apps","seo_link":"Software Developers","first_level":"Software Development"},{"second_level":"Other - Software Development","seo_link":"Software Developers","first_level":"Software Development"}]},"dev_timezone":"GMT+02:00 Cairo","dev_last_activity":"January 7, 2010","dev_profile_title":"Senior Java\/Ruby on Rails Developer","dev_billed_assignments_recent":"2","dev_pay_agency_rate":"25.65","dev_member_since":"January 3, 2007","competencies":{"competency":{"cmp_recno":"17909","cmp_score":"4.34","cmp_url":"http:\/\/www.brainbench.com\/content\/transcript\/topicdetail.do?testid=10248432","cmp_id":"8515902","cmp_provider":"Brainbench","cmp_name":"Web Development Concepts","cmp_when":"2009","cmp_percentile":"0.99","cmp_ref":"539"}},"dev_short_name":"Ahmed ..","profile_title_full":"Senior Java\/Ruby on Rails Developer - BadrIT Programmer \/ Developer, Egypt","agency_ciphertext":"~~478ea491dd4a2dd1","ag_country_tz":"Egypt (GMT+02:00)","ag_portrait":"http:\/\/www.odesk.com\/att\/~~jGeYiZT3fG2OFOmPFru56lr5Er-QNe9uAvR6-rZpecc=","ag_rank_percentile":"55","ag_description":"<div><strong>BadrIT<\/strong> is an offshore software outsourcing company, Our team consists of talented computer engineers and information technology experts who have a strong desire to innovate and excel. Our goal is to deliver the best service that satisfies our customers.<br \/> <br \/> Our team enjoys passion for technology and a high learning capacity, we are seeking challenging projects to work on.We mainly focus on developing web-based systems using <em>Ruby on Rails<\/em>, <em>PHP<\/em>, <em>Adobe Flex<\/em>, and <em>AJAX<\/em>. We also build mobile applications using <em>iPhone<\/em> and <em>J2ME<\/em>. We prefer using <strong>Agile<\/strong> methodologies, specially <em>Extreme Programming<\/em> (<strong>XP<\/strong>), utilizing the philosophy of Test Driven Development (TDD), which drives projects quality.&nbsp;<br \/> <br \/> We have great experience in delivering projects to clients in <em>USA, UK, Australia, Japan,<\/em> ...For a full list of our <strong>technologies<\/strong> and skill sets visit:www.BadrIT.com\/page\/technology-full<br \/> <br \/> Kindly review our services terms at <a title=\"You are about to go to a URL outside odesk.com\" class=\"extlink\" href=\"..\/..\/..\/leaving_odesk.php?ref=http%3A%2F%2Fwww.BadrIT.com%2Fpage%2Fterms\">http:\/\/www.BadrIT.com\/page\/terms<\/a><\/div>","ag_adj_score":"4.8560786855","ag_recent_hours":"2427","ag_hours_lastdays":"489.166666666667","ag_teamid_rollup":"badrit","ag_adj_score_recent":"4.8187530060925","ag_country":"Egypt","ag_tot_feedback":"46","ag_total_hours":"10725.8333333333","ag_last_date_worked":"January 6, 2010","ag_name":"BadrIT","ag_active_assignments":"36","ag_total_developers":"15","ag_manager_name":"Muhammad Hassan Nasr","ag_cny_recno":"33618","ag_billed_assignments":"82","ag_member_since":"December 18, 2006","ag_city":"Alexandria","ag_teamid":"badrit","ag_manager_blurb":"<p><br \/>\n<a href=\"http:\/\/www.linkedin.com\/in\/muhammadhassan\"> <img height=\"33\" width=\"160\" border=\"0\" alt=\"View Muhammad Hassan Nasr's profile on LinkedIn\" src=\"http:\/\/www.linkedin.com\/img\/webpromo\/btn_viewmy_160x33.gif\" \/><\/a> <a target=\"_blank\" href=\"http:\/\/www.odesk.com\/community\/oconomy\/best_freelance_software_developers\/?utm=top_providers_widget\"><img height=\"33\" width=\"131\" border=\"0\" alt=\"best freelance software developers\" src=\"http:\/\/www.odesk.com\/community\/system\/files\/softwaredeveloper_s.png\" \/><\/a> <!--{12471417454400}--> <br \/>\nI am a Senior Software Engineer with:<\/p><ul><li style=\"margin: 0pt; padding: 0pt;\">Solid background in computer <strong>science<\/strong>.<\/li><li style=\"margin: 0pt; padding: 0pt;\">Wide <strong>experience <\/strong>in programming.<\/li><li>Passion for engaging with the latest <strong>technology<\/strong>.<\/li><li>Persistence to write code that is simple, <strong>effective <\/strong>and clean.<\/li><li>Passion for applying <strong>agile <\/strong>methodology.<\/li><li>Great <b>learning<\/b> capacity.<\/li><li>Extensive experience with overseas <strong>outsourcing<\/strong>.<\/li><\/ul> And as an oDesk <strong>Certified iPhone Developer<\/strong>, I am seeking opportunities to develop competent iPhone applications that adds great success to your business.<br \/>\n<br \/>\nKindly review our service terms at www.badrit.com\/page\/terms","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKZ0Wulq6gNZLlQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw==","ag_summary":"BadrIT is an offshore software outsourcing company","response_time":"17.3828125000000000","favorited":"27","is_odesk_ready":"1","dev_blurb_short":"Utilizing my solid academic study as a Software Engineer for developing Both Web and Mobile applications.","provider_profile_api":"http:\/\/www.odesk.com\/api\/profiles\/v1\/providers\/~~e57e209c94c8578c.json","assignments_count":"8","permalink":"http:\/\/www.odesk.com\/users\/~~478ea491dd4a2dd1","search_affiliate_providers_url":"http:\/\/www.odesk.com\/users\/?q=&ag=5634","certification":{"certificate":{"cmp_recno":"17909","cmp_score":"4.34","cmp_url":"http:\/\/www.brainbench.com\/content\/transcript\/topicdetail.do?testid=10248432","cmp_id":"8515902","cmp_provider":"Brainbench","cmp_name":"Web Development Concepts","cmp_when":"2009","cmp_percentile":"0.99","cmp_ref":"539"}},"tsexams_count":"6"}}
@@ -0,0 +1 @@
1
+ {"server_time":"1262864778","providers":{"provider":[{"dev_rank_percentile":"81","contact_name":"Dmitry P.","skills":{"skill":[{"skl_ref":"128","skl_name":"AJAX","skl_level":"Very Good","skl_level_num":"3","skl_last_used":"2008","skl_year_exp":"3 yrs","skl_comment":"<a title=\"You are about to go to a URL outside odesk.com\" href=\"..\/..\/..\/leaving_odesk.php?ref=http%3A%2F%2Fsilkfair.com\">multiple web development projects<\/a>","skl_recno":"129138"},{"skl_ref":"107","skl_name":"Asterisk","skl_level":"Very Good","skl_level_num":"3","skl_last_used":"2007","skl_year_exp":"2 yrs","skl_comment":"Deployed office IP-PBX based on Asterisk in some companies.<br \/>Realized features: <br \/><ul><li>call center;<\/li><li>fax to mail\/mail to fax;<\/li><li>integration with Instant Messenger (jabber);<\/li><li>integration with SugarCRM.<\/li><\/ul>","skl_recno":"24057"},{"skl_ref":"49","skl_name":"CSS","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"6 yrs","skl_comment":"multiple web development projects","skl_recno":"15580"},{"skl_ref":"18","skl_name":"HTML\/DHTML","skl_level":"Expert","skl_level_num":"5","skl_last_used":"","skl_year_exp":"3 yrs","skl_comment":"http:\/\/www.protontechno.com, http:\/\/www.lightspeed.ru, http:\/\/www.ultra.kg,www.shailoo.kg , www.study.kg, www.tourism.kg, <http:\/\/www.protontechno.com, http:\/\/www.lightspeed.ru, http:\/\/www.ultra.kg,www.shailoo.kg , www.study.kg, www.tourism.kg, \nURL\thttp:\/\/www.protontechno.com\n\nDuration\t3 year (including updates and support)\nDescription\tProton Technologies\u0092 corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tClient accounts;\n\u0095\tAdministrative part;\n\u0095\tForum;\n\u0095\tProduct order part.\nSite is integrated with 1C.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript, MS SQL\n\nURL\thttp:\/\/www.lightspeed.ru\n\nDuration\t3 month\nDescription\tLightSpeed\u0092s corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tClient accounts;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\tInternet Task Portal\nDuration\t3 months\nDescription\tThis portal intend for allocation and control tasks between managers.\nIt contains:\n\u0095\tTask and Queries lists;\n\u0095\tUsers accounts;\n\u0095\tE-mail notification;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\n\nURL\thttp:\/\/www.ultra.kg\n\nDuration\t1 month\nDescription\tUltra-X\u0092s corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\thttp:\/\/www.ultra.kg\n\nDuration\t1 month\nDescription\tUltra-X\u0092s corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\tSMS Friend Search\nDuration\t1 month\nDescription\tAcquaint Service working through SMS (Short Message Service)\nIt supports next functions:\n\u0095\tRegistration \/ moving off\n\u0095\tSearch users using list of criterions;\n\u0095\tSMS notification;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\tContent Manager System\n\u0095\twww.elitetravel.kg\n\u0095\twww.shailoo.kg \n\u0095\twww.study.kg\n\u0095\twww.tourism.kg\n\u0095\taseev.info\nDuration\t6 months\nDescription\tSystem supports the following modules:\n\u0095\tnews;\n\u0095\tarticles;\n\u0095\tvote;\n\u0095\tstatistic;\n\u0095\tsite-search;\n\u0095\tsubscribe-lists;\n\u0095\tuser accounts;\n\u0095\tforum;\n\u0095\tmulti-language.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n","skl_recno":"9269"},{"skl_ref":"135","skl_name":"JavaScript","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"6 yrs","skl_comment":"JS frameworks: Prototype, jQuery<br \/>http:\/\/silkfair.com<br \/>http:\/\/theeventthing.com","skl_recno":"408470"},{"skl_ref":"15","skl_name":"MS-SQL","skl_level":"Very Good","skl_level_num":"3","skl_last_used":"2004","skl_year_exp":"4 yrs","skl_comment":"http:\/\/www.protontechno.com\nSite is integrated with 1C ERP system<br \/>","skl_recno":"9271"},{"skl_ref":"113","skl_name":"MySQL","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"","skl_year_exp":"3 yrs","skl_comment":"http:\/\/www.protontechno.com, http:\/\/www.lightspeed.ru, http:\/\/www.ultra.kg,http:\/\/www.ultra.kg, www.elitetravel.kg, www.shailoo.kg , www.tourism.kg \nURL\thttp:\/\/www.protontechno.com\n\nDuration\t3 year (including updates and support)\nDescription\tProton Technologies\u0092 corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tClient accounts;\n\u0095\tAdministrative part;\n\u0095\tForum;\n\u0095\tProduct order part.\nSite is integrated with 1C.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript, MS SQL\n\nURL\thttp:\/\/www.lightspeed.ru\n\nDuration\t3 month\nDescription\tLightSpeed\u0092s corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tClient accounts;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\tInternet Task Portal\nDuration\t3 months\nDescription\tThis portal intend for allocation and control tasks between managers.\nIt contains:\n\u0095\tTask and Queries lists;\n\u0095\tUsers accounts;\n\u0095\tE-mail notification;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\n\nURL\thttp:\/\/www.ultra.kg\n\nDuration\t1 month\nDescription\tUltra-X\u0092s corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\thttp:\/\/www.ultra.kg\n\nDuration\t1 month\nDescription\tUltra-X\u0092s corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\tSMS Friend Search\nDuration\t1 month\nDescription\tAcquaint Service working through SMS (Short Message Service)\nIt supports next functions:\n\u0095\tRegistration \/ moving off\n\u0095\tSearch users using list of criterions;\n\u0095\tSMS notification;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\tContent Manager System\n\u0095\twww.elitetravel.kg\n\u0095\twww.shailoo.kg \n\u0095\twww.study.kg\n\u0095\twww.tourism.kg\n\u0095aseev.info\nDuration\t6 months\nDescription\tSystem supports the following modules:\n\u0095\tnews;\n\u0095\tarticles;\n\u0095\tvote;\n\u0095\tstatistic;\n\u0095\tsite-search;\n\u0095\tsubscribe-lists;\n\u0095\tuser accounts;\n\u0095\tforum;\n\u0095\tmulti-language.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\n","skl_recno":"9270"},{"skl_ref":"9","skl_name":"Perl","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"12128"},{"skl_ref":"10","skl_name":"PHP","skl_level":"Expert","skl_level_num":"5","skl_last_used":"","skl_year_exp":"3 yrs","skl_comment":"http:\/\/www.protontechno.com, http:\/\/www.lightspeed.ru, http:\/\/www.ultra.kg,www.shailoo.kg , www.study.kg, www.tourism.kg, \nURL\thttp:\/\/www.protontechno.com\n\nDuration\t3 year (including updates and support)\nDescription\tProton Technologies\u0092 corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tClient accounts;\n\u0095\tAdministrative part;\n\u0095\tForum;\n\u0095\tProduct order part.\nSite is integrated with 1C.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript, MS SQL\n\nURL\thttp:\/\/www.lightspeed.ru\n\nDuration\t3 month\nDescription\tLightSpeed\u0092s corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tClient accounts;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\tInternet Task Portal\nDuration\t3 months\nDescription\tThis portal intend for allocation and control tasks between managers.\nIt contains:\n\u0095\tTask and Queries lists;\n\u0095\tUsers accounts;\n\u0095\tE-mail notification;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\n\nURL\thttp:\/\/www.ultra.kg\n\nDuration\t1 month\nDescription\tUltra-X\u0092s corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\thttp:\/\/www.ultra.kg\n\nDuration\t1 month\nDescription\tUltra-X\u0092s corporate site contains:\n\u0095\tNews part;\n\u0095\tArticle part;\n\u0095\tProduct list;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\tSMS Friend Search\nDuration\t1 month\nDescription\tAcquaint Service working through SMS (Short Message Service)\nIt supports next functions:\n\u0095\tRegistration \/ moving off\n\u0095\tSearch users using list of criterions;\n\u0095\tSMS notification;\n\u0095\tAdministrative part.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n\nURL\tContent Manager System\n\u0095\twww.elitetravel.kg\n\u0095\twww.shailoo.kg \n\u0095\twww.study.kg\n\u0095\twww.tourism.kg\n\u0095\taseev.info\nDuration\t6 months\nDescription\tSystem supports the following modules:\n\u0095\tnews;\n\u0095\tarticles;\n\u0095\tvote;\n\u0095\tstatistic;\n\u0095\tsite-search;\n\u0095\tsubscribe-lists;\n\u0095\tuser accounts;\n\u0095\tforum;\n\u0095\tmulti-language.\nParticipation\tDeveloper\nTechnologies\tPHP, MySQL, JavaScript\n","skl_recno":"9268"},{"skl_ref":"37","skl_name":"PHP\/IIS\/MS SQL","skl_level":"Familiar","skl_level_num":"","skl_last_used":"","skl_year_exp":" ","skl_comment":"","skl_recno":"15582"},{"skl_ref":"7211","skl_name":"Ruby\/Ruby on Rails","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"3 yrs","skl_comment":"http:\/\/silkfair.com<br \/>http:\/\/theeventthing.com","skl_recno":"129133"},{"skl_ref":"76","skl_name":"Smarty","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2007","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"129135"},{"skl_ref":"62","skl_name":"SQL","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"12129"}]},"ag_adj_score":"4.5350274275145","ag_recent_hours":"2212.33333333333","agency_ciphertext":"","availability_vs_total":"40 of 40","ui_profile_title":"Ruby on Rails Developer","dev_tot_tests":"3","dev_scores":{"dev_score":[{"avg_category_score_recent":"5","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"4.9971840799433","order":"2","label":"Quality","avg_category_score":"4.9971840799433","description":"quality of work deliverables"},{"avg_category_score_recent":"4.9971840799433","order":"3","label":"Availability","avg_category_score":"4.9971840799433","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"4.9943681598865","order":"5","label":"Communication","avg_category_score":"4.9943681598865","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"4.9971840799433","order":"6","label":"Cooperation","avg_category_score":"4.9971840799433","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"4814.3333333333","avg_category_score":"","ciphertext":"~~f14589ab5ca01f83","dev_country":"Russia","dev_tot_feedback":"3","profile_access":"public","dev_bill_rate":"25","dev_recno":"2150","dev_ic":"Parity IT","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.619533008437","ciphertext":"~~db7b59f61aa82b2c","ag_adj_score":"4.5350274275145","ag_tot_feedback":"40","ag_recent_hours":"2212.33333333333","ag_total_hours":"23629.6666666667","ag_recno":"68","ag_name":"Parity IT","ag_logo":""}},"affiliated":"Parity IT","ag_logo":"","dev_portrait":"","dev_adj_score":"4.9977472639546","dev_adj_score_recent":"4.9977472639546","dev_num_assignments_feedback_for_prov":"3","dev_tot_feedback_recent":"0","dev_recent_hours":"287.1666666666668","dev_agency_ref":"68","dev_test_passed_count":"3","tot_portfolio_items":"3","ag_adj_score_recent":"4.619533008437","dev_tot_hours":"4814.00","ag_total_hours":"23629.6666666667","record_id":"2150","adj_score":"5.00","dev_country_tz":"Russia (GMT+06:00)","group_recno":"","dev_blurb":"Developer with web and database application experience. &amp;lt;br \/&amp;gt;Specialty: Web (Ruby On Rails, PHP, JavaScript, AJAX, Web 2.0), database (MySQL, PostgreSQL, SQL Server) and VoIP (Asterisk, OpenPBX) applications.&amp;lt;br \/&amp;gt;Experience with Linux systems administration and scripting","company_logo":"","dev_last_activity":"December 26, 2009","dev_full_name":"Dmitry Penkin","dev_profile_title":"Ruby on Rails Developer","dev_member_since":"July 5, 2005","charge_rate_hourly":"25.00","dev_short_name":"Dmitry P."},{"dev_rank_percentile":"81","contact_name":"Sergey S.","skills":{"skill":[{"skl_ref":"128","skl_name":"AJAX","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2008","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"24135"},{"skl_ref":"39","skl_name":"ASP.NET+ADO","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2007","skl_year_exp":"4 yrs","skl_comment":"","skl_recno":"24134"},{"skl_ref":"3","skl_name":"C\/C++\/Win32SDK","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2007","skl_year_exp":"3 yrs","skl_comment":"","skl_recno":"24133"},{"skl_ref":"1","skl_name":"C#\/.Net","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2007","skl_year_exp":"5 yrs","skl_comment":"","skl_recno":"24132"},{"skl_ref":"6","skl_name":"J2EE","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2007","skl_year_exp":"6 yrs","skl_comment":"","skl_recno":"24131"},{"skl_ref":"12","skl_name":"PHP\/MySQL","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2007","skl_year_exp":"3 yrs","skl_comment":"","skl_recno":"42977"},{"skl_ref":"149","skl_name":"Ruby on Rails","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2008","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"200729"}]},"ag_adj_score":"4.5015898987413","ag_recent_hours":"8315.16666666667","agency_ciphertext":"","availability_vs_total":"40 of 40","ui_profile_title":"Lead Developer\/Project Manager -- Top 10 oDesk Provider","dev_tot_tests":"3","dev_scores":{"dev_score":[{"avg_category_score_recent":"0","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"0","order":"2","label":"Quality","avg_category_score":"5","description":"quality of work deliverables"},{"avg_category_score_recent":"0","order":"3","label":"Availability","avg_category_score":"5","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"0","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"0","order":"5","label":"Communication","avg_category_score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"0","order":"6","label":"Cooperation","avg_category_score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"0","dev_total_hours":"4189.5","avg_category_score":"","ciphertext":"~~e5fdbae13e48bc54","dev_country":"Ukraine","dev_tot_feedback":"1","profile_access":"public","dev_bill_rate":"23","dev_recno":"5103","dev_ic":"InterLink LLC > InterLink","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.5569449462116","ciphertext":"~~a5f96729847a576a","ag_adj_score":"4.5015898987413","ag_tot_feedback":"20","ag_recent_hours":"8315.16666666667","ag_total_hours":"39484.6666666667","ag_recno":"1341","ag_name":"InterLink LLC > InterLink","ag_logo":""}},"affiliated":"InterLink LLC > InterLink","ag_logo":"","dev_portrait":"http:\/\/www.odesk.com\/att\/~~JJJoyDHwG0-iQCMFQ79NtaZyheXa-4JmNSM8eJN8Blc=","dev_adj_score":"5","dev_adj_score_recent":"0","dev_num_assignments_feedback_for_prov":"1","dev_tot_feedback_recent":"0","dev_recent_hours":"0","dev_agency_ref":"1341","dev_test_passed_count":"3","tot_portfolio_items":"3","ag_adj_score_recent":"4.5569449462116","dev_tot_hours":"4190.00","record_id":"5103","ag_total_hours":"39484.6666666667","adj_score":"5.00","dev_country_tz":"Ukraine (GMT+02:00)","group_recno":"","dev_blurb":"<p class=\"MsoNormal\" style=\"margin: 0cm 0cm 10pt 35.4pt;\"><span lang=\"en-us\" xml:lang=\"en-us\"><span style=\"font-family: Calibri;\"><span><span lang=\"en-us\" xml:lang=\"en-us\" style=\"font-size: 11pt; line-height: 115%; font-family: Calibri;\">Over 7 years of complex software products development experience as Lead Software Developer\/Analyst\/Methodologies Trainer. As Lead Developer I work on software solutions implementation using Java, .NET and Ruby on Rails. As Methodology Trainer I take part in company development process set up including Behavior Driven Development (based on Test Driven Development and Refactoring), Automated Acceptance Testing, Peer Code Review and Nightly Builds. I am primary responsible person&nbsp;for providing our customers with software development,QA services and human resources.<\/span><\/span><\/span><\/span><\/p>","company_logo":"","dev_last_activity":"June 3, 2009","dev_full_name":"Sergey Slepchenko","dev_profile_title":"Lead Developer\/Project Manager -- Top 10 oDesk Provider","dev_member_since":"May 12, 2006","charge_rate_hourly":"23.00","dev_short_name":"Sergey S."},{"dev_rank_percentile":"81","contact_name":"Anton Astashov","skills":{"skill":[{"skl_ref":"49","skl_name":"CSS","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2007","skl_year_exp":"2 yrs","skl_comment":"&nbsp;","skl_recno":"96983"},{"skl_ref":"3122","skl_name":"Erlang","skl_level":"Good","skl_level_num":"2","skl_last_used":"2009","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"602405"},{"skl_ref":"18","skl_name":"HTML\/DHTML","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2007","skl_year_exp":"2 yrs","skl_comment":"I developed CSS\/HTML\/JS code conventions and widely applied them in different projects. They are heavily inspired by Vitaly Harisov CSS Framework. You can check it on the Github's gist: http:\/\/gist.github.com\/113972","skl_recno":"96982"},{"skl_ref":"48700","skl_name":"JavaScript\/JQuery","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"602411"},{"skl_ref":"113","skl_name":"MySQL","skl_level":"Very Good","skl_level_num":"3","skl_last_used":"2007","skl_year_exp":"2 yrs","skl_comment":"&nbsp;","skl_recno":"96985"},{"skl_ref":"149","skl_name":"Ruby on Rails","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"1 yrs","skl_comment":"&nbsp;","skl_recno":"206368"}]},"ag_adj_score":"","ag_recent_hours":"","agency_ciphertext":"","availability_vs_total":"10 of 40","ui_profile_title":"Ruby on Rails Developer","dev_tot_tests":"4","dev_scores":{"dev_score":[{"avg_category_score_recent":"5","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5","order":"2","label":"Quality","avg_category_score":"5","description":"quality of work deliverables"},{"avg_category_score_recent":"5","order":"3","label":"Availability","avg_category_score":"5","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"5","order":"5","label":"Communication","avg_category_score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5","order":"6","label":"Cooperation","avg_category_score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"3660.3333333333","avg_category_score":"","ciphertext":"~~2ce82ea2b3ee2b39","dev_country":"Russia","dev_tot_feedback":"1","profile_access":"public","dev_bill_rate":"33.33","dev_recno":"26520","dev_ic":"Freelance Provider","dev_ac_agencies":"","affiliated":"Freelance Provider","ag_logo":"","dev_portrait":"http:\/\/www.odesk.com\/att\/~~oy9gEuXE7mLkQoIsmLu0lMksmrzEBq9WXre9TmTwKkI=","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"1","dev_tot_feedback_recent":"0","dev_recent_hours":"1193.6666666666679","dev_agency_ref":"","dev_test_passed_count":"4","tot_portfolio_items":"5","ag_adj_score_recent":"","dev_tot_hours":"3660.00","record_id":"26520","ag_total_hours":"","adj_score":"5.00","dev_country_tz":"Russia (GMT+07:00)","group_recno":"","dev_blurb":"I've got good experience in Ruby, Ruby on Rails, xHtml, CSS, SQL (MySQL), JavaScript and jQuery techniques, and I will glad to help you and your business with building websites.","company_logo":"","dev_last_activity":"January 7, 2010","dev_full_name":"Anton Astashov","dev_profile_title":"Ruby on Rails Developer","dev_member_since":"February 15, 2007","charge_rate_hourly":"33.33","dev_short_name":"Anton Astashov"},{"dev_rank_percentile":"81","contact_name":"Alexey S.","skills":{"skill":[{"skl_ref":"128","skl_name":"AJAX","skl_last_used":"2009","skl_level_num":"4","skl_level":"Proficient","skl_comment":"Multiple web development projects.<br \/>","skl_year_exp":"3 yrs","skl_recno":"112108"},{"skl_ref":"2247","skl_name":"CodeIgniter","skl_last_used":"2009","skl_level_num":"2","skl_level":"Good","skl_comment":"<br \/>","skl_year_exp":"1 yrs","skl_recno":"553895"},{"skl_ref":"49","skl_name":"CSS","skl_last_used":"2009","skl_level_num":"4","skl_level":"Proficient","skl_comment":"Multiple web development projects for different sites.<br \/>\nSome examples: <a href=\"http:\/\/www.dstu.edu.ru\/vestnik\">www.dstu.edu.ru\/vestnik<\/a>, <a href=\"http:\/\/www.rey.aaanet.ru\/forums\">www.rey.aaanet.ru\/forums<\/a>, <a href=\"http:\/\/www.dstu.edu.ru\/sovrec\">www.dstu.edu.ru\/sovrec<\/a>, <a href=\"http:\/\/www.maxipersonal.ru\">www.maxipersonal.ru<\/a><br \/>","skl_year_exp":"7 yrs","skl_recno":"112100"},{"skl_ref":"31","skl_name":"Database Modeling","skl_last_used":"2009","skl_level_num":"3","skl_level":"Very Good","skl_comment":"Multiple web development projects.","skl_year_exp":"8 yrs","skl_recno":"554829"},{"skl_ref":"151","skl_name":"Drupal","skl_last_used":"2009","skl_level_num":"3","skl_level":"Very Good","skl_comment":"<br \/>","skl_year_exp":"1 yrs","skl_recno":"553894"},{"skl_ref":"18","skl_name":"HTML\/DHTML","skl_last_used":"2009","skl_level_num":"5","skl_level":"Expert","skl_comment":"Multiple web development projects. Some examples:\n<ul>\n <li><a href=\"http:\/\/attain.fitclub.net\">attain.fitclub.net<\/a> Fitcomm Contacts Manager (development; technologies: JavaScript, MooTools, PHP, Doctrine, AJAX)<\/li>\n <li><a href=\"http:\/\/www.rey.aaanet.ru\/forums\">risingtideauctions.com<\/a> Rising Tide Auctions site (contributor)<\/li>\n <li><a href=\"http:\/\/www.rey.aaanet.ru\/forums\">portagehealth.org<\/a> Site of the Portage Health hospital (development team member)<\/li>\n <li><a href=\"http:\/\/www.rey.aaanet.ru\/forums\">www.dstu.edu.ru\/vestnik<\/a> The Bulletin of the Don State Technical University. Development (design, programming and support, technologies: HTML, CSS, Perl)<\/li>\n <li><a href=\"http:\/\/www.rey.aaanet.ru\/forums\">www.dstu.edu.ru\/sovrec<\/a> Council of Rectors of Rostov Region (team lead; technologies: HTML, CSS, JavaScript)<\/li>\n <li><a href=\"http:\/\/www.rey.aaanet.ru\/forums\">innov.ncic.ru<\/a> Catalog of innovative educational resour\u0441es (team lead; technologies: HTML, CSS, Perl, MySQL)<\/li>\n <li><a href=\"http:\/\/www.rey.aaanet.ru\/forums\">staff.ncic.ru<\/a> Web interface of vocational guidance system for students of DSTU. (technologies: PHP, MySQL, HTML, CSS, JavaScript)<\/li>\n <li><a href=\"http:\/\/www.rey.aaanet.ru\/forums\">dstu.edu.ru<\/a> Official site of Don State Technical University Maintenance of the site (2000-2007; team lead; technologies: HTML, CSS, JavaScript)<\/li>\n<\/ul>","skl_year_exp":"9 yrs","skl_recno":"112101"},{"skl_ref":"135","skl_name":"JavaScript","skl_last_used":"2009","skl_level_num":"4","skl_level":"Proficient","skl_comment":"Multiple web development projects.<br \/>\nWorked with jQuery, ExtJS, MooTools and Prototype libraries.<br \/>","skl_year_exp":"5 yrs","skl_recno":"112102"},{"skl_ref":"113","skl_name":"MySQL","skl_last_used":"2009","skl_level_num":"3","skl_level":"Very Good","skl_comment":"Using in multiple web development projects: installation, configuring, working in MySQL console and phpMyAdmin, implementing of the automatic backup scripts, database schema design<br \/>","skl_year_exp":"7 yrs","skl_recno":"112099"},{"skl_ref":"9","skl_name":"Perl","skl_last_used":"2007","skl_level_num":"4","skl_level":"Proficient","skl_comment":"- Index of schools and univercities of Rostov and Rostov region www.science.ncic.ru<br \/>\n- Site for sharing experiences between Rostov researchers and scientists www.innov.ncic.ru<br \/>\n<br \/>","skl_year_exp":"7 yrs","skl_recno":"112103"},{"skl_ref":"125","skl_name":"Photoshop","skl_last_used":"2007","skl_level_num":"2","skl_level":"Good","skl_comment":"- The Bulletin of the Don State Technical University http:\/\/www.dstu.edu.ru\/vestnik (arts and design)<br \/>\n- Site of Missionary Department of Rostov Diocess of Russian Orthodox Church http:\/\/www.missionerdona.ru (arts and design)<br \/>\n- Official forum of Rostov Diocess of Rusian Orthodox Church http:\/\/www.rey.aaaner.ru\/forums (arts and design assistance)<br \/>","skl_year_exp":"7 yrs","skl_recno":"112107"},{"skl_ref":"10","skl_name":"PHP","skl_last_used":"2009","skl_level_num":"4","skl_level":"Proficient","skl_comment":"Web interface of vocational guidance system for students of DSTU. Programming and design (technologies: PHP, MySQL, HTML, CSS, JavaScript)<br \/>\n<br \/>\nMultiple web development projects.<br \/>","skl_year_exp":"4 yrs","skl_recno":"112098"},{"skl_ref":"38","skl_name":"PostgreSQL","skl_last_used":"2009","skl_level_num":"3","skl_level":"Very Good","skl_comment":"http:\/\/base.ncic.ru\nAdjustments and maintenance of Aggregation System of Innovative Technologies of Rostov Region","skl_year_exp":"4 yrs","skl_recno":"112104"},{"skl_ref":"177","skl_name":"Rails","skl_last_used":"2009","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"712274"},{"skl_ref":"62","skl_name":"SQL","skl_last_used":"2009","skl_level_num":"4","skl_level":"Proficient","skl_comment":"Multiple web (MySQL, PostgreSQL) and desktop (Interbase, Access) development projects.","skl_year_exp":"8 yrs","skl_recno":"112106"},{"skl_ref":"88","skl_name":"Unix Shell","skl_last_used":"2009","skl_level_num":"4","skl_level":"Proficient","skl_comment":"I use unix shell a lot in my every day work.&nbsp;","skl_year_exp":"5 yrs","skl_recno":"554802"},{"skl_ref":"22","skl_name":"XML","skl_last_used":"2006","skl_level_num":"2","skl_level":"Good","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"112109"}]},"ag_adj_score":"4.5350274275145","ag_recent_hours":"2212.33333333333","agency_ciphertext":"","availability_vs_total":"20 of 25","ui_profile_title":"PHP Developer","dev_tot_tests":"4","dev_scores":{"dev_score":[{"order":"1","avg_category_score_recent":"5","label":"Skills","description":"competency and skills for the job, understanding of specifications\/instructions","avg_category_score":"5"},{"order":"2","avg_category_score_recent":"5","label":"Quality","description":"quality of work deliverables","avg_category_score":"5"},{"order":"3","avg_category_score_recent":"5","label":"Availability","description":"online presence on a consistent schedule","avg_category_score":"5"},{"order":"4","avg_category_score_recent":"5","label":"Deadlines","description":"ability to complete tasks on time","avg_category_score":"5"},{"order":"5","avg_category_score_recent":"5","label":"Communication","description":"communication skills, frequent progress updates, responsiveness","avg_category_score":"5"},{"order":"6","avg_category_score_recent":"5","label":"Cooperation","description":"cooperation and flexibility, suggestions for improvement","avg_category_score":"5"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"3146.6666666667","avg_category_score":"","ciphertext":"~~e13c60988949b1b2","dev_country":"Russia","dev_tot_feedback":"1","profile_access":"public","dev_bill_rate":"20","dev_recno":"29046","dev_ic":"Parity IT","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.619533008437","ciphertext":"~~db7b59f61aa82b2c","ag_adj_score":"4.5350274275145","ag_tot_feedback":"40","ag_recent_hours":"2212.33333333333","ag_total_hours":"23629.6666666667","ag_recno":"68","ag_name":"Parity IT","ag_logo":""}},"affiliated":"Parity IT","ag_logo":"","dev_portrait":"http:\/\/www.odesk.com\/att\/~~oy9gEuXE7mLjX4VXnZJbEKb5y61BsmCfpd7lu9kDdISW40Unwd7yGw==","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"1","dev_tot_feedback_recent":"1","dev_recent_hours":"730.4999999999995","dev_agency_ref":"68","dev_test_passed_count":"4","tot_portfolio_items":"0","ag_adj_score_recent":"4.619533008437","dev_tot_hours":"3147.00","record_id":"29046","ag_total_hours":"23629.6666666667","adj_score":"5.00","dev_country_tz":"Russia (GMT+03:00)","group_recno":"","dev_blurb":"Developed web sites using HTML, PHP, Perl, JavaScript, AJAX, MySQL and PostgreSQL.<br \/>\nHave knowledge of Drupal and CodeIgniter frameworks.<br \/>\n&nbsp;","company_logo":"","dev_last_activity":"January 6, 2010","dev_full_name":"Alexey Smolianinov","dev_profile_title":"PHP Developer","dev_member_since":"April 22, 2007","charge_rate_hourly":"20.00","dev_short_name":"Alexey S."},{"dev_rank_percentile":"81","contact_name":"Rostislav B.","skills":{"skill":[{"skl_ref":"24501","skl_name":"Automated QA Test Complete","skl_last_used":"2008","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"3 yrs","skl_recno":"210009"},{"skl_ref":"24500","skl_name":"HP LoadRunner","skl_last_used":"2008","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"210008"},{"skl_ref":"24499","skl_name":"HP QuickTest","skl_last_used":"2007","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"3 yrs","skl_recno":"210007"},{"skl_ref":"24503","skl_name":"NClover","skl_last_used":"2007","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"210011"},{"skl_ref":"24502","skl_name":"Partcover","skl_last_used":"2007","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"210010"},{"skl_ref":"9212","skl_name":"Rational Robot","skl_last_used":"2007","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"94752"},{"skl_ref":"1736","skl_name":"Selenium","skl_last_used":"2007","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"1 yrs","skl_recno":"210014"},{"skl_ref":"24504","skl_name":"WAPT","skl_last_used":"2007","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"210012"},{"skl_ref":"24505","skl_name":"WebLOAD","skl_last_used":"2008","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"210013"}]},"ag_adj_score":"4.5015898987413","ag_recent_hours":"8315.16666666667","agency_ciphertext":"","availability_vs_total":"40 of 40","ui_profile_title":"QA Engineer","dev_tot_tests":"1","dev_scores":{"dev_score":[{"order":"1","avg_category_score_recent":"5","label":"Skills","description":"competency and skills for the job, understanding of specifications\/instructions","avg_category_score":"5"},{"order":"2","avg_category_score_recent":"5","label":"Quality","description":"quality of work deliverables","avg_category_score":"5"},{"order":"3","avg_category_score_recent":"5","label":"Availability","description":"online presence on a consistent schedule","avg_category_score":"5"},{"order":"4","avg_category_score_recent":"5","label":"Deadlines","description":"ability to complete tasks on time","avg_category_score":"5"},{"order":"5","avg_category_score_recent":"5","label":"Communication","description":"communication skills, frequent progress updates, responsiveness","avg_category_score":"5"},{"order":"6","avg_category_score_recent":"5","label":"Cooperation","description":"cooperation and flexibility, suggestions for improvement","avg_category_score":"5"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"1986.6666666667","avg_category_score":"","ciphertext":"~~96df75788693fcaf","dev_country":"Ukraine","dev_tot_feedback":"2","profile_access":"public","dev_bill_rate":"10","dev_recno":"26158","dev_ic":"InterLink LLC > InterLink","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.5559760390902","ciphertext":"~~a5f96729847a576a","ag_adj_score":"4.5015898987413","ag_tot_feedback":"20","ag_recent_hours":"8233.33333333334","ag_total_hours":"39402.8333333333","ag_recno":"1341","ag_name":"InterLink LLC > InterLink","ag_logo":""}},"affiliated":"InterLink LLC > InterLink","ag_logo":"","dev_portrait":"","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"2","dev_tot_feedback_recent":"2","dev_recent_hours":"297.4999999999998","dev_agency_ref":"1341","dev_test_passed_count":"1","tot_portfolio_items":"4","ag_adj_score_recent":"4.5569449462116","dev_tot_hours":"1987.00","record_id":"26158","ag_total_hours":"39484.6666666667","adj_score":"5.00","dev_country_tz":"Ukraine (GMT+02:00)","group_recno":"","dev_blurb":"Over 3 years of Unit, Functional, Performance, Failover and Usability Testing as Quality Assurance Engineer. My duties include checking the programs for such factors as Reliability, Understandability, Completeness, Conciseness, Portability and Consistency. Among my current responsibilities are customer request analysis and product requirements analysis; technical documentation check up; test cases&nbsp;scenarios development, test data, tests execution, defects tracking &amp; analysis;&nbsp;report generation&nbsp;with results of performed testing activities; testing results analysis, participating in test processes analyzing &amp; improving. I use&nbsp;tools like Mercury WinRunner, LoadRunner, Web Test and Paessler Web Stress Tool for Automated Testing as well as Manual one.","company_logo":"","dev_last_activity":"December 5, 2009","dev_full_name":"Rostislav Bondarchuk","dev_profile_title":"QA Engineer","dev_member_since":"February 5, 2007","charge_rate_hourly":"10.00","dev_short_name":"Rostislav B."},{"dev_rank_percentile":"81","contact_name":"Gabriel V.","skills":{"skill":{"skl_ref":"145","skl_name":"Java","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"9 yrs","skl_comment":"We developed serveral Java expert level projects during past 9 years.","skl_recno":"642749"}},"ag_adj_score":"5","ag_recent_hours":"4188.16666666667","agency_ciphertext":"","availability_vs_total":"30 of 40","ui_profile_title":"Programmer \/ Developer","dev_tot_tests":"2","dev_scores":{"dev_score":[{"avg_category_score_recent":"5","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5","order":"2","label":"Quality","avg_category_score":"5","description":"quality of work deliverables"},{"avg_category_score_recent":"5","order":"3","label":"Availability","avg_category_score":"5","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"5","order":"5","label":"Communication","avg_category_score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5","order":"6","label":"Cooperation","avg_category_score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"1873.5","avg_category_score":"","ciphertext":"~~52bab0d09f30d260","dev_country":"Uruguay","dev_tot_feedback":"2","profile_access":"public","dev_bill_rate":"22.22","dev_recno":"150738","dev_ic":"CodigoDelSur","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"5","ciphertext":"~~14f896ce20011e8e","ag_adj_score":"5","ag_tot_feedback":"9","ag_recent_hours":"4188.16666666667","ag_total_hours":"9149.00000000001","ag_recno":"59015","ag_name":"CodigoDelSur","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKZw8IwsZwyp*lQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw=="}},"affiliated":"CodigoDelSur","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKZw8IwsZwyp*lQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw==","dev_portrait":"http:\/\/www.odesk.com\/att\/~~okvC-0al6cOVZV4VIwZyCnv23CFF9y7SDvADlxTmVdA=","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"2","dev_tot_feedback_recent":"2","dev_recent_hours":"491.8333333333327","dev_agency_ref":"59015","dev_test_passed_count":"2","tot_portfolio_items":"5","ag_adj_score_recent":"5","dev_tot_hours":"1874.00","record_id":"150738","ag_total_hours":"9149.00000000001","adj_score":"5.00","dev_country_tz":"Uruguay (GMT-03:00)","group_recno":"","dev_blurb":"","company_logo":"","dev_last_activity":"January 6, 2010","dev_full_name":"Gabriel Velazquez","dev_profile_title":"Programmer \/ Developer","dev_member_since":"August 21, 2008","charge_rate_hourly":"22.22","dev_short_name":"Gabriel V."},{"dev_rank_percentile":"81","contact_name":"Deepak Sethi","skills":{"skill":[{"skl_ref":"158","skl_name":"Cake Php","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"4 yrs","skl_comment":"&nbsp;","skl_recno":"227136"},{"skl_ref":"18","skl_name":"HTML\/DHTML","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"5 yrs","skl_comment":"&nbsp;","skl_recno":"227134"},{"skl_ref":"142","skl_name":"Joomla","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"&nbsp;","skl_recno":"227135"},{"skl_ref":"113","skl_name":"MySQL","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"5 yrs","skl_comment":"&nbsp;","skl_recno":"227133"},{"skl_ref":"12","skl_name":"PHP\/MySQL","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"5 yrs","skl_comment":"&nbsp;","skl_recno":"227132"},{"skl_ref":"132","skl_name":"WordPress","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"227137"}]},"ag_adj_score":"4.5934635752675","ag_recent_hours":"8716.33333333334","agency_ciphertext":"","availability_vs_total":" 0 of 40","ui_profile_title":"Efficient php developer\/joomla\/ruby\/mysql\/Sharepoint","dev_tot_tests":"5","dev_scores":{"dev_score":[{"avg_category_score_recent":"5","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5","order":"2","label":"Quality","avg_category_score":"5","description":"quality of work deliverables"},{"avg_category_score_recent":"5","order":"3","label":"Availability","avg_category_score":"5","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"5","order":"5","label":"Communication","avg_category_score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5","order":"6","label":"Cooperation","avg_category_score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"1631.5","avg_category_score":"","ciphertext":"~~f6883d7874ce72e8","dev_country":"India","dev_tot_feedback":"1","profile_access":"public","dev_bill_rate":"12","dev_recno":"100338","dev_ic":"Innovaminds Pvt Ltd > Inn...","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.5565810914091","ciphertext":"~~459a52abb3dfe551","ag_adj_score":"4.5934635752675","ag_tot_feedback":"45","ag_recent_hours":"8716.33333333334","ag_total_hours":"13015.8333333333","ag_recno":"41626","ag_name":"Innovaminds Pvt Ltd > Innovaminds","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKZqh5RNdXjfOVQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw=="}},"affiliated":"Innovaminds Pvt Ltd > Inn...","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKZqh5RNdXjfOVQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw==","dev_portrait":"","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"1","dev_tot_feedback_recent":"0","dev_recent_hours":"1065.1666666666663","dev_agency_ref":"41626","dev_test_passed_count":"5","tot_portfolio_items":"4","ag_adj_score_recent":"4.5565810914091","dev_tot_hours":"1632.00","record_id":"100338","ag_total_hours":"13015.8333333333","adj_score":"5.00","dev_country_tz":"India (GMT+05:30)","group_recno":"","dev_blurb":"Over 5 years of experience make me efficient in the open source technology like php,javascript\/joomla and my sql to give a best quality product. Also having a good knowledge of ruby\/rail\/cakephp wordpress crm etc...","company_logo":"","dev_last_activity":"January 7, 2010","dev_full_name":"Deepak Sethi","dev_profile_title":"Efficient php developer\/joomla\/ruby\/mysql\/Sharepoint","dev_member_since":"April 10, 2008","charge_rate_hourly":"12.00","dev_short_name":"Deepak Sethi"},{"dev_rank_percentile":"81","contact_name":"Alex N.","skills":{"skill":[{"skl_ref":"167370","skl_name":"Cloud (EC2, Heroku)","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"645180"},{"skl_ref":"5511","skl_name":"JavaScript \/ AJAX","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"4 yrs","skl_comment":"","skl_recno":"470432"},{"skl_ref":"167367","skl_name":"NoSQL (mongoDB, CouchDB, Redis)","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"645179"},{"skl_ref":"41105","skl_name":"Ruby \/ Rails","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"4 yrs","skl_comment":"","skl_recno":"308832"},{"skl_ref":"167369","skl_name":"Test Driven Development (RSpec, Cucumber)","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"3 yrs","skl_comment":"","skl_recno":"645181"}]},"ag_adj_score":"5","ag_recent_hours":"49.0000000000003","agency_ciphertext":"","availability_vs_total":"40 of 40","ui_profile_title":"Ruby on Rails Developer","dev_tot_tests":"3","dev_scores":{"dev_score":[{"avg_category_score_recent":"5.0000000000001","order":"1","label":"Skills","avg_category_score":"5.0000000000001","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5.0000000000001","order":"2","label":"Quality","avg_category_score":"5.0000000000001","description":"quality of work deliverables"},{"avg_category_score_recent":"5.0000000000001","order":"3","label":"Availability","avg_category_score":"5.0000000000001","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5.0000000000001","order":"4","label":"Deadlines","avg_category_score":"5.0000000000001","description":"ability to complete tasks on time"},{"avg_category_score_recent":"5.0000000000001","order":"5","label":"Communication","avg_category_score":"5.0000000000001","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5.0000000000001","order":"6","label":"Cooperation","avg_category_score":"5.0000000000001","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"1385.6666666667","avg_category_score":"","ciphertext":"~~bd4ae952c6d3c71b","dev_country":"Singapore","dev_tot_feedback":"7","profile_access":"public","dev_bill_rate":"44.44","dev_recno":"158318","dev_ic":"Jupiter > BeHappy","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"5","ciphertext":"~~b589e35ec72ba183","ag_adj_score":"5","ag_tot_feedback":"1","ag_recent_hours":"49.0000000000003","ag_total_hours":"49","ag_recno":"132951","ag_name":"Jupiter > BeHappy","ag_logo":""}},"affiliated":"Jupiter > BeHappy","ag_logo":"","dev_portrait":"http:\/\/www.odesk.com\/att\/~~LoaG87cqBpKDWizrhnD1F5hRNxClN6qVh8jWpLvsgDE=","dev_adj_score":"5.0000000000001","dev_adj_score_recent":"5.0000000000001","dev_num_assignments_feedback_for_prov":"7","dev_tot_feedback_recent":"5","dev_recent_hours":"589.8333333333346","dev_agency_ref":"132951","dev_test_passed_count":"3","tot_portfolio_items":"8","ag_adj_score_recent":"5","dev_tot_hours":"1386.00","record_id":"158318","ag_total_hours":"49","adj_score":"5.00","dev_country_tz":"Singapore (GMT+08:00)","group_recno":"","dev_blurb":"Use my 3+ year experience of Agile, Test Driven Development with Ruby on Rails to help you build next killing web 2.0 apps.\n\nSolving hard problems using latest technologies like Key-Value Storage, NoSQL Database, Message Queue, Asynchronous Processing, Cloud Computing ... always make me excited.\n\nDon't hesitate to contact me if you are looking for an trustworthy, creative, diligent, communicative and technical savvy programmer. I guarantee 100% money back if you are not satisfied for any reason.","company_logo":"","dev_last_activity":"January 3, 2010","dev_full_name":"Alex Nguyen","dev_profile_title":"Ruby on Rails Developer","dev_member_since":"September 8, 2008","charge_rate_hourly":"44.44","dev_short_name":"Alex N."},{"dev_rank_percentile":"81","contact_name":"Ana B.","skills":"","ag_adj_score":"","ag_recent_hours":"","agency_ciphertext":"","availability_vs_total":"20 of 20","ui_profile_title":"Web Developer: Ruby and rails, javascript, css...","dev_tot_tests":"0","dev_scores":{"dev_score":[{"order":"1","avg_category_score_recent":"5","label":"Skills","description":"competency and skills for the job, understanding of specifications\/instructions","avg_category_score":"5"},{"order":"2","avg_category_score_recent":"5","label":"Quality","description":"quality of work deliverables","avg_category_score":"5"},{"order":"3","avg_category_score_recent":"5","label":"Availability","description":"online presence on a consistent schedule","avg_category_score":"5"},{"order":"4","avg_category_score_recent":"5","label":"Deadlines","description":"ability to complete tasks on time","avg_category_score":"5"},{"order":"5","avg_category_score_recent":"5","label":"Communication","description":"communication skills, frequent progress updates, responsiveness","avg_category_score":"5"},{"order":"6","avg_category_score_recent":"5","label":"Cooperation","description":"cooperation and flexibility, suggestions for improvement","avg_category_score":"5"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"1376","avg_category_score":"","ciphertext":"~~b7cfcf7627052eb0","dev_country":"Venezuela","dev_tot_feedback":"1","profile_access":"public","dev_bill_rate":"44.44","dev_recno":"91446","dev_ic":"Freelance Provider","dev_ac_agencies":"","affiliated":"Freelance Provider","ag_logo":"","dev_portrait":"","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"1","dev_tot_feedback_recent":"0","dev_recent_hours":"220.0","dev_agency_ref":"","dev_test_passed_count":"0","tot_portfolio_items":"0","ag_adj_score_recent":"","dev_tot_hours":"1376.00","record_id":"91446","ag_total_hours":"","adj_score":"5.00","dev_country_tz":"Venezuela (GMT-04:30)","group_recno":"","dev_blurb":"","company_logo":"","dev_last_activity":"January 2, 2010","dev_full_name":"Ana Maria Benaiges","dev_profile_title":"Web Developer: Ruby and rails, javascript, css...","dev_member_since":"March 11, 2008","charge_rate_hourly":"44.44","dev_short_name":"Ana B."},{"dev_rank_percentile":"81","contact_name":"Grzegorz Kemski","skills":{"skill":[{"skl_ref":"128","skl_name":"AJAX","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"<br \/>","skl_recno":"538566"},{"skl_ref":"49","skl_name":"CSS","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"<br \/>","skl_recno":"326064"},{"skl_ref":"375","skl_name":"HTML","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"<br \/>","skl_recno":"326065"},{"skl_ref":"135","skl_name":"JavaScript","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"<br \/>","skl_recno":"538565"},{"skl_ref":"113","skl_name":"MySQL","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"<br \/>","skl_recno":"285142"},{"skl_ref":"10","skl_name":"PHP","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"<br \/>","skl_recno":"285072"},{"skl_ref":"177","skl_name":"Rails","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"662623"},{"skl_ref":"110","skl_name":"Ruby","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"662622"}]},"ag_adj_score":"4.9351114907628","ag_recent_hours":"11642.8333333333","agency_ciphertext":"","availability_vs_total":" 5 of 20","ui_profile_title":"PHP \/ MySQL \/ Ruby on Rails \/ osCommerce \/ phpMyDirectory \/ WHMCS","dev_tot_tests":"10","dev_scores":{"dev_score":[{"avg_category_score_recent":"5.0000000000001","order":"1","label":"Skills","avg_category_score":"5.0000000000001","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5.0000000000001","order":"2","label":"Quality","avg_category_score":"5.0000000000001","description":"quality of work deliverables"},{"avg_category_score_recent":"5.0000000000001","order":"3","label":"Availability","avg_category_score":"5.0000000000001","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5.0000000000001","order":"4","label":"Deadlines","avg_category_score":"5.0000000000001","description":"ability to complete tasks on time"},{"avg_category_score_recent":"5.0000000000001","order":"5","label":"Communication","avg_category_score":"5.0000000000001","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5.0000000000001","order":"6","label":"Cooperation","avg_category_score":"5.0000000000001","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"1282.8333333333","avg_category_score":"","ciphertext":"~~a1cdda5e542d20dd","dev_country":"Poland","dev_tot_feedback":"12","profile_access":"public","dev_bill_rate":"30","dev_recno":"107688","dev_ic":"DNC.PL","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.9593778381972","ciphertext":"~~52f3550737484fec","ag_adj_score":"4.9340354166725","ag_tot_feedback":"133","ag_recent_hours":"11526.3333333333","ag_total_hours":"20662.6666666667","ag_recno":"5933","ag_name":"DNC.PL","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKZUx7oYj5TWAVQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw=="}},"affiliated":"DNC.PL","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKZUx7oYj5TWAVQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw==","dev_portrait":"http:\/\/www.odesk.com\/att\/~~okvC-0al6cOrHfflJPBTnvK0zLAr*PL033VS7K2Z*4Q=","dev_adj_score":"5.0000000000001","dev_adj_score_recent":"5.0000000000001","dev_num_assignments_feedback_for_prov":"12","dev_tot_feedback_recent":"4","dev_recent_hours":"550.1666666666667","dev_agency_ref":"5933","dev_test_passed_count":"10","tot_portfolio_items":"6","ag_adj_score_recent":"4.9600756609496","dev_tot_hours":"1283.00","record_id":"107688","ag_total_hours":"20779.1666666667","adj_score":"5.00","dev_country_tz":"Poland (GMT+01:00)","group_recno":"","dev_blurb":"I am looking for opportunities to build and develop websites using Ruby on Rails, PHP, MySQL and AJAX.","company_logo":"","dev_last_activity":"January 5, 2010","dev_full_name":"Grzegorz Kemski","dev_profile_title":"PHP \/ MySQL \/ Ruby on Rails \/ osCommerce \/ phpMyDirectory \/ WHMCS","dev_member_since":"May 6, 2008","charge_rate_hourly":"30.00","dev_short_name":"Grzegorz Kemski"},{"dev_rank_percentile":"81","contact_name":"Garrett Wilson","skills":{"skill":[{"skl_ref":"128","skl_name":"AJAX","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"4 yrs","skl_comment":"Proficient AJAX&nbsp;experience to create a modern and streamlined web experience.<br \/>","skl_recno":"482260"},{"skl_ref":"49","skl_name":"CSS","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"5 yrs","skl_comment":"<br \/>","skl_recno":"482259"},{"skl_ref":"1959","skl_name":"jQuery","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"3 yrs","skl_comment":"Proficient AJAX&nbsp;and Javascript skills<br \/>","skl_recno":"482258"},{"skl_ref":"113","skl_name":"MySQL","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"7 yrs","skl_comment":"<br \/>","skl_recno":"482257"},{"skl_ref":"10","skl_name":"PHP","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"8 yrs","skl_comment":"Expert procedural and OOP&nbsp;design skills.<br \/>","skl_recno":"482256"}]},"ag_adj_score":"","ag_recent_hours":"","agency_ciphertext":"","availability_vs_total":"10 of 40","ui_profile_title":"PHP, MySQL, AJAX, jQuery - 7+ Years experience","dev_tot_tests":"15","dev_scores":{"dev_score":[{"avg_category_score_recent":"5","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5","order":"2","label":"Quality","avg_category_score":"5","description":"quality of work deliverables"},{"avg_category_score_recent":"5","order":"3","label":"Availability","avg_category_score":"5","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"5","order":"5","label":"Communication","avg_category_score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5","order":"6","label":"Cooperation","avg_category_score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"1280","avg_category_score":"","ciphertext":"~~9a334bf32c2f3c36","dev_country":"United States","dev_tot_feedback":"1","profile_access":"public","dev_bill_rate":"36","dev_recno":"299114","dev_ic":"Freelance Provider","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"5","ciphertext":"~~5f6dd17cd9edd4ef","ag_adj_score":"5","ag_tot_feedback":"1","ag_recent_hours":"1187.66666666667","ag_total_hours":"1213.83333333334","ag_recno":"95952","ag_name":"Sterling Code > Enveb Networks","ag_logo":""}},"affiliated":"Freelance Provider","ag_logo":"","dev_portrait":"http:\/\/www.odesk.com\/att\/~~okvC-0al6cMvdBB6KmNcrMWhxqBKlCvcWvkSv9A1724C9Hr*tml5xw==","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"1","dev_tot_feedback_recent":"1","dev_recent_hours":"1139.0000000000002","dev_agency_ref":"","dev_test_passed_count":"15","tot_portfolio_items":"5","ag_adj_score_recent":"","dev_tot_hours":"1280.00","record_id":"299114","ag_total_hours":"","adj_score":"5.00","dev_country_tz":"United States (GMT-06:00)","group_recno":"","dev_blurb":"I'm a web developer from Biloxi, MS. I'm here to build your web applications built for stability, security, and speed. I work with both front-end and back-end technologies, and integrating the two, creating a powerful web app that fits your needs.\nMy areas of expertise and interest are in LAMP style development and social networks. I have experience building and maintaining large scale, high traffic web systems from the ground up. I usually multi-task several projects at a time, and do so comfortably in time critical environments. I love what I do for a living and can rise to any challenge!\n\nAreas of expertise include:\njQuery, PHP, MySQL, Javascript, AJAX, CSS, Perl, VOIP, Asterisk, Ruby on Rails, C++","company_logo":"","dev_last_activity":"January 6, 2010","dev_full_name":"Garrett Wilson","dev_profile_title":"PHP, MySQL, AJAX, jQuery - 7+ Years experience","dev_member_since":"March 30, 2009","charge_rate_hourly":"36.00","dev_short_name":"Garrett Wilson"},{"dev_rank_percentile":"81","contact_name":"Starr H.","skills":{"skill":[{"skl_ref":"61814","skl_name":"Ext-js javascript development","skl_last_used":"2009","skl_level_num":"5","skl_level":"Expert","skl_comment":"http:\/\/chatspring.com\nI've used Ext to build several large, interactive applications.","skl_year_exp":"2 yrs","skl_recno":"314356"},{"skl_ref":"12","skl_name":"PHP\/MySQL","skl_last_used":"2008","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"4 yrs","skl_recno":"314355"},{"skl_ref":"44","skl_name":"Python","skl_last_used":"2008","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"314357"},{"skl_ref":"61815","skl_name":"Rich web app development with javascript","skl_last_used":"2008","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"3 yrs","skl_recno":"314358"},{"skl_ref":"149","skl_name":"Ruby on Rails","skl_last_used":"2009","skl_level_num":"5","skl_level":"Expert","skl_comment":"http:\/\/railskits.com\/helpdesk\/\nI've used Ruby and Rails to create social networks, e-commerce sites, as well as back-office applications.","skl_year_exp":"2 yrs","skl_recno":"600586"}]},"ag_adj_score":"","ag_recent_hours":"","agency_ciphertext":"","availability_vs_total":"40 of 40","ui_profile_title":"Professional Ruby on Rails & JavaScript Developer","dev_tot_tests":"3","dev_scores":{"dev_score":[{"order":"1","avg_category_score_recent":"5","label":"Skills","description":"competency and skills for the job, understanding of specifications\/instructions","avg_category_score":"5"},{"order":"2","avg_category_score_recent":"5","label":"Quality","description":"quality of work deliverables","avg_category_score":"5"},{"order":"3","avg_category_score_recent":"5","label":"Availability","description":"online presence on a consistent schedule","avg_category_score":"5"},{"order":"4","avg_category_score_recent":"5","label":"Deadlines","description":"ability to complete tasks on time","avg_category_score":"5"},{"order":"5","avg_category_score_recent":"5","label":"Communication","description":"communication skills, frequent progress updates, responsiveness","avg_category_score":"5"},{"order":"6","avg_category_score_recent":"5","label":"Cooperation","description":"cooperation and flexibility, suggestions for improvement","avg_category_score":"5"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"1269.3333333333","avg_category_score":"","ciphertext":"~~48223282e0d32a54","dev_country":"United States","dev_tot_feedback":"2","profile_access":"public","dev_bill_rate":"33.33","dev_recno":"175415","dev_ic":"Freelance Provider","dev_ac_agencies":"","affiliated":"Freelance Provider","ag_logo":"","dev_portrait":"http:\/\/www.odesk.com\/att\/~~JJJoyDHwG0-o9jBEZGRdYEeMzcGgXkvjDvADlxTmVdA=","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"2","dev_tot_feedback_recent":"0","dev_recent_hours":"12.3333333333334","dev_agency_ref":"","dev_test_passed_count":"3","tot_portfolio_items":"7","ag_adj_score_recent":"","dev_tot_hours":"1269.00","record_id":"175415","ag_total_hours":"","adj_score":"5.00","dev_country_tz":"United States (GMT-06:00)","group_recno":"","dev_blurb":"I'm a motivated developer who can take see your project through from the design phase to completion. Over the past 5 years, I've developed a number of websites and complex web applications for startups, small businesses, and community organizations. I'm fluent in the following technologies: Ruby on Rails: I've used rails to develop e-commerce sites, social networks, as well as back-office applications. PHP:I've used PHP to create custom CMS systems, REST web services, as well as standard database driven backends. JavaScript:I've created highly interactive GUIs for web applications using Javascript, including data grids, custom dialogs, and menus. I'm proficient in using Javascript to consume web services. Python:I've used Python to implement a recurring billing system, email autoresponders, and a custom queue server to mitigate database scaling issues. MySQL:I've used mysql from PHP and Python, with both the ADODB abstraction libraries and language-specific APIs. In addition, I am comfortable with several frameworks, including:ExtJs: A rich web GUI framework for JavaScriptDjango: A python web development frameworkCodeIgniter: A PHP web development frameworkTwisted: A framework in Python for client\/server applications.I'm located in the United States, and am a native English speaker.","company_logo":"","dev_last_activity":"August 19, 2009","dev_full_name":"Starr Horne","dev_profile_title":"Professional Ruby on Rails & JavaScript Developer","dev_member_since":"October 12, 2008","charge_rate_hourly":"33.33","dev_short_name":"Starr H."},{"dev_rank_percentile":"81","contact_name":"Lukasz Tackowiak","skills":{"skill":[{"skl_ref":"128","skl_name":"AJAX","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"3 yrs","skl_comment":"<br \/>","skl_recno":"252622"},{"skl_ref":"40","skl_name":"ASP","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"3 yrs","skl_comment":"<br \/>","skl_recno":"252621"},{"skl_ref":"42760","skl_name":"Kohana framework","skl_level":"Very Good","skl_level_num":"3","skl_last_used":"2009","skl_year_exp":"1 yrs","skl_comment":"<br \/>","skl_recno":"579030"},{"skl_ref":"15","skl_name":"MS-SQL","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"3 yrs","skl_comment":"<br \/>","skl_recno":"252625"},{"skl_ref":"113","skl_name":"MySQL","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"4 yrs","skl_comment":"<br \/>","skl_recno":"252623"},{"skl_ref":"10","skl_name":"PHP","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"5 yrs","skl_comment":"<br \/>","skl_recno":"252620"},{"skl_ref":"38","skl_name":"PostgreSQL","skl_level":"Good","skl_level_num":"2","skl_last_used":"2006","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"252624"},{"skl_ref":"1667","skl_name":"Zend Framework","skl_level":"Good","skl_level_num":"2","skl_last_used":"2009","skl_year_exp":"1 yrs","skl_comment":"<br \/>","skl_recno":"252626"}]},"ag_adj_score":"4.9351114907628","ag_recent_hours":"11642.8333333333","agency_ciphertext":"","availability_vs_total":"30 of 40","ui_profile_title":"Senior PHP\/AJAX developer, SQL expert, Zend Framework, Kohana, Magento","dev_tot_tests":"5","dev_scores":{"dev_score":[{"avg_category_score_recent":"5","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5","order":"2","label":"Quality","avg_category_score":"5","description":"quality of work deliverables"},{"avg_category_score_recent":"5","order":"3","label":"Availability","avg_category_score":"5","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"5","order":"5","label":"Communication","avg_category_score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5","order":"6","label":"Cooperation","avg_category_score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"1215.3333333333","avg_category_score":"","ciphertext":"~~00e7ee9c03317e77","dev_country":"Poland","dev_tot_feedback":"5","profile_access":"public","dev_bill_rate":"28","dev_recno":"118288","dev_ic":"DNC.PL","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.9593778381972","ciphertext":"~~52f3550737484fec","ag_adj_score":"4.9340354166725","ag_tot_feedback":"133","ag_recent_hours":"11526.3333333333","ag_total_hours":"20662.6666666667","ag_recno":"5933","ag_name":"DNC.PL","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKZUx7oYj5TWAVQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw=="}},"affiliated":"DNC.PL","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKZUx7oYj5TWAVQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw==","dev_portrait":"http:\/\/www.odesk.com\/att\/~~GwddFeLd3f7ll3DMoqiV60HbaKp4jQ0zDvADlxTmVdA=","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"5","dev_tot_feedback_recent":"4","dev_recent_hours":"738.8333333333336","dev_agency_ref":"5933","dev_test_passed_count":"5","tot_portfolio_items":"0","ag_adj_score_recent":"4.9600756609496","dev_tot_hours":"1215.00","record_id":"118288","ag_total_hours":"20779.1666666667","adj_score":"5.00","dev_country_tz":"Poland (GMT+01:00)","group_recno":"","dev_blurb":"","company_logo":"","dev_last_activity":"January 2, 2010","dev_full_name":"Lukasz Tackowiak","dev_profile_title":"Senior PHP\/AJAX developer, SQL expert, Zend Framework, Kohana, Magento","dev_member_since":"June 7, 2008","charge_rate_hourly":"28.00","dev_short_name":"Lukasz Tackowiak"},{"dev_rank_percentile":"81","contact_name":"Eugene Hlyzov","skills":{"skill":[{"skl_ref":"1959","skl_name":"jQuery","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"I use this library almost every time I need to write something serious with js. I just love it.","skl_recno":"598511"},{"skl_ref":"18004","skl_name":"Ruby\/Rails","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"4 yrs","skl_comment":"For detailed information if project where I participated please contact me.","skl_recno":"362568"},{"skl_ref":"62","skl_name":"SQL","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"3 yrs","skl_comment":"MySQL, PostgreSQL, stored procedures and views - all these things I used in RoR projects. My favorite database is Postgres.","skl_recno":"598512"}]},"ag_adj_score":"","ag_recent_hours":"","agency_ciphertext":"","availability_vs_total":"30 of 30","ui_profile_title":"Talented Ruby\/Rails, JavaScript\/jQuery professional","dev_tot_tests":"2","dev_scores":{"dev_score":[{"avg_category_score_recent":"5.0000000000001","order":"1","label":"Skills","avg_category_score":"5.0000000000001","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5.0000000000001","order":"2","label":"Quality","avg_category_score":"5.0000000000001","description":"quality of work deliverables"},{"avg_category_score_recent":"5.0000000000001","order":"3","label":"Availability","avg_category_score":"5.0000000000001","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5.0000000000001","order":"4","label":"Deadlines","avg_category_score":"5.0000000000001","description":"ability to complete tasks on time"},{"avg_category_score_recent":"5.0000000000001","order":"5","label":"Communication","avg_category_score":"5.0000000000001","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5.0000000000001","order":"6","label":"Cooperation","avg_category_score":"5.0000000000001","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"1038.5","avg_category_score":"","ciphertext":"~~b2cd36783d9fcc82","dev_country":"Russia","dev_tot_feedback":"3","profile_access":"public","dev_bill_rate":"38.89","dev_recno":"159506","dev_ic":"Freelance Provider","dev_ac_agencies":{"dev_ac_agency":[{"ag_adj_score_recent":"5.0000000000001","ciphertext":"~~a52ac2126c4edefc","ag_adj_score":"5.0000000000001","ag_tot_feedback":"2","ag_recent_hours":"350.333333333333","ag_total_hours":"1138","ag_recno":"53062","ag_name":"JazzCloud > primary","ag_logo":""},{"ag_adj_score_recent":"0","ciphertext":"~~9e2a3090a8f2cffe","ag_adj_score":"5","ag_tot_feedback":"1","ag_recent_hours":"0","ag_total_hours":"28.166666666667","ag_recno":"82158","ag_name":"EX","ag_logo":""}]},"affiliated":"Freelance Provider","ag_logo":"","dev_portrait":"","dev_adj_score":"5.0000000000001","dev_adj_score_recent":"5.0000000000001","dev_num_assignments_feedback_for_prov":"3","dev_tot_feedback_recent":"0","dev_recent_hours":"212.6666666666666","dev_agency_ref":"","dev_test_passed_count":"2","tot_portfolio_items":"0","ag_adj_score_recent":"","dev_tot_hours":"1039.00","record_id":"159506","ag_total_hours":"","adj_score":"5.00","dev_country_tz":"Russia (GMT+06:00)","group_recno":"","dev_blurb":"Last four years I worked on Ruby on Rails projects with different types of complexity. My core competence lies in designing and implementing backend and engine of thick js-driven clients. I have strong JS skills (Prototype, jQuery, Taffy DB) as well as comprehensive knowledge of Ruby (with and without Rails). I also have positive experience as a manager of small team of developers.\n\nI also have experience in deploying Rails applications (capistrano) and good knowledge of *nix shells. I have no problem with GIT, SVN and CVS.\n\nTools and libraries which I use\\have good experience to work with: [Testing] rspec, cucumber, webrat, selenium, rcov; [other] rmagick, xmpp4r","company_logo":"","dev_last_activity":"November 21, 2009","dev_full_name":"Eugene Hlyzov","dev_profile_title":"Talented Ruby\/Rails, JavaScript\/jQuery professional","dev_member_since":"September 10, 2008","charge_rate_hourly":"38.89","dev_short_name":"Eugene Hlyzov"},{"dev_rank_percentile":"81","contact_name":"Jeroen V.","skills":{"skill":[{"skl_ref":"128","skl_name":"AJAX","skl_last_used":"2009","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"5 yrs","skl_recno":"54066"},{"skl_ref":"32","skl_name":"Application Design","skl_last_used":"2006","skl_level_num":"5","skl_level":"Expert","skl_comment":"Expert in software architecture and design of distributed, scalable enterprise applications.","skl_year_exp":"7 yrs","skl_recno":"54067"},{"skl_ref":"40","skl_name":"ASP","skl_last_used":"2005","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"54068"},{"skl_ref":"39","skl_name":"ASP.NET+ADO","skl_last_used":"2006","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"1 yrs","skl_recno":"54069"},{"skl_ref":"1","skl_name":"C#\/.Net","skl_last_used":"2006","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"1 yrs","skl_recno":"54070"},{"skl_ref":"31","skl_name":"Database Modeling","skl_last_used":"2008","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"8 yrs","skl_recno":"54071"},{"skl_ref":"69","skl_name":"Hibernate","skl_last_used":"2008","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"5 yrs","skl_recno":"54072"},{"skl_ref":"18","skl_name":"HTML\/DHTML","skl_last_used":"2006","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"8 yrs","skl_recno":"54073"},{"skl_ref":"6","skl_name":"J2EE","skl_last_used":"2009","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"9 yrs","skl_recno":"52675"},{"skl_ref":"145","skl_name":"Java","skl_last_used":"2009","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"9 yrs","skl_recno":"686287"},{"skl_ref":"75","skl_name":"JBoss","skl_last_used":"2005","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"3 yrs","skl_recno":"54075"},{"skl_ref":"7","skl_name":"JFC","skl_last_used":"2004","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"4 yrs","skl_recno":"54074"},{"skl_ref":"106","skl_name":"JSP","skl_last_used":"2009","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"9 yrs","skl_recno":"52677"},{"skl_ref":"15","skl_name":"MS-SQL","skl_last_used":"2006","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"4 yrs","skl_recno":"54076"},{"skl_ref":"113","skl_name":"MySQL","skl_last_used":"2008","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"7 yrs","skl_recno":"54077"},{"skl_ref":"97","skl_name":"Oracle Application Server","skl_last_used":"2005","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"3 yrs","skl_recno":"54078"},{"skl_ref":"61","skl_name":"Oracle PL\/SQL","skl_last_used":"2004","skl_level_num":"2","skl_level":"Good","skl_comment":"","skl_year_exp":"3 yrs","skl_recno":"54079"},{"skl_ref":"83","skl_name":"Project Management","skl_last_used":"2009","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"5 yrs","skl_recno":"52678"},{"skl_ref":"99","skl_name":"SOAP","skl_last_used":"2006","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"54080"},{"skl_ref":"62","skl_name":"SQL","skl_last_used":"2008","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"10 yrs","skl_recno":"54081"},{"skl_ref":"52","skl_name":"Tech Writer","skl_last_used":"2006","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"8 yrs","skl_recno":"54082"},{"skl_ref":"70","skl_name":"Tomcat","skl_last_used":"2008","skl_level_num":"3","skl_level":"Very Good","skl_comment":"","skl_year_exp":"7 yrs","skl_recno":"54083"},{"skl_ref":"41","skl_name":"UML","skl_last_used":"2009","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"10 yrs","skl_recno":"52676"},{"skl_ref":"26","skl_name":"VB\/.NET","skl_last_used":"2006","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"1 yrs","skl_recno":"54084"},{"skl_ref":"74","skl_name":"WebLogic","skl_last_used":"2005","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"4 yrs","skl_recno":"54085"},{"skl_ref":"72","skl_name":"Web Sphere","skl_last_used":"2005","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"4 yrs","skl_recno":"54086"},{"skl_ref":"22","skl_name":"XML","skl_last_used":"2008","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"9 yrs","skl_recno":"52679"},{"skl_ref":"79","skl_name":"XML-RPC","skl_last_used":"2006","skl_level_num":"4","skl_level":"Proficient","skl_comment":"","skl_year_exp":"4 yrs","skl_recno":"54087"}]},"ag_adj_score":"","ag_recent_hours":"","agency_ciphertext":"","availability_vs_total":"40 of 40","ui_profile_title":"Software Architect, Project Leader","dev_tot_tests":"3","dev_scores":{"dev_score":[{"order":"1","avg_category_score_recent":"0","label":"Skills","description":"competency and skills for the job, understanding of specifications\/instructions","avg_category_score":"5"},{"order":"2","avg_category_score_recent":"0","label":"Quality","description":"quality of work deliverables","avg_category_score":"5"},{"order":"3","avg_category_score_recent":"0","label":"Availability","description":"online presence on a consistent schedule","avg_category_score":"5"},{"order":"4","avg_category_score_recent":"0","label":"Deadlines","description":"ability to complete tasks on time","avg_category_score":"5"},{"order":"5","avg_category_score_recent":"0","label":"Communication","description":"communication skills, frequent progress updates, responsiveness","avg_category_score":"5"},{"order":"6","avg_category_score_recent":"0","label":"Cooperation","description":"cooperation and flexibility, suggestions for improvement","avg_category_score":"5"}]},"dev_recent_rank_percentile":"0","dev_total_hours":"1025.8333333333","avg_category_score":"","ciphertext":"~~e288b220d9bce895","dev_country":"Netherlands","dev_tot_feedback":"1","profile_access":"public","dev_bill_rate":"55.56","dev_recno":"14776","dev_ic":"Freelance Provider","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"0","ciphertext":"~~7421991ff7ab2137","ag_adj_score":"0","ag_tot_feedback":"0","ag_recent_hours":"0","ag_total_hours":"0","ag_recno":"122989","ag_name":"Digital Silk","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKb5VfjpL64NlEgfYHozqDbS6IvCHPnMV3QC9Hr*tml5xw=="}},"affiliated":"Freelance Provider","ag_logo":"","dev_portrait":"http:\/\/www.odesk.com\/att\/~~CFrV-aoIl57FGV1meCDSBBbeDdZ7mOmVuRw1PuSVQiQ=","dev_adj_score":"5","dev_adj_score_recent":"0","dev_num_assignments_feedback_for_prov":"1","dev_tot_feedback_recent":"0","dev_recent_hours":"0","dev_agency_ref":"","dev_test_passed_count":"3","tot_portfolio_items":"0","ag_adj_score_recent":"","dev_tot_hours":"1026.00","record_id":"14776","ag_total_hours":"","adj_score":"5.00","dev_country_tz":"Netherlands (GMT+01:00)","group_recno":"","dev_blurb":"Software Development professional with 11 years of professional experience in diverse roles; varying from software architect, developer, process engineer and team leader. Communicative and strong skills in coordinating the technical and process facets of complex projects. 9 years of experience with Java and related technologies. Follows new technologies en is very interested in technologies such as Grails and Ruby on Rails that can drastically increase the speed of software development.","company_logo":"","dev_last_activity":"March 29, 2009","dev_full_name":"Jeroen Voogt","dev_profile_title":"Software Architect, Project Leader","dev_member_since":"July 20, 2006","charge_rate_hourly":"55.56","dev_short_name":"Jeroen V."},{"dev_rank_percentile":"81","contact_name":"Vitaly A.","skills":{"skill":[{"skl_ref":"128","skl_name":"AJAX","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"61122"},{"skl_ref":"39","skl_name":"ASP.NET+ADO","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"4 yrs","skl_comment":"","skl_recno":"61105"},{"skl_ref":"18","skl_name":"HTML\/DHTML","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2006","skl_year_exp":"6 yrs","skl_comment":"","skl_recno":"61121"},{"skl_ref":"6350","skl_name":"iPhone","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"384276"},{"skl_ref":"10","skl_name":"PHP","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2006","skl_year_exp":"6 yrs","skl_comment":"","skl_recno":"61120"},{"skl_ref":"67","skl_name":"Sharepoint","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"3 yrs","skl_comment":"","skl_recno":"384275"}]},"ag_adj_score":"4.4607410814548","ag_recent_hours":"10976.1666666667","agency_ciphertext":"","availability_vs_total":"40 of 40","ui_profile_title":".NET SHAREPOINT FLEX SILVERLIGHT iPhone Android EXPERT","dev_tot_tests":"2","dev_scores":{"dev_score":[{"avg_category_score_recent":"0","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"0","order":"2","label":"Quality","avg_category_score":"5","description":"quality of work deliverables"},{"avg_category_score_recent":"0","order":"3","label":"Availability","avg_category_score":"5","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"0","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"0","order":"5","label":"Communication","avg_category_score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"0","order":"6","label":"Cooperation","avg_category_score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"0","dev_total_hours":"991.66666666667","avg_category_score":"","ciphertext":"~~3bcbae0a2e87e421","dev_country":"Russia","dev_tot_feedback":"2","profile_access":"public","dev_bill_rate":"20","dev_recno":"17821","dev_ic":"iTechArt","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.6974342046137","ciphertext":"~~aac3ee2bbb69fae1","ag_adj_score":"4.4607410814548","ag_tot_feedback":"72","ag_recent_hours":"10895","ag_total_hours":"31262.6666666666","ag_recno":"1301","ag_name":"iTechArt","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKa1GKaiXOAQVlQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw=="}},"affiliated":"iTechArt","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKa1GKaiXOAQVlQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw==","dev_portrait":"http:\/\/www.odesk.com\/att\/~~YwZQR0bgNCEsd60z3mTgVYloIWgR*70TNSM8eJN8Blc=","dev_adj_score":"5","dev_adj_score_recent":"0","dev_num_assignments_feedback_for_prov":"2","dev_tot_feedback_recent":"0","dev_recent_hours":"0","dev_agency_ref":"1301","dev_test_passed_count":"2","tot_portfolio_items":"0","ag_adj_score_recent":"4.6974342046137","dev_tot_hours":"992.00","record_id":"17821","ag_total_hours":"31343.8333333333","adj_score":"5.00","dev_country_tz":"Russia (GMT+02:00)","group_recno":"","dev_blurb":"The key information about iTechArt:iTechArt Group is a first class [[http:\/\/www.itechart.com\/|custom software development]] and [[http:\/\/www.itechart.com\/|software outsourcing company]]with headquarter in Matawan, NJ, USA. Our [[http:\/\/www.itechart.com\/|offshore development]] center is located in Eastern Europe. We have solid experience bringing products from concept to release in a variety of environments:'''.NET\/ASP.NET\/C#\/VB.NET\/Atlas''''''Java\/J2EE (JDBC, JNI, EJB, JMS, Servlets)\/JSP\/Struts''''''C\/C++ (including ANSI C)\/WinAPI\/Unix''''''CMS\/DotNetNuke\/Ektron\/Drupal''''''Web 2.0\/PHP\/MySQL\/AJAX''''''Flash\/Action script\/Flex and many more.'''[[https:\/\/my.odesk.com\/console\/g\/?seeall=&amp;filter%5BProfileData%5D=itechart&amp;filter%5BUI+-+Est+Availability+Hours%5D=&amp;search_button=Search&amp;skip_records=0&amp;order=UI+-+Total+Hours&amp;dir=desc&amp;search=basic&amp;number_of_selected=0&amp;company=OnlineHarness&amp;action=Professionals|'''Browse our oDesk available resources''']]Company profile: http:\/\/www.itechart.com\/Download.aspx?id=CompanyProfile.pdfOur development process management system: http:\/\/www.itechart.com\/SMGWeb\/","company_logo":"","dev_last_activity":"December 23, 2009","dev_full_name":"Vitaly Aksionchyk","dev_profile_title":".NET SHAREPOINT FLEX SILVERLIGHT iPhone Android EXPERT","dev_member_since":"August 25, 2006","charge_rate_hourly":"20.00","dev_short_name":"Vitaly A."},{"dev_rank_percentile":"81","contact_name":"Alex G.","skills":{"skill":[{"skl_ref":"40","skl_name":"ASP","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"1 yrs","skl_comment":"&nbsp;","skl_recno":"529332"},{"skl_ref":"1297","skl_name":"C++","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2008","skl_year_exp":"3 yrs","skl_comment":"&nbsp;","skl_recno":"529331"},{"skl_ref":"1","skl_name":"C#\/.Net","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"1 yrs","skl_comment":"&nbsp;","skl_recno":"529327"},{"skl_ref":"29","skl_name":"Delphi","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"8 yrs","skl_comment":"&nbsp;","skl_recno":"529322"},{"skl_ref":"145","skl_name":"Java","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"5 yrs","skl_comment":"&nbsp;","skl_recno":"529323"},{"skl_ref":"135","skl_name":"JavaScript","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"4 yrs","skl_comment":"&nbsp;","skl_recno":"529324"},{"skl_ref":"113","skl_name":"MySQL","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"5 yrs","skl_comment":"&nbsp;","skl_recno":"529329"},{"skl_ref":"10","skl_name":"PHP","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"5 yrs","skl_comment":"&nbsp;","skl_recno":"529328"},{"skl_ref":"177","skl_name":"Rails","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"&nbsp;","skl_recno":"529330"},{"skl_ref":"110","skl_name":"Ruby","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"&nbsp;","skl_recno":"529325"}]},"ag_adj_score":"5","ag_recent_hours":"1115.83333333333","agency_ciphertext":"","availability_vs_total":"20 of 40","ui_profile_title":"Senior PHP\/Java\/Ruby on Rails\/Facebook developer","dev_tot_tests":"11","dev_scores":{"dev_score":[{"avg_category_score_recent":"5","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5","order":"2","label":"Quality","avg_category_score":"5","description":"quality of work deliverables"},{"avg_category_score_recent":"5","order":"3","label":"Availability","avg_category_score":"5","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"5","order":"5","label":"Communication","avg_category_score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5","order":"6","label":"Cooperation","avg_category_score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"944.16666666667","avg_category_score":"","ciphertext":"~~41effe3b364a60f8","dev_country":"Belarus","dev_tot_feedback":"12","profile_access":"public","dev_bill_rate":"43.21","dev_recno":"356467","dev_ic":"WWW","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"5","ciphertext":"~~871a9519cf9026a4","ag_adj_score":"5","ag_tot_feedback":"7","ag_recent_hours":"1115.83333333333","ag_total_hours":"1115.83333333333","ag_recno":"106477","ag_name":"WWW","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKaINskqmIs*YAT0nWxT4b0*6IvCHPnMV3QC9Hr*tml5xw=="}},"affiliated":"WWW","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKaINskqmIs*YAT0nWxT4b0*6IvCHPnMV3QC9Hr*tml5xw==","dev_portrait":"http:\/\/www.odesk.com\/att\/~~mASqiv7W0Iqovkb1Z5RExTUjPHiTfAZX","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"12","dev_tot_feedback_recent":"2","dev_recent_hours":"880.3333333333332","dev_agency_ref":"106477","dev_test_passed_count":"11","tot_portfolio_items":"4","ag_adj_score_recent":"5","dev_tot_hours":"944.00","record_id":"356467","ag_total_hours":"1115.83333333333","adj_score":"5.00","dev_country_tz":"Belarus (GMT+02:00)","group_recno":"","dev_blurb":"Having problems with your site? Need perfectly designed software with clean code and good documentation? Just click Interview button and receive required help.","company_logo":"","dev_last_activity":"January 6, 2010","dev_full_name":"Alex Grebennik","dev_profile_title":"Senior PHP\/Java\/Ruby on Rails\/Facebook developer","dev_member_since":"June 11, 2009","charge_rate_hourly":"43.21","dev_short_name":"Alex G."},{"dev_rank_percentile":"81","contact_name":"Vladimir R.","skills":{"skill":[{"skl_ref":"128","skl_name":"AJAX","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2008","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"144402"},{"skl_ref":"49","skl_name":"CSS","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"144401"},{"skl_ref":"18","skl_name":"HTML\/DHTML","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"3 yrs","skl_comment":"","skl_recno":"144399"},{"skl_ref":"135","skl_name":"JavaScript","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2008","skl_year_exp":"1 yrs","skl_comment":"","skl_recno":"144400"},{"skl_ref":"1318","skl_name":"Linux OS","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"3 yrs","skl_comment":"","skl_recno":"144407"},{"skl_ref":"12","skl_name":"PHP\/MySQL","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2007","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"144398"},{"skl_ref":"110","skl_name":"Ruby","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2008","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"259918"},{"skl_ref":"11705","skl_name":"RubyOnRails","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"259920"},{"skl_ref":"1317","skl_name":"Windows OS","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2007","skl_year_exp":"14 yrs","skl_comment":"","skl_recno":"144406"},{"skl_ref":"1316","skl_name":"XTemplate","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2007","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"144404"}]},"ag_adj_score":"4.6921480674023","ag_recent_hours":"3088","agency_ciphertext":"","availability_vs_total":"40 of 40","ui_profile_title":"\u2591 Expert Ruby on Rails Developer & Linux Admin \u2591","dev_tot_tests":"3","dev_scores":{"dev_score":[{"avg_category_score_recent":"0","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"0","order":"2","label":"Quality","avg_category_score":"5","description":"quality of work deliverables"},{"avg_category_score_recent":"0","order":"3","label":"Availability","avg_category_score":"5","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"0","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"0","order":"5","label":"Communication","avg_category_score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"0","order":"6","label":"Cooperation","avg_category_score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"0","dev_total_hours":"926.66666666667","avg_category_score":"","ciphertext":"~~646b637021d8daa6","dev_country":"Russia","dev_tot_feedback":"1","profile_access":"public","dev_bill_rate":"0","dev_recno":"38273","dev_ic":"Kremlinsoft","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.692178481473","ciphertext":"~~330457ea16c7ef94","ag_adj_score":"4.6921480674023","ag_tot_feedback":"15","ag_recent_hours":"3076.16666666667","ag_total_hours":"3357.16666666663","ag_recno":"75295","ag_name":"Kremlinsoft","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKbg7at-tAHM2lQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw=="}},"affiliated":"Kremlinsoft","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKbg7at-tAHM2lQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw==","dev_portrait":"http:\/\/www.odesk.com\/att\/~~YwZQR0bgNCFA*pde3X8tiBbeDdZ7mOmVuRw1PuSVQiQ=","dev_adj_score":"5","dev_adj_score_recent":"0","dev_num_assignments_feedback_for_prov":"1","dev_tot_feedback_recent":"0","dev_recent_hours":"0","dev_agency_ref":"75295","dev_test_passed_count":"3","tot_portfolio_items":"0","ag_adj_score_recent":"4.692178481473","dev_tot_hours":"927.00","record_id":"38273","ag_total_hours":"3368.99999999997","adj_score":"5.00","dev_country_tz":"Russia (GMT+06:00)","group_recno":"","dev_blurb":"","company_logo":"","dev_last_activity":"December 21, 2009","dev_full_name":"Vladimir Rybas","dev_profile_title":"\u2591 Expert Ruby on Rails Developer & Linux Admin \u2591","dev_member_since":"August 23, 2007","charge_rate_hourly":"0.00","dev_short_name":"Vladimir R."},{"dev_rank_percentile":"81","contact_name":"Ashish A.","skills":{"skill":[{"skl_ref":"30296","skl_name":"C#\/.Net, ASP\/.NET, ASP","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2009","skl_year_exp":"3 yrs","skl_comment":"","skl_recno":"226101"},{"skl_ref":"1668","skl_name":"Photoshop, CSS, HTML","skl_level":"Expert","skl_level_num":"5","skl_last_used":"2008","skl_year_exp":"3 yrs","skl_comment":"<br \/>","skl_recno":"233557"},{"skl_ref":"30294","skl_name":"PHP\/MySQL, PHP\/HTML\/DHTML","skl_level":"Very Good","skl_level_num":"3","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"","skl_recno":"226098"},{"skl_ref":"149","skl_name":"Ruby on Rails","skl_level":"Proficient","skl_level_num":"4","skl_last_used":"2009","skl_year_exp":"2 yrs","skl_comment":"<br \/>","skl_recno":"545089"},{"skl_ref":"185172","skl_name":"Zend, Smarty, CakePHP","skl_level":"Very Good","skl_level_num":"3","skl_last_used":"2008","skl_year_exp":"1 yrs","skl_comment":"<br \/>","skl_recno":"226103"}]},"ag_adj_score":"4.3268616556228","ag_recent_hours":"10486","agency_ciphertext":"","availability_vs_total":"40 of 40","ui_profile_title":"Ruby on Rails (RoR), .NET Developer","dev_tot_tests":"6","dev_scores":{"dev_score":[{"avg_category_score_recent":"5","order":"1","label":"Skills","avg_category_score":"5","description":"competency and skills for the job, understanding of specifications\/instructions"},{"avg_category_score_recent":"5","order":"2","label":"Quality","avg_category_score":"5","description":"quality of work deliverables"},{"avg_category_score_recent":"5","order":"3","label":"Availability","avg_category_score":"5","description":"online presence on a consistent schedule"},{"avg_category_score_recent":"5","order":"4","label":"Deadlines","avg_category_score":"5","description":"ability to complete tasks on time"},{"avg_category_score_recent":"5","order":"5","label":"Communication","avg_category_score":"5","description":"communication skills, frequent progress updates, responsiveness"},{"avg_category_score_recent":"5","order":"6","label":"Cooperation","avg_category_score":"5","description":"cooperation and flexibility, suggestions for improvement"}]},"dev_recent_rank_percentile":"80","dev_total_hours":"891.5","avg_category_score":"","ciphertext":"~~6be7f8cddc4f0171","dev_country":"India","dev_tot_feedback":"1","profile_access":"public","dev_bill_rate":"14.44","dev_recno":"99809","dev_ic":"Systematix Technocrates P...","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.1165903878518","ciphertext":"~~ceecbc2638431430","ag_adj_score":"4.3268616556228","ag_tot_feedback":"162","ag_recent_hours":"10299.5","ag_total_hours":"46752.1666666668","ag_recno":"1809","ag_name":"Systematix Technocrates Pvt. Ltd","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKbA0HnoGQEAI1Qd8XWTr6ucENj5HR6m9f2W40Unwd7yGw=="}},"affiliated":"Systematix Technocrates P...","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKbA0HnoGQEAI1Qd8XWTr6ucENj5HR6m9f2W40Unwd7yGw==","dev_portrait":"","dev_adj_score":"5","dev_adj_score_recent":"5","dev_num_assignments_feedback_for_prov":"1","dev_tot_feedback_recent":"1","dev_recent_hours":"307.6666666666667","dev_agency_ref":"1809","dev_test_passed_count":"6","tot_portfolio_items":"2","ag_adj_score_recent":"4.2466189185536","dev_tot_hours":"892.00","record_id":"99809","ag_total_hours":"46938.6666666668","adj_score":"5.00","dev_country_tz":"India (GMT+05:30)","group_recno":"","dev_blurb":"<ul>\n <li>To strengthen my knowledge and providing services beyond expectations.<\/li>\n <li>Flexible work timings and approach to accomodate client requirements.<\/li>\n<\/ul>","company_logo":"","dev_last_activity":"December 29, 2009","dev_full_name":"Ashish Acharya","dev_profile_title":"Ruby on Rails (RoR), .NET Developer","dev_member_since":"April 9, 2008","charge_rate_hourly":"14.44","dev_short_name":"Ashish A."},{"dev_rank_percentile":"81","contact_name":"Alexander P.","skills":{"skill":[{"skl_ref":"39","skl_name":"ASP.NET+ADO","skl_last_used":"2008","skl_level_num":"5","skl_level":"Expert","skl_comment":"'''Job Position'''\tWeb Developer'''Project'''\tClient manager. The Client Manager software allows remotely monitoring and controlling media, transmitting content via a LAN or dialup connection, as well as reactivating disabled systems and statistically depicting key usage metrics for your systems.'''Project team'''\t1PM, 5 developers, 2 QA'''Tools'''\tMercury TestDirector, iTechArt.SMG'''Technologies'''\tC++, COM, ATL, SOAP, C#, ASP.NET, ADO","skl_year_exp":"5 yrs","skl_recno":"94645"},{"skl_ref":"294","skl_name":"Flex","skl_last_used":"2009","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"2 yrs","skl_recno":"384266"},{"skl_ref":"18","skl_name":"HTML\/DHTML","skl_last_used":"2007","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"8 yrs","skl_recno":"199758"},{"skl_ref":"6350","skl_name":"iPhone","skl_last_used":"2008","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"1 yrs","skl_recno":"384267"},{"skl_ref":"6","skl_name":"J2EE","skl_last_used":"2007","skl_level_num":"5","skl_level":"Expert","skl_comment":"'''Period'''\t2006-207\n'''Job Position'''\tKey Developer\n'''Project'''\tOnePlan\n'''Your Participation'''\tCoding, fixing of bugs, making some pages, refactoring, configuration of Weblogic9.1, creation and edition of some ant scripts. Doing extraction and publish. \n'''Project team'''\t10\n'''Tools'''\tIntelliJ IDEA 5,1, Toad\n'''Technologies'''\tSpring, EJB, Tapestry4, Hibernate, Java5, Weblogic 8.1,9.0,9.1, Oracle","skl_year_exp":"5 yrs","skl_recno":"94643"},{"skl_ref":"106","skl_name":"JSP","skl_last_used":"2007","skl_level_num":"5","skl_level":"Expert","skl_comment":"'''Period'''\tFrom\t2005-2006\n'''Job Position'''\tProgrammer\n'''Project'''\tWeb commercial project \n'''Your Participation'''\tJsp pages design and development, mapping persistent classes.\n'''Project team'''\t3\n'''Tools'''\tIntelliJ IDEA 5\n'''Technologies'''\tHibernate, Spring, Struts, JavaScript, MySQL 5.0","skl_year_exp":"5 yrs","skl_recno":"94644"},{"skl_ref":"15","skl_name":"MS-SQL","skl_last_used":"2008","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"6 yrs","skl_recno":"199759"},{"skl_ref":"110","skl_name":"Ruby","skl_last_used":"2007","skl_level_num":"4","skl_level":"Proficient","skl_comment":"<strong>Trading platform<\/strong><br \/><br \/>Trading portal is based on ROR + Adobe Flash technologies.<br \/><br \/>- Advanced flash map control allowing visualizing customer locations <br \/>and downloading additional information about customers by request. <br \/>Additional customer information (name, city\\country, city\\country <br \/>based on IP address, rate) is available in pop-up window by clicking on customer location. <br \/>Also map control has ability to show real customer location on google map.<br \/><br \/>- Gallery flash control allowing downloading and representing goods <br \/>in visual format. Control periodically downloads random goods images <br \/>via Web Services from server side. Buyer appreciates goods by sight, <br \/>chooses goods, gets additional info about goods (in pop-up window) by <br \/>clicking on it, has ability to open main page of goods to order it.<br \/><br \/>- Integration Flash front-end with ROR back-end.<br \/><br \/><strong>Tools:<\/strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MySQL DB, RadRails IDE, SciTE, Macromedia Flash 8, Flex<br \/>SDK, Flex Builder, ActionWebservice for Ruby<br \/><strong>Technologies:<\/strong>&nbsp; ROR, ActionScript 2.0\/3.0, SQL","skl_year_exp":"2 yrs","skl_recno":"143532"},{"skl_ref":"67","skl_name":"Sharepoint","skl_last_used":"2007","skl_level_num":"5","skl_level":"Expert","skl_comment":"","skl_year_exp":"4 yrs","skl_recno":"199757"}]},"ag_adj_score":"4.4607410814548","ag_recent_hours":"10976.1666666667","agency_ciphertext":"","availability_vs_total":"40 of 40","ui_profile_title":".NET SHAREPOINT FLEX SILVERLIGHT iPhone EXPERT","dev_tot_tests":"4","dev_scores":{"dev_score":[{"order":"1","avg_category_score_recent":"0","label":"Skills","description":"competency and skills for the job, understanding of specifications\/instructions","avg_category_score":"5"},{"order":"2","avg_category_score_recent":"0","label":"Quality","description":"quality of work deliverables","avg_category_score":"5"},{"order":"3","avg_category_score_recent":"0","label":"Availability","description":"online presence on a consistent schedule","avg_category_score":"5"},{"order":"4","avg_category_score_recent":"0","label":"Deadlines","description":"ability to complete tasks on time","avg_category_score":"5"},{"order":"5","avg_category_score_recent":"0","label":"Communication","description":"communication skills, frequent progress updates, responsiveness","avg_category_score":"5"},{"order":"6","avg_category_score_recent":"0","label":"Cooperation","description":"cooperation and flexibility, suggestions for improvement","avg_category_score":"5"}]},"dev_recent_rank_percentile":"0","dev_total_hours":"844","avg_category_score":"","ciphertext":"~~e777bd4a896cefa7","dev_country":"Russia","dev_tot_feedback":"2","profile_access":"public","dev_bill_rate":"20","dev_recno":"26133","dev_ic":"iTechArt","dev_ac_agencies":{"dev_ac_agency":{"ag_adj_score_recent":"4.6979574501983","ciphertext":"~~aac3ee2bbb69fae1","ag_adj_score":"4.4607410814548","ag_tot_feedback":"72","ag_recent_hours":"10894.3333333333","ag_total_hours":"31262","ag_recno":"1301","ag_name":"iTechArt","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKa1GKaiXOAQVlQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw=="}},"affiliated":"iTechArt","ag_logo":"http:\/\/www.odesk.com\/att\/~~fycV8WtafKa1GKaiXOAQVlQd8XWTr6ucENj5HR6m9f2W40Unwd7yGw==","dev_portrait":"http:\/\/www.odesk.com\/att\/~~oy9gEuXE7mKcNziyIbWR-KZyheXa-4JmNSM8eJN8Blc=","dev_adj_score":"5","dev_adj_score_recent":"0","dev_num_assignments_feedback_for_prov":"2","dev_tot_feedback_recent":"0","dev_recent_hours":"0","dev_agency_ref":"1301","dev_test_passed_count":"4","tot_portfolio_items":"0","ag_adj_score_recent":"4.6974342046137","dev_tot_hours":"844.00","record_id":"26133","ag_total_hours":"31343.8333333333","adj_score":"5.00","dev_country_tz":"Russia (GMT+02:00)","group_recno":"","dev_blurb":"<p class=\"MsoNormal\">Ask our team review your project: <a href=\"http:\/\/www.itechart.com\/Pages\/RequestQuote.aspx\">SUBMIT REQUEST FOR QUOTE<\/a><\/p> <br \/>The key information about iTechArt:<br \/><br \/>iTechArt Group is a first class [[http:\/\/www.itechart.com\/|custom software development]] and [[http:\/\/www.itechart.com\/|software outsourcing company]] with headquarter in NJ, USA. Our [[http:\/\/www.itechart.com\/|offshore development]] center is located in Eastern Europe. <br \/><br \/>We have solid experience bringing products from concept to release in a variety of environments:<br \/>'''.NET\/ASP.NET\/C#\/VB.NET\/Atlas'''<br \/>'''<strong><strong>SharePoint<\/strong> 2007\/WSS 3.0\/MOSS 2007<\/strong>'''<br \/>'''<strong> Windows Workflow Foundation\/InfoPath<\/strong>'''<br \/>'''Java\/J2EE (JDBC, JNI, EJB, JMS, Servlets)\/JSP\/Struts'''<br \/>'''C\/C++ (including ANSI C)\/WinAPI\/Unix'''<br \/>'''CMS\/DotNetNuke\/Ektron\/Drupal'''<br \/>'''Web 2.0\/PHP\/MySQL\/AJAX'''<br \/>'''Flash\/Action script\/Flex and many more.<br \/><br \/>'''[[https:\/\/my.odesk.com\/console\/g\/?seeall=&amp;filter%5BProfileData%5D=itechart&amp;filter%5BUI+-+Est+Availability+Hours%5D=&amp;search_button=Search&amp;skip_records=0&amp;order=UI+-+Total+Hours&amp;dir=desc&amp;search=basic&amp;number_of_selected=0&amp;company=OnlineHarness&amp;action=Professionals|'''Browse our oDesk available resources''']]<br \/><br \/>Company profile: http:\/\/www.itechart.com\/Download.aspx?id=CompanyProfile.pdf<br \/><br \/>Our development process management system: http:\/\/www.itechart.com\/SMGWeb\/","company_logo":"","dev_last_activity":"December 22, 2009","dev_full_name":"Alexander Podashevko","dev_profile_title":".NET SHAREPOINT FLEX SILVERLIGHT iPhone EXPERT","dev_member_since":"February 4, 2007","charge_rate_hourly":"20.00","dev_short_name":"Alexander P."}],"lister":{"total_items":"2013","query":"YTo0OntpOjA7czoxMDoiZGV2ZWxvcGVycyI7aToxO2E6Mjp7aTowO2E6Mzp7aTowO3M6MTc6IklzQ29uc29sZVZpZXdhYmxlIjtpOjE7czoxOiIxIjtpOjI7czoxOiIxIjt9aToxO2E6Mzp7aTowO3M6MTE6IlByb2ZpbGVEYXRhIjtpOjE7czoyOiIxMyI7aToyO3M6NToicmFpbHMiO319aToyO2E6Mzp7aTowO2E6Mzp7aTowO3M6MTQ6IkFkanVzdGVkIFNjb3JlIjtpOjE7czo0OiJkZXNjIjtpOjI7czoxOiIxIjt9aToxO2E6Mzp7aTowO3M6MTY6IlVJIC0gVG90YWwgSG91cnMiO2k6MTtzOjQ6ImRlc2MiO2k6MjtzOjE6IjIiO31pOjI7YTozOntpOjA7czoxODoiVG90YWwgVGVzdHMgUGFzc2VkIjtpOjE7czo0OiJkZXNjIjtpOjI7czoxOiIzIjt9fWk6MzthOjEzOntpOjA7czoxMDoiUmVjb3JkIElEIyI7aToxO3M6MTM6IlByb2ZpbGVBY2Nlc3MiO2k6MjtzOjE3OiJVSSAtIFByb2ZpbGVUaXRsZSI7aTozO3M6MjE6IlVJIC0gQ29udGFjdExlc3MgTmFtZSI7aTo0O3M6MTU6IlVJIC0gQWZmaWxpYXRlZCI7aTo1O3M6MTg6IkhvdXJseSBDaGFyZ2UgUmF0ZSI7aTo2O3M6MTU6IlVJIC0gQ291bnRyeSBUWiI7aTo3O3M6NDE6IiMgb2YgQXNzaWdubWVudHMgd2l0aCBGZWVkYmFja0ZvclByb3ZpZGVyIjtpOjg7czozMDoiVUkgLSBFc3QgQXZhaWxhYmlsaXR5IHZzIFRvdGFsIjtpOjk7czoxODoiVG90YWwgVGVzdHMgUGFzc2VkIjtpOjEwO3M6MjE6IlRvdGFsIFBvcnRmb2xpbyBJdGVtcyI7aToxMTtzOjE0OiJBZGp1c3RlZCBTY29yZSI7aToxMjtzOjE2OiJVSSAtIFRvdGFsIEhvdXJzIjt9fQ==","paging":{"offset":"0","count":"20"},"sort":""}}}
@@ -1,7 +1,30 @@
1
1
  require 'helper'
2
2
 
3
3
  class TestRubyDesk < Test::Unit::TestCase
4
- should "probably rename this file and start testing for real" do
5
- flunk "hey buddy, you should probably rename this file and start testing for real"
4
+ def test_provider_search
5
+ connector = Object.new
6
+ def connector.prepare_and_invoke_api_call(*args)
7
+ File.read(File.join(File.dirname(__FILE__), 'providers.json'))
8
+ end
9
+
10
+ providers = RubyDesk::Provider.search(connector, 'rails')
11
+
12
+ assert providers.is_a?(Array)
13
+ assert_equal 20, providers.size
14
+ assert_equal RubyDesk::Provider, providers.first.class
15
+ assert_equal RubyDesk::Skill, providers.first.skills.first.class
16
+ end
17
+
18
+ def test_get_profile
19
+ connector = Object.new
20
+ def connector.prepare_and_invoke_api_call(*args)
21
+ File.read(File.join(File.dirname(__FILE__), 'profile.json'))
22
+ end
23
+
24
+ profile = RubyDesk::Provider.get_profile(connector, 'aseldawy')
25
+
26
+ assert_equal RubyDesk::Provider, profile.class
27
+ assert_equal RubyDesk::Skill, profile.skills.first.class
28
+ assert_equal RubyDesk::Competency, profile.competencies.first.class
6
29
  end
7
30
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_desk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ahmed ElDawy
@@ -11,8 +11,17 @@ cert_chain: []
11
11
 
12
12
  date: 2010-01-13 00:00:00 +02:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: json
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
16
25
  description: A gem that works as an interface for oDesk APIs that can be used for both desktop and web applications
17
26
  email: ahmed.eldawy@badrit.com
18
27
  executables: []
@@ -29,10 +38,14 @@ files:
29
38
  - VERSION
30
39
  - lib/ruby_desk.rb
31
40
  - lib/ruby_desk/connector.rb
41
+ - lib/ruby_desk/developer_skill.rb
42
+ - lib/ruby_desk/odesk_entity.rb
43
+ - lib/ruby_desk/provider.rb
32
44
  - lib/ruby_desk/snapshot.rb
33
45
  - lib/ruby_desk/team_room.rb
34
- - lib/ruby_desk/user.rb
35
46
  - test/helper.rb
47
+ - test/profile.json
48
+ - test/providers.json
36
49
  - test/test_ruby_desk.rb
37
50
  has_rdoc: true
38
51
  homepage: http://github.com/aseldawy/ruby_desk
@@ -1,12 +0,0 @@
1
- module RubyDesk
2
- class User
3
-
4
- attr_accessor :messenger_id, :timezone, :uid, :timezone_offset, :last_name,
5
- :mail, :creation_time, :first_name
6
- def initialize(params)
7
- params.each do |k, v|
8
- self.instance_variable_set("@#{k}", v)
9
- end
10
- end
11
- end
12
- end