3akarat.com - فرصة لن تتكرر بأهم مناطق حلمية الزيتون
إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .
عقارات دوت كوم
----------------------------------------------------------------------------------------
إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .
عقارات دوت كوم
----------------------------------------------------------------------------------------
Thanks, Ian, I did miss that. Bookmarked for future reference.
On Fri, Aug 31, 2012 at 10:03 PM, Jon Blake <jc.b...@gmail.com> wrote:--
> Querying column timestamp of view user_objects for tables, sequences and
> triggers appears to confirm my understanding of what base.py does. I'll drop
> and recreate my user account, and try again. I'll advise how this goes. Does
> the Django doco have any specific documentation for the Oracle back end? If
> so, I missed it! I'm happy to provide specific doco for the Oracle back end
> if that would assist...
Yes, please see:
https://docs.djangoproject.com/en/1.4/ref/databases/# oracle-notes
Hi all i am following this like for basic paypal http://railscasts.com/episodes/141-paypal-basics
undefined method `paypal_url' for nil:NilClass
despite i have this code in my model called Card
Cart Model:
class Cart < ActiveRecord::Base
def paypal_url(return_url)
values = {
:business => '',
:cmd => '_cart',
:upload => 1,
:return => return_url,
:invoice => id
}
line_items.each_with_index do |item, index|
values.merge!({
"amount_#{index+1}" => 500,
"item_name_#{index+1}" => car,
"item_number_#{index+1}" => 5,
"quantity_#{index+1}" => 1
})
end
"https://www.sandbox.paypal.com/cgi-bin/webscr?" + values.to_query
end
end
it is unable to identify it
what is the problem
Cheers
On Fri, Aug 31, 2012 at 9:17 PM, Micky Hulse <rgmicky@gmail.com> wrote:
On Fri, Aug 31, 2012 at 10:03 PM, Jon Blake <jc.blake3@gmail.com> wrote:
Hello,
On 31-8-2012 11:16, armagan wrote:
Hai!
DelayedJob just creates anotar thread and a send the email or execute the method on parallel without stop the ruby thread! You can set a delay to call the method but it does not works as you throught!
Hello People,
I thought I'd post back with my solution. I seem to magically figure it out 2 minutes after posting, but never before hand haha.
Hello,When trying to do a DISTINCT find with only 1 field being returned everything works fine. But if I want more than just that 1 field of data returned it's no longer distinct. How can I do this?$DistinctIp = $this->Log->find('all', array('conditions'=>array('last_usage_human >'=>date('Y-m-d H:i:s', strtotime('-15 minutes'))),'fields'=>array('DISTINCT Log.ip', 'Log.user_agent', 'Log.ip_name', 'Log.last_usage_human'),'limit'=>333));This does not work, it's returning everything, it's no longer DISTINCT.Here you can see I want only rows with the DISTINCT ip field to be returned. But I want the data that's returned from more than just that field such as the: ip_name, last_usage_human fields as well. But when I do this it returns everything and doesn't constrain it to the DISTINCT.Thanks,Andrew
إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .
عقارات دوت كوم
----------------------------------------------------------------------------------------
Hello,
The missing plugin page is updated now.
--This is live at: https://dl-ssl.google.com/gwt/plugins/firefox/gwt-dev- plugin.xpi I still need to update the missing plugin page.
On Thursday, August 30, 2012 5:20:37 PM UTC-7, Brian Slesinsky wrote:Thanks everyone. Our release process is surprisingly cumbersome, but it should be up soon.- Brian
Hello gang, I would like to have some of my django views send the
Hi Bob, thnx 4 the reply.
--I don't think there is such a sample. Are you talking about HoneycombGallery?
On Thursday, August 30, 2012 6:49:53 PM UTC-5, David Brown wrote:Hi Droid devs all,
- Currently, I am studying the SDK 4.1 sample called: HoneyComb.
- Previously, this app was working but now I'm getting an odd exception logged in DDMS.
- I think I need to undeploy the old app completely before I see any useful changes.
- Howto undeploy an Android app?
- Particulars follow:
- OS: ubuntu 12.04
- Android SDK: 4.1
- IDE: Intellij
- Emulator: NexusAndroid
Please advise, David.
I'm having problems using get_or_create with a ManyToManyField and I'm--
not sure whether the problem is me or Django.
I have two models:
class Tag(models.Model):
name = models.CharField(max_length=256, unique=True)
class Thing(models.Model):
name = models.CharField(max_length=256)
tags = models.ManyToManyField(Tag)
When I try to add a tag that already exists, as:
a = Thing(name='a')
a.save()
a.tags.get_or_create(name='foo')
I get sqlite3.IntegrityError: column name is not unique.
But when I do it like so:
a = Thing(name='a')
a.save()
foo, created = Tag.objects.get_or_create(name='foo')
a.tags.add(foo)
I have no problems.
I noticed that http://code.djangoproject.com/ticket/3121 seemed to
address something like this, so I pulled the latest Django (8834), but
the problems remains.
Am I doing it wrong?
إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .
عقارات دوت كوم
----------------------------------------------------------------------------------------
إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .
عقارات دوت كوم
----------------------------------------------------------------------------------------
إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .
عقارات دوت كوم
----------------------------------------------------------------------------------------
Hello people!
On Aug 31, 2012, at 4:10 PM, 7stud -- wrote:
Thanks for the response. Here is my routes.rb:
إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .
عقارات دوت كوم
----------------------------------------------------------------------------------------
On Fri, Aug 31, 2012 at 2:23 PM, TreKing <trekingapp@gmail.com> wrote:
I think you're asking:
Hi,
I'm trying to use Gallery and Calender (Inbuilt applications) in my android application. It seems to be working fine on all android devices except Motorola droidRazr 4.0.4 and Nexus.
Could anybody help me what is an issue with above devices 4.0.4
Thank you in advance.
Thanks everyone. Our release process is surprisingly cumbersome, but it should be up soon.--- Brian
إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .
عقارات دوت كوم
----------------------------------------------------------------------------------------
I'd like to see some of your management commands' code.
http://bit.ly/NGTPIn
On Fri, Aug 31, 2012 at 3:44 PM, Alexandre Vasconcelos
Awesome. I was fearing I'd have to roll my own like I did for ExtJs. Great work.
Jonas,
https://developers.google.com/android/c2dm/
إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .
عقارات دوت كوم
----------------------------------------------------------------------------------------
can we write multiple background in one feature file....?
GCM replaces C2DM and uses Google broader API control mechanisms.
Hmmm.... I don't really see anything wrong with your code. What version of Android are you testing this on? Did you test it on multiple versions?
just in case you are unaware in core.php
I'm using the GWT Maps V3 Api from https://github.com/branflake2267/GWT-Maps-V3-Api
When a user place his mouse or click on any image thumbnails, I want
thanks kurtis
no jayakumar by program on cliking of one gui button zoomin i have to do the zooming /scaling without default zoomin/out
Hi,
Please help me in generating site maps for app. which is in django.
Hi All,
im japanese programer.
Here is a link to the app: https://play.google.com/store/apps/details?id=com.terboel.sarf
I just received an email from the Google Play Team, starting as follows:--
"This is a notification that your application, Secret Audio Recording Free, with package ID com.xxxx.sarf, is currently in violation of our developer terms.
REASON FOR WARNING: Violation of the spam provisions of the Content Policy.Your application will be removed if you do not make modifications to your application's description to bring it into compliance within 7 days"
- Do not post repetitive content.
- Product descriptions should not be misleading or loaded with keywords in an attempt to manipulate ranking or relevancy in the store's search results.
I would like to change the product description as fast as possible, but I DO NOT KNOW WHAT TO CHANGE!
It would make it simpler if Google could have been more explisit, or that some examples of such violations could have been listed somewhere, but I cannot find any.
I guess that many other developers have the same problem understanding this.
The app in question is "Secret Audio Recording Free", by terboel.
I shall appreciate all good advice.
Regards Terry
its urgent please send me your solutions fast,thanks
i am working with HTML webpages in web-view android so here i want to zoom the page on click of zoom button(i.e zoom level 30%,100%,200% ,300% etc) but i am not finding any function to zoom the page in webview upon the value i am passing like 30 for 30% etc.
I'm using Chrome Canary build (Version 23.0.1251.1 canary). When I try to load a dev mode plugin chrome fails to load it. I keep getting message "Could not load GWT dev mode plugin" and in the console I get following errors
--I'm using following code to print Hindi charactors in textview.
final Typeface customF = Typeface.createFromAsset(this.
getAssets(), "Akshar.ttf");final TextView textV=new TextView(this);
textV.setTextSize(20);
textV.setTypeface(customF);
textV.setText("श्रीगुरु चरण सरोज रज, निज मनु मुकुर सुधारि");
setContentView(textV);
But when I run application on emulator text is coming like
Can anyone please tell me what I'm doing wrong?
Are you sure it's worth the effort to bother with a PPC Mac?
Forgot to add
Hi,
hii
+1 looks great
Very useful. Great widget.--
On Tuesday, August 28, 2012 10:34:09 PM UTC+2, Julien Dramaix wrote:Dear community,
I just released the first version of GwtChosen. GwtChosen is the
entire rewritte in Google Web Toolkit of the Chosen component
(http://harvesthq.github.com/chosen/ ) making this nice component
available for all GWT developers.
It is available as a +GwtQuery plugin or as a widget.
Check the example and doc : http://jdramaix.github.com/gwtchosen/
Julien
ok figured it out now..
agree John, For a rough geographical search eg within 20k's, even down here in NZ where we have a big difference between a degree of lat and one of long, this seems to be the fastest search ( in sql)
If you want a really simple solution and don't mind a "rectangular"
search radius instead of a round one. Just make sure lat,lng are
indexed and write the query like:SELECT fish_name WHERE lat > $low_lat AND lat < $high_lat AND lng >
$low_lng AND lng < $high_lngThis query is fast because it can use the index. If you do a distance
computation in SQL, you have to do it on every row.A lazy way to compute the $low_lat,$high_lat, etc. is to just assume 1
degree ~= 40,000/360 km.-John Campbell
Hi,
إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .
عقارات دوت كوم
----------------------------------------------------------------------------------------
Sorry, check this image to see if it helps.
Dear All,
No, you need to run the find on Attendance because your condition is
Hmm does not seem to work. This is now what I am working on.
[86] => Array (
[User] => Array ( [id] => 960 [group_id] => 2 [last_name] => Camier [school_id] => 1 ) [Attendance] => Array ( ) ) [87] => Array ( [User] => Array ( [id] => 961 [group_id] => 2 [last_name] => Miccio [school_id] => 1 ) [Attendance] => Array ( ) )
My app allows people to use and manage their data regardless they're logged in. Though, as I uniquely identify each device, I want to sync data from my anonymous users (not logged ones) as well. So, I was wondering if it is a good practice to create an anonymous account in this case, since SyncAdapters only work with accounts.
Should I create an account for my anonymous users or should I sync their data with threads/AsyncTasks/Loaders? In particular, is there any way to make ContentResolver.requestSync() work without the need of an account?
--I have several GXT SimpleComboBoxes to which I've added a ValueChangeHandler.
combo1.addValueChangeHandler( new ValueChangeHandler<String>() { @Override public void onValueChange( ValueChangeEvent<String> event ) { ... } });