Tuesday, April 30, 2013

Do you know Shihab Muhammed, Mubarak Ali and 8 others?

facebook
People You May Know
Add the people you know to see their photos and updates.
Shihab Muhammed
Ansar juniour college memunda
Add Friend
Mubarak Ali
Add Friend
Faizal Ismail
at Facebook
Friends with Shazil Ali, Rashik Rasheed and 3 others
Add Friend
Muhammad Shas
Friends with Ayoob Khan, Yaseen Mahmood and 31 others
Add Friend
Ramachandran PC
Prnss college Mattannur
Friends with Bineesh Paniyil
Add Friend
Babup Iringal
Friends with Shahul Afaf
Add Friend
Mubashir Nellankool Bachi
Works at Nkm
Friends with Yaseen Mahmood
Add Friend
Shahana Shahala
Kotayam, Kerala, India
Friends with Mahafoos Vc
Add Friend
Rasal Raaza Rockzz
I A E H S S Kottakkal
Friends with Noor Haque, Yaseen Mahmood and 2 others
Add Friend
Aysha Ridha
Malabar medical college hospital & research center
Friends with Dhulshad KeNz
Add Friend
Find More Friends
Go to Facebook
This message was sent to twitterboyz@gmail.com. If you don't want to receive these emails from Facebook in the future, please unsubscribe.
Facebook, Inc., Attention: Department 415, PO Box 10005, Palo Alto, CA 94303

[android-developers] TalkBack and data tables

Is there a way to get Talkback to associate data cells to column and row headers in a mobile web data table like Voice Over does? The best I can get it so far is recognize the aria role columnheader and rowheader in mobile chrome but not the association to the data cells.
 
thx

--
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
---
You received this message because you are subscribed to the Google Groups "Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Monday, April 29, 2013

[Lovers India] Re: I can't wait to see you! - Must Read & Enjoy !

This is the one place the partner dislikes to join even though they love each other like hell !


On Friday, April 26, 2013 11:51:27 AM UTC+5:30, Pramod Patil wrote:
One Day A Rich man went London for Tour.. He Take a Rental Room in a 5 Star Hotel.

There was a computer in his room, so he decided to send a mail to his wife.

However, he accidentally typed the wrong email address, and without realizing, he sent the mail to a widow who has just returned from her husband's funeral.




http://images.clipartof.com/small/1046751-Royalty-Free-RF-Clip-Art-Illustration-Of-A-Cartoon-Woman-Holding-A-Computer-Monitor-And-Searching.jpg

The widow decided to check her mail, expecting condolence messages from relatives and friends.




After reading the first message she fainted.

http://img.chinasmack.com/www/wp-content/uploads/2012/05/sleepy.jpg


The son rushed into the room, found his mother on the floor and saw the computer screen which read : "To my loving wife, i know you are surprised to hear from me, they have computers here and we are allowed to send mails to loved ones.


I have just checked in.

How are You and the kids, The place is really nice, but am lonely here.



I have made necessary arrangement for Your arrival tomorrow. Expecting you darling. I can't wait to see you!

--
--
Thanks & Regards
Pramod Patil

--
--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia
 
---
You received this message because you are subscribed to the Google Groups "Lovers India" group.
To unsubscribe from this group and stop receiving emails from it, send an email to loversindia+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Re: [android-developers] How to get scrolling to just scroll endlessly when you swipe the screen up or down?


On Mon, Apr 29, 2013 at 9:35 AM, Dan Cha <cubangt2@gmail.com> wrote:
when i swipe the screen up or down, it only moves while i have my finger on the screen.

That should not be the case. Have you done anything to interfere with the scroll behavior?
 
I would like to be able to swipe like other apps that it just scrolls until it slows down.
 
What controls should i be using to accomplish this task?

This is the default behavior for any control that scrolls.

-------------------------------------------------------------------------------------------------
TreKing - Chicago transit tracking app for Android-powered devices

--
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
---
You received this message because you are subscribed to the Google Groups "Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

