Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

puneruby

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 1195 - 1224 of 1748   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#1195 From: Sohel Merchant <merchantsohel@...>
Date: Thu Oct 25, 2007 7:09 am
Subject: [JOBS] Ruby on Rails Develpoer multiple openings @ Pragmatic Technology Solutions
merchantsohel
Send Email Send Email
 
Pragmatic Technology Solutions
(www.pragmatictechnologysolutions.com) is a young,
dynamic and fast growing consulting company providing
Ruby on Rails Consulting. We are currently seeking
very talented and highly motivated individuals. We
offer attractive salary packages to deserving
candidates. We have the following open positions:

Software Engineers (Ruby on Rails)
* 0-2 years of Ruby on Rails experience
* Atleast 2 years of programming experience in either
Perl/PHP/Java/Ruby
* Experience with Mysql/Postgres/Oracle databases is a
must
* Should be comfortable working on Linux platform
* Excellent conceptual, analytical, software design
and programming skills.
* Must be a team player with good communication skills

* Freshers with some basic programming experience and
good academic background are also welcome to apply.

Salary: 6-12 lakhs per year
HOW TO APPLY:
Send your resume to
careers(AT)pragmatictechnologysolutions(DOT)com

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

#1196 From: puneruby@yahoogroups.com
Date: Sun Nov 4, 2007 6:34 pm
Subject: File - blog.txt
puneruby@yahoogroups.com
Send Email Send Email
 
Hello all,

Just a friendly reminder to keep checking our PuneRuby blog for the latest in
Ruby and Rails -
http://www.puneruby.com/blog/

Also, you learn Ruby for free on the web here - http://rubylearning.com/

Satish Talim

#1197 From: "tarannumus" <tarannumus@...>
Date: Thu Nov 15, 2007 8:22 am
Subject: Using mechanize to click on image
tarannumus
Send Email Send Email
 
Hello,

Can anyboby help out
How to click on a image input using "MECHANIZE"

for eg if the source is
<input type="image" border="0" value="Calculate"
src="images/CALCULATE.gif" name="btnSubmit"/>

Thanks,
Tarannum

#1198 From: Shantanoo Mahajan <shantanoo@...>
Date: Thu Nov 15, 2007 10:07 am
Subject: Re: Using mechanize to click on image
shantanu.mah...
Send Email Send Email
 
One possible method is:
- Store the URL
- Parse the output of source
- Concatenate both
- Pass it to mechanize

regards,
shantanoo

On 15-Nov-07, at 1:52 PM, tarannumus wrote:

> Hello,
>
> Can anyboby help out
> How to click on a image input using "MECHANIZE"
>
> for eg if the source is
> <input type="image" border="0" value="Calculate"
> src="images/CALCULATE.gif" name="btnSubmit"/>
>
> Thanks,
> Tarannum
>
>
>
>
> Yahoo! Groups Links
>
>
>

#1199 From: "मयंक जैन (makuchaku)" <maku@...>
Date: Thu Nov 15, 2007 10:44 am
Subject: Re: Using mechanize to click on image
mayank2cool
Send Email Send Email
 
ImageButton exposes no click method...
http://mechanize.rubyforge.org/mechanize/classes/WWW/Mechanize/ImageButton.html

What you can try is style a link to look like a button!
This nice tutorial would give you a kickstart -
http://particletree.com/features/rediscovering-the-button-element/

I hope it helps...

--
Maku
http://www.makuchaku.info/blog
Beta signups now open - http://www.apnabill.com



On 11/15/07, Shantanoo Mahajan <shantanoo@...> wrote:
>
>   One possible method is:
> - Store the URL
> - Parse the output of source
> - Concatenate both
> - Pass it to mechanize
>
> regards,
> shantanoo
>
> On 15-Nov-07, at 1:52 PM, tarannumus wrote:
>
> > Hello,
> >
> > Can anyboby help out
> > How to click on a image input using "MECHANIZE"
> >
> > for eg if the source is
> > <input type="image" border="0" value="Calculate"
> > src="images/CALCULATE.gif" name="btnSubmit"/>
> >
> > Thanks,
> > Tarannum
> >
> >
> >
> >
> > Yahoo! Groups Links
> >
> >
> >
>
>
>


