[Rails] Re: Bar code reader and scanner integration

2013-07-03 Thread danny thyui
there are many ways to do that. If you wanna save these complicated steps and find a easy way, you can google barcode scanner and you will find many useful tools, or google how to read barcode in c# to get instructive articles. Good luck:) I think some imaging sdk programmes can enable to quickly s

Re: [Rails] (Jobs) Berlin-based job openings for Ruby on Rails developers (f/m)

2013-07-03 Thread Johnneylee Rollins
I meant beyond the implicit. Clever joke, I certainly hope that it was made in contempt for the state of the craft. ~Spaceghost On Jul 3, 2013 6:31 PM, "Jordon Bedwell" wrote: > On Wed, Jul 3, 2013 at 5:29 PM, Johnneylee Rollins > wrote: > > Are there jobs that are open to one gender but not th

Re: [Rails] (Jobs) Berlin-based job openings for Ruby on Rails developers (f/m)

2013-07-03 Thread Jordon Bedwell
On Wed, Jul 3, 2013 at 5:29 PM, Johnneylee Rollins wrote: > Are there jobs that are open to one gender but not the other? You must be new here. Let me be the first to welcome to you. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To u

Re: [Rails] (Jobs) Berlin-based job openings for Ruby on Rails developers (f/m)

2013-07-03 Thread buyzlots
it was a bit odd. Male / female is usually implied :) On Jul 3, 2013, at 6:29 PM, Johnneylee Rollins wrote: > Oh, that's so odd. > > Is that just cultural or do opportunities usually advertise towards one > gender over another? > > Are there jobs that are open to one gender but not the other

Re: [Rails] (Jobs) Berlin-based job openings for Ruby on Rails developers (f/m)

2013-07-03 Thread Johnneylee Rollins
Oh, that's so odd. Is that just cultural or do opportunities usually advertise towards one gender over another? Are there jobs that are open to one gender but not the other? ~Johnneylee On Jul 3, 2013 5:58 PM, "Norbert Melzer" wrote: > > Am 03.07.2013 22:45 schrieb "Johnneylee Rollins" < > joh

Re: [Rails] (Jobs) Berlin-based job openings for Ruby on Rails developers (f/m)

2013-07-03 Thread Pandya, Amit
in America - does not discriminate in employment matters on the basis of race, color, religion, gender, national origin, age, military service eligibility, veteran status, sexual orientation, marital status, disability, or any other protected class. We support workplace diversity http://www.eeoc.

Re: [Rails] (Jobs) Berlin-based job openings for Ruby on Rails developers (f/m)

2013-07-03 Thread Walter Lee Davis
But quite unusual in America to even specify it -- I cannot recall ever seeing that noted in a job offering. Walter On Jul 3, 2013, at 5:58 PM, Norbert Melzer wrote: > It is quite usual in Germany to mention that a job is open for both genders > by adding either the English abbreviation m/f o

Re: [Rails] (Jobs) Berlin-based job openings for Ruby on Rails developers (f/m)

2013-07-03 Thread Norbert Melzer
Am 03.07.2013 22:45 schrieb "Johnneylee Rollins" < johnneylee.roll...@gmail.com>: > > What do you mean by f/m? Female/male It is quite usual in Germany to mention that a job is open for both genders by adding either the English abbreviation m/f or the German m/w. -- You received this message be

[Rails] Asset Pipeline Serving Stale Assets

2013-07-03 Thread Ari King
Hi, I have an application built on Rails 3.2.13 with JRuby 1.7.4, which I deployed to torquebox. Before deployment, I precompiled assets. Since the precompilation, changes to javascript and sass files are not reflected in development mode. I've run rake assets:clean RAILS_ENV=development and add

Re: [Rails] (Jobs) Berlin-based job openings for Ruby on Rails developers (f/m)

2013-07-03 Thread Johnneylee Rollins
What do you mean by f/m? ~Spaceghost On Jul 3, 2013 4:11 PM, "Kelly@webcrowd" wrote: > Dear Fellows, > > I hope you don't mind posting job offers on this mailing list. If you do, > please drop us a line and we stop sending these exciting opportunities via > your mailinglist. Webcrowd is a job an

[Rails] [JOB] Rails Developer to 140k - New York City - Paid Relo