[Rails] Re: need help to install Nokogiri

Carlos Mathiasen wrote in post #1107144:
> Nokogiri is a gem, them you only need
>
> gem install nokogiri
>
> but first you need install this libraries for ubuntu[0]:
>
> sudo apt-get install libxml2 libxml2-dev libxslt libxslt-de

Tried but got error:

kirti@kirti-Aspire-5733Z:~$ sudo apt-get install libxml2 libxml2-dev
libxslt libxslt-dev
[sudo] password for kirti:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'libxslt1-dev' instead of 'libxslt-dev'
E: Unable to locate package libxslt
kirti@kirti-Aspire-5733Z:~$

--
Posted via http://www.ruby-forum.com/.

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Little help needed writing models for star-ratings app

Here is the story so far

class Rating(models.Model):
positive_rating = models.FloatField(default=0)
negative_rating = models.FloatField(default=0)

class Book(models.Model):
year_pub = models.IntegerField(max_length=4)
category = models.ForeignKey(Category)
rating = models.ForeignKey(Rating)
hash_id = models.CharField(max_length=64, null=True, blank=True)

There are few books. Each will be having 2 types of rating. +ve one and -ve one, 
The rating is done using "stars". If +ve rating is done, -ve field will be 0 vice versa.

votes could be simple stored in this way

o = Book.objects.get(pk=1)
o.rating.positive_rating += 2.5
o.rating.save()

Here comes the actual trouble -->

1. How to count the number of ratings
2. How to know which user has voted
3. How to know whether the user has previously voted or not

Typically, how to attach this MyUser (example) model to the Rating Model?

Thanks

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Re: [Lovers India]

Wanna play doc. Doc

On Apr 29, 2013 11:42 AM, "tushar ramanandi" <tusharramanandi@gmail.com> wrote:
PL Z SEND MSG

--

Tushar

Ramanandi--

--
--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia
 
---
You received this message because you are subscribed to the Google Groups "Lovers India" group.
To unsubscribe from this group and stop receiving emails from it, send an email to loversindia+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia
 
---
You received this message because you are subscribed to the Google Groups "Lovers India" group.
To unsubscribe from this group and stop receiving emails from it, send an email to loversindia+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Newbie: trying to get an existing project running on a different machine

Hi folks,

I'm a complete newbie to Django and I have to edit a few lines of code in an existing project.

Of course I can't to so on the production machine.

So I'm trying to migrate the existing project onto a new development server. Django is up and running there and I can create sample projects as described in

https://docs.djangoproject.com/en/dev/intro/tutorial01/

. I have transferred the existing project onto the new development server. I can start it there, but when I try to have a look at its index page I get a runtime error:

File "/opt/djangostack-1.4.5-0/apps/django/lib/python2.7/site-packages/django/contrib/admin/sites.py", line 107, in unregister
raise NotRegistered('The model %s is not registered' % model.__name__)
NotRegistered: The model Consumer is not registered

This error happens in admin.py . This file reads:

from django.contrib import admin

import piston.models

admin.site.unregister(piston.models.Consumer)
admin.site.unregister(piston.models.Nonce)
admin.site.unregister(piston.models.Resource)
admin.site.unregister(piston.models.Token)

Now I wonder where the unregistered module might have been registered. I have searched the whole project tree for the string "Consumer" using grep and this string only occurrs in the file I already mentioned.

Any help would be greately appreciated.

Thanks in andvance

Horst


--
Horst Jäger h.jaeger@medienkonzepte.de
Medienkonzepte http://www.medienkonzepte.de/
Schaafenstr. 25, 50676 Köln, Germany
Tel +49 221 93187015 / Fax +49 221 93187029

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.

3akarat.com - ادفع 50 الف جنية وامتلك بالهرم اللبيني شقة 3 غرف +2 حمام +مطبخ+رسبشن

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

3akarat.com - للبيع شقه في ارقي الاماكن في ابو ثلاث

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

Re: is jsPDF required flash player