[Non-text portions of this message have been removed]

#1200 From: puneruby@yahoogroups.com
Date: Sun Nov 18, 2007 7:37 pm
Subject: File - blog.txt
puneruby@yahoogroups.com
Send Email Send Email
 
Hello all,

Just a friendly reminder to keep checking our PuneRuby blog for the latest in
Ruby and Rails -
http://www.puneruby.com/blog/

Also, you learn Ruby for free on the web here - http://rubylearning.com/

Satish Talim

#1201 From: "Satish Talim" <satish.talim@...>
Date: Mon Nov 26, 2007 2:34 am
Subject: Ruby Symbols explained
satish_talim
Send Email Send Email
 
Fabio Akita (aka AkitaOnRails), a Rails enthusiast from Brazil talks
about Ruby Symbols. His article explains Symbols using Rails'
ActiveRecord. A must read.
http://rubylearning.com/blog/2007/11/26/akitaonrails-on-ruby-symbols/

#1202 From: "C. K. Ponnappa" <ckponnappa@...>
Date: Mon Nov 26, 2007 7:58 am
Subject: A startling violation of the principle of least surprise
tyber_sid
Send Email Send Email
 
You guys may find this of interest - methods created with 'def' and
'define_method' have differences in behaviour. I've posted details here:
http://blog.sidu.in/2007/11/ruby-blocks-gotchas.html

--
Two's an SMS. Three's a Mob. Get your free group SMS from Activ Mobs!
SMS "register your_nickname" to +91 98446 22848 to start Mobbing.
http://blog.inactiv.com

#1203 From: hemant <technix88@...>
Date: Tue Nov 27, 2007 1:29 pm
Subject: Re: A startling violation of the principle of least surprise
technix88
Send Email Send Email
 
Thats an excellent article Sidu...

Congrats. And the argument mentioned in closures-in-ruby.rb is also true. Many
of the features of
language are implemented based on whims and fancies sometimes ( not in a bad
way, but without any documentation ).

Implementation is spec, and hence the problem. One small thing that you perhaps
missed was
having methods with "-" in their name. Again, you can use define_method to
define such methods,
but can't use def like that.



----- Original Message ----
From: C. K. Ponnappa <ckponnappa@...>
To: puneruby@yahoogroups.com; bangalorerug@googlegroups.com;
chennairb@googlegroups.com
Sent: Monday, November 26, 2007 1:28:18 PM
Subject: [puneruby] A startling violation of the principle of least surprise














             You guys may find this of interest - methods created with 'def' and

'define_method' have differences in behaviour. I've posted details here:

http://blog. sidu.in/2007/ 11/ruby-blocks- gotchas.html



--

Two's an SMS. Three's a Mob. Get your free group SMS from Activ Mobs!

SMS "register your_nickname" to +91 98446 22848 to start Mobbing.

http://blog. inactiv.com














<!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#0000ff;text-decoration:none;}
-->



<!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
-->



<!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean,
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:upp\
ercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-ri\
ght:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%\
;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
-->







[Non-text portions of this message have been removed]

#1204 From: "Satish Talim" <satish.talim@...>
Date: Fri Nov 30, 2007 12:46 pm
Subject: Fabio Akita's article on Ruby Blocks/Closures
satish_talim
Send Email Send Email
 
Another interesting, in-depth article by Fabio Akita on Ruby
Blocks/Closures. A must read.
http://rubylearning.com/blog/2007/11/30/akitaonrails-on-anatomy-of-ruby-blockscl\
osures/

Satish

#1205 From: puneruby@yahoogroups.com
Date: Sun Dec 2, 2007 7:49 pm
Subject: File - blog.txt
puneruby@yahoogroups.com
Send Email Send Email
 
Hello all,

Just a friendly reminder to keep checking our PuneRuby blog for the latest in
Ruby and Rails -
http://www.puneruby.com/blog/

Also, you learn Ruby for free on the web here - http://rubylearning.com/

Satish Talim

#1206 From: Nikhil Kala <nikhilrkale@...>
Date: Mon Dec 3, 2007 6:17 am
Subject: RoR Hosting...
nikhilrkale@...
Send Email Send Email
 
Hello All,

