PostId
int64
13
11.8M
PostCreationDate
stringlengths
19
19
OwnerUserId
int64
3
1.57M
OwnerCreationDate
stringlengths
10
19
ReputationAtPostCreation
int64
-33
210k
OwnerUndeletedAnswerCountAtPostTime
int64
0
5.77k
Title
stringlengths
10
250
BodyMarkdown
stringlengths
12
30k
Tag1
stringlengths
1
25
Tag2
stringlengths
1
25
Tag3
stringlengths
1
25
Tag4
stringlengths
1
25
Tag5
stringlengths
1
25
PostClosedDate
stringlengths
19
19
OpenStatus
stringclasses
5 values
unified_texts
stringlengths
47
30.1k
OpenStatus_id
int64
0
4
11,315,966
07/03/2012 17:20:21
1,499,494
07/03/2012 17:14:51
1
0
Getting started and having trouble with Eclipse
I decided to try to my hand at this, and have had a somewhat frustrating day. I've been downloading and installing all the developement software, but Eclipse has given me lots of trouble. I've figured most of it out, but have another problem. For some reason the Google APIs are not installing. (see screen shot) ...
android
eclipse
api
null
null
null
open
Getting started and having trouble with Eclipse === I decided to try to my hand at this, and have had a somewhat frustrating day. I've been downloading and installing all the developement software, but Eclipse has given me lots of trouble. I've figured most of it out, but have another problem. For some reason the G...
0
10,730,985
05/24/2012 04:04:32
451,959
09/19/2010 14:03:25
154
4
Why Default Value with Remote do not validate while using jQuery Validate Plugin?
I am using this jQuery validate plugin http://bassistance.de/jquery-plugins/jquery-plugin-validation/ I am having just 3 fields in a form as contact_person, email and invitation_code All are textboxes and all has validations as below Code. But when I submit the Page, it do not validate or don't even show any er...
javascript
jquery
validation
jquery-ajax
null
null
open
Why Default Value with Remote do not validate while using jQuery Validate Plugin? === I am using this jQuery validate plugin http://bassistance.de/jquery-plugins/jquery-plugin-validation/ I am having just 3 fields in a form as contact_person, email and invitation_code All are textboxes and all has validations a...
0
8,477,985
12/12/2011 17:05:50
1,094,190
12/12/2011 16:59:24
1
0
no matter whatever I do , my apache and mysql services are not stopping , what might be the prblm?
I provided the link of screenshot of the image so that you can see the error message ... http://i.imgur.com/A3zGY.png please don't say me that to restart the xampp , for getting what I need ... I exactly need the reason(answer) why the error is being desplayed ...
mysql
apache
xampp
null
null
12/12/2011 17:20:29
off topic
no matter whatever I do , my apache and mysql services are not stopping , what might be the prblm? === I provided the link of screenshot of the image so that you can see the error message ... http://i.imgur.com/A3zGY.png please don't say me that to restart the xampp , for getting what I need ... I exactly nee...
2
2,683,124
04/21/2010 13:10:22
176,436
09/21/2009 07:28:11
210
7
How can I retain the data stored in plist from UITextField when application is restarted ?
I am using the plist to store the data entered in the UITextFields. But, when I restart my application all the data entered previously was deleted. How can I retain the data in the Plist. I have a UITableView and when a cell is touched a view appears with two UITextFields. nameField and descriptionField. I stored the d...
cocoa-touch
iphone
uitableview
uitextfield
null
null
open
How can I retain the data stored in plist from UITextField when application is restarted ? === I am using the plist to store the data entered in the UITextFields. But, when I restart my application all the data entered previously was deleted. How can I retain the data in the Plist. I have a UITableView and when a cel...
0
3,847,905
10/02/2010 23:23:03
456,065
09/23/2010 10:44:35
59
0
Static members and tamplates in c++
Given the code: #include <iostream> using namespace std; template <typename T> T my_max (const T &t1, const T &t2) { static int counter = 0; counter++; cout << counter << " "; return ((t1 > t2) ? t1 : t2); } int main() { my_max (2,3); my_max ...
c++
generics
static
null
null
null
open
Static members and tamplates in c++ === Given the code: #include <iostream> using namespace std; template <typename T> T my_max (const T &t1, const T &t2) { static int counter = 0; counter++; cout << counter << " "; return ((t1 > t2) ? t1 : t2); } int main()...
0
6,721,318
07/17/2011 01:15:22
848,284
07/17/2011 01:15:22
1
0
Can I map a String to a method in java?
I'm writing an expression evaluator in Java. I would like the ability to add more operators (I currently have only (, ), +, -, *, /, and ^). Currently, my code looks like this: <code> `case '+': return a+b; case '-': return a-b; case '*': return a*b; ...` </code> This works for my code because...
java
string
methods
map
null
null
open
Can I map a String to a method in java? === I'm writing an expression evaluator in Java. I would like the ability to add more operators (I currently have only (, ), +, -, *, /, and ^). Currently, my code looks like this: <code> `case '+': return a+b; case '-': return a-b; case '*': return a*b; .....
0
6,069,992
05/20/2011 09:30:58
762,469
05/20/2011 09:30:58
1
0
Issues with Debugging or Running Projects
i am newbie. When I download a project source files and after I do a build most of the cases I am not able to run or debug the applications since I encounter different Exceptions. I think it has to do with my knowledge of configuring a first time debug. For example I never had the chance to download a project from co...
c#
.net
vb.net
visual-studio-2010
null
05/21/2011 22:44:29
not a real question
Issues with Debugging or Running Projects === i am newbie. When I download a project source files and after I do a build most of the cases I am not able to run or debug the applications since I encounter different Exceptions. I think it has to do with my knowledge of configuring a first time debug. For example I nev...
1
11,431,295
07/11/2012 11:05:13
981,991
10/06/2011 10:21:59
26
3
Regex to match string not ending with pattern
I try to find a regex that matches the string only if the string does not end with at least three '0' or more. Intuitively, I tried: .*[^0]{3,}$ But this does not match when there one or two zeroes at the end of the string.
regex
regex-negation
null
null
null
null
open
Regex to match string not ending with pattern === I try to find a regex that matches the string only if the string does not end with at least three '0' or more. Intuitively, I tried: .*[^0]{3,}$ But this does not match when there one or two zeroes at the end of the string.
0
1,093,919
07/07/2009 18:16:25
30,099
10/21/2008 20:03:54
432
14
What is the most hated error you have encounter when developing for the iPhone?
Ever language has their famous and painfull errors. I will be fun to learn which errors earn this reputation when developing for the iPhone. Please list yours!
iphone
objective-c
null
null
null
07/08/2009 07:33:15
not a real question
What is the most hated error you have encounter when developing for the iPhone? === Ever language has their famous and painfull errors. I will be fun to learn which errors earn this reputation when developing for the iPhone. Please list yours!
1
1,107,282
07/10/2009 01:29:50
62,163
02/03/2009 22:21:44
507
20
Is it better to ask questions about Facebook Connect on stackoverflow, or the Facebook developer forum?
The FB developer forum seems to be the right place to ask questions about FB Connect, but I almost never get any kind of response, much less a good one. Do people get more help with FB Connect here on stackoverflow?
facebook-connect
null
null
null
null
07/10/2009 02:01:18
off topic
Is it better to ask questions about Facebook Connect on stackoverflow, or the Facebook developer forum? === The FB developer forum seems to be the right place to ask questions about FB Connect, but I almost never get any kind of response, much less a good one. Do people get more help with FB Connect here on stackoverf...
2
1,806,538
11/27/2009 02:45:29
219,449
11/26/2009 14:11:41
23
0
Zend Framework - pass variable to every controller
I'm working on multi-tenant application in Zend Framework which gets it's tenantID from the subdomain name (mod_rewrite -> index.php -> matches it against the database). My question is - how do I set this variable (tenant id) to be available for every Controller? Leonti
zend-framework
php
multi-tenant
null
null
null
open
Zend Framework - pass variable to every controller === I'm working on multi-tenant application in Zend Framework which gets it's tenantID from the subdomain name (mod_rewrite -> index.php -> matches it against the database). My question is - how do I set this variable (tenant id) to be available for every Controlle...
0
9,616,920
03/08/2012 11:26:29
758,976
05/18/2011 10:17:08
6
0
How to write click event for dynamically generated li using jquery and html?
This is my html content... I have a div and an ul inside it.In that ul's li,i have dynamically added li <div class="menuItem"> <ul id="categoryListElement"> <li><a href="VideoLanding.html" id="allNewsLI" class="select">All News</a></li> </ul> </div> ...
jquery
html
null
null
null
03/08/2012 17:42:14
not a real question
How to write click event for dynamically generated li using jquery and html? === This is my html content... I have a div and an ul inside it.In that ul's li,i have dynamically added li <div class="menuItem"> <ul id="categoryListElement"> <li><a href="VideoLanding.html" id="allNe...
1
4,268,084
11/24/2010 14:52:21
469,319
10/07/2010 16:00:22
73
1
Looking for a complete reference to tokens in C sscanf format strings.
Googling "sscanf reference" or various other sscanf search terms brings up plenty of available references regarding the C sscanf function. Many of these references contain explanations of the available tokens that can be used in format string. I'm looking through another developers code (who no longer works with ou...
c
sscanf
null
null
null
null
open
Looking for a complete reference to tokens in C sscanf format strings. === Googling "sscanf reference" or various other sscanf search terms brings up plenty of available references regarding the C sscanf function. Many of these references contain explanations of the available tokens that can be used in format string....
0
4,290,679
11/27/2010 08:06:36
11,465
09/16/2008 08:14:12
5,544
165
Why high IO rate operations slow everything on linux ?
This may be slightly OT, but I was wondering why having a process which heavily uses IO (say cp big file from one location to the other on the same disk) slows everything down, even processes which are mostly CPU bound. I noticed that on both OS I heavily use (mac os x and linux). In particular, I wonder why multi-c...
linux
multicore
null
null
null
11/29/2010 01:14:48
off topic
Why high IO rate operations slow everything on linux ? === This may be slightly OT, but I was wondering why having a process which heavily uses IO (say cp big file from one location to the other on the same disk) slows everything down, even processes which are mostly CPU bound. I noticed that on both OS I heavily use ...
2
4,940,456
02/09/2011 01:22:38
318,928
04/16/2010 22:18:28
159
5
Objective-C Fast Enumeration Bubble Sort
Hey internetz. I'm trying to integrate some GCD into my code, and have found that a severe bottleneck is a bubble comparison I am performing between objects in a large array. Here is the original code: NSUInteger count = [arrayToDoWorkOn count]; for (int i = 0; i < count; i++) { for (int j = i + 1...
objective-c
grand-central-dispatch
objective-c-blocks
fast-enumeration
null
null
open
Objective-C Fast Enumeration Bubble Sort === Hey internetz. I'm trying to integrate some GCD into my code, and have found that a severe bottleneck is a bubble comparison I am performing between objects in a large array. Here is the original code: NSUInteger count = [arrayToDoWorkOn count]; for (int i = 0...
0
7,521,663
09/22/2011 21:21:17
239,279
12/27/2009 20:03:55
343
3
jQuery - dynamically using '.filter' on newly added DOM objects
I'm using the jQuery template engine to add dynamic DOM elements (specifically DIVs). To control them I use the 'live' method (for 'click' events for example). At some point I need to find some newly created elements using the 'filter' method. It seems that it won't find the newly created elements. Any ideas why?...
javascript
jquery
jquery-templates
null
null
null
open
jQuery - dynamically using '.filter' on newly added DOM objects === I'm using the jQuery template engine to add dynamic DOM elements (specifically DIVs). To control them I use the 'live' method (for 'click' events for example). At some point I need to find some newly created elements using the 'filter' method. It s...
0
11,044,439
06/15/2012 04:06:41
1,201,289
02/10/2012 05:02:38
51
5
Android fmod not working properly on android 2.1
My game engine using fmod library for sound functions. after testing the project on different android phone, i found that fmod is working correctly for android 2.2 and above but not on android 2.1. I observed that example project's manifest file mention minimum sdk version 8 (android 2.2). My client want game to able ...
android
fmod
null
null
null
null
open
Android fmod not working properly on android 2.1 === My game engine using fmod library for sound functions. after testing the project on different android phone, i found that fmod is working correctly for android 2.2 and above but not on android 2.1. I observed that example project's manifest file mention minimum sdk...
0
10,950,385
06/08/2012 14:04:57
1,403,380
05/18/2012 12:45:30
7
0
Where do i find the wich the classe uses? i cant find it when i decompile it
I am wondering if you can get the url for a class file. But I have no idea where I am suppose to find it. The only thing it tells the URLConnection is this. // Decompiling method: loadMod Signature: (Ljava/lang/String;)Llitecom/modplayer/Mod; // Max stack: 4, #locals: 7, #params: 2 ...
java
javascript
eclipse
class
url
06/08/2012 14:14:14
too localized
Where do i find the wich the classe uses? i cant find it when i decompile it === I am wondering if you can get the url for a class file. But I have no idea where I am suppose to find it. The only thing it tells the URLConnection is this. // Decompiling method: loadMod Signature: (Ljava/lang/String;)Ll...
3
3,088,286
06/21/2010 20:29:59
30,154
10/21/2008 22:15:36
108
8
Moving the Emacs point to beginning of specific text for Perforce commit messages
How do you move the point in Elisp to the beginning of `<enter description here>` and kill that text. I'd like to place this in my ~/.emacs-p4, which is used via P4EDITOR, $ echo $P4EDITOR emacs -nw --no-init-file --no-splash --load ~/.emacs-p4 The template use for `p4 submit` is: # A Perforce Cha...
emacs
perforce
null
null
null
null
open
Moving the Emacs point to beginning of specific text for Perforce commit messages === How do you move the point in Elisp to the beginning of `<enter description here>` and kill that text. I'd like to place this in my ~/.emacs-p4, which is used via P4EDITOR, $ echo $P4EDITOR emacs -nw --no-init-file --no-sp...
0
89,101
09/18/2008 01:07:39
17,053
09/18/2008 01:04:32
1
0
Microsoft Sharepoint
I hear the name Microsoft Sharepoint being thrown around a lot yet I am still not sure what its for and why I hear a lot of big companies use it. In short, the questions are, what is sharepoint and why is it popular?
sharepoint
null
null
null
null
04/13/2012 14:04:24
not constructive
Microsoft Sharepoint === I hear the name Microsoft Sharepoint being thrown around a lot yet I am still not sure what its for and why I hear a lot of big companies use it. In short, the questions are, what is sharepoint and why is it popular?
4
11,622,226
07/23/2012 23:54:07
1,547,163
07/23/2012 23:38:21
1
0
how the url.openconnection() method use a socket
the following code downloade a file from the specified url by crating connection through url.openconnection() method it create a socket to establish a communication link. i want to know that how the url.openconnection() use a socket... and how it will crate a connection by using the socket i have created(socket cr...
sockets
null
null
null
null
07/24/2012 13:12:03
not a real question
how the url.openconnection() method use a socket === the following code downloade a file from the specified url by crating connection through url.openconnection() method it create a socket to establish a communication link. i want to know that how the url.openconnection() use a socket... and how it will crate a c...
1
7,622,992
10/01/2011 21:08:04
210,780
11/13/2009 22:30:25
637
34
Java Equivalent to C#'s Delegates/Events: Changing Event Invoked Code Dynamically
I have a simple `Screen` class in C# that has a bunch of events (with corresponding delegates) like the `FadeOutEvent`. I want to port my library to Java, and I find that the mechanism for events/delegates is really cludgey. Specifically, I cannot easily write code like: if (someVar == someVal) { this....
c#
java
event-handling
null
null
null
open
Java Equivalent to C#'s Delegates/Events: Changing Event Invoked Code Dynamically === I have a simple `Screen` class in C# that has a bunch of events (with corresponding delegates) like the `FadeOutEvent`. I want to port my library to Java, and I find that the mechanism for events/delegates is really cludgey. Speci...
0
7,801,558
10/18/2011 01:40:15
967,484
09/27/2011 16:09:09
152
2
xCode 4.2 core data how to create a fetched property using GUI in the data model editor?
I'm very new to the core data programming. I understand that the entities are tables, and I'd like to do the following: One table, "Record" has an attribute "recordID" in another table ("Event") I have a series of events associated with this record, they all also have an attribute "recordID". There's a one entry in ...
core-data
ios5
nspredicate
xcode4.2
fetched-property
null
open
xCode 4.2 core data how to create a fetched property using GUI in the data model editor? === I'm very new to the core data programming. I understand that the entities are tables, and I'd like to do the following: One table, "Record" has an attribute "recordID" in another table ("Event") I have a series of events as...
0
3,711,460
09/14/2010 17:40:29
367,227
06/15/2010 12:14:07
49
6
Compile 32 bit from Win7 64 bit
I would know if is possible compile a java desktop application in 32bit application from Windows 7 64bit using Netbeans. Thx you for HELP.
java
netbeans
compilation
x86-64
windows-7-x64
null
open
Compile 32 bit from Win7 64 bit === I would know if is possible compile a java desktop application in 32bit application from Windows 7 64bit using Netbeans. Thx you for HELP.
0
11,738,181
07/31/2012 10:34:56
756,566
05/17/2011 00:45:58
1,069
18
Trying to manipulate data, assign a list to the first item in a higher list, second item will be information about that list
Ok, I'm trying to transmit a list of values, alongside information regarding that list of values. I am trying to do that while manipulating the data. Let me show you what's going on: worddictlist2 = [] for innertweet in namelist: worddictlist = [] for tweet in innertweet[0]: ...
python
list
nesting
dictionaries
null
null
open
Trying to manipulate data, assign a list to the first item in a higher list, second item will be information about that list === Ok, I'm trying to transmit a list of values, alongside information regarding that list of values. I am trying to do that while manipulating the data. Let me show you what's going on: ...
0
8,930,317
01/19/2012 17:14:19
1,149,555
01/14/2012 17:42:30
9
0
SSL Client Server Communcation
When we use SSL(Secured Socket Level) Server has private key whereas client has public key. In such cases client encrypt data and server decrypt it to get actual details, but how it will work if server is sending some critical financial details to client. In this situation as client has only public key so whether it ...
http
ssl
https
null
null
05/04/2012 13:27:06
not a real question
SSL Client Server Communcation === When we use SSL(Secured Socket Level) Server has private key whereas client has public key. In such cases client encrypt data and server decrypt it to get actual details, but how it will work if server is sending some critical financial details to client. In this situation as clien...
1
9,648,378
03/10/2012 17:07:06
1,112,885
12/23/2011 05:43:03
6
0
Firefox extension to change webpage content
I'd like to write a firefox extension that would allow me for changing specific content on a web page. This would need to happen after the web page loaded. So assume i've got the dom id of the element. I'd like to change the element e.g. make it fade or add a text. Can anybody tell me if it's possible?
javascript
jquery
firefox
extension
null
03/12/2012 14:42:02
not a real question
Firefox extension to change webpage content === I'd like to write a firefox extension that would allow me for changing specific content on a web page. This would need to happen after the web page loaded. So assume i've got the dom id of the element. I'd like to change the element e.g. make it fade or add a text. Can a...
1
9,744,909
03/16/2012 21:46:38
581,112
01/19/2011 08:15:32
160
8
While loop generating printf twice before asking for input?
For some reason this while loop executes twice and the strings are printed twice before it prompts for input. I had assumed it was that the input buffer had a character in it, but it does not to my knowledge. Any advice? while (count >= 0 && stop != 83 && isClosed == 0) { printf("Percentage of Door C...
c
while-loops
execution
null
null
null
open
While loop generating printf twice before asking for input? === For some reason this while loop executes twice and the strings are printed twice before it prompts for input. I had assumed it was that the input buffer had a character in it, but it does not to my knowledge. Any advice? while (count >= 0 && stop...
0
9,953,986
03/31/2012 07:35:08
527,516
12/02/2010 04:50:00
873
58
No Silverlight project specified for Silverlight output
What does this error mean? "No Silverlight project specified for Silverlight output"
silverlight
null
null
null
null
null
open
No Silverlight project specified for Silverlight output === What does this error mean? "No Silverlight project specified for Silverlight output"
0
11,570,274
07/19/2012 22:30:30
1,527,705
07/16/2012 01:35:51
3
0
Dynamic Search Parameters Based On Dropdown Selection
I have a form like so: <form name="search" class="form-search" method="get" action="http://www.bernhardt.com/search.php?"> <div> <input name="search" type="text" class="search-query input-large" onkeypress="return submitenter(this,event)"> <select> <option>Option1</option> <option...
javascript
html
search
null
null
null
open
Dynamic Search Parameters Based On Dropdown Selection === I have a form like so: <form name="search" class="form-search" method="get" action="http://www.bernhardt.com/search.php?"> <div> <input name="search" type="text" class="search-query input-large" onkeypress="return submitenter(this,event)"> ...
0
8,259,157
11/24/2011 15:08:25
1,055,381
11/19/2011 14:31:20
3
0
text on progressbar in c#
I am using the following code Why does not run properly ? private void Form1_Shown(object sender, EventArgs e) { for (int i = 1; i <= 100; i++) { Application.DoEvents(); Thread.Sleep(200); progressBar1.Refresh(); progressBar1....
c#
progress-bar
winapp
null
null
11/25/2011 17:30:54
too localized
text on progressbar in c# === I am using the following code Why does not run properly ? private void Form1_Shown(object sender, EventArgs e) { for (int i = 1; i <= 100; i++) { Application.DoEvents(); Thread.Sleep(200); progressBar1.Refres...
3
5,892,163
05/05/2011 03:00:34
478,380
10/17/2010 06:24:34
200
19
Should I be using JDBC getNString() instead of getString()?
We are building a Java application backed by an Oracle database that we access using JDBC (drivers `ojdbc6.jar` and `orai18n.jar`). The database schema stores text columns primarily using the `NVARCHAR2` data type. The [JDBC documentation](http://download.oracle.com/javase/6/docs/api/java/sql/ResultSet.html#getNStri...
java
oracle
jdbc
nvarchar
null
null
open
Should I be using JDBC getNString() instead of getString()? === We are building a Java application backed by an Oracle database that we access using JDBC (drivers `ojdbc6.jar` and `orai18n.jar`). The database schema stores text columns primarily using the `NVARCHAR2` data type. The [JDBC documentation](http://downl...
0
11,016,173
06/13/2012 13:44:06
979,188
10/04/2011 19:46:31
1
2
jquery - Prevent onclick and retrieve parameters of function call
We've been asked to put in a band-aid measure to some code so this is going to look really dumb but bear with me. We need to prevent an onclick method of an anchor and retrieve the parameters of the function call being made in order to call a different function with those parameters. Here is the code and html we ha...
javascript
jquery
null
null
null
null
open
jquery - Prevent onclick and retrieve parameters of function call === We've been asked to put in a band-aid measure to some code so this is going to look really dumb but bear with me. We need to prevent an onclick method of an anchor and retrieve the parameters of the function call being made in order to call a dif...
0
9,058,445
01/30/2012 01:30:12
1,177,152
01/30/2012 01:27:27
1
0
Unable to make the link work in safari and chrom
Need some help with getting this onclick event working in safari and chrome. 1. The link seems to work flawlessly in IE and Firefox. 2. When i remove the javascript call and replace it with a static value it seems to work in safari and chrome. JUICE.UICtrlIDMUtil.validateWFForm(this.name, "javascript:submitTh...
google-chrome
safari
onclick
null
null
null
open
Unable to make the link work in safari and chrom === Need some help with getting this onclick event working in safari and chrome. 1. The link seems to work flawlessly in IE and Firefox. 2. When i remove the javascript call and replace it with a static value it seems to work in safari and chrome. JUICE.UICtrl...
0
10,871,698
06/03/2012 15:44:52
774,209
05/28/2011 09:54:42
140
25
Rules action: add a node
Is there a way of (when I add a user) to create a node with he as author? And is it possible to write own actions?
drupal-7
rules
null
null
null
null
open
Rules action: add a node === Is there a way of (when I add a user) to create a node with he as author? And is it possible to write own actions?
0
5,389,501
03/22/2011 10:01:14
466,921
10/05/2010 14:15:55
59
0
System.Runtime.Cache not expiring???
I have implemented a solution in my ASP.NET project to automatically send some emails based on a time. I have done this by using the System.Runtime.Cache, specifically the CacheItemRemovedCallback. First of all i add the task to the cache in the Application_Start method: protected void Application_Start(object s...
c#
.net
caching
null
null
null
open
System.Runtime.Cache not expiring??? === I have implemented a solution in my ASP.NET project to automatically send some emails based on a time. I have done this by using the System.Runtime.Cache, specifically the CacheItemRemovedCallback. First of all i add the task to the cache in the Application_Start method: ...
0
5,098,528
02/23/2011 23:15:58
620,549
02/16/2011 23:49:47
1
0
Google as a free smtp relay server?
I created a new gmail account to use for my website for things like sending out emails for password recovery, etc. I only sent maybe a couple out while I was testing it to get it working. Then I wake up the next day to find my email account deleted Is there some type of rules or something?
email
google
smtp
gmail
null
01/24/2012 14:24:09
off topic
Google as a free smtp relay server? === I created a new gmail account to use for my website for things like sending out emails for password recovery, etc. I only sent maybe a couple out while I was testing it to get it working. Then I wake up the next day to find my email account deleted Is there some type of rules...
2
6,788,640
07/22/2011 10:23:46
856,686
07/21/2011 19:10:13
1
0
How can I promote my Android app?
I don't know how to get my Android app discovered? I made one and released it onto the Android market place and it doesn't seem to get any downloads.
android
mobile
marketing
freemium
null
07/22/2011 11:27:14
off topic
How can I promote my Android app? === I don't know how to get my Android app discovered? I made one and released it onto the Android market place and it doesn't seem to get any downloads.
2
3,370,522
07/30/2010 10:14:43
190,034
10/14/2009 17:30:32
16
0
Getting the list of files changed from a commit in perforce in Hudson
Is there a way, in Hudson, of getting the list of files from a p4 change list and passing it to an ant build script ?
ant
hudson
perforce
null
null
null
open
Getting the list of files changed from a commit in perforce in Hudson === Is there a way, in Hudson, of getting the list of files from a p4 change list and passing it to an ant build script ?
0
8,356,860
12/02/2011 13:15:17
26,054
10/08/2008 07:46:28
1,628
50
Awk-like BEGIN and END with Ruby command-line
One of the cool things about Ruby is its ability to behave like typical Unix command-line tools, to do things like (similar to the example from the official documentation): $ echo "matz" | ruby -pe '$_.upcase!' MATZ Awk, on the other hand can perform an aggregation on lines from standard input, e.g., sum...
ruby
unix
command-line
awk
null
null
open
Awk-like BEGIN and END with Ruby command-line === One of the cool things about Ruby is its ability to behave like typical Unix command-line tools, to do things like (similar to the example from the official documentation): $ echo "matz" | ruby -pe '$_.upcase!' MATZ Awk, on the other hand can perform an ...
0
4,707,205
01/16/2011 18:28:34
89,218
04/09/2009 19:25:41
502
28
microphone volume control from javascript
I'd like to be able to control the system microphone volume from the browser. I know that the microphone can be recorded from using Flash or Silverlight, but these don't allow control of the microphone volume. (Flash has [Microphone.gain][1], but as its just a software multiplier, it doesn't help when the system mi...
javascript
browser
html5
microphone
null
null
open
microphone volume control from javascript === I'd like to be able to control the system microphone volume from the browser. I know that the microphone can be recorded from using Flash or Silverlight, but these don't allow control of the microphone volume. (Flash has [Microphone.gain][1], but as its just a software...
0
2,204,223
02/05/2010 00:19:07
228,939
12/10/2009 16:02:25
68
0
What's a good web framework and/or tool for a software developer?
I'd like to make a website, it's not a huge project, but I'm a bit out of the web design loop. The last time I made a website was probably around 2002. I figure the web frameworks and tools have come a ways since then. It's mostly the design aspect that I'd like it to make easier. I can do the backend language in a...
php
ruby
python
null
null
02/05/2010 04:28:41
not constructive
What's a good web framework and/or tool for a software developer? === I'd like to make a website, it's not a huge project, but I'm a bit out of the web design loop. The last time I made a website was probably around 2002. I figure the web frameworks and tools have come a ways since then. It's mostly the design aspe...
4
6,213,772
06/02/2011 11:12:07
313,913
04/11/2010 13:33:56
428
30
jQuery Validate not firing submitHandler
I have a simple FORM: <form method="post" action="/home/keepintouch" id="stay-in-touch"> <div> <label for="email">Stay in touch</label> <input type="text" value="enter your email address" title="Keep up-to-date with new products, services, news and spe...
jquery
jquery-validate
null
null
null
null
open
jQuery Validate not firing submitHandler === I have a simple FORM: <form method="post" action="/home/keepintouch" id="stay-in-touch"> <div> <label for="email">Stay in touch</label> <input type="text" value="enter your email address" title="Keep up-to-...
0
8,893,970
01/17/2012 11:39:07
138,606
07/15/2009 09:45:36
1,450
20
Is it worth using JSF?
I'm into Java web apps and I write complex web 2.0 applications, with elaburate GUIs. Most of the time I use plain JSTL tags and lots of jQuery coding. I'm a good programmer and I usually get what I want, the precise way I imagine it to be. Anyway I miss a good UI library like Swing or Qt, full of good widgets, so that...
jsf
java-ee
null
null
null
01/17/2012 13:11:22
not constructive
Is it worth using JSF? === I'm into Java web apps and I write complex web 2.0 applications, with elaburate GUIs. Most of the time I use plain JSTL tags and lots of jQuery coding. I'm a good programmer and I usually get what I want, the precise way I imagine it to be. Anyway I miss a good UI library like Swing or Qt, f...
4
8,183,703
11/18/2011 14:08:23
1,049,097
07/25/2010 18:28:22
66
0
How to modify a string if the first two letters match a pattern?
I have strings like this: $5.00 off blah blah 5% off blah blah This off should not match I'd like to match strings that start like `^([$]?[\d.]+[%]?) off .*` And converts them to this: <strong>$5.00 off</strong> blah blah <strong>5% off</strong> blah blah This off should not matc...
ruby-on-rails
ruby
null
null
null
null
open
How to modify a string if the first two letters match a pattern? === I have strings like this: $5.00 off blah blah 5% off blah blah This off should not match I'd like to match strings that start like `^([$]?[\d.]+[%]?) off .*` And converts them to this: <strong>$5.00 off</strong> blah bla...
0
9,018,474
01/26/2012 13:04:11
1,040,542
11/10/2011 20:40:27
24
5
Return single item from $element with simple-html-dom-parser
New to the simple-html-dom-parser and have a question. Assuming `$element` is an array, how can I return a specific item (an image in this case) from the array. I have tried `$element[1]` and `$element->childNodes ([1])` to no avail. $html = file_get_html($url); foreach($html->find('img') as $element...
php
arrays
html-parsing
simple-html-dom
null
01/26/2012 14:08:34
too localized
Return single item from $element with simple-html-dom-parser === New to the simple-html-dom-parser and have a question. Assuming `$element` is an array, how can I return a specific item (an image in this case) from the array. I have tried `$element[1]` and `$element->childNodes ([1])` to no avail. $html = ...
3
8,763,246
01/06/2012 19:21:09
40,939
11/26/2008 07:13:15
1,331
22
How to md5 in monotouch?
What's be best option for md5 hashing a string in monotouch? Read somewhere that the Apparently traditional md5 don't work? http://lists.ximian.com/pipermail/monotouch/2009-October/001339.html ...and then checked by a ASP.net webservice.
c#
asp.net
monotouch
null
null
null
open
How to md5 in monotouch? === What's be best option for md5 hashing a string in monotouch? Read somewhere that the Apparently traditional md5 don't work? http://lists.ximian.com/pipermail/monotouch/2009-October/001339.html ...and then checked by a ASP.net webservice.
0
6,409,652
06/20/2011 10:06:53
804,611
06/18/2011 14:54:47
6
0
Random weighted selection Java framework
I am the following problem. I have several items, each with a specific weight. I would like to randomly choose an item, but that the chances of choosing it will be relative to its weight. Is there a Java framework that can help me to achieve this?
java
null
null
null
null
06/21/2011 14:54:40
not a real question
Random weighted selection Java framework === I am the following problem. I have several items, each with a specific weight. I would like to randomly choose an item, but that the chances of choosing it will be relative to its weight. Is there a Java framework that can help me to achieve this?
1
7,438,441
09/15/2011 23:02:03
701,363
04/11/2011 00:02:06
432
10
jQuery addClass
I'm trying to make a custom simple toggle buttons with addClass and removeClass. The buttons look like this: <input type="button" class="btn shortcutson" value="Enable"> <input type="button" class="btn shortcutsoff selected" value="Disable"> and for the toggle I use this: $(".searchbtnon").cl...
javascript
jquery
addclass
null
null
09/15/2011 23:46:46
too localized
jQuery addClass === I'm trying to make a custom simple toggle buttons with addClass and removeClass. The buttons look like this: <input type="button" class="btn shortcutson" value="Enable"> <input type="button" class="btn shortcutsoff selected" value="Disable"> and for the toggle I use this: ...
3
6,610,808
07/07/2011 12:45:28
548,618
12/29/2009 17:13:00
20
2
rails 3 pass params into partial with haml and unobtrusive javascript
How to pass params into partial with haml and unobtrusive javascript comments/create.js.haml $("#comment_list").html("#{escape_javascript( render(:partial => "shared/comments", :locals => { :commentable => @album }) ).html_safe}"); crashed but in albums/show.html.haml #comment_list= render :par...
ruby-on-rails-3
haml
unobtrusive-javascript
null
null
null
open
rails 3 pass params into partial with haml and unobtrusive javascript === How to pass params into partial with haml and unobtrusive javascript comments/create.js.haml $("#comment_list").html("#{escape_javascript( render(:partial => "shared/comments", :locals => { :commentable => @album }) ).html_safe}"); ...
0
9,290,775
02/15/2012 09:26:34
721,925
04/23/2011 17:06:35
260
6
appstore rules for all images
i couldn't find in one place ,all the Appstore rules for the required images for an app. 1. whats the size for the image on the site(itunes ArtWork?), and the format,bits, rounded edges,etc, and **WHERE** should i put it? inside my app where the Icon is ? 2. what are the rules(sizes,format)for the 5 Appstore imag...
xcode
app-store
null
null
null
03/05/2012 04:47:27
off topic
appstore rules for all images === i couldn't find in one place ,all the Appstore rules for the required images for an app. 1. whats the size for the image on the site(itunes ArtWork?), and the format,bits, rounded edges,etc, and **WHERE** should i put it? inside my app where the Icon is ? 2. what are the rules(s...
2
11,362,833
07/06/2012 13:09:18
1,506,808
07/06/2012 12:59:14
1
0
Cross platform development with interfaces for Android, iOs, and synch with Windows 7
I am researching how to best create a program that will run on multiple mobile platforms (Android and iOS reqired) and on a PC with Windows 7 and possiblly Linux. The program will need to edit a file and be able to upload this file either to the PC or via USB to a device. Do I need to develop two programs-- one fo...
android
ios
windows
html5
cross-platform
null
open
Cross platform development with interfaces for Android, iOs, and synch with Windows 7 === I am researching how to best create a program that will run on multiple mobile platforms (Android and iOS reqired) and on a PC with Windows 7 and possiblly Linux. The program will need to edit a file and be able to upload this f...
0
8,387,642
12/05/2011 15:26:52
1,081,596
12/05/2011 13:03:33
1
0
What are the best source code browsing tools to get up to speed with a relatively big java project quickly?
I need to get up to speed with a relatively big Java project. What is the best tool (free or commercial) for Java code which builds class diagrams, data flow diagrams and everything else what helps to understand how it works quickly? For C++ code I used SourceInsight, but I am sure for Java there could be more advanced...
java
source-code
class-design
static-analysis
null
null
open
What are the best source code browsing tools to get up to speed with a relatively big java project quickly? === I need to get up to speed with a relatively big Java project. What is the best tool (free or commercial) for Java code which builds class diagrams, data flow diagrams and everything else what helps to unders...
0
8,059,038
11/09/2011 00:38:42
1,035,354
11/08/2011 09:50:56
1
0
How do I use ant to make an .apk out of this source code?
https://github.com/robisaks/LoL-Chat#readme Please help, I'm stuck at trying to generate a build.xml file.
android
chat
null
null
null
11/09/2011 18:22:52
not a real question
How do I use ant to make an .apk out of this source code? === https://github.com/robisaks/LoL-Chat#readme Please help, I'm stuck at trying to generate a build.xml file.
1
6,330,235
06/13/2011 12:11:41
352,627
05/28/2010 06:47:05
369
0
Please Advice me on Java mobile app
I am new for java and i want to create a java app for mobiles. so when approached software companies they ware asking me "Android / blackberry /symbian etc... Being a newb , i am really stunned with these questions...so can you please tell me is there any other mobile platform in java? Does blackberry app and jav...
android
blackberry
java-me
mobile
symbian
06/13/2011 15:33:47
off topic
Please Advice me on Java mobile app === I am new for java and i want to create a java app for mobiles. so when approached software companies they ware asking me "Android / blackberry /symbian etc... Being a newb , i am really stunned with these questions...so can you please tell me is there any other mobile platfor...
2
8,703,383
01/02/2012 17:02:58
1,098,207
12/14/2011 16:07:14
15
2
unix fork system call
Good daytime to all I am confused with fork() please help on some examples #include<unistd.h> #include<stdio.h> int main() { if (fork()) fork(); printf(" X\n"); return 0; } is this how i suppose to build the p...
c
unix
fork
system-calls
null
01/02/2012 17:13:31
not a real question
unix fork system call === Good daytime to all I am confused with fork() please help on some examples #include<unistd.h> #include<stdio.h> int main() { if (fork()) fork(); printf(" X\n"); return 0; } is this h...
1
10,936,487
06/07/2012 17:05:09
1,366,701
04/30/2012 21:10:23
48
0
after fade in show progress bar android
How can i show my progress bar after image fade in. I use the next code to fade in an image, after that i want to show my progress bar <?xml version="1.0" encoding="UTF-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <alpha android:fromAlpha="0.0" android:toAlpha="1.0" ...
android
progress-bar
show
fadein
null
null
open
after fade in show progress bar android === How can i show my progress bar after image fade in. I use the next code to fade in an image, after that i want to show my progress bar <?xml version="1.0" encoding="UTF-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <alpha android:f...
0
6,083,477
05/21/2011 18:01:41
752,632
05/13/2011 15:15:50
1
0
How to make one TextBox to update when ComboBox changes in c#.NET?
Following is the code: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Data.Sql; using System.Data.SqlClient; using System.Configuration; using System.Linq; using System.Text; using System.Windows.Forms; namespace Eve...
c#
asp.net
null
null
null
05/21/2011 21:28:01
too localized
How to make one TextBox to update when ComboBox changes in c#.NET? === Following is the code: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Data.Sql; using System.Data.SqlClient; using System.Configuration; using System...
3
11,144,411
06/21/2012 18:23:28
1,243,008
03/01/2012 15:15:56
26
0
nginx: Rewrite PHP does not work
I've a Suffix Proxy installed and I'm using the following rewrite with wildcard subdomain DNS on: location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php last; break; } } My suffix proxy has the following URL format: (subdomain and/or domain + do...
php
regex
.htaccess
url-rewriting
nginx
06/22/2012 14:42:07
off topic
nginx: Rewrite PHP does not work === I've a Suffix Proxy installed and I'm using the following rewrite with wildcard subdomain DNS on: location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php last; break; } } My suffix proxy has the following URL ...
2
11,035,795
06/14/2012 14:54:56
618,775
02/15/2011 23:49:28
483
25
Show a Visual Studio Extension Toolbar by default
In a Visual Studio extension, I have defined a Toolbar in my .vsct file as: <Menu guid="guidVsCmdSet" id="MyToolbar" type="Toolbar" > <CommandFlag>TextChanges</CommandFlag> <CommandFlag>DefaultDocked</CommandFlag> <Strings> <ButtonText>My Tools/Bu...
visual-studio
visual-studio-addins
vsx
visual-studio-extensions
null
null
open
Show a Visual Studio Extension Toolbar by default === In a Visual Studio extension, I have defined a Toolbar in my .vsct file as: <Menu guid="guidVsCmdSet" id="MyToolbar" type="Toolbar" > <CommandFlag>TextChanges</CommandFlag> <CommandFlag>DefaultDocked</CommandFlag> ...
0
5,114,322
02/25/2011 06:30:37
31,770
10/27/2008 11:43:50
1,150
12
Programming and earning royalties or join the company
As a programmer that writes freelance applications, would you rather settle for earning royalties on each copy sold or would you instead prefer to join the company for which the software was written?
payment
null
null
null
null
02/25/2011 06:39:58
not constructive
Programming and earning royalties or join the company === As a programmer that writes freelance applications, would you rather settle for earning royalties on each copy sold or would you instead prefer to join the company for which the software was written?
4
7,224,980
08/29/2011 00:26:00
396,472
07/20/2010 05:46:46
386
13
It's legal to sell proxy lists?
It's legal to sell updated proxy lists? I speak about a site like: http://hidemyass.com/proxy-list/ I'm in Spain. If not, there is any country where can I host the service?
proxy
law
reseller
null
null
08/29/2011 00:47:17
off topic
It's legal to sell proxy lists? === It's legal to sell updated proxy lists? I speak about a site like: http://hidemyass.com/proxy-list/ I'm in Spain. If not, there is any country where can I host the service?
2
11,207,787
06/26/2012 12:56:56
1,179,656
01/31/2012 06:23:13
6
0
plot graph for visits,page view,clicks
I would like to plot a graph for users visits,page-view, clicks to display in my website dashboard.How better to do this in php? Thank you
javascript
php5
null
null
null
null
open
plot graph for visits,page view,clicks === I would like to plot a graph for users visits,page-view, clicks to display in my website dashboard.How better to do this in php? Thank you
0
1,762,637
11/19/2009 11:22:36
214,510
11/19/2009 11:22:35
1
0
Problem opening URL with browser Safari on iphone
I, if I try to open this URL: http://compraonline.mediaworld.it/webapp/wcs/stores/servlet/ProductDisplay?catalogId=20000&storeId=20000&productId=2135168&langId=-1&category_rn=60701663 with Safari for iPhone, the URL that is loaded is without final part &category_rn=60701663. Thanks to everyone for the help
iphone
apple
url
safari
openurl
null
open
Problem opening URL with browser Safari on iphone === I, if I try to open this URL: http://compraonline.mediaworld.it/webapp/wcs/stores/servlet/ProductDisplay?catalogId=20000&storeId=20000&productId=2135168&langId=-1&category_rn=60701663 with Safari for iPhone, the URL that is loaded is without final part &category_rn...
0
11,594,928
07/21/2012 18:42:41
1,543,057
07/21/2012 18:33:46
1
0
How to post message in android using Jsoup
hi all i have this class to post message form: <div class="post"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td colspan="2"><textarea style="width:97%;height:80px;" name="comments" id="comments" class="f_t...
android
html
post
message
jsoup
07/25/2012 11:23:50
not a real question
How to post message in android using Jsoup === hi all i have this class to post message form: <div class="post"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td colspan="2"><textarea style="width:97%;height...
1
2,474,654
03/19/2010 02:35:12
164,299
08/27/2009 15:30:18
1,546
40
What are you ideal vim configuration for php development ?
I use VIM editor for PHP, i know many people will point to PDT but somehow I like to stay with VIM and so What are your suggestions for ideal VIM configuration for PHP Development ?
vim
php
editor
null
null
null
open
What are you ideal vim configuration for php development ? === I use VIM editor for PHP, i know many people will point to PDT but somehow I like to stay with VIM and so What are your suggestions for ideal VIM configuration for PHP Development ?
0
8,012,578
11/04/2011 16:29:07
123,839
06/16/2009 18:12:29
65
3
can a python dictionary replace only what it finds?
The following works fine: line = "Hello %(firstname)s %(lastname)s, how are you?" print line % dict (firstname = "Mike", lastname="Kane") and prints: > Hello Mike Kane, how are you? But if I don't have a value for `lastname`, I still want this to work: line = "Hello %(firstname)s %(lastname...
python
dictionary
null
null
null
null
open
can a python dictionary replace only what it finds? === The following works fine: line = "Hello %(firstname)s %(lastname)s, how are you?" print line % dict (firstname = "Mike", lastname="Kane") and prints: > Hello Mike Kane, how are you? But if I don't have a value for `lastname`, I still want th...
0
8,207,900
11/21/2011 06:05:33
413,843
07/25/2010 00:03:19
456
3
Removing developer name from MIT license
Would it be possible to remove the name of the original developer of a software under MIT license, while still placing a copy of the generic MIT license and permission text?
mit-license
null
null
null
null
11/22/2011 08:24:52
off topic
Removing developer name from MIT license === Would it be possible to remove the name of the original developer of a software under MIT license, while still placing a copy of the generic MIT license and permission text?
2
6,105,096
05/24/2011 02:21:05
765,081
05/22/2011 18:46:11
1
0
AJAX load function, re-orgainze code to show specific sections of page
Thank you for reading my question. Please bear with me for the long post. I am changing content div on index.html with below 2 menu options using $(selector).load(url) in menu.js --------------------------------------- | Classes | Update Calendar | --------------------------------------- Curre...
jquery-ajax
null
null
null
null
null
open
AJAX load function, re-orgainze code to show specific sections of page === Thank you for reading my question. Please bear with me for the long post. I am changing content div on index.html with below 2 menu options using $(selector).load(url) in menu.js --------------------------------------- | Cla...
0
1,976,280
12/29/2009 19:00:16
155,743
08/13/2009 11:49:46
23
0
How update mysql order?
![alt text][1] [1]: http://i.imagehost.org/0911/kaip_padaryti_valdymas_copy.png What should be the query? Sorry for my English.
php
update
mysql
query
null
null
open
How update mysql order? === ![alt text][1] [1]: http://i.imagehost.org/0911/kaip_padaryti_valdymas_copy.png What should be the query? Sorry for my English.
0
9,026,980
01/26/2012 23:24:32
963,156
09/25/2011 00:20:37
70
0
What is this C code doing?
I dont understand this C code : for (i=0;i<sizeof(code)/sizeof(char*); i++){ printf("%s%d%s%d\n", "Length of String ", i, " is ", strlen(code[i])); str = code[i]; printf("%s%d%s%c\n","The first character in string ", i, " is ", str[0]); } Specifically, I don't understand either of the p...
c
printf
null
null
null
01/27/2012 21:30:35
not a real question
What is this C code doing? === I dont understand this C code : for (i=0;i<sizeof(code)/sizeof(char*); i++){ printf("%s%d%s%d\n", "Length of String ", i, " is ", strlen(code[i])); str = code[i]; printf("%s%d%s%c\n","The first character in string ", i, " is ", str[0]); } Specifically, I ...
1
2,163,087
01/29/2010 15:50:37
17,675
09/18/2008 13:28:35
772
36
Why does MySQL Workbench produce incompatible syntax for simple table create on export?
Using MySQL Workbench 5.0.30 OSS, I try to produce a simple SQL script to create tables, yet what it produces doesn't seem to be the least bit compatible with MySQL Ver 14.14 Distrib 5.1.42, for Win32 (ia32).
mysql
mysql-workbench
null
null
null
01/30/2010 20:59:28
off topic
Why does MySQL Workbench produce incompatible syntax for simple table create on export? === Using MySQL Workbench 5.0.30 OSS, I try to produce a simple SQL script to create tables, yet what it produces doesn't seem to be the least bit compatible with MySQL Ver 14.14 Distrib 5.1.42, for Win32 (ia32).
2
8,450,224
12/09/2011 18:48:56
1,002,122
10/18/2011 22:45:19
3
0
Closing a running program via bash script
I've tried searching for this a few times, but I just think I don't know the right terminology. I have an application running in a screen session on a remote server. I'm periodically developing an updating the server, and use a Git repos to transfer my code. I'd like to automate this process. Here's what I want the ...
bash
ssh
screen
kill
null
02/09/2012 17:11:29
not a real question
Closing a running program via bash script === I've tried searching for this a few times, but I just think I don't know the right terminology. I have an application running in a screen session on a remote server. I'm periodically developing an updating the server, and use a Git repos to transfer my code. I'd like to...
1
5,089,583
02/23/2011 10:23:42
440,327
09/06/2010 03:21:56
160
11
Attach multiple jQuery plugins onto a single element
According to the jQuery plugin development guides from the Internet, the common practice of developing a jQuery plugin would be: (function($) { $.fn.myplugin = function(options){ //... //Plugin common characteristic //e.g. default settings //... //Attach to each desired DOM element r...
javascript
jquery
jquery-plugins
null
null
null
open
Attach multiple jQuery plugins onto a single element === According to the jQuery plugin development guides from the Internet, the common practice of developing a jQuery plugin would be: (function($) { $.fn.myplugin = function(options){ //... //Plugin common characteristic //e.g. default settings ...
0
4,469,983
12/17/2010 11:21:35
278,618
02/22/2010 10:56:15
158
17
Generating xml in python and lxml
I have this xml from sql, and I want to do the same by python 2.7 and lxml <?xml version="1.0" encoding="utf-16"?> <results> <Country name="Germany" Code="DE" Storage="Basic" Status="Fresh" Type="Photo" /> </results> Now I have: from lxml import etree # create XML ...
python
xml
lxml
null
null
null
open
Generating xml in python and lxml === I have this xml from sql, and I want to do the same by python 2.7 and lxml <?xml version="1.0" encoding="utf-16"?> <results> <Country name="Germany" Code="DE" Storage="Basic" Status="Fresh" Type="Photo" /> </results> Now I have: from lxml impo...
0
8,288,701
11/27/2011 20:17:09
667,867
03/20/2011 01:33:19
426
11
Design approach: Overloading vs Switch?
In regard to performance and scalability in package design, is it best to: 1. … ‘overload’ function names (letting Mathematica sort out which version to use based on patterns/conditions/tests and the way the system orders definitions)? 2. … or to construct a single function with a Switch[] (or similar command) to...
design
mathematica
package
null
null
null
open
Design approach: Overloading vs Switch? === In regard to performance and scalability in package design, is it best to: 1. … ‘overload’ function names (letting Mathematica sort out which version to use based on patterns/conditions/tests and the way the system orders definitions)? 2. … or to construct a single fun...
0
5,128,592
02/26/2011 17:41:53
171,950
09/11/2009 09:06:13
686
14
Whay Application servers require stubs to be exist to do remote calls?
It is not a question but a discussion... I don't know if it is the right place, or not.. [As you know, we can write our own java classloaders that can load classes over the network][1] So, Why application servers don't just do that? why when we are doing a remote call to a remote method exists inside another appl...
java
classloader
application-server
null
null
null
open
Whay Application servers require stubs to be exist to do remote calls? === It is not a question but a discussion... I don't know if it is the right place, or not.. [As you know, we can write our own java classloaders that can load classes over the network][1] So, Why application servers don't just do that? why w...
0
6,483,008
06/26/2011 08:49:13
816,001
06/26/2011 08:49:13
1
0
NSTimezone problem using EventKit
I need to make entries in the iPhone calendar, using EventKit framework. Since my app should be international, I need to take care of differnt timezones. What I am doing right now: An event should start at 6:00 am. Therefore I am creating a NSDate object with this code: [NSDate dateWithString:[NSString s...
iphone
dev
eventkit
null
null
null
open
NSTimezone problem using EventKit === I need to make entries in the iPhone calendar, using EventKit framework. Since my app should be international, I need to take care of differnt timezones. What I am doing right now: An event should start at 6:00 am. Therefore I am creating a NSDate object with this code: ...
0
4,905,553
02/05/2011 06:54:42
604,158
02/05/2011 06:54:42
1
0
Bulk email configuration - phplist + sendgrid or some suggestions on process
I have a large user list which is distributed in two groups. 1. Phplist 2. Vbulletin Phplist has around 50,000 users while vbulletin has some 70,000 users. These all are double optin safe lists and completely legal. We have a dedicated server and use phplist tos end mails but a single mails takes 3 days to proce...
email-integration
bulk
sendgrid
null
null
null
open
Bulk email configuration - phplist + sendgrid or some suggestions on process === I have a large user list which is distributed in two groups. 1. Phplist 2. Vbulletin Phplist has around 50,000 users while vbulletin has some 70,000 users. These all are double optin safe lists and completely legal. We have a dedic...
0
8,403,845
12/06/2011 17:07:24
813,003
06/23/2011 20:04:31
52
1
I need creative site examples using Red, Black and Yellow
I'm looking for creative examples of websites that main colors are Red, Black, and Yellow. Years ago my mother made a site for our family company and well...it needs a heavy overhaul, sadly their logo is absolutely ridiculous to work with due to its harsh colors. ![enter image description here][1] [1]: http:/...
design
inspiration
null
null
null
12/06/2011 17:12:17
off topic
I need creative site examples using Red, Black and Yellow === I'm looking for creative examples of websites that main colors are Red, Black, and Yellow. Years ago my mother made a site for our family company and well...it needs a heavy overhaul, sadly their logo is absolutely ridiculous to work with due to its harsh c...
2
2,518,564
03/25/2010 19:08:20
441,073
12/29/2009 16:51:34
1
1
Front End Developer v/s PHP-MySQL Engineer
I want to decide which of this would be a more viable career option? I am ready to quit my current job and hence I am looking for new opportunity. Current job is maintainence and no more active development. My current role is of a PHP/MySQL Developer. I very well understand web-programming and am comfortable wit...
php
html
css
career-development
front-end
02/01/2012 17:08:28
not constructive
Front End Developer v/s PHP-MySQL Engineer === I want to decide which of this would be a more viable career option? I am ready to quit my current job and hence I am looking for new opportunity. Current job is maintainence and no more active development. My current role is of a PHP/MySQL Developer. I very well u...
4
9,297,914
02/15/2012 17:11:20
566,869
01/07/2011 12:29:40
23
0
Puppet SSL connection issue
###puppet version 2.6.6### I intermittently see SSL connection errors similar to the following on puppet agents: Could not evaluate: SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A Could not retrieve file metadata for puppet://...: SSL_connect SYSCALL returned=5 errno=0 s...
ssl
puppet
null
null
null
03/09/2012 21:55:48
off topic
Puppet SSL connection issue === ###puppet version 2.6.6### I intermittently see SSL connection errors similar to the following on puppet agents: Could not evaluate: SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A Could not retrieve file metadata for puppet://...: SSL_con...
2
10,943,890
06/08/2012 06:16:46
1,443,732
06/08/2012 05:14:03
1
0
UNEXPECTED T_IF ERROR
I was writing a signup script when I received this error. Also, I want to extend my knowledge iwith respect to this particular error. Endless Googling==> NO help. Here's my code: <?php //include the connection file require_once("functions/validation_employee_signup.php"); r...
php
sql
error-message
null
null
06/09/2012 04:32:46
too localized
UNEXPECTED T_IF ERROR === I was writing a signup script when I received this error. Also, I want to extend my knowledge iwith respect to this particular error. Endless Googling==> NO help. Here's my code: <?php //include the connection file require_once("functions/validation_employee...
3
7,325,831
09/06/2011 20:36:40
931,531
09/06/2011 20:36:40
1
0
ASP.NET httpRedirect : redirect all pages except one
I use this code in the web.config in one of the folders of my website to redirect all pages to the root (I won't to close this section). <?xml version="1.0" encoding="utf-8"?> <configuration> <location> <system.webServer> <httpRedirect enabled="true" destination="http://www.learnin...
asp.net
web-config
http-redirect
null
null
null
open
ASP.NET httpRedirect : redirect all pages except one === I use this code in the web.config in one of the folders of my website to redirect all pages to the root (I won't to close this section). <?xml version="1.0" encoding="utf-8"?> <configuration> <location> <system.webServer> <h...
0
4,101,718
11/04/2010 21:46:25
497,760
11/04/2010 21:38:39
1
0
JAXB Can't handle interfaces
I think this question has been asked like a million times, but none of solutions suggested worked for me. Here is my sample implementation package com.abc.objectsToReturn; public class FooImpl2 implements Foo { private int a = 100 ; private String b = "I am FooImpl2"; private boolean c; ...
jaxb
null
null
null
null
null
open
JAXB Can't handle interfaces === I think this question has been asked like a million times, but none of solutions suggested worked for me. Here is my sample implementation package com.abc.objectsToReturn; public class FooImpl2 implements Foo { private int a = 100 ; private String b = "I am FooImpl2...
0
10,611,448
05/16/2012 02:59:34
1,392,119
05/13/2012 11:43:02
3
0
Warnings on Visual studio 2010 but no errors.
I have a WPF C# application here, finally have solved errors. But after I run the program, it can work, just that there are 7 warnings that I have no idea what is it about. I need to know whether it will cause any problem to my project or not.. Warnings: 1. CA2214:Microsoft.Usage: 'PoseViewModel.PoseViewModel()' ...
c#
wpf
null
null
null
05/16/2012 14:05:17
not constructive
Warnings on Visual studio 2010 but no errors. === I have a WPF C# application here, finally have solved errors. But after I run the program, it can work, just that there are 7 warnings that I have no idea what is it about. I need to know whether it will cause any problem to my project or not.. Warnings: 1. CA221...
4
8,737,452
01/05/2012 03:55:42
614,662
02/13/2011 00:13:23
50
3
user.clj and init.clj dont work?
this is my problem: I need run some code every time I open a new repl, searching in google I found that I can use the file init.clj or the user.clj (with Leiningen) This is the code you need to run: (set! \*print-length* 103) (println "hello") (println \*print-length*) and these are the result...
clojure
repl
leiningen
null
null
null
open
user.clj and init.clj dont work? === this is my problem: I need run some code every time I open a new repl, searching in google I found that I can use the file init.clj or the user.clj (with Leiningen) This is the code you need to run: (set! \*print-length* 103) (println "hello") (println \*prin...
0
5,370,685
03/20/2011 18:59:53
641,514
03/02/2011 15:58:39
5
0
MySQL query to match similar words/sentences.
I have a table in a MySQL Database which has this structure: CREATE TABLE `papers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(1000) COLLATE utf8_bin DEFAULT NULL, `booktitle` varchar(300) COLLATE utf8_bin DEFAULT NULL, `journal` varchar(300) COLLATE utf8_bin DEFAULT NULL, PR...
python
mysql
search
fulltext
similar
null
open
MySQL query to match similar words/sentences. === I have a table in a MySQL Database which has this structure: CREATE TABLE `papers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(1000) COLLATE utf8_bin DEFAULT NULL, `booktitle` varchar(300) COLLATE utf8_bin DEFAULT NULL, `journal` ...
0
8,168,418
11/17/2011 14:06:30
1,051,913
11/17/2011 13:44:38
1
0
Building Browser Add ons - do Internet Explorer Users Install Them?
Firstly sorry if this isn't quite the right place to post this question. It's kind of related to software development insofar as it relates to supporting/disproving the business case for IE add on development... We have a pretty successful add-on in Firefox and Chrome. Internally we're discussing whether we should g...
add-on
ieaddon
null
null
null
11/18/2011 00:58:40
off topic
Building Browser Add ons - do Internet Explorer Users Install Them? === Firstly sorry if this isn't quite the right place to post this question. It's kind of related to software development insofar as it relates to supporting/disproving the business case for IE add on development... We have a pretty successful add-...
2
9,707,147
03/14/2012 17:42:02
490,324
10/28/2010 16:02:03
431
18
SyntaxError: invalid syntax while installing simplejson 2.4 line 390 - python 2.4.3
i am trying to install simplejson2.4 on RedHat however getting: SyntaxError: Invalid syntax encoder.py line 390 **Output:** [~/tmp/simplejson-2.4.0]# python setup.py install running install running build running build_py running build_ext running install_lib byte-compilin...
python
install
simplejson
null
null
null
open
SyntaxError: invalid syntax while installing simplejson 2.4 line 390 - python 2.4.3 === i am trying to install simplejson2.4 on RedHat however getting: SyntaxError: Invalid syntax encoder.py line 390 **Output:** [~/tmp/simplejson-2.4.0]# python setup.py install running install running build...
0
501,062
02/01/2009 16:06:02
61,213
02/01/2009 15:41:31
1
0
What's the best Scripting Langugage for Natural Language Processing?
My graduate research is in Arabic Speech Recognition. My work involves dealing with text alot for different kinds of tasks such as: - Cleaning up messy transcriptions, I work with diacritized text and it is very important that they are put in the right place. I use lots of Regular Expressions for that. - Experime...
nlp
scripting-language
null
null
null
null
open
What's the best Scripting Langugage for Natural Language Processing? === My graduate research is in Arabic Speech Recognition. My work involves dealing with text alot for different kinds of tasks such as: - Cleaning up messy transcriptions, I work with diacritized text and it is very important that they are put in...
0
7,073,748
08/16/2011 04:54:19
790,235
06/09/2011 04:09:21
44
11
Installing Git server on Ubuntu 11.04
I currently bought a Linode server with Ubuntu 11.04 installed on it. My collegue and me are trying to setup a Git server, so that we can have 2 users that can use git like normaly for development purpose. Edit: What package should I install on my Ubuntu? A tutorial would be appreciated. Thanx, Patrick
linux
git
ubuntu
null
null
08/16/2011 04:59:32
not a real question
Installing Git server on Ubuntu 11.04 === I currently bought a Linode server with Ubuntu 11.04 installed on it. My collegue and me are trying to setup a Git server, so that we can have 2 users that can use git like normaly for development purpose. Edit: What package should I install on my Ubuntu? A tutorial woul...
1
4,944,043
02/09/2011 11:09:59
568,638
01/09/2011 08:00:10
112
0
Estimate the rate of height growth of humans in km/ hr?
Someone asked me this question during an interview. How would you go about this? This is not a random BS question but has good math behind it. The profile was for an analytic position so they wanted someone with good math skills. I couldn't really figure out a good way of calculating this. Here is some data I collec...
math
puzzle
null
null
null
02/09/2011 11:19:53
off topic
Estimate the rate of height growth of humans in km/ hr? === Someone asked me this question during an interview. How would you go about this? This is not a random BS question but has good math behind it. The profile was for an analytic position so they wanted someone with good math skills. I couldn't really figure out ...
2
9,163,541
02/06/2012 16:32:42
876,560
08/03/2011 12:12:41
59
0
Content page in php
I have designed my site in css. My all <div>s' position is absolute. I have my content page and I retrieve my data from mysql database in table. Every data appears, but it appears only until 10 data, and then, it goes out of my content page, it goes to bottom, it becomes mixed. How can I overcome it? I want...
php
css
null
null
null
02/07/2012 01:50:40
not a real question
Content page in php === I have designed my site in css. My all <div>s' position is absolute. I have my content page and I retrieve my data from mysql database in table. Every data appears, but it appears only until 10 data, and then, it goes out of my content page, it goes to bottom, it becomes mixed. How ...
1
11,428,864
07/11/2012 08:49:52
1,502,952
07/05/2012 04:55:44
3
0
selecting string that ends with specific string using regex c#
string is "$$$ dkfdjkfj **name** $$$ kdfjdf **post** <br />dkfdjkfj **name** **name** selecting only string that starts with $$$ and ends with **name** or starts with space and ends with **name** and should not have any html tags in between. Above output is: dkfdjkfj
c#
regex
null
null
null
null
open
selecting string that ends with specific string using regex c# === string is "$$$ dkfdjkfj **name** $$$ kdfjdf **post** <br />dkfdjkfj **name** **name** selecting only string that starts with $$$ and ends with **name** or starts with space and ends with **name** and should not have any html tags in between. A...
0
4,101,706
11/04/2010 21:44:36
497,583
11/04/2010 18:44:52
3
1
How do I build a calculator-style number input field in iOS?
I already know how to enable the numeric keyboards and validate the field input to ensure it's numeric. What I want to know is how to set up an input view that'll let my user enter a number value from right to left, like a calculator or ATM machine. In other words, I want the user to be able to type: 2 0 0 4 ...
iphone
uiview
ios
uitextfield
null
null
open
How do I build a calculator-style number input field in iOS? === I already know how to enable the numeric keyboards and validate the field input to ensure it's numeric. What I want to know is how to set up an input view that'll let my user enter a number value from right to left, like a calculator or ATM machine. I...
0
6,026,833
05/17/2011 06:00:16
744,478
05/09/2011 03:36:48
10
0
What is the differences between bind model and contain cakephp?
What is the differences between bind model and contain cakephp? any one have idea please share with me.. I am new to cakephp
cakephp
cakephp-1.3
null
null
null
null
open
What is the differences between bind model and contain cakephp? === What is the differences between bind model and contain cakephp? any one have idea please share with me.. I am new to cakephp
0
2,236,807
02/10/2010 12:45:20
249,571
01/13/2010 06:58:34
38
1
Javing Naming Convention Abbreviations
What is the correct name for the following java class: DVDPlayer or DvdPlayer
java
naming-conventions
null
null
null
12/16/2011 18:03:00
not constructive
Javing Naming Convention Abbreviations === What is the correct name for the following java class: DVDPlayer or DvdPlayer
4
11,548,652
07/18/2012 19:13:12
1,385,442
05/09/2012 18:59:55
5
2
XamDataGrid Cell Updating Attached Behavior
Can we create an attached behavior to be handled at View Model layer for the Cell Updating of a XamDataGrid? Cheers, Anshuman
wpf
mvvm
attached-properties
attachedbehaviors
xamdatagrid
07/19/2012 11:39:41
not a real question
XamDataGrid Cell Updating Attached Behavior === Can we create an attached behavior to be handled at View Model layer for the Cell Updating of a XamDataGrid? Cheers, Anshuman
1
650,263
03/16/2009 12:40:23
63,051
02/05/2009 20:53:34
517
31
What is your favourite Hibernate trick?
What is your favourite Hibernate trick?
java
hibernate
tips-and-tricks
null
null
10/02/2011 00:44:12
not constructive
What is your favourite Hibernate trick? === What is your favourite Hibernate trick?
4