2013-07-03 Thread OSS
** Multiple positions available with different NYC clients all offering relocation assistance This is a full time, on-site, salaried Ruby on Rails Developer position located in New York City paying to 140,000 per year depending on experience + benefits. No telecommuting allowed. US Citizens or

[Rails] (Jobs) Berlin-based job openings for Ruby on Rails developers (f/m)

2013-07-03 Thread Kelly@webcrowd
Dear Fellows, I hope you don't mind posting job offers on this mailing list. If you do, please drop us a line and we stop sending these exciting opportunities via your mailinglist. Webcrowd is a job and service network for internet professionals. We are internet professionals and we love to

[Rails] Rails 4 will not run (under rbenv); pathname problem with app_rails_loader

2013-07-03 Thread Matthew Davis
This is an OS X Homebrew install, with rbenv root in /usr/local/var/rbenv; Ruby 2.0.0, and Rails 4.0.0. 'gem install rails' went without complaint. Then I tried to run 'rails new hypothetical_app'. That, and all calls to the rails app, show that app_rails_loader is finding a *directory*bin/ra

[Rails] Re: Create lowercase index

2013-07-03 Thread Rick
Straight from rails4.0 documentation: http://api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html Creating an index with a specific method add_index(:developers, :name, using: 'btree') generates: CREATE INDEX index_developers_on_name ON developers USING btree (nam

[Rails] Re: Create lowercase index

2013-07-03 Thread pironim
How about case insensetive collation for your columns? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscr...@googlegroups.com. To

[Rails] Re: Reducing downtime

2013-07-03 Thread Robert Walker
Peter Hickman wrote in post #1114323: > To reduce the time we lose when we restore a backup we could of course > just > take more frequent backups. But this would start to become a performance > issue, not to mention pulling the backups off the server will start to > eat > into our bandwidth. > An

[Rails] Re: Create lowercase index

2013-07-03 Thread Rick
Direct from Rails4.0 ActiveRecord documentation: Creating an index with a specific method add_index(:developers, :name, using: 'btree') generates: CREATE INDEX index_developers_on_name ON developers USING btree (name) -- PostgreSQLCREATE INDEX index_developers_on_name USING btree ON developer

[Rails] Reducing downtime

2013-07-03 Thread Peter Hickman
We have our RoR apps on cloud servers that can be blown away and rebuilt with the aid of chef. The only volatile data on the server is the database which we backup periodically and pull off to our backup server. If we backup the database once a day then should things go wrong and we restore the da

[Rails] Re: Devise auth based on ssl keys

2013-07-03 Thread Robert Walker
lobster lobster wrote in post #1114299: > I already have a rails 3.1.2 and ruby 1.9.3 vast app with an auth based > on devise. Now I want to add to the my app a ssl key based auth. As > web-server it uses thin and nginx as proxy. I have made only ssl on the > nginx at 443 and only for some app path

[Rails] Re: full-time job: senior Ruby on Rails developer wanted

2013-07-03 Thread Ruby Job
> How to apply Im very sorry, but i totally forgot to mention my email adress... ;) please contact me in case of interest via mail: ruby-...@gmx.de Were looking forward to your proposal :) -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to t

[Rails] Devise auth based on ssl keys

2013-07-03 Thread lobster lobster
Hi, guys. I already have a rails 3.1.2 and ruby 1.9.3 vast app with an auth based on devise. Now I want to add to the my app a ssl key based auth. As web-server it uses thin and nginx as proxy. I have made only ssl on the nginx at 443 and only for some app pathes (e.g. /articles, /search etc). Ho

[Rails] full-time job: senior Ruby on Rails developer wanted

2013-07-03 Thread Ruby Job
We are a german company, developing a web application for the social sector in a small team (mostly working remote). We are looking for a sustainable, effective and talented full time senior rails developer to complement our team. Requirements: * fluent in English * a minimum of +2 years of exp

[Rails] Re: pro bono rails help for my non-profit

2013-07-03 Thread Jay Zheng
what's your contact? On Monday, July 1, 2013 2:13:19 AM UTC-7, Neeraj Kapoor wrote: > > Hello! > > My name is Neeraj Kapoor and I'm writing on behalf of the Learn To Be > Foundation, a 501(c)3 non-profit organization dedicated to providing free, > one-on-one, online tutoring to K-8 students in