I am new for RoR here.

I just want to know which things needs to be take into consideration before
taking hosting for RoR???


--
Thnaks & Regards,
Nikhil Kala

#1207 From: "मयंक जैन (makuchaku)" <maku@...>
Date: Mon Dec 3, 2007 1:16 pm
Subject: Re: RoR Hosting...
mayank2cool
Send Email Send Email
 
- Cost is one factor when you are looking for just a playground projects ;-)
- Responsive and friendly customer support is another...

Try RailsPlayground.com - they have both... I am hosting my RoR website (a
startup project) with them - http://www.apnabill.com

- I wish they had a gem to support automated installations/etc. They do
provide support for Capistrano (though I never used it).

:)
Maku

On 12/3/07, Nikhil Kala <nikhilrkale@...> wrote:
>
>   Hello All,
>
> I am new for RoR here.
>
> I just want to know which things needs to be take into consideration
> before
> taking hosting for RoR???
>
> --
> Thnaks & Regards,
> Nikhil Kala
>
>


[Non-text portions of this message have been removed]

#1208 From: "C. K. Ponnappa" <ckponnappa@...>
Date: Tue Dec 4, 2007 10:19 am
Subject: Re: RoR Hosting...
tyber_sid
Send Email Send Email
 
Or you can try VPS hosting - the extremely powerful (and expensive)
variety provided by Amazon's EC2 (1.7GB RAM minimum) or the more
reasonably priced slicehost.com (starts at 256MB of RAM).

Remember, Rails is single threaded - every request you want to process
in parallel requires another server instance. Each instance takes a
minimum of 60MB. My standard RubyWorks (
http://studios.thoughtworks.com/rubyworks ) setup with a cluster of 4
mongrel instances on a slicehost.com 256MB VPS slice running Debian Etch
leaves me with about 25MB of RAM free.

HTH,
Sidu.
http://inactiv.com
http://blog.sidu.in

मयंक जैन (makuchaku) wrote:
>
> - Cost is one factor when you are looking for just a playground
> projects ;-)
> - Responsive and friendly customer support is another...
>
> Try RailsPlayground.com - they have both... I am hosting my RoR website (a
> startup project) with them - http://www.apnabill.com
> <http://www.apnabill.com>
>
> - I wish they had a gem to support automated installations/etc. They do
> provide support for Capistrano (though I never used it).
>
> :)
> Maku
>
> On 12/3/07, Nikhil Kala <nikhilrkale@...
> <mailto:nikhilrkale%40gmail.com>> wrote:
> >
> > Hello All,
> >
> > I am new for RoR here.
> >
> > I just want to know which things needs to be take into consideration
> > before
> > taking hosting for RoR???
> >
> > --
> > Thnaks & Regards,
> > Nikhil Kala
> >
> >
>
> [Non-text portions of this message have been removed]
>
>

--
Two's an SMS. Three's a Mob. Get your free group SMS from Activ Mobs!
SMS "register your_nickname" to +91 98446 22848 to start Mobbing.
http://blog.inactiv.com

#1209 From: "Shalini Chordia" <shalinichordia@...>
Date: Wed Dec 5, 2007 9:24 am
Subject: [JOBS] Urgent requirement, ROR , SY Smartsourcing , Pune
feistiershals
Send Email Send Email
 
Dear ROR professionals,

*Company Profile*
SY Smartsourcing Services is a software development services company in Pune
associated with Smartsourcing Global, Inc., New Jersey, US. If you want to
make a difference, if you love challenges and you have an entrepreneurial
drive, Smartsourcing Global is the right place for you. We offer career and
not a Job! Along with the job specific skills, we always look for candidates
with these qualities - Smart, Innovative with strong aptitude for
technology, enthusiastic & quick learners. Excellent communication, friendly
attitude and team work are the must. We won't settle for anything less.


*Job Description*
* Understanding the Project requirements and accurately estimating the
efforts.
* Coding on all tiers of the application using RoR, AJAX, Flex / Flash.
* Experience on ROR is must and Javascript & CSS Knowledge preffered.
* Design and development for database.
* Strictly follow coding guidelines and programming best practices.
* Interaction with the client/s.
* Perform unit testing, peer code review, technical documentation
Add value by improvising existing design and identify areas for refactoring.
* Collaborating with the global project team.