What you are looking for I think is https://github.com/mozilla/pdf.js
jspdf generetes PDF, not render it. 


On Monday, April 29, 2013 2:40:57 AM UTC-4, Bhumika Thaker wrote:
I want to generate pdf at client side so I want achieve this using jspdf .

when I create sample , it is working fine in chrome but not in Mozilla and ie 10. I have one doubt that is this required flash player to generate pdf?

My system does not having flash player. if it required flash player, it is not usefull me. is there any other way to produce pdf using client script?

Thanks in advance.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

3akarat.com - ادفع قسط فى الشهر 906

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

(GugukluhayaT) Urgent Opening for Liferay Developer with Java Experience for Location : Hartford CT

Hi,

Do quick response at ankitr@eruditionweb.com,


Please review the below job details and let me know if you are available
=====================================================

Position : Life Ray Developer
Location : Hartford CT a
Duration : 4 Months +

Should have:
- Liferay

Nice to have:
- Java Experience
- AJAX / JSON
- JEE / J2EE


Nice to have:
- Lucene
- Portlets
- REST
- Spring


Thanks,
Ankit R
785-783-5571
Erudition Web Tech

--
You received this message because you are subscribed to the Google Groups "Gugukluhayat" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gugukluhayat+unsubscribe@googlegroups.com.
To post to this group, send email to gugukluhayat@googlegroups.com.
Visit this group at http://groups.google.com/group/gugukluhayat?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.

Re: Upload csv with utf-8

I managed to solve the problem like this:
rep.GenreType line = ["IdGenre."] decode ("iso-8859-1")

thank you

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

3akarat.com - للبيع بالقاهره الجديده التجمع الاول دوبلكس 350م البنفسج 11

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

[android-developers] Emulator plus HAXM blocks hibernation

I am developing a tablet app and have installed HAXM release 03 from intel.

When I want to put my PC into hibernate mode (Dell Vostro 1710 - Windows XP Pro SP3), I exit the emulator and eclipse, before going to hibernate mode.

However, the screen goes black and then nothing else occurs, leaving the only choice of turning off via the power button.

Has anyone else had this problem ?
Is there a workaround, fix ?

--
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
---
You received this message because you are subscribed to the Google Groups "Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Re: Upload csv with utf-8

The error I get is this.
I can not enter words with accents

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

The app is not loading in Safari?

When I test the compiled application in Safari (on Windows 7 AND Max OSX) it hangs and only displays a white blank page, and Safari hangs on loading. 
In the developer-tools in Safari, nothing seems to be downloaded under the "Network" tab.

It works in Firefox, Chrome, IE 8, IE 9 without no problem.

Someone had a similar problem or any idea what the problem might be?

I'm using gwt-2.5.1.


--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Re: Upload csv with utf-8

continued without realizing how in my code I can do this ...

The error I get is this
strings in documents must be valid UTF-8

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

[Lovers India] American Vs Indian

American:" ye Kutub Minar kitne din main bana hai ??





Indian:" 1 mahine main..



American:" yeh hamare Country mein to 2 weeks mein ban jati hai..


 
Thoda aage jane k baad phir poocha:" Yeh Lal kila kitne din mein bana hai?



Indian:" Sirf 2 weeks mein


American:" hamare Country mein to 3


days mein ban jati hai...



 

Taj Mahal k paas se guzre toh american ne pucha:" Yeh Taj Mahal kitne din mein bani hai ??


 

Indian:" Pataa nahi Kal shaam tak to Nahin tha....

 

Indian Rocked.. American Shocked 


--
Thanks & Regards
Pramod Patil

--
--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia
 
---
You received this message because you are subscribed to the Google Groups "Lovers India" group.
To unsubscribe from this group and stop receiving emails from it, send an email to loversindia+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

[Rails] ActiveRecord HasAndBelongsToManyAssociationWithPrimaryKeyError

Im trying to upgrade an app from rails 2.3 to rails 3.0

I get the following error in rails 3.0.6 environment

