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
6,503,144
06/28/2011 07:37:13
644,013
03/04/2011 02:24:27
179
1
Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=168821248)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4)))) error
Yesterday i was using oracle 9.1 with ojdbc 14 jdbc driver with following code for adding employee, it was working fine but now i am using oracle 10.1.0.2.0 with ojdbc14 but now it is giving following error Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=168821248)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=...
java
jdbc
java-ee
null
null
null
open
Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=168821248)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4)))) error === Yesterday i was using oracle 9.1 with ojdbc 14 jdbc driver with following code for adding employee, it was working fine but now i am using oracle 10.1.0.2.0 with ojdbc14 but now it is g...
0
8,060,720
11/09/2011 05:24:38
923,636
09/01/2011 14:30:07
77
0
Mongoid: persistence in 1 to many relation within embedded document
I have a problem with relationships persisting in an embedded document. Here is the example require 'mongoid' require 'mongo' class User include Mongoid::Document field :name key :name embeds_one :garage end class Garage include Mongoid:...
ruby-on-rails
mongodb
persistence
mongoid
relationships
null
open
Mongoid: persistence in 1 to many relation within embedded document === I have a problem with relationships persisting in an embedded document. Here is the example require 'mongoid' require 'mongo' class User include Mongoid::Document field :name key :name em...
0
7,229,670
08/29/2011 11:50:14
325,241
04/25/2010 04:06:57
2,436
113
How to make an element out of it's parent's range?
My HTML: <div id="main"> <div id="inner_div"></div> </div> CSS: #main{ width: 300px; height: 300px; border: 1px solid black; margin: 10px auto; position: relative; } #inner_div{ width: 200px; height: 20...
html
css
layout
position
null
null
open
How to make an element out of it's parent's range? === My HTML: <div id="main"> <div id="inner_div"></div> </div> CSS: #main{ width: 300px; height: 300px; border: 1px solid black; margin: 10px auto; position: relative; } ...
0
2,890,837
05/23/2010 06:24:24
348,149
05/23/2010 06:24:24
1
0
Flexigrid Jquery
I dont know how to use flexigrid jquery in my website,please answer me sir
php5
null
null
null
null
09/30/2011 21:41:25
not a real question
Flexigrid Jquery === I dont know how to use flexigrid jquery in my website,please answer me sir
1
2,785,848
05/07/2010 02:41:14
193,513
10/21/2009 01:53:55
79
3
Can someone recommend a resource/site/book to improve problem solving skills
I am a reasonably expreience developer (.NET, c#, asp.NET etc) but I'd like to hone my problem solving skills. I find that when I come up against a complex problem I sometimes implement a solution that I feel could have been better had I analysed the problem in a different way. Ideally what I am looking for is a res...
problem-solving
.net
c#
analysis
null
09/17/2011 22:43:28
not constructive
Can someone recommend a resource/site/book to improve problem solving skills === I am a reasonably expreience developer (.NET, c#, asp.NET etc) but I'd like to hone my problem solving skills. I find that when I come up against a complex problem I sometimes implement a solution that I feel could have been better had I ...
4
5,279,043
03/11/2011 22:27:15
435,645
08/31/2010 07:01:49
742
0
What are problems with shallow copy ?
This is an interview question I saw from here: http://www.careercup.com/question?id=1707701 Want to know more about this .thanks
c++
interview-questions
shallow-copy
null
null
03/12/2011 01:14:17
not a real question
What are problems with shallow copy ? === This is an interview question I saw from here: http://www.careercup.com/question?id=1707701 Want to know more about this .thanks
1
11,596,548
07/21/2012 23:10:36
1,543,314
07/21/2012 23:00:03
1
0
turn off keyboard shortcuts stackoverflow
how can I turn off stackoverflow's keyboard shortcuts.. It's almost impossible to enter any text without some stuff popping up. I don't need any fancy formatting, period..!
stackoverflow
null
null
null
null
07/21/2012 23:15:47
off topic
turn off keyboard shortcuts stackoverflow === how can I turn off stackoverflow's keyboard shortcuts.. It's almost impossible to enter any text without some stuff popping up. I don't need any fancy formatting, period..!
2
11,493,691
07/15/2012 16:38:13
1,527,148
07/15/2012 16:29:29
1
0
How to write the following program?
Problem: Euler's number, e, can be estimated using the following formula: e = 1 + 1/1! + 1/2! + 1/3! + 1/4! + 1/5! + 1/6! + ... Ask the user to enter a maximum desired difference between the estimate above and the value of Euler's number from math.h. Be sure to validate that the desired difference is greater th...
unix
null
null
null
null
07/15/2012 16:42:40
too localized
How to write the following program? === Problem: Euler's number, e, can be estimated using the following formula: e = 1 + 1/1! + 1/2! + 1/3! + 1/4! + 1/5! + 1/6! + ... Ask the user to enter a maximum desired difference between the estimate above and the value of Euler's number from math.h. Be sure to validate ...
3
541,912
02/12/2009 15:51:33
2,443
08/22/2008 10:53:30
5,667
211
Interface naming in Java
Most OO languages prefix their interface names with a capital I, why does Java not do this? What was the rationale for not following this convention? To demonstrate what I mean, if I wanted to have a User interface and a User implementation I'd have two choices in Java: >1. Class = User, Interface = UserInterfac...
java
naming-conventions
null
null
null
04/19/2012 20:06:03
not constructive
Interface naming in Java === Most OO languages prefix their interface names with a capital I, why does Java not do this? What was the rationale for not following this convention? To demonstrate what I mean, if I wanted to have a User interface and a User implementation I'd have two choices in Java: >1. Class = ...
4
6,230,395
06/03/2011 17:14:32
592,459
01/27/2011 15:35:07
103
3
How to prevent triggering of other events when closing a JPopupMenu by clicking outside it?
There are some properties of the right-click context menu I would like to replicate with a JPopupMenu: 1. When menu is open and you click elsewhere, menu closes. 2. When menu is open and you click elsewhere, nothing else happens. I've got the first part down just fine. But when I click elsewhere, other eve...
java
swing
menu
null
null
null
open
How to prevent triggering of other events when closing a JPopupMenu by clicking outside it? === There are some properties of the right-click context menu I would like to replicate with a JPopupMenu: 1. When menu is open and you click elsewhere, menu closes. 2. When menu is open and you click elsewhere, nothing...
0
9,903,555
03/28/2012 08:16:28
204,769
11/06/2009 11:55:25
2,110
122
How to use jcurses from groovy
just tried to use jcurses from within groovy, but I always get the following exception: Caused by: java.lang.NullPointerException at jcurses.system.Toolkit.getLibraryPath(Toolkit.java:97) at jcurses.system.Toolkit.<clinit>(Toolkit.java:37) Toolkit.java:37 : String url = Class...
groovy
windows-shell
null
null
null
null
open
How to use jcurses from groovy === just tried to use jcurses from within groovy, but I always get the following exception: Caused by: java.lang.NullPointerException at jcurses.system.Toolkit.getLibraryPath(Toolkit.java:97) at jcurses.system.Toolkit.<clinit>(Toolkit.java:37) Toolkit.jav...
0
4,808,019
01/26/2011 17:51:41
557,657
12/29/2010 22:05:03
3
0
Boolean logic question
"true"? "Yes" : "No" , I am using ruby language This is taking by deafult "yes" even I select "no"
boolean-expression
null
null
null
null
01/26/2011 23:11:53
not a real question
Boolean logic question === "true"? "Yes" : "No" , I am using ruby language This is taking by deafult "yes" even I select "no"
1
10,796,032
05/29/2012 09:00:14
605,280
02/06/2011 13:15:20
61
0
Are both IP address and default gateway needed on a switch to enable communication between different vlans?
It's a problem excerpted from Cisco's CCNA test: ![enter image description here][1] [1]: http://i.stack.imgur.com/CQF2y.png I would like to know if both IP address and default gateway are needed on Switch1 in order for different vlans connected to this switch to communicate with each other? Thank you in...
networking
routing
computer-science
null
null
05/29/2012 10:09:50
off topic
Are both IP address and default gateway needed on a switch to enable communication between different vlans? === It's a problem excerpted from Cisco's CCNA test: ![enter image description here][1] [1]: http://i.stack.imgur.com/CQF2y.png I would like to know if both IP address and default gateway are needed...
2
5,770,097
04/24/2011 10:43:55
377,381
06/27/2010 12:16:21
154
3
any other site(s) like this one?
this site is extremely cool ( http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=strncpy ) but a bit unformatted, it shows many (and this means a lot) of C functions with params , example etc. the prototype example of the function is very bad anyway. do you know other sites as complete or more than this one? i recall ...
c
null
null
null
null
04/24/2011 11:10:11
not a real question
any other site(s) like this one? === this site is extremely cool ( http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=strncpy ) but a bit unformatted, it shows many (and this means a lot) of C functions with params , example etc. the prototype example of the function is very bad anyway. do you know other sites as com...
1
11,288,031
07/02/2012 05:07:05
1,084,965
12/07/2011 05:37:47
565
12
how to display one imageview(visible & invisible)for three time in android?
I want to show an image view for three like on/off,if any one have idea how to diaplay an imageview for three time.I am using below code for these totalTimeCountInMilliseconds = 180 * 1000; timeBlinkInMilliseconds = 60 * 1000; private boolean blink=true; countDownTimer = new CountDown...
android
timer
imageview
null
null
null
open
how to display one imageview(visible & invisible)for three time in android? === I want to show an image view for three like on/off,if any one have idea how to diaplay an imageview for three time.I am using below code for these totalTimeCountInMilliseconds = 180 * 1000; timeBlinkInMilliseconds = 60 *...
0
4,891,130
02/03/2011 20:09:39
435,951
05/05/2010 03:08:39
688
4
Is it worth to buy jQuery 1.4 books?
Is it worth to buy jQuery 1.4 books now that 1.5 is out?
jquery
jquery-ui
null
null
null
09/22/2011 00:51:14
not constructive
Is it worth to buy jQuery 1.4 books? === Is it worth to buy jQuery 1.4 books now that 1.5 is out?
4
10,156,358
04/14/2012 18:53:23
468,130
10/06/2010 15:15:56
614
4
Subclassing EDIT control
I'm subclassing an edit control, and I'm looking for a message I could intercept that would allow me to capitalize the first letter in the box.<br> `WM_KEYDOWN` and `WM_CHAR` don't seem to have anything that identifies the characters case. I currently have this working semi-good by processing the `EN_UPDATE` messag...
c++
winapi
null
null
null
null
open
Subclassing EDIT control === I'm subclassing an edit control, and I'm looking for a message I could intercept that would allow me to capitalize the first letter in the box.<br> `WM_KEYDOWN` and `WM_CHAR` don't seem to have anything that identifies the characters case. I currently have this working semi-good by pro...
0
5,805,998
04/27/2011 14:47:07
174,349
09/16/2009 13:43:11
1,201
84
strange jsf issue
I have a facelet component for displaying rss content: **rssFeedReader.xhtml** <h:outputText binding="#{rssReaderBean.text}" value="#{url}"> <f:attribute name="url" value="#{url}" /> </h:outputText> <ui:repeat value="#{rssReaderBean.rss}" var="rss"> <ice:panelGroup> <ice:ou...
java
jsf
null
null
null
null
open
strange jsf issue === I have a facelet component for displaying rss content: **rssFeedReader.xhtml** <h:outputText binding="#{rssReaderBean.text}" value="#{url}"> <f:attribute name="url" value="#{url}" /> </h:outputText> <ui:repeat value="#{rssReaderBean.rss}" var="rss"> <ice:...
0
6,391,265
06/17/2011 20:12:34
57,907
01/22/2009 14:15:45
502
45
How do I get maven to download the platform.jar from the JNA project.
I have the following POM entry <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>3.3.0</version> </dependency> When I build my project it downloads the following files: - jna-3.3.0.jar - jna-3.3.0.jar.sha1 - jna-3.3.0.pom ...
maven-2
jna
null
null
null
null
open
How do I get maven to download the platform.jar from the JNA project. === I have the following POM entry <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>3.3.0</version> </dependency> When I build my project it downloads the following fil...
0
8,663,982
12/29/2011 04:24:22
1,087,280
12/08/2011 07:58:52
26
1
Error occur after hosting- "Object reference not set to an instance"
I am new to .net. I am using Asp.net 3.5 framework C# and SQLSERVER 2005 ![This error is not occur when I run it in local machine. but after hosting it I got this error. What will be the reason?][1] [1]: http://i.stack.imgur.com/TixIe.png
c#
asp.net
sql-server-2005
null
null
12/29/2011 05:23:52
too localized
Error occur after hosting- "Object reference not set to an instance" === I am new to .net. I am using Asp.net 3.5 framework C# and SQLSERVER 2005 ![This error is not occur when I run it in local machine. but after hosting it I got this error. What will be the reason?][1] [1]: http://i.stack.imgur....
3
6,495,713
06/27/2011 16:09:09
817,739
06/27/2011 16:09:09
1
0
SEO tehniques for Social Bookmarking sites
I have a kind of requirement where I need to do SEO for a social bookmarking site. Generally social bookmarking sites are used to get traffic to our website. But my client is building a new social bookmarking website. For which how can I increase traffic through some SEO techniques?
search
seo
engine
tagging
null
06/28/2011 16:10:49
off topic
SEO tehniques for Social Bookmarking sites === I have a kind of requirement where I need to do SEO for a social bookmarking site. Generally social bookmarking sites are used to get traffic to our website. But my client is building a new social bookmarking website. For which how can I increase traffic through some SEO ...
2
5,968,784
05/11/2011 18:21:48
665,341
03/18/2011 01:18:30
20
0
how can i solve this error on wamp?
i have just installed wamp for windows everything worked fine how ever when i try to connect to mysql db i receive this error: Fatal error: Call to undefined function mysql_connect() in C:\wamp\www\pets\app\lib\adodb\drivers\adodb-mysql.inc.php on line 337. PS: i have the mysql extension enabled in my php.ini ...
mysql
php5
wamp
null
null
10/17/2011 21:01:13
too localized
how can i solve this error on wamp? === i have just installed wamp for windows everything worked fine how ever when i try to connect to mysql db i receive this error: Fatal error: Call to undefined function mysql_connect() in C:\wamp\www\pets\app\lib\adodb\drivers\adodb-mysql.inc.php on line 337. PS: i have the...
3
5,439,722
03/26/2011 01:20:47
513,302
11/19/2010 09:29:56
116
17
Inexpensive VPS
I am just going to switch webhosting to VPS and I want to know about inexpensive VPS. I am currently using arvixe shared hosting but as it is shared so have many restrictions. So looking for VPS now. I have seen these two inexpensive hosting http://www.webkeepers.com/vps/vps_basic.html http://365ezone.com/vps_h...
vps
web-hosting
null
null
null
03/26/2011 01:47:19
off topic
Inexpensive VPS === I am just going to switch webhosting to VPS and I want to know about inexpensive VPS. I am currently using arvixe shared hosting but as it is shared so have many restrictions. So looking for VPS now. I have seen these two inexpensive hosting http://www.webkeepers.com/vps/vps_basic.html http...
2
7,750,986
10/13/2011 07:50:00
603,633
02/04/2011 18:45:12
1,246
80
Oracle BLOB field or Physical File - Which is more preferable?
Consider following options. - **I have database with a `BLOB` field** - **A database with a `varchar` field with link to physical files on the server** I need to store `PDF` files (approx. 500 daily) Which should I go for. Should I have a data base with `BLOB` field or a data base with a field ha...
oracle
file
blob
null
null
10/16/2011 17:01:39
not constructive
Oracle BLOB field or Physical File - Which is more preferable? === Consider following options. - **I have database with a `BLOB` field** - **A database with a `varchar` field with link to physical files on the server** I need to store `PDF` files (approx. 500 daily) Which should I go for. Should...
4
5,143,100
02/28/2011 14:15:17
637,806
02/28/2011 14:15:17
1
0
Add Watermark on Facebook profile image with an APP
Could you please help me with the app that you have made to add a watermark to the people that give authorization to it. I have been searching for that app and i have not found anything neither info about the code to get it. Could yo help me please with this or tell me important information to success in my intention. ...
image
facebook
application
profile
watermark
null
open
Add Watermark on Facebook profile image with an APP === Could you please help me with the app that you have made to add a watermark to the people that give authorization to it. I have been searching for that app and i have not found anything neither info about the code to get it. Could yo help me please with this or t...
0
5,044,071
02/18/2011 16:48:13
422,121
08/16/2010 20:02:44
223
3
yui3's version of jquery's .width()
How do you calculate the width (in pixels) of an element in yui3? I have tried `.getComputedStyle("width")` and `.get('offsetWidth')` and neither return the correct results, possibly because the div doesn't have a CSS width set on it.
yui
yui3
null
null
null
02/18/2011 20:12:03
too localized
yui3's version of jquery's .width() === How do you calculate the width (in pixels) of an element in yui3? I have tried `.getComputedStyle("width")` and `.get('offsetWidth')` and neither return the correct results, possibly because the div doesn't have a CSS width set on it.
3
11,440,078
07/11/2012 19:33:57
825,421
07/01/2011 19:22:39
103
3
Web app for learning (My)SQL with Gamification
I manage a department where MySQL skills will soon be a requirement and we need to train our existing staff. Providing books and even paying for MySQL classes at the local college are an option; but even better, I would like to create some healthy competition within the department and inspire employees to pursue the ne...
mysql
sql
competitions
null
null
07/13/2012 15:39:30
not constructive
Web app for learning (My)SQL with Gamification === I manage a department where MySQL skills will soon be a requirement and we need to train our existing staff. Providing books and even paying for MySQL classes at the local college are an option; but even better, I would like to create some healthy competition within t...
4
3,632,767
09/03/2010 02:50:35
179,972
09/28/2009 01:09:53
4,781
267
XML Schema validation ignored when fragment-level conformance is enabled?
From my sojourn with XML and Schema validation, it seems that when [fragment-level conformance][1] is enabled for an XML reader, the XML source stops being validated against any included Schemas. However I cannot verify this from the MSDN documentation. Also if I assume this is true, I cannot find a workaround. ...
.net
xml-schema
xml-validation
null
null
null
open
XML Schema validation ignored when fragment-level conformance is enabled? === From my sojourn with XML and Schema validation, it seems that when [fragment-level conformance][1] is enabled for an XML reader, the XML source stops being validated against any included Schemas. However I cannot verify this from the MSD...
0
7,811,773
10/18/2011 18:12:03
692,347
04/05/2011 06:55:28
38
3
CSS: Will I face problems, if I construct CSS from jQuery?
If I detect browser window size on load, and then create the CSS from jQuery after that, will I then have problems with compatibility or memory use ? Are there any reference for using this as general pattern when designing webapps ? Thanks, Jakob
jquery
css
design-patterns
compatibility
null
10/18/2011 18:31:08
not a real question
CSS: Will I face problems, if I construct CSS from jQuery? === If I detect browser window size on load, and then create the CSS from jQuery after that, will I then have problems with compatibility or memory use ? Are there any reference for using this as general pattern when designing webapps ? Thanks, Jakob
1
5,012,819
02/16/2011 05:28:19
615,988
02/14/2011 09:43:08
1
0
compare login time and logout time
if (Convert.ToDateTime(GrdEmployeeAttendance.CurrentRow.Cells["LoginTime"].Value) < Convert.ToDateTime(GrdEmployeeAttendance.CurrentRow.Cells["LogoutTime"].Value)) { if (GrdEmployeeAttendance.Columns[e.ColumnIndex].Name == "LoginTime") { GrdEmployeeA...
c#
.net
null
null
null
02/16/2011 10:07:09
not a real question
compare login time and logout time === if (Convert.ToDateTime(GrdEmployeeAttendance.CurrentRow.Cells["LoginTime"].Value) < Convert.ToDateTime(GrdEmployeeAttendance.CurrentRow.Cells["LogoutTime"].Value)) { if (GrdEmployeeAttendance.Columns[e.ColumnIndex].Name == "LoginTime") ...
1
11,429,608
07/11/2012 09:30:00
1,223,428
02/21/2012 13:08:01
1
0
wpf combobox prevent text changed
is there any way to prevent wpf combobox from changing its text after selection changed? I have a custom control that derives from combobox and I want to be able to set the text manually after selection changed, additionally I cannot prevent the base.OnSelectionChanged from being invoked (this does the trick but it has...
wpf
combobox
selectionchanged
null
null
null
open
wpf combobox prevent text changed === is there any way to prevent wpf combobox from changing its text after selection changed? I have a custom control that derives from combobox and I want to be able to set the text manually after selection changed, additionally I cannot prevent the base.OnSelectionChanged from being ...
0
5,933,865
05/09/2011 07:29:15
663,724
03/17/2011 05:17:05
68
1
How to apply background-color to a button
I have a Button as shown below <input type="button" value="Close" onclick="callMe();" style="top :100px; position:relative; left :710px; width :100px; height :25px; font-size: 15px" /> I have tried using background-color:00BFFF , its currently not working But unfortunately i haven't been ab...
css
null
null
null
null
05/21/2012 16:16:11
not a real question
How to apply background-color to a button === I have a Button as shown below <input type="button" value="Close" onclick="callMe();" style="top :100px; position:relative; left :710px; width :100px; height :25px; font-size: 15px" /> I have tried using background-color:00BFFF , its currently not wo...
1
9,652,812
03/11/2012 05:56:15
1,254,044
03/07/2012 07:17:27
6
0
How would use a get() method to access an element in an arrayList?
This is my code I have so far but I don't know how to access an element in the Array myList? And is the inex of an array list start at 0 or 1? I have just found out about array lists and i need a few pointers and some help ArrayList<String> myList = new ArrayList<String>(); myList.add("hello");...
java
null
null
null
null
03/11/2012 06:36:39
too localized
How would use a get() method to access an element in an arrayList? === This is my code I have so far but I don't know how to access an element in the Array myList? And is the inex of an array list start at 0 or 1? I have just found out about array lists and i need a few pointers and some help ArrayList<Stri...
3
1,156,715
07/21/2009 00:29:23
100,851
05/04/2009 12:37:28
132
24
Map XML Nodes to Datatable Fields
I am new to C# so I apologize if this is a simple task. What I would like to do open an XML file whose root node is a table name and the children of the root node are field names and values. I would then like to map the fields to the root node's table in a SQL Server database and update or insert as needed. Does any...
c#
sql-server-2008
null
null
null
null
open
Map XML Nodes to Datatable Fields === I am new to C# so I apologize if this is a simple task. What I would like to do open an XML file whose root node is a table name and the children of the root node are field names and values. I would then like to map the fields to the root node's table in a SQL Server database an...
0
9,798,712
03/21/2012 04:43:43
779,023
06/01/2011 08:47:28
55
1
Ubuntu 11.04 does not detect my tata photon +
I am trying to connect to the Internet via my photon+ from the past day and have tried various suggestions on the Internet and have tried to zero in to the main cause of the problem which is that my device is not detected. I have tried the following ways: 1) After connecting the device, I tried to create a mobile...
ubuntu
ubuntu-11.04
null
null
null
03/22/2012 11:47:07
off topic
Ubuntu 11.04 does not detect my tata photon + === I am trying to connect to the Internet via my photon+ from the past day and have tried various suggestions on the Internet and have tried to zero in to the main cause of the problem which is that my device is not detected. I have tried the following ways: 1) Afte...
2
1,715,821
11/11/2009 15:13:27
186,608
10/08/2009 18:13:35
8
1
why does Blend suck at compiling?
about 10% of the time when I go to compile code that should compile, blend fails. I know the code should compile because w/o changing a thing it will compile in VS just fine. The really weird thing is that about 50% or more of the time, after compiling in VS and I come back to blend, it compiles. >_< So, why does bl...
expression-blend
visual-studio
compiler
null
null
07/12/2011 17:00:41
not a real question
why does Blend suck at compiling? === about 10% of the time when I go to compile code that should compile, blend fails. I know the code should compile because w/o changing a thing it will compile in VS just fine. The really weird thing is that about 50% or more of the time, after compiling in VS and I come back to ble...
1
523,038
02/07/2009 03:03:30
27,751
10/14/2008 07:26:36
32
0
php - auto select drop down menu based on parameters in browser link
if in the browser i have parameters like http://localhost/specials.php?year=2009&make=honda&model=civic and the dropdown looks something like this <select name="year"> <?php $query = mysql_query("select distinct year from tbl_content where year = '$year'"); while($row = mysql_fetch_assoc($qu...
php
drop
down
null
null
null
open
php - auto select drop down menu based on parameters in browser link === if in the browser i have parameters like http://localhost/specials.php?year=2009&make=honda&model=civic and the dropdown looks something like this <select name="year"> <?php $query = mysql_query("select distinct year from t...
0
3,100,569
06/23/2010 09:52:23
183,871
10/04/2009 07:36:36
189
8
Manipulation of URLEncoded String
I have to pass a string (input) in GET parameter of a URL, but there is a limit on maximum length of URL being 357. The string is to be encoded using "Shift-JIS". For a keyword "blah 123 blahblah 321", i need to strip off last word(s) such that the string would be meaningful and the resulting URL length should be w...
java
urlencode
null
null
null
null
open
Manipulation of URLEncoded String === I have to pass a string (input) in GET parameter of a URL, but there is a limit on maximum length of URL being 357. The string is to be encoded using "Shift-JIS". For a keyword "blah 123 blahblah 321", i need to strip off last word(s) such that the string would be meaningful a...
0
2,860,328
05/18/2010 19:15:16
75,598
03/09/2009 12:24:38
266
14
Managing trace files on Sql Server 2005
I need to manage the trace files for a database on Sql Server 2005 Express Edition. The C2 audit logging is turned on for the database, and the files that it's creating are eating up a lot of space. Can this be done from within Sql Server, or do I need to write a service to monitor these files and take the appropria...
sql-server-2005
audit
logging
null
null
null
open
Managing trace files on Sql Server 2005 === I need to manage the trace files for a database on Sql Server 2005 Express Edition. The C2 audit logging is turned on for the database, and the files that it's creating are eating up a lot of space. Can this be done from within Sql Server, or do I need to write a service ...
0
4,118,432
11/07/2010 15:46:58
499,916
11/07/2010 15:46:58
1
0
Refresh Page, Follow Link, Fill Email Address, Submit
There is a contest over at facebook.com/lowes. I am looking for help making some javascript for GreaseMonkey that will refresh the page looking for an update, follow new "http://bit.ly" links and fill and submit an email address into the resulting page.
javascript
null
null
null
null
11/07/2010 19:48:28
not a real question
Refresh Page, Follow Link, Fill Email Address, Submit === There is a contest over at facebook.com/lowes. I am looking for help making some javascript for GreaseMonkey that will refresh the page looking for an update, follow new "http://bit.ly" links and fill and submit an email address into the resulting page.
1
7,021,141
08/11/2011 05:18:48
825,780
07/02/2011 05:13:00
61
13
How to retrieve author of a office file in python?
Title explains the problem, there are doc and docs files that which I want to retrieive their author information so that I can restructure my files. `os.stat` returns only size and datetime, real-file related information.
python
file
office
author
null
null
open
How to retrieve author of a office file in python? === Title explains the problem, there are doc and docs files that which I want to retrieive their author information so that I can restructure my files. `os.stat` returns only size and datetime, real-file related information.
0
9,511,505
03/01/2012 06:15:56
1,198,988
02/09/2012 06:43:08
1
0
How to submit data by a button click in a database using jdbc?
I am working on a project in java(swing components).i have created a form which consists of a button and a text box.And after entering the value in the textbox and clicking the submit button ,i want the value to be entered in the database .
java
null
null
null
null
03/01/2012 06:49:20
not a real question
How to submit data by a button click in a database using jdbc? === I am working on a project in java(swing components).i have created a form which consists of a button and a text box.And after entering the value in the textbox and clicking the submit button ,i want the value to be entered in the database .
1
10,349,715
04/27/2012 11:23:45
1,099,129
12/15/2011 04:20:45
16
2
i want to learn node.js, anyone suggest me a better book, or link for node.js?
All though i have come across links like this http://www.nodebeginner.org/ As a complete beginner, i couldn't understand few concepts in it, and to be clear, i know only a little bit of javascript.
javascript
node.js
null
null
null
04/28/2012 03:14:09
not constructive
i want to learn node.js, anyone suggest me a better book, or link for node.js? === All though i have come across links like this http://www.nodebeginner.org/ As a complete beginner, i couldn't understand few concepts in it, and to be clear, i know only a little bit of javascript.
4
8,715,543
01/03/2012 16:45:12
1,079,008
12/03/2011 13:31:01
19
0
Why I have a (error does not implement interface member) silverlight
PagesCollection.ViewModel.PagePictureCommands.cs namespace PagesCollection.ViewModel { public partial class PagePicturesViewModel : IPropertieCommands { private ICommand deleteAlbum; public ICommand _CreateAlbum { get ...
c#
wpf
silverlight
interface
partial
null
open
Why I have a (error does not implement interface member) silverlight === PagesCollection.ViewModel.PagePictureCommands.cs namespace PagesCollection.ViewModel { public partial class PagePicturesViewModel : IPropertieCommands { private ICommand deleteAlbum; public ...
0
7,563,509
09/27/2011 02:11:45
239,242
12/27/2009 18:11:44
560
8
How can I selecting multiple columns, only one of which is distinct? (ORACLE SQL)
I want to be able to do this: INSERT INTO TABLE_1(<LIST OF ROWS>) SELECT <LIST OF ROWS> FROM (SELECT DISTINCT <OTHER ROWS> FROM TABLE_2); How can I do this? I receive an error when I try to do it now. Note that `<LIST OF ROWS>` is the same in both cases I use it, and also not that the fields in `<OTHE...
sql
oracle
null
null
null
null
open
How can I selecting multiple columns, only one of which is distinct? (ORACLE SQL) === I want to be able to do this: INSERT INTO TABLE_1(<LIST OF ROWS>) SELECT <LIST OF ROWS> FROM (SELECT DISTINCT <OTHER ROWS> FROM TABLE_2); How can I do this? I receive an error when I try to do it now. Note that `<LI...
0
6,229,361
06/03/2011 15:44:03
64,334
02/09/2009 21:08:32
4,080
83
Why can't you call methods with c# object initializer syntax?
Why can't you call methods with c# object initializer syntax? It seems to me that the property setters are called in the order that they are set in the syntax, so why not allow calls to methods as well? If there is a good reason, I'm missing it.
c#
.net
null
null
null
06/03/2011 17:12:52
not constructive
Why can't you call methods with c# object initializer syntax? === Why can't you call methods with c# object initializer syntax? It seems to me that the property setters are called in the order that they are set in the syntax, so why not allow calls to methods as well? If there is a good reason, I'm missing it.
4
7,437,799
09/15/2011 21:44:22
285,594
03/03/2010 18:19:03
633
34
How can i make my RS232 cable setup so that from Java, i can turn on and off the 12voltage lights?
I have a 12volt light + Battery. ![enter image description here][1] When i connect + and - the light turns on. Now how can connect that + and - wire to my RS232 cable which is connected to my Java application. And from Java button press, i want to turn the light on instead of doing it by my hands. Please advi...
java
linux
hardware
robot
electronics
09/15/2011 22:34:41
off topic
How can i make my RS232 cable setup so that from Java, i can turn on and off the 12voltage lights? === I have a 12volt light + Battery. ![enter image description here][1] When i connect + and - the light turns on. Now how can connect that + and - wire to my RS232 cable which is connected to my Java application....
2
8,589,677
12/21/2011 12:15:02
568,442
01/09/2011 00:12:44
141
10
Information System in Java Using Agent
I got task in my college to create smart information system using java as it language and using Agent. The problem is that I really don`t know what Agent is. I tried too google it and I ended up with confussion. And I don`t know how to implement it on information system. Can anyone point me to get started or maybe ex...
java
artificial-intelligence
system
information
agent
12/21/2011 12:35:39
not a real question
Information System in Java Using Agent === I got task in my college to create smart information system using java as it language and using Agent. The problem is that I really don`t know what Agent is. I tried too google it and I ended up with confussion. And I don`t know how to implement it on information system. Ca...
1
8,648,421
12/27/2011 19:24:21
191,459
10/16/2009 21:12:48
1,964
86
List of Strings to char[] in Java
I have a list of Strings in Java, I would to create an array of Chars instead. Is there a quick and dirty way to do this?
java
string
char
null
null
null
open
List of Strings to char[] in Java === I have a list of Strings in Java, I would to create an array of Chars instead. Is there a quick and dirty way to do this?
0
6,248,719
06/06/2011 06:59:20
698,734
04/08/2011 13:32:42
107
0
how to get open contacts by calling method instead of button click
As per my requirement, i need to get email id's from contacts. And i need to write a code for this in a separate class in a method.To get call this integrate classes into my project simply call that method. This is what i need. for this my code in ownServices is like this. -(NSString *)getSelectedNum...
iphone
null
null
null
null
null
open
how to get open contacts by calling method instead of button click === As per my requirement, i need to get email id's from contacts. And i need to write a code for this in a separate class in a method.To get call this integrate classes into my project simply call that method. This is what i need. for this...
0
9,450,347
02/26/2012 03:40:37
1,233,344
02/26/2012 03:38:26
1
0
Loop through PHP array
Can some help me get this data out of this array so I get $year $month $ count Array ( [0] => MonthlySearchVolume Object ( [year] => 2012 [month] => 1 [count] => 368000 ) [1] => MonthlySearchVolume Object ( [year] => 2011 [month] => 12 [count] => 246000 ) [2] => MonthlySearchVolume Object ( [year] => 2011 [month]...
php
arrays
null
null
null
02/26/2012 03:59:35
not a real question
Loop through PHP array === Can some help me get this data out of this array so I get $year $month $ count Array ( [0] => MonthlySearchVolume Object ( [year] => 2012 [month] => 1 [count] => 368000 ) [1] => MonthlySearchVolume Object ( [year] => 2011 [month] => 12 [count] => 246000 ) [2] => MonthlySearchVolume Obj...
1
8,374,360
12/04/2011 09:17:48
415,020
08/09/2010 11:36:47
168
11
Munin-node won't start Cent OS 5.7
i just installed munin-node on my new cent os 5.4 64bit machine via yum. Installation went fine, i've setup munin and munin-nodes on many machines in the past, but this time i cannot get it to start. When I try to restart it with the following command this happens: [root@Server2 munin]# service munin-node ...
centos
munin
null
null
null
12/05/2011 06:27:14
off topic
Munin-node won't start Cent OS 5.7 === i just installed munin-node on my new cent os 5.4 64bit machine via yum. Installation went fine, i've setup munin and munin-nodes on many machines in the past, but this time i cannot get it to start. When I try to restart it with the following command this happens: [...
2
4,184,816
11/15/2010 13:28:45
183,201
10/02/2009 15:47:56
28
0
NHibernate: cannot append items to map element
I have map element in my mapping - <component name="Resources"> <map name="Inner" table="SomeTable" lazy="false" fetch="join" access="field.lowercase-underscore"> <key column="Id"/> <index column="IndexId" type="String"/> <composite-element class="SomeResource"> <property name="Name"/...
nhibernate
map
mapping
null
null
null
open
NHibernate: cannot append items to map element === I have map element in my mapping - <component name="Resources"> <map name="Inner" table="SomeTable" lazy="false" fetch="join" access="field.lowercase-underscore"> <key column="Id"/> <index column="IndexId" type="String"/> <composite-elemen...
0
10,016,813
04/04/2012 18:06:09
962,469
09/24/2011 09:30:36
73
0
alternative for Jquery scrollto
I'm searching a way to have a horizontal scroller on hyperlinks and I have been taking a look on the scrollto plugin but as it seems is really outdated. Is it possible to achive the same results just with simple jquery?
jquery
null
null
null
null
04/05/2012 05:54:18
not a real question
alternative for Jquery scrollto === I'm searching a way to have a horizontal scroller on hyperlinks and I have been taking a look on the scrollto plugin but as it seems is really outdated. Is it possible to achive the same results just with simple jquery?
1
3,104,172
06/23/2010 17:49:03
374,503
06/23/2010 17:49:02
1
0
trace an address using ip address
how to trace the information of an individual using ip adress and email id can any one help me... i tried for a example using my friends ip address , and i was able to get only this information alone.... Location of the IP address 59.162.171.249: Visakhapatnam in India. but how to trace his address perfectly pl...
networking
network-programming
network-protocols
null
null
06/23/2010 18:01:26
not a real question
trace an address using ip address === how to trace the information of an individual using ip adress and email id can any one help me... i tried for a example using my friends ip address , and i was able to get only this information alone.... Location of the IP address 59.162.171.249: Visakhapatnam in India. but...
1
7,815,028
10/18/2011 23:38:19
706,628
04/13/2011 18:32:20
673
38
Why does my Gmail address appear as my handle in Android Market reviews?
I am really frustrated that my Gmail address appears as my handle in Android Market reviews. As a result I really can't review apps because I don't want to get spammed. How do I change my handle? I cannot find this setting anywhere. :( Thanks in advance, Barry
android
gmail
android-market
null
null
10/19/2011 18:41:26
off topic
Why does my Gmail address appear as my handle in Android Market reviews? === I am really frustrated that my Gmail address appears as my handle in Android Market reviews. As a result I really can't review apps because I don't want to get spammed. How do I change my handle? I cannot find this setting anywhere. :( ...
2
10,174,711
04/16/2012 13:06:18
123,671
06/16/2009 12:41:22
1,417
36
HTML5 history: how can I see the URL that was popped (ie, the page we were on when we hit the back button)
I am using the [HTML5 history API][1] I notice that if: - if I am on a page called /first - I use pushState to /second - And then hit the back button The event handler for window.onpopstate() returns the state for /first, as documented. In order to transition from /second to /first, **I would like to s...
javascript
html5
browser-history
null
null
null
open
HTML5 history: how can I see the URL that was popped (ie, the page we were on when we hit the back button) === I am using the [HTML5 history API][1] I notice that if: - if I am on a page called /first - I use pushState to /second - And then hit the back button The event handler for window.onpopstate() re...
0
10,454,110
05/04/2012 18:19:19
1,336,879
04/16/2012 17:13:35
1
0
What is the difference between Linux and Unix?
Can some one please explain the major difference between Linux and Unix? Thanks & Regards, Shiva.
linux
unix
null
null
null
05/04/2012 18:33:57
not a real question
What is the difference between Linux and Unix? === Can some one please explain the major difference between Linux and Unix? Thanks & Regards, Shiva.
1
3,498,618
08/17/2010 01:11:41
133,374
07/05/2009 15:29:28
1,274
44
Sun JVMs memory allocator compared to others
How does Sun JVMs memory allocator compares to glibcs malloc or jemalloc?
jvm
malloc
glibc
null
null
08/17/2010 02:28:20
not constructive
Sun JVMs memory allocator compared to others === How does Sun JVMs memory allocator compares to glibcs malloc or jemalloc?
4
7,626,798
10/02/2011 14:01:25
560,287
01/02/2011 11:32:58
377
27
XML save all children to variable
I am using jQuery AJAX to get a XML file with: $.ajax({ type: "GET", url: phoneXmlPath, dataType: "xml", contentType: "text/xml; charset=utf-8", success: function(xml){ $(xml).find("phone[phone_id="+phone_id+"]").each(function(index, value){ var tis = $(this); tis.chi...
jquery
xml
null
null
null
null
open
XML save all children to variable === I am using jQuery AJAX to get a XML file with: $.ajax({ type: "GET", url: phoneXmlPath, dataType: "xml", contentType: "text/xml; charset=utf-8", success: function(xml){ $(xml).find("phone[phone_id="+phone_id+"]").each(function(index, value){ ...
0
10,893,788
06/05/2012 08:13:54
1,310,055
04/03/2012 09:37:02
1
0
Car Dealer WordPress Plugin
I wonder if there is a plugin for wordpress that allow the user to search, select and filter a new and used cars and their prices or something like that... Please advise... Thanks in advance.
wordpress
plugins
null
null
null
06/05/2012 21:47:16
not constructive
Car Dealer WordPress Plugin === I wonder if there is a plugin for wordpress that allow the user to search, select and filter a new and used cars and their prices or something like that... Please advise... Thanks in advance.
4
6,938,676
08/04/2011 09:01:10
878,207
08/04/2011 09:01:10
1
0
Tools for web design
I am developing a website, but it seems that I am wasting my time writing CSS/HTML from scratch. Are there any tools that can do that for me? drag and drop style or any programs with a GUI that will make my life easier? My main concen now is to dal with the back-end part of the website, which it will be Django/MySQL.
html
css
django
null
null
08/05/2011 04:11:05
not constructive
Tools for web design === I am developing a website, but it seems that I am wasting my time writing CSS/HTML from scratch. Are there any tools that can do that for me? drag and drop style or any programs with a GUI that will make my life easier? My main concen now is to dal with the back-end part of the website, which ...
4
7,265,984
09/01/2011 03:58:01
670,521
03/22/2011 03:28:55
740
26
How to customize window menu (linux ubuntu)
I'm looking for a way to add a "kill this window" item in the window menu: ![Window Menu][1] Is it possible, under gnome/ubuntu? Thanks! [1]: http://i.stack.imgur.com/7xLEN.png
linux
ubuntu
menu
customization
gnome
11/22/2011 16:54:01
off topic
How to customize window menu (linux ubuntu) === I'm looking for a way to add a "kill this window" item in the window menu: ![Window Menu][1] Is it possible, under gnome/ubuntu? Thanks! [1]: http://i.stack.imgur.com/7xLEN.png
2
7,058,733
08/14/2011 18:16:11
724,344
04/25/2011 20:43:37
11
5
C++/CLI: Get Stock Price
I'm currently working on a C++ project to get the price of my stocks, and display it in cells on my computer screen (so it looks nice). However, my Googling is NOT working for any of this. I also searched for libraries, but to no avail. Can anyone please tell me how I can do this? I don't know how to use the Google and...
winforms
visual-c++
c++-cli
stock
null
08/14/2011 20:12:25
not a real question
C++/CLI: Get Stock Price === I'm currently working on a C++ project to get the price of my stocks, and display it in cells on my computer screen (so it looks nice). However, my Googling is NOT working for any of this. I also searched for libraries, but to no avail. Can anyone please tell me how I can do this? I don't ...
1
9,623,804
03/08/2012 19:44:29
1,229,311
02/23/2012 20:33:37
1
0
Dynamically appending the user input to <script src= " "> from a textbox in Java Script
Im new to Java Script, i tried searching for a solution to my problem online, but wasnt successful. I need to append the user's input from a textbox, after onclick of a button to 'src' attribute of <script> element in the same file. How can i do this? <script id="url " type="text/javascript" src="http://gdata.you...
javascript
javascript-events
youtube-api
null
null
03/09/2012 01:48:46
not a real question
Dynamically appending the user input to <script src= " "> from a textbox in Java Script === Im new to Java Script, i tried searching for a solution to my problem online, but wasnt successful. I need to append the user's input from a textbox, after onclick of a button to 'src' attribute of <script> element in the sa...
1
1,241,352
08/06/2009 20:49:20
143,718
07/23/2009 13:18:58
11
2
rails group by multiple columns
i have budgets table with emptype_id and calendar_id actual_head, estimated_head when i do Budgets.sum(:actual_head ,:group=>"emptype_id,calendar_id") i do not get the result grouped by the above two columns but only by the emptype_id however when i check the log the sql query is right "SELECT sum(`b...
ruby-on-rails
activerecord
sql
null
null
null
open
rails group by multiple columns === i have budgets table with emptype_id and calendar_id actual_head, estimated_head when i do Budgets.sum(:actual_head ,:group=>"emptype_id,calendar_id") i do not get the result grouped by the above two columns but only by the emptype_id however when i check the log th...
0
9,606,906
03/07/2012 18:14:37
261,002
01/28/2010 13:23:08
244
1
Saving .bmp file using hBitmap = CreateDIBSection() in C Win32
I have the following code. I want to use the return of this function to create one .bmp file, can somebody please let me? Thank you hBitmap = CreateDIBSection( hDCBits, // handle of device context (BITMAPINFO *)&zWinGHeader, // address of structure containing // bitmap size, forma...
c
file
winapi
save
bmp
null
open
Saving .bmp file using hBitmap = CreateDIBSection() in C Win32 === I have the following code. I want to use the return of this function to create one .bmp file, can somebody please let me? Thank you hBitmap = CreateDIBSection( hDCBits, // handle of device context (BITMAPINFO *)&zWinGHeader, ...
0
10,707,990
05/22/2012 18:35:49
489,041
10/27/2010 15:34:54
2,870
95
Can not deploy Java Web Service to Glassfish
I am trying to deploy a simple web service to Glassfish. Here is the web service class: import com.dv.testrunner.extended.Task; import com.medallion.etl.exception.StepExecutionException; import java.util.logging.Level; import java.util.logging.Logger; import javax.jws.WebMethod; import j...
java
web-services
netbeans
glassfish
jax-ws
null
open
Can not deploy Java Web Service to Glassfish === I am trying to deploy a simple web service to Glassfish. Here is the web service class: import com.dv.testrunner.extended.Task; import com.medallion.etl.exception.StepExecutionException; import java.util.logging.Level; import java.util.logging.Logg...
0
10,292,659
04/24/2012 06:17:32
1,352,960
04/24/2012 06:15:48
1
0
reading in a file separated by bars c++
I am trying trying to read in a file in C++ where the characters are separated by bars "|", what is the best way to do that? Thanks
c++
file-io
null
null
null
07/06/2012 22:23:22
not a real question
reading in a file separated by bars c++ === I am trying trying to read in a file in C++ where the characters are separated by bars "|", what is the best way to do that? Thanks
1
8,467,369
12/11/2011 20:53:21
1,091,627
12/10/2011 20:28:12
1
0
Whats wrong with my java program?
I don't know whats wrong with my java program and don't know why it won't compile: import java.util.Scanner; /* Design, build and test a program to input the number of workers followed by their name, hours worked, hourly rate of pay, overtime rate of pay, status (married or single) for each. The main program must u...
java
null
null
null
null
12/11/2011 21:18:40
too localized
Whats wrong with my java program? === I don't know whats wrong with my java program and don't know why it won't compile: import java.util.Scanner; /* Design, build and test a program to input the number of workers followed by their name, hours worked, hourly rate of pay, overtime rate of pay, status (married or si...
3
6,714,472
07/16/2011 00:31:18
681,904
03/29/2011 10:59:45
24
0
cover list to string then back it to list [ Python]
i got problem it's about covering from List to String to edit it i have file text content these name Roby Bucky johan then i want to add beside each one `OK:1` so i do this code Names='a.txt' # here is the names O=open(Names,'r') # we open the file content the names iamList=O.readl...
python
edit
strip
null
null
null
open
cover list to string then back it to list [ Python] === i got problem it's about covering from List to String to edit it i have file text content these name Roby Bucky johan then i want to add beside each one `OK:1` so i do this code Names='a.txt' # here is the names O=open(Names,'r') ...
0
8,978,395
01/23/2012 20:53:29
1,036,513
11/08/2011 21:43:31
3
0
App downloaded but not showing
I am a developer for a mobile apps company and we have put a .ipa file up on our website for our clients to download and test. One of the testers said that the app downloaded and showed the blue progress bar and "Installing," but it never showed up on her home screen. Her device is included in the provisioning profil...
iphone
ios
download
iphone-provisioning
null
01/27/2012 13:49:57
too localized
App downloaded but not showing === I am a developer for a mobile apps company and we have put a .ipa file up on our website for our clients to download and test. One of the testers said that the app downloaded and showed the blue progress bar and "Installing," but it never showed up on her home screen. Her device is...
3
7,618,752
10/01/2011 07:02:11
924,353
09/01/2011 22:36:53
239
0
Not worked true tooltp box in jQuery
Not know why tooltip box(class `.show_tooltip`) there is left when mouse enter on `li a`, i want display each tooltip box top same link that mouse is enter on it and if the width and height was more or less it is same style.(i want links put in right and please do not change my html code) **[DEMO][1]** I want exampl...
javascript
jquery
css
null
null
null
open
Not worked true tooltp box in jQuery === Not know why tooltip box(class `.show_tooltip`) there is left when mouse enter on `li a`, i want display each tooltip box top same link that mouse is enter on it and if the width and height was more or less it is same style.(i want links put in right and please do not change my...
0
38,360
09/01/2008 20:07:42
905
08/10/2008 09:37:14
3,048
200
Can you recommend an alternative for NCover?
I'm looking for a good .Net code coverage alternative to NCover (insufficient .Net 3.5 coverage and now pay-for) or VSTS (way too expensive). We currently test with NUnit, but could switch to something with a similar 'layout' for its text fixtures if it were better integrated.
.net
code-coverage
null
null
null
06/11/2012 08:31:39
not constructive
Can you recommend an alternative for NCover? === I'm looking for a good .Net code coverage alternative to NCover (insufficient .Net 3.5 coverage and now pay-for) or VSTS (way too expensive). We currently test with NUnit, but could switch to something with a similar 'layout' for its text fixtures if it were better i...
4
828,455
05/06/2009 07:40:33
100,240
05/03/2009 12:46:50
1
1
rails windows problem
I just installed ruby on rails on windows. install mysql and created a new project. Then I changed database.yml to use my own mysql server as follow development: adapter: mysql database: mytools username: test password: test when I try to access story controller(http://localhost:3000/stories), error show...
ruby
on
rails
mysql
null
null
open
rails windows problem === I just installed ruby on rails on windows. install mysql and created a new project. Then I changed database.yml to use my own mysql server as follow development: adapter: mysql database: mytools username: test password: test when I try to access story controller(http://localhos...
0
6,801,390
07/23/2011 15:28:48
335,355
05/07/2010 10:49:54
647
10
How do I debug "INT_MAX undeclared"
`printf(INT_MAX);` limits.h is included, for some reason it's not working in this particular project. In my testbed, it just works. I have no idea how to approach this problem other than removing every single file in the entire project until it starts working. This would be an inhuman amount of work. How can I find ...
c
debugging
preprocessor
null
null
03/29/2012 12:45:40
too localized
How do I debug "INT_MAX undeclared" === `printf(INT_MAX);` limits.h is included, for some reason it's not working in this particular project. In my testbed, it just works. I have no idea how to approach this problem other than removing every single file in the entire project until it starts working. This would be a...
3
11,428,521
07/11/2012 08:27:38
969,113
09/28/2011 12:55:06
57
0
Linear Model Overfit due to too many Covariates?
my study design involves a control and 2 test groups plus some covariates. Each group consists of around 20 observations. In total I look at around a 1000 variables. I created a linear model using the lm function in R including 2 covariates. After that I thought I include another covariate because doing a PCA plot...
r
lm
anova
null
null
07/11/2012 11:05:30
off topic
Linear Model Overfit due to too many Covariates? === my study design involves a control and 2 test groups plus some covariates. Each group consists of around 20 observations. In total I look at around a 1000 variables. I created a linear model using the lm function in R including 2 covariates. After that I though...
2
6,055,583
05/19/2011 08:01:30
550,889
12/22/2010 06:50:34
62
1
How do i mask images on hover ?
I have 9 images aligned in 3 rows. Each row has 3 images.The images popup on hover. Except the image which popups the rest of images should be darkened. Since i have yellow background if i try to reduce opacity of the images , the images appear dim yellow . So i can't reduce opacity. Any other solution . Please help
javascript
jquery
html
css
null
null
open
How do i mask images on hover ? === I have 9 images aligned in 3 rows. Each row has 3 images.The images popup on hover. Except the image which popups the rest of images should be darkened. Since i have yellow background if i try to reduce opacity of the images , the images appear dim yellow . So i can't reduce opacity...
0
9,329,736
02/17/2012 14:11:57
234,270
12/18/2009 01:54:58
1,245
38
DjangoAppEngine and Eventual Consistency Problems on the High Replication Datastore
I am using djangoappengine and I think have run into some problems with the way it handles eventual consistency on the high application datastore. First, entity groups are not even implemented in djangoappengine. Second, I think that when you do a djangoappengine get(), it is really doing an app engine query in...
google-app-engine
django-nonrel
djangoappengine
eventual-consistency
null
null
open
DjangoAppEngine and Eventual Consistency Problems on the High Replication Datastore === I am using djangoappengine and I think have run into some problems with the way it handles eventual consistency on the high application datastore. First, entity groups are not even implemented in djangoappengine. Second, I ...
0
8,711,381
01/03/2012 11:10:14
1,127,642
01/03/2012 10:46:19
1
0
i cant understand this error, NullPointerException
I am making my first little gui, is a order and costummer IS just for training java. I get this errorcode when i try to add an article to an hashmap through my controller klass. i understand there is something that is returning Null but why. line 94 is at controller.addArtikel(nyttArtikelnr, nyttNamn, nyttInpris, ny...
java
nullpointerexception
null
null
null
01/04/2012 13:32:46
too localized
i cant understand this error, NullPointerException === I am making my first little gui, is a order and costummer IS just for training java. I get this errorcode when i try to add an article to an hashmap through my controller klass. i understand there is something that is returning Null but why. line 94 is at contr...
3
8,668,070
12/29/2011 12:48:45
1,121,132
12/29/2011 12:16:10
1
0
custom connect my iphone app to facebook
Is there any option to make a custom login page to facebook from my app? i know that i cant customize the default login page on the facebook SDK. my proggramer sais that we can use it by php.. do apple will agree my app if it will have such connect like that? My iPhone Proggramer said to me that it is possible to...
php
iphone
objective-c
facebook
facebook-connect
12/30/2011 17:57:03
not a real question
custom connect my iphone app to facebook === Is there any option to make a custom login page to facebook from my app? i know that i cant customize the default login page on the facebook SDK. my proggramer sais that we can use it by php.. do apple will agree my app if it will have such connect like that? My iPhon...
1
8,245,733
11/23/2011 16:31:31
1,054,005
11/18/2011 14:38:05
1
0
In mysql what does the regex statement "...REGEXP '\w'" do or return?
In mysql what does the regex statement REGEXP '\w' do/return? Is it at all like the perl \w?
mysql
regex
null
null
null
null
open
In mysql what does the regex statement "...REGEXP '\w'" do or return? === In mysql what does the regex statement REGEXP '\w' do/return? Is it at all like the perl \w?
0
115,328
09/22/2008 15:01:38
15,771
09/17/2008 12:36:35
47
0
How can I do Databinding in c#?
I have the following class <pre> public class Car { public Name {get; set;} } </pre> and I want to bind this programmatically to a text box. How do I do that? Shooting in the dark: <pre> ... Car car = new Car(); TextEdit editBox = new TextEdit(); editBox.DataBinding.Add("Name", car, "Car - Name...
c#
data-binding
null
null
null
null
open
How can I do Databinding in c#? === I have the following class <pre> public class Car { public Name {get; set;} } </pre> and I want to bind this programmatically to a text box. How do I do that? Shooting in the dark: <pre> ... Car car = new Car(); TextEdit editBox = new TextEdit(); editBox.Dat...
0
8,240,968
11/23/2011 10:56:49
476,660
10/15/2010 08:26:15
403
18
Sharing data between Sinatra condition and request block
I am just wondering if it is possible to have a condition that passes information to the request body once it is complete, I doubt conditions can do it and are the right place even if they could, because it implies they are to do conditional logic, however the authorisation example also redirects so it has a blur of co...
ruby
sinatra
action-filter
null
null
null
open
Sharing data between Sinatra condition and request block === I am just wondering if it is possible to have a condition that passes information to the request body once it is complete, I doubt conditions can do it and are the right place even if they could, because it implies they are to do conditional logic, however t...
0
5,943,544
05/09/2011 23:15:21
363,247
06/10/2010 08:47:00
55
10
Automated Website (Files + Mysql database) backup on Linux ?
Is there a free and simple to use program to do automatic website backup ? The program should be able to upload website files and mysql database to a remote ftp location where the backup are to be stored so that, in case the machine is broken, one can restore things. The target system is Linux (I am using Ubunto ...
mysql
linux
website
backup
automatic
05/10/2011 12:33:41
off topic
Automated Website (Files + Mysql database) backup on Linux ? === Is there a free and simple to use program to do automatic website backup ? The program should be able to upload website files and mysql database to a remote ftp location where the backup are to be stored so that, in case the machine is broken, one can...
2
78,172
09/16/2008 22:59:37
11,688
09/16/2008 10:13:56
1
0
Using C/Pthreads: do shared variables need to be volatile?
In the C programming language and Pthreads as the threading library; do variables/structures that are shared between threads need to be declared as volatile? Assuming that they might be protected by a lock or not (barriers perhaps). Does the pthread POSIX standard have any say about this, is this compiler-dependent ...
c
pthreads
multithreading
null
null
null
open
Using C/Pthreads: do shared variables need to be volatile? === In the C programming language and Pthreads as the threading library; do variables/structures that are shared between threads need to be declared as volatile? Assuming that they might be protected by a lock or not (barriers perhaps). Does the pthread POS...
0
10,406,341
05/02/2012 00:47:27
325,419
04/25/2010 14:53:03
171
1
In what situation, if we add sorted numbers as keys to a hash table, we can expect the hash to be ordered?
Is it true that in PHP, when we insert elements into a new hash table using sorted numbers as the keys, then the resulting hash will also be ordered? So when we get the keys, they will be ordered, and `$a[0], $a[1], $a[2]` will also follow that original order? (although certainly, the keys will be that order, but t...
php
python
ruby
perl
hash
05/02/2012 06:33:39
not a real question
In what situation, if we add sorted numbers as keys to a hash table, we can expect the hash to be ordered? === Is it true that in PHP, when we insert elements into a new hash table using sorted numbers as the keys, then the resulting hash will also be ordered? So when we get the keys, they will be ordered, and `$a[...
1
4,553,639
12/29/2010 11:24:28
350,294
05/25/2010 05:26:42
1,932
220
javascript strange behaviour of jQuery .click
<br>I ahve a html file, in which I include .js file. This file contains this code: $(document).ready(function(){ $("button.save").click(function(){ alert("payment_type_form_"); }); PlanTabs.Open("payments"); $("#payment-types-accordion").lyfAccordion(); }); ...
javascript
jquery
html
null
null
null
open
javascript strange behaviour of jQuery .click === <br>I ahve a html file, in which I include .js file. This file contains this code: $(document).ready(function(){ $("button.save").click(function(){ alert("payment_type_form_"); }); PlanTabs.Open("payments"); $("#p...
0
8,279,762
11/26/2011 16:16:49
985,573
10/08/2011 16:54:17
3
0
I'm confuse appliying OOP in a program
First that all, I have to ask for excuse for the gramatics and english mistakes. I have to do a program in Java with the following characteristics: "The system will create a guest list, which will be consulted by the doorman whenever it reaches a person. The porter guests can search by name or surname. When the e...
oop
class
design
design-patterns
object
11/26/2011 20:16:47
not constructive
I'm confuse appliying OOP in a program === First that all, I have to ask for excuse for the gramatics and english mistakes. I have to do a program in Java with the following characteristics: "The system will create a guest list, which will be consulted by the doorman whenever it reaches a person. The porter gues...
4
7,167,608
08/23/2011 21:12:46
299,230
03/22/2010 17:29:47
462
7
Reading javascript from xml
I have a list of strings I want to put in a XML file and include the file into the web pages. So when I do validation on client side using javascript. I can read those strings from the XML and parse it immediately. Something like this blabla.cshtml <includebla> path to xml </includebla> <script type="...
javascript
xml
razor
null
null
null
open
Reading javascript from xml === I have a list of strings I want to put in a XML file and include the file into the web pages. So when I do validation on client side using javascript. I can read those strings from the XML and parse it immediately. Something like this blabla.cshtml <includebla> path to xml ...
0
5,090,902
02/23/2011 12:26:15
629,731
02/23/2011 07:26:35
1
1
ImageIO.write() method and png
Why `ImageIO.write(bufferedimage_dest,"png",new File(filedest));` writes jpg (without transparency colour) file instead png?
java
image-processing
null
null
null
06/04/2012 09:18:46
too localized
ImageIO.write() method and png === Why `ImageIO.write(bufferedimage_dest,"png",new File(filedest));` writes jpg (without transparency colour) file instead png?
3
7,658,049
10/05/2011 07:31:33
874,854
08/02/2011 14:45:17
3
0
dynamic columns dissapears after postback
I have a gridview with some bounfields and 2 templatefield. In these two, i create dynamically usercontrols (dropdownlist, textbox). I let the user change the value of these usercontrols. The problem is when I want to get the values of the controls. After a postback, the values in boundfields are still there but my dyn...
asp.net
gridview
controls
postback
null
null
open
dynamic columns dissapears after postback === I have a gridview with some bounfields and 2 templatefield. In these two, i create dynamically usercontrols (dropdownlist, textbox). I let the user change the value of these usercontrols. The problem is when I want to get the values of the controls. After a postback, the v...
0
11,533,587
07/18/2012 02:42:58
1,533,434
07/18/2012 02:38:35
1
0
Join table twice with NHibernate
I have 2 tables: Account: AccountID, Name Message: FromAccountID, ToAccountID, Contents How do i join two tables to get name of the sender and receiver with Nhibernate
nhibernate
join
criteria
null
null
07/20/2012 19:55:48
not a real question
Join table twice with NHibernate === I have 2 tables: Account: AccountID, Name Message: FromAccountID, ToAccountID, Contents How do i join two tables to get name of the sender and receiver with Nhibernate
1
8,589,344
12/21/2011 11:50:46
577,873
01/16/2011 22:37:17
1
1
Store ACL in LDAP
Can't find any docs/howto store ACL user/resource/action to LDAP. We use LDAP for athorization in access to FTP and MAIL server. It would be great to define access rights to many services in LDAP. For example: user1 has FTP:ftp1 can do list,create,delete user1 has DNS:test.cz can do edit mx, edit base, edit...
ldap
acl
null
null
null
12/22/2011 07:06:23
off topic
Store ACL in LDAP === Can't find any docs/howto store ACL user/resource/action to LDAP. We use LDAP for athorization in access to FTP and MAIL server. It would be great to define access rights to many services in LDAP. For example: user1 has FTP:ftp1 can do list,create,delete user1 has DNS:test.cz can do e...
2
6,589,225
07/05/2011 21:41:15
86,263
04/02/2009 15:35:39
714
10
How do twisted and multiprocessing.Process create zombies?
In python, using twisted loopingcall, multiprocessing.Process, and multiprocessing.Queue; is it possible to create a zombie process. And, if so, then how?
python
process
twisted
multiprocessing
zombie-process
null
open
How do twisted and multiprocessing.Process create zombies? === In python, using twisted loopingcall, multiprocessing.Process, and multiprocessing.Queue; is it possible to create a zombie process. And, if so, then how?
0
6,454,151
06/23/2011 12:41:36
812,186
06/23/2011 12:28:29
1
0
Receive anonymous users' input by web upload form or email. Any online service for that?
Are you aware of any online service or online "platform" allowing users, not previously registered, to upload pairs of picture+comment to a database? It would be a collaborative database of picture+comment pairs. I'm not going wiki or googlegroup, picasa or such because I'd like the user to have the least to do...
database
image
anonymous-users
collaborative
null
06/23/2011 14:22:52
off topic
Receive anonymous users' input by web upload form or email. Any online service for that? === Are you aware of any online service or online "platform" allowing users, not previously registered, to upload pairs of picture+comment to a database? It would be a collaborative database of picture+comment pairs. I'm n...
2
6,987,531
08/08/2011 19:32:25
884,693
08/08/2011 19:32:25
1
0
How to I send an HTML string back to the browser?
How do I return an HTML document to a browser and have it display using C#? Do I have to save it on the server and do a response.redirect or what?
c#
html
string-formatting
null
null
08/09/2011 02:52:37
not a real question
How to I send an HTML string back to the browser? === How do I return an HTML document to a browser and have it display using C#? Do I have to save it on the server and do a response.redirect or what?
1
10,716,536
05/23/2012 08:49:16
910,029
08/24/2011 16:04:43
10
0
ASP.net Data GridView
I need to generate Data gridview just like below. All the P Cells should be textboxes and editable. I have no clue how to do it .please let me know how I can do it in C#. Thanks in advance [enter link description here][1] [1]: http://i48.tinypic.com/1zg3o5j.png
c#
asp.net
null
null
null
05/23/2012 15:48:51
not a real question
ASP.net Data GridView === I need to generate Data gridview just like below. All the P Cells should be textboxes and editable. I have no clue how to do it .please let me know how I can do it in C#. Thanks in advance [enter link description here][1] [1]: http://i48.tinypic.com/1zg3o5j.png
1
6,953,071
08/05/2011 07:47:56
78,000
03/14/2009 06:49:33
367
15
How can I render 3D graphics which looks like the following image? 3d watercolor rendering
I don't need the dinosaur, just the buildings with details on the buildings, but I would like the 3D graphics to take on this sort of style. Real-time. ![enter image description here][1] [1]: http://i.stack.imgur.com/sXv2w.jpg
graphics
3d
null
null
null
08/05/2011 14:00:55
off topic
How can I render 3D graphics which looks like the following image? 3d watercolor rendering === I don't need the dinosaur, just the buildings with details on the buildings, but I would like the 3D graphics to take on this sort of style. Real-time. ![enter image description here][1] [1]: http://i.stack.imgur.c...
2
3,003,264
06/09/2010 05:24:28
355,063
06/01/2010 04:35:47
6
2
Is it Possible to change the Default Margins of Browser through JavaScript???
I want to change the default margins of Browser through JavaScript because I want to print the displayed document on page but the margins are different on different browser??? plz help me to change default margins of browser.
javascript
null
null
null
null
null
open
Is it Possible to change the Default Margins of Browser through JavaScript??? === I want to change the default margins of Browser through JavaScript because I want to print the displayed document on page but the margins are different on different browser??? plz help me to change default margins of browser.
0