*Desired Candidate Profile*
* 4+ Experience working in highly agile development environment with strong
OO design, database development and optimization
* Strong technical skills - MySQL/SQL, Rails/Perl, PHP, Java, web
application development experience, Possibly Ruby on Rails,
* Proficiency/experience in working on Unix/Linux.
* Thorough understanding of all phases of software development and
meticulous about coding practices, unit testing and clean documentation.
* Knowledge of CVS/SVN or similar code repository.
* Passion and significant experience with open source technologies.
* Experience with Flash and media encoding and conversion processes a plus.
* Should be a self starter with good communication skills.

Interested candidates are required to send their CV's to *
shalini@... or** resumes@...*. The
subject line should follow this format: ROR/Total
Experience/Qualification/Current Location.

*Those aspirants who have minimum 6 months experience in ROR can also send
their CV's. The subject line should remain same. *

Thanks & regards,
Shalini Chordia
Manager - HR & Admin
SY Smartsourcing Services Pvt. Ltd.,
111, SAI APEX, Viman Nagar,
Pune - 411 014.

Tel : 020 - 40037436 / 37
Cell : 0 - 9371297618
shalini@...
www.smartsourcingglobal.com


[Non-text portions of this message have been removed]

#1210 From: "C. K. Ponnappa" <ckponnappa@...>
Date: Fri Dec 7, 2007 7:00 am
Subject: For those looking for professional Rails hosting
tyber_sid
Send Email Send Email
 