Error message:
Primary key is not allowed in a has_and_belongs_to_many join table
(appointment_label).
(ActiveRecord::HasAndBelongsToManyAssociationWithPrimaryKeyError)

Exception class:
ActiveRecord::HasAndBelongsToManyAssociationWithPrimaryKeyError

seems primary key should be removed from "appointment_label" so I
removed the primary key column and it did worked PERFECT!!

But what I don't get is the app worked fine in rails 2.3 environment
even with primary key in the table "appointment_label" but not in rails
3.0.6 environment ????

--
Posted via http://www.ruby-forum.com/.

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Deployment best practices - reasons?

Hi,

I'm currently looking at tidying up deployment for a Django app we use internally.

There's a couple of things that I know are best-practices, or it's just how I normally deploy Django apps, but I need to come up with strong cases for all of them. As in any organisation, if it ain't broke, don't fix it - so there needs to be a compelling argument from me to put them in place.

For example:

Why use Gunicorn? (versus just Apache)
Gunicorn is lightweight, uses less memory, and is easier to configure. Anything else?

Why use Apache/Nginx in front of Gunicorn? (versus just hitting Gunicorn on it's own)
Gunicorn isn't designed to be front-facing - so for example, it doesn't handle slow clients well. Ideally you'd want something like Nginx or Apache to buffer requests. Anything else?

Why use Supervisord (versus just init.d scripts with say ./manage.py run_gunicorn in there)?
Supervisord will restart crashed processes. Anything else?

Why use Sentry?
Allows easier viewing of errors. Anything else?

Cheers,
Victor

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

[android-developers] Spinner borders

Hi,
 
I need to create a small spinner in height.
 
So I created a spinner with 58pixels height, but it has big borders on top and bottom, so it cuts most of the text.
It has a top border of 25 pixels and a bottom border of 19 pixels.
So from the total 58 pixels, only 14 are used to show the text.
 
How can I change this? How can I decrease the top and bottom borders or increase the text area?
I have tryed to change the background drawable with 9 patch png, but it does not affect the area used for the text.
I need to do it programatically.
 
 
Thanks
Filipe Madureira

--
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
---
You received this message because you are subscribed to the Google Groups "Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

[Rails] Re: Re: Re: need help to install Nokogiri

Colin Law wrote in post #1107190:
> On 29 April 2013 08:26, Love U Ruby <lists@ruby-forum.com> wrote:
>> Thanks for your reply! I am new to Ubuntu. I am basically worked on
>> windows,where only "gem install nokogiri" worked. But in Linux things
>> are little bit fancy.
>>
>> Thus I need a step by step installation help. Could you? I also gave the
>> link in the first post from where I downloaded the Ruby just as FYI.
>
> Are you running Rails? If so which version?
>
> Colin

I am using Rail 4.0. as the first post link is for Ruby2.0 and Rail 4.0
installation.

--
Posted via http://www.ruby-forum.com/.

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Re: [Lovers India] Did u like it ?

Hello

On Apr 29, 2013 1:25 PM, "lucky" <luckye10@gmail.com> wrote:

Hiiii

On 29 Apr 2013 11:42, "S G" <msourabh.goyal@gmail.com> wrote:
Hey Guys,

Today is the wonderful day, i wish you would enjoy it.

Ye thi meri ek acchi bat for today, what yours?

Lets Try hmm!!


Sourabh Goyal


--
--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia
 
---
You received this message because you are subscribed to the Google Groups "Lovers India" group.
To unsubscribe from this group and stop receiving emails from it, send an email to loversindia+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia
 
---
You received this message because you are subscribed to the Google Groups "Lovers India" group.
To unsubscribe from this group and stop receiving emails from it, send an email to loversindia+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia
 
---
You received this message because you are subscribed to the Google Groups "Lovers India" group.
To unsubscribe from this group and stop receiving emails from it, send an email to loversindia+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Re: [Lovers India] Did u like it ?

Hey Hi, How are you doing?


On Mon, Apr 29, 2013 at 1:25 PM, lucky <luckye10@gmail.com> wrote:

Hiiii

On 29 Apr 2013 11:42, "S G" <msourabh.goyal@gmail.com> wrote:
Hey Guys,

Today is the wonderful day, i wish you would enjoy it.

Ye thi meri ek acchi bat for today, what yours?

Lets Try hmm!!


Sourabh Goyal


--
--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia
 
---
You received this message because you are subscribed to the Google Groups "Lovers India" group.
To unsubscribe from this group and stop receiving emails from it, send an email to loversindia+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia
 
---
You received this message because you are subscribed to the Google Groups "Lovers India" group.
To unsubscribe from this group and stop receiving emails from it, send an email to loversindia+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia
 
---
You received this message because you are subscribed to the Google Groups "Lovers India" group.
To unsubscribe from this group and stop receiving emails from it, send an email to loversindia+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Re: [Rails] Re: Re: need help to install Nokogiri

On 29 April 2013 08:26, Love U Ruby <lists@ruby-forum.com> wrote:
> Colin Law wrote in post #1107182:
>> On 29 April 2013 05:47, Love U Ruby <lists@ruby-forum.com> wrote:
>>> using RVM. So if I do `sudo` to install nokogiri then will it work?
>> If using rvm you must /not/ use sudo when installing gems. However
>> you should not need to install it manually, just put it in Gemfile for
>> the application and bundle install will automatically install it. You
>> do need sudo for installing the libxml stuff of course.
>
>> Colin
>
> Thanks for your reply! I am new to Ubuntu. I am basically worked on
> windows,where only "gem install nokogiri" worked. But in Linux things
> are little bit fancy.
>
> Thus I need a step by step installation help. Could you? I also gave the
> link in the first post from where I downloaded the Ruby just as FYI.

Are you running Rails? If so which version?

Colin

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Re: [Rails] Re: required field for one, optional for another

On 29 April 2013 01:03, Soichi Ishida <lists@ruby-forum.com> wrote:
>> Are you talking about making the display change automatically
>> immediately the user selects which sort of user he is?
>
> Not really.
> I was thinking that when users sign up, they are either one type or the
> other. So, the required fields need to be set accordingly. User model
> validations hopefully filter upon submitting.
>
>
>> If I recall correctly, some of the standard validation helpers will
>> take an "if" parameter, such that if the parameter evaluates to false,
>
> Seems great. I will search for it.

Have a look at the Rails Guide on ActiveRecord Validations and
Callbacks. Also check out the other guides.

Colin

>
> soichi
>
> --
> Posted via http://www.ruby-forum.com/.
>
> --
> 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+unsubscribe@googlegroups.com.
> To post to this group, send email to rubyonrails-talk@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Sunday, April 28, 2013

Re: Popen works on system but fails on Django

Am 28.04.2013 um 21:47 schrieb gtpeel@gmail.com:

> OSX 10.7.5, System Python 2.7.1, Django 1.5.1
>
> In system Python shell:
>
> from subprocess import Popen Popen("open /Library/Application\ Support/blender.app", shell=True)
>
> will open blender.
>
> Django views.py Popen("open /Library/Application\ Support/blender.app",
> shell=True) will open blender, quit unexpectedly and report fatal python
> error.
>
> I think that Django/Python 2.7 is conflicting with blender's Python 3.2.
You need different Python environments:
https://pypi.python.org/pypi/virtualenv/1.9.1
Axel
---
PGP-Key:29E99DD6 ☀ +49 151 2300 9283 ☀ computing @ chaos claudius

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.

is jsPDF required flash player

I want to generate pdf at client side so I want achieve this using jspdf .

when I create sample , it is working fine in chrome but not in Mozilla and ie 10. I have one doubt that is this required flash player to generate pdf?

My system does not having flash player. if it required flash player, it is not usefull me. is there any other way to produce pdf using client script?

Thanks in advance.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


Real Estate