If you're looking to make use of Amazon's EC2 hosting
for your Rails app, George Malamidis and the chaps at Nutrun have set up
RubyWorksEC2 (
http://nutrun.com/weblog/rubyworks-production-stack-on-amazon-ec2/ )
which will create a Debian Etch based Rails production grade server with
Apache 2, haproxy and a cluster of 4 mongrels all monitored by
monit(that's the RubyWorks stack, basically) plus Capistrano recipes and
scripts to backup and restore the db from Amazon's S3.

EC 2 provides awesomely powerful virtual machines at remarkably cheap
rates + pay as you use. A 1.7GB, 1.2 GHz (approx.) VM costs $0.10 per hour.

I've personally made four non EC2 production RubyWorks based deployments
so far - two on FC7, one each on Ubuntu and Debian Etch. They were so
easy it's almost funny. Do check it out if you're using VPS or dedicated
hosting.

Best,
Sidu.
http://inactiv.com
http://blog.sidu.in
--
Two's an SMS. Three's a Mob. Get your free group SMS from Activ Mobs!
SMS "register your_nickname" to +91 98446 22848 to start Mobbing.
http://blog.inactiv.com

#1211 From: "Satish Talim" <satish.talim@...>
Date: Sun Dec 9, 2007 12:33 am
Subject: Free, Online Ruby Programming Course
satish_talim
Send Email Send Email
 
Ruby’s popularity and usage is growing exponentially with each passing
day. Don’t get left behind. Here’s your chance to learn Ruby
programming for free, at the comfort of your home and along with an
online teacher.

This course is ideal for those of you who want to complement your
skill-set with Ruby, but haven’t quite found the time to do so. There
would be online lessons, exercises, quizzes and assignments all the
way. You are free to ask all your Ruby related doubts, queries and
questions and rest assured that they would be answered.

For all the details -
http://rubylearning.com/blog/2007/12/08/free-online-ruby-programming-course/

#1212 From: "Aman King" <the21stphantom@...>
Date: Mon Dec 10, 2007 4:49 pm
Subject: Geek Night at ThoughtWorks Pune
amanking
Send Email Send Email
 
Hi,

ThoughtWorks is organizing a Geek Night event around JRuby at their
Pune office on Sat, 15 Dec '07.

A Geek Night is an informal gathering where we pick a hot technology
topic and proceed to discuss it and learn from each others experience
and perspectives. The meeting takes about two hours inclusive of
eating/drinking (soft drinks only! LOL) and heckling the presentors.
There is no fees for attending.

Get more details here: http://thoughtworks.wikispaces.com/

Highlights:

JRuby Primer : JRuby is an 100% pure-Java implementation of the Ruby
programming language. It promises to give the best of both worlds,
the beauty of Ruby combined with the proven Java platform.

RubyWars : Play a simulation game where you write code for your
strategy. So do your opponents... Of course, the best code wins.
A game engine that exploits ruby meta-programing accepting your
strategy as Ruby code and modifiying it's own behavior according to
your strategy at runtime.


Date: Saturday, 15th December 07
Time: 2 pm to 5 pm
Venue: ThoughtWorks
Address:
ThoughtWorks Technologies
GF-01 & MZ-01
Tower 'C', Panchshil Tech Park
(Next to Don Bosco School)
Yerwada
Pune 411 006

#1213 From: puneruby@yahoogroups.com
Date: Sun Dec 16, 2007 7:37 pm
Subject: File - blog.txt
puneruby@yahoogroups.com
Send Email Send Email
 
Hello all,

Just a friendly reminder to keep checking our PuneRuby blog for the latest in
Ruby and Rails -
http://www.puneruby.com/blog/

Also, you learn Ruby for free on the web here - http://rubylearning.com/

Satish Talim

#1214 From: "Ashish Kulkarni" <ashishkulkarni@...>
Date: Sat Dec 22, 2007 6:04 pm
Subject: Any members in Orlando, Florida during February?
ashishkulkar...
Send Email Send Email
 
Dear all,

I am visiting JBossWorld 2008 event in Orlando, Florida from 13th to
15th of Feb 2008.

In case any Pune-Ruby members are in that area during those dates or
better still, attending this event and interested in meeting
up/networking, please give me a shout.

I can be contacted by email at ashishkulkarni@... or via
LinkedIn at http://www.linkedin.com/in/ashishkulkarni.

I look forward to hearing from you.

Best Regards,

Ashish.

#1215 From: saurabh p <saurabh.purnaye@...>
Date: Thu Dec 20, 2007 4:28 am
Subject: generate the 8 chracterised string randomly
saurabh.purnaye
Send Email Send Email
 
hi,
  greetings to all,
  can you please guide me how to generate the 8 chracterised string randomly
  i want to use this in my  application,
  pls reply  me...

    Thanks and  Regards,

      Saurabh  P
  Software Developer

saurabh.purnaye@...
   Clarion  Technologies
SEI CMMI Level 3 Company

4th Floor, Great Eastern Plaza,
Airport Road,
Pune- 411  006,
Maharashtra, India.
Mobile: +91 9922907342
Office: +91 20  66020289
www.clariontechnologies.co.in




---------------------------------
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.

[Non-text portions of this message have been removed]

#1216 From: Hasmukh Rathod <hasmukh_ce2007@...>
Date: Fri Dec 21, 2007 1:11 pm
Subject: Action mailer
hasmukh_ce2007
Send Email Send Email
 
Hi all,

Can anyone tell me how to set time or how to schedule my email using action
mailer?

I'm able to send email using action mailer. But i can't schedule. According to
my requirement i have to scheduled.

----
Thanks,

Hasmukh Rathod.





Send instant messages to your online friends http://uk.messenger.yahoo.com

[Non-text portions of this message have been removed]

#1217 From: "Rohan Dighe" <linuxdominatrix@...>
Date: Mon Dec 17, 2007 6:42 am
Subject: [OT] FLEX Developers.
rohanonair
Send Email Send Email
 
Hi group !

Well, one of my friend is in need of a few flex programmers. Let me
know if anyone is interested.

Thanks,

--
Rohan Dighe
Facebook Developer,
http://rsdighe.blogspot.com



--
You do not really understand something unless you can explain it to
your grandmother.
  -- Albert Einstein

#1218 From: "gangakhedkar_sandip" <gangakhedkar_sandip@...>
Date: Sun Dec 23, 2007 7:17 pm
Subject: online survey
gangakhedkar...
Send Email Send Email
 
Hi all,

I wish to implement an online (webpage) survey for a project...I was
wondering if a Rails app would be useful in this regard. If yes, then
I would need a domain, hosting and probably custom mail id's (as an
afterthought...). Any good suggestions for the same?

I would be looking at really low cost options - Also since the survey
is global, an Indian hosting company is not a requisite. Again, I'm a
newbie in these matters, so help would be appreciated.....

Finally, is there a better alternative to using Rails? I have been
working with Rails intermittently for the past 6 months and fairly
confident of putting together an app quickly.

Regards,

Sandip

#1219 From: "मयंक जैन (makuchaku)" <maku@...>
Date: Wed Dec 26, 2007 6:52 am
Subject: Re: generate the 8 chracterised string randomly
mayank2cool
Send Email Send Email
 
Hi Saurabh,

Get an object ID, convert it to a string, add a salt, MD5 it and then
randomly select any 8 consecutive characters -- this might be one way to do
it :)

Would this help?

--
Maku
http://www.apnabill.com



On 12/20/07, saurabh p <saurabh.purnaye@...> wrote:
>
>   hi,
> greetings to all,
> can you please guide me how to generate the 8 chracterised string randomly
> i want to use this in my application,
> pls reply me...
>
> Thanks and Regards,
>
> Saurabh P
> Software Developer
>
>
saurabh.purnaye@...<saurabh.purnaye%40clariontechnologies.\
co.in>
> Clarion Technologies
> SEI CMMI Level 3 Company
>
> 4th Floor, Great Eastern Plaza,
> Airport Road,
> Pune- 411 006,
> Maharashtra, India.
> Mobile: +91 9922907342
> Office: +91 20 66020289
> www.clariontechnologies.co.in
>
> ---------------------------------
> Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it
> now.
>
> [Non-text portions of this message have been removed]
>
>
>


[Non-text portions of this message have been removed]

#1220 From: "मयंक जैन (makuchaku)" <maku@...>
Date: Wed Dec 26, 2007 7:00 am
Subject: Re: online survey
mayank2cool
Send Email Send Email
 
Hi Sandeep,

I was also split for the same decision when I wanted to put my first rails
app online. I tried Rails Playground (http://www.railsplayground.com) and
have not decided to look for another low cost host since.

What I like best about them is their awesomely helpful staff & their
quickness to reply to tickets. To top it up, they offer free Bugzilla & SVN
hosting. They even extend you full support if you fail to get your app
running.

All this for USD 5 per month (3 gig hosting).

They run FCgi - I never felt any sluggishness in my app once it was online.

If you have any concerns, try their pre-sales forum section & shoot a query.

Regards,
Maku
http://www.ApnaBill.com

PS: These are just viewpoints of a happy customer, no publicity for
anyone...


On 12/24/07, gangakhedkar_sandip <gangakhedkar_sandip@...> wrote:
>
>   Hi all,
>
> I wish to implement an online (webpage) survey for a project...I was
> wondering if a Rails app would be useful in this regard. If yes, then
> I would need a domain, hosting and probably custom mail id's (as an
> afterthought...). Any good suggestions for the same?
>
> I would be looking at really low cost options - Also since the survey
> is global, an Indian hosting company is not a requisite. Again, I'm a
> newbie in these matters, so help would be appreciated.....
>
> Finally, is there a better alternative to using Rails? I have been
> working with Rails intermittently for the past 6 months and fairly
> confident of putting together an app quickly.
>
> Regards,
>
> Sandip
>
>
>


[Non-text portions of this message have been removed]

#1221 From: "manu sharma" <manu.sharma7@...>
Date: Wed Dec 26, 2007 7:23 am
Subject: Re: Action mailer
manu_sicsr
Send Email Send Email
 
Hi Hasmukh,

Well am a newbie for Rails and have not much experience. But I keep looking
for stuff here and thr. Read the details below if they help you.

http://openwferu.rubyforge.org/scheduler.html

I feel u must hv had gone thru it, but if it doesnt help kindly ignore. I
will dig out for sumthing else.

- manu


On Dec 21, 2007 6:41 PM, Hasmukh Rathod <hasmukh_ce2007@...> wrote:

>   Hi all,
>
> Can anyone tell me how to set time or how to schedule my email using
> action mailer?
>
> I'm able to send email using action mailer. But i can't schedule.
> According to my requirement i have to scheduled.
>
> ----
> Thanks,
>
> Hasmukh Rathod.
>
> Send instant messages to your online friends http://uk.messenger.yahoo.com
>
> [Non-text portions of this message have been removed]
>
>
>


[Non-text portions of this message have been removed]

#1222 From: "C. K. Ponnappa" <ckponnappa@...>
Date: Wed Dec 26, 2007 7:12 pm
Subject: [Fwd: [ Bangalore RUG] Ruby 1.9]
tyber_sid
Send Email Send Email
 
Cross-posted from Bangalore RUG.
-S
-------- Original Message --------
Subject:  [ Bangalore RUG] Ruby 1.9
Date:  Wed, 26 Dec 2007 14:22:40 +0530
From:  Max Payne <csy0013@...>
Reply-To:  bangalorerug@googlegroups.com
To:  bangalorerug@googlegroups.com



Ruby 1.9 has been released!! It was quite exciting prowling around the
#ruby-lang channel until the news broke out, that the release was
ready and published on the mailing list.

Yay!! Months of waiting has finally paid off and the day is finally
here! *applause*



However, I have some concerns:

1) Many libraries have still not been ported onto Ruby 1.9. We should
probably chip in and enable these libraries for Ruby 1.9 since that
would be quite crucial in promoting Ruby 1.9 as the best thing since
sliced bread :)

2) Though it comes under 1), I have to point this out. Rails is still
not up on Ruby 1.9 (officially).

3) Ruby 1.9 in itself is not fully stable (hence the release being
tagged as 1.9.0 instead of 1.9.1 as initially planned). We need to
help stabilize it.

4) Awareness!! A lot of people are not aware of the advantages of
programming in a higher level language like Ruby. The common
misconception is that Ruby is *just* a scripting language. I believe
the reason why such a "prejudice" has formed is due to the fact that
Ruby, so far, had been quite slow for most complex applications.
However, I believe that with 1.9, this would start changing. Now, more
and more applications and libraries would be more feasible to be used
/ developed on Ruby. A great example would be 3D games. AFAIK the
previous usage of green threads severely limited the performance of 3D
on Ruby. I believe people should be made aware that Ruby  1.9 is
different, that it is actually feasible and desirable to develop
complex software in Ruby.

Well then people, lets get working on making Ruby 1.9 a smashing
success!! This is what we have been waiting for, the thing that will
put Ruby on the map, not just for "script kiddies", but for serious
programmers all around the world!

Go Ruby!!

Regards,
Ajith

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"BANGALORE RUG-Ruby Users Group" group.
  To post to this group, send email to bangalorerug@googlegroups.com
  To unsubscribe from this group, send email to
bangalorerug-unsubscribe@googlegroups.com
  For more options, visit this group at
http://groups.google.com/group/bangalorerug?hl=en-GB
-~----------~----~----~----~------~----~------~--~---




--
Two's an SMS. Three's a Mob. Get your free group SMS from Activ Mobs!
SMS "register your_nickname" to +91 98446 22848 to start Mobbing.
http://blog.inactiv.com

#1223 From: "Satish Talim" <satish.talim@...>
Date: Wed Dec 26, 2007 11:30 pm
Subject: Re: [Fwd: [ Bangalore RUG] Ruby 1.9]
satish_talim
Send Email Send Email
 
> Ruby 1.9 has been released!!
> Well then people, lets get working on making Ruby 1.9 a smashing
> success!! This is what we have been waiting for, the thing that will
> put Ruby on the map, not just for "script kiddies", but for serious
> programmers all around the world!
>
> Ajith

Great news indeed. Dave Thomas has this to say - "1.9 is the future of
Ruby, and it's a future that will be mainstream very soon. Start
playing with it now, so you'll be up to speed when Matz creates his
first production release."
http://pragdave.blogs.pragprog.com/pragdave/2007/12/ruby-19right-fo.html

Satish

#1224 From: puneruby@yahoogroups.com
Date: Sun Dec 30, 2007 7:41 pm
Subject: File - blog.txt
puneruby@yahoogroups.com
Send Email Send Email
 
Hello all,

Just a friendly reminder to keep checking our PuneRuby blog for the latest in
Ruby and Rails -
http://www.puneruby.com/blog/

Also, you learn Ruby for free on the web here - http://rubylearning.com/

Satish Talim

Messages 1195 - 1224 of 1748   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help