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,946,418
08/04/2011 18:10:37
649,419
03/08/2011 07:37:32
232
23
Spring Security Plugin Issue
I'm trying to setup spring security for my test application i installed the plugin , created User and Role classes ; put this to UrlMappings.groovy; "/login/$action?"(controller: "login") "/logout/$action?"(controller: "logout") then I put a user in the bootstrap as follows, import org.proje...
grails
spring-security
null
null
null
null
open
Spring Security Plugin Issue === I'm trying to setup spring security for my test application i installed the plugin , created User and Role classes ; put this to UrlMappings.groovy; "/login/$action?"(controller: "login") "/logout/$action?"(controller: "logout") then I put a user in the bootstrap a...
0
3,642,632
09/04/2010 14:13:48
434,111
08/29/2010 07:14:12
77
9
sef in joomla for dynamic urls
I have made a joomla component and wise to make the site sef. The problem is that some of the URL from the components put values by get method. so that the next page can do the task accordingly. say index.php?option=com_mediaonline&view=mediaonline&task=234&id=837 so that the next page will process the tas...
php
joomla
joomla1.5
joomla-sef-urls
sef
null
open
sef in joomla for dynamic urls === I have made a joomla component and wise to make the site sef. The problem is that some of the URL from the components put values by get method. so that the next page can do the task accordingly. say index.php?option=com_mediaonline&view=mediaonline&task=234&id=837 so tha...
0
770,239
04/20/2009 21:44:03
73,804
03/04/2009 17:14:23
117
42
Windows Task Manager Columns - Handles
What is the Windows Task Manager "Handles" column a measure of? File Handles? Or Page File Pointers? Also is it bad for one program to have 8000 handles? Thanks!
memory-management
pointers
windows-xp
null
null
05/19/2011 14:24:30
off topic
Windows Task Manager Columns - Handles === What is the Windows Task Manager "Handles" column a measure of? File Handles? Or Page File Pointers? Also is it bad for one program to have 8000 handles? Thanks!
2
4,840,214
01/29/2011 23:48:04
544,272
12/16/2010 04:33:20
23
2
textual substitution in an html template by ${varName} notation
so I was looking at a project and I noted that they had a templating system set up in html files, and I am not too familiar with the whole concept...But when I started browsing the code I was seeing things like: ${varName} which upon execution were being substituted for names out of an nls file which I assume is intend...
javascript
dojo
serverside-javascript
shorthand
null
null
open
textual substitution in an html template by ${varName} notation === so I was looking at a project and I noted that they had a templating system set up in html files, and I am not too familiar with the whole concept...But when I started browsing the code I was seeing things like: ${varName} which upon execution were be...
0
9,339,893
02/18/2012 08:50:25
1,200,789
02/09/2012 22:12:18
15
0
Property to return separate month, day, year attributes formatted as XX/XX/XXX?
This one has me stumped, since I don't think this can be done with a simple DateTime method, unless there's something I'm not understanding. It should be simple like this: format the variables to read in the XX/XX/XXXX format and if one of these integers is 0, a console output should read ~~unspecified~~ ...
c#
date
null
null
null
02/19/2012 14:30:09
not a real question
Property to return separate month, day, year attributes formatted as XX/XX/XXX? === This one has me stumped, since I don't think this can be done with a simple DateTime method, unless there's something I'm not understanding. It should be simple like this: format the variables to read in the XX/XX/XXXX format an...
1
2,928,879
05/28/2010 12:22:06
345,797
05/20/2010 06:41:46
16
3
How do i do this : Define/Model Database Online
There are many IDEs to create database schema pictorially. I was wondering as to how I can do it online? Are there open source codes/libraries/applications which already do this? Basically, what i am looking at is : let the user define a table and the columns - which in common man's term is : define relations etc pi...
javascript
database
database-design
uml
processing.org
null
open
How do i do this : Define/Model Database Online === There are many IDEs to create database schema pictorially. I was wondering as to how I can do it online? Are there open source codes/libraries/applications which already do this? Basically, what i am looking at is : let the user define a table and the columns - w...
0
9,814,388
03/21/2012 23:34:13
528,453
12/02/2010 19:05:23
101
0
jquery selector not working in IE6 due to uppercase id
I have a hidden input field on a page <div id="SomeDiv"> <input type="text" name="ID" id="ID" value="Something"/> </div> If i use $("#SomeDiv #ID").val() in IE9 i get the value "Something" but in IE6 i'm getting undefined. If i change the id and name to lower case IE6 returns correctly. I.e. ...
javascript
jquery
null
null
null
null
open
jquery selector not working in IE6 due to uppercase id === I have a hidden input field on a page <div id="SomeDiv"> <input type="text" name="ID" id="ID" value="Something"/> </div> If i use $("#SomeDiv #ID").val() in IE9 i get the value "Something" but in IE6 i'm getting undefined. If i change t...
0
6,842,363
07/27/2011 09:48:28
775,964
05/30/2011 08:47:06
11
0
In embedded domain, copying of structure is dangerous. is it true..??? why.??
In embedded software domain for copying structure of same type people dont use direct assignment and do that by memcpy function or each element copying. lets have example struct tag { int a; int b; }; struct tag exmple1 = {10,20}; struct tag exmple2; for copying exmpl...
c++
c
embedded
embedded-resource
null
null
open
In embedded domain, copying of structure is dangerous. is it true..??? why.?? === In embedded software domain for copying structure of same type people dont use direct assignment and do that by memcpy function or each element copying. lets have example struct tag { int a; int b; }; ...
0
7,458,241
09/17/2011 22:25:50
373,721
06/22/2010 23:24:15
81
1
MVC C# Select Where
I am trying to add filter by ID for the following: public ActionResult Index() { var model = from o in new MainDBContext().OffLinePayments select new EditOffLinePayment { ID = o.ID, ...
asp.net
mvc
null
null
null
null
open
MVC C# Select Where === I am trying to add filter by ID for the following: public ActionResult Index() { var model = from o in new MainDBContext().OffLinePayments select new EditOffLinePayment { ...
0
11,145,450
06/21/2012 19:32:38
999,465
10/17/2011 15:24:35
3
0
external disk dont work on ubuntu
i have problem with in my ubuntu: when i connect external imation apollo disc i dont see a file system. Disk is working because in windows OS on this same computer it works as well. when i typed dmesg i got following logs [12913.260078] usb 4-1: new low speed USB device using ohci_hcd and address 15 [129...
linux
ubuntu
linux-device-driver
disk
externalinterface
06/29/2012 18:54:08
off topic
external disk dont work on ubuntu === i have problem with in my ubuntu: when i connect external imation apollo disc i dont see a file system. Disk is working because in windows OS on this same computer it works as well. when i typed dmesg i got following logs [12913.260078] usb 4-1: new low speed USB device ...
2
10,360,623
04/28/2012 04:36:54
453,455
09/21/2010 04:23:26
45
0
Mainline bit torrent DHT implementation library
Would anyone know where I can find a reusable mainline DHT implementation that I could use to connect to the real bittorrent network ? Preferably java, but any other language would do.
java
bittorrent
dht
null
null
04/29/2012 01:21:20
not constructive
Mainline bit torrent DHT implementation library === Would anyone know where I can find a reusable mainline DHT implementation that I could use to connect to the real bittorrent network ? Preferably java, but any other language would do.
4
4,230,698
11/20/2010 01:11:50
292,291
03/12/2010 10:53:07
2,117
29
Whats the difference between Dependency Property SetValue() & SetCurrentValue()
The reason why I am asking this is because I was recommended by @Greg D (from [this question][1]) to use `SetCurrentValue()` instead, but a look at the docs and didn't see whats the difference. Or whats does "without changing its value source" mean? [**`SetValue()`**][2] Sets the local value of a dependency prope...
wpf
dependency-properties
null
null
null
null
open
Whats the difference between Dependency Property SetValue() & SetCurrentValue() === The reason why I am asking this is because I was recommended by @Greg D (from [this question][1]) to use `SetCurrentValue()` instead, but a look at the docs and didn't see whats the difference. Or whats does "without changing its value...
0
4,476,740
12/18/2010 05:06:14
339,108
05/12/2010 08:40:51
684
1
How to design a control which would let an user to put a decimal point at an appropriate position
Introduce the decimal point at the correct place in the product: 2.5 x 9 = 225 17 x 1.17 = 1989 0.04 x 8 = 32 24 x 1.1 = 264 If you look at the above samples, the decimal point can occur anywhere between the numbers. What would be an intuitive way to capture user input selection here (e.g. in t...
html
design
user-interface
usability
null
null
open
How to design a control which would let an user to put a decimal point at an appropriate position === Introduce the decimal point at the correct place in the product: 2.5 x 9 = 225 17 x 1.17 = 1989 0.04 x 8 = 32 24 x 1.1 = 264 If you look at the above samples, the decimal point can occur anywh...
0
11,254,322
06/28/2012 23:32:43
387,121
07/08/2010 20:11:27
1
2
UI Design / Flow - what should "Save" and "Cancel" do?
I had a discussion with a co-worker earlier today about a design pet peeve of mine, and after some searching regarding UI design principles I can't really find anything regarding this particular scenario. In many applications (mostly web, but windows as well) I see a form that allows the user to add/edit/delete rows...
design
user-interface
flow
null
null
06/28/2012 23:41:46
off topic
UI Design / Flow - what should "Save" and "Cancel" do? === I had a discussion with a co-worker earlier today about a design pet peeve of mine, and after some searching regarding UI design principles I can't really find anything regarding this particular scenario. In many applications (mostly web, but windows as wel...
2
2,348,520
02/27/2010 18:54:46
231,435
12/14/2009 16:36:12
316
20
Select and disable each input field within a form, wrapped in a table in jquery
I am disabling a form based on a checkbox... I am having trouble adding the disabled attribute. here is what I got so far: HTML: <table id="someTable"> <tr> <td>Name:</td> <td><input type="text" name="name" /></td> </tr> ... </table> Javascript selector/attribu...
jquery
jquery-selectors
jquery-traversing
null
null
null
open
Select and disable each input field within a form, wrapped in a table in jquery === I am disabling a form based on a checkbox... I am having trouble adding the disabled attribute. here is what I got so far: HTML: <table id="someTable"> <tr> <td>Name:</td> <td><input type="text" nam...
0
1,494,399
09/29/2009 19:13:41
4,066
09/01/2008 16:06:15
1,803
76
How do I Search/Find and Replace in an STL string
Is there a way to replace all occurrences of a substring with another string in std::string? For instance: void SomeFunction(std::string& str) { str = str.replace("hello", "world"); //< I'm looking for something nice like this }
c++tl
string
search
replace
find-and-replace
null
open
How do I Search/Find and Replace in an STL string === Is there a way to replace all occurrences of a substring with another string in std::string? For instance: void SomeFunction(std::string& str) { str = str.replace("hello", "world"); //< I'm looking for something nice like this }
0
8,937,379
01/20/2012 06:04:08
1,013,414
10/25/2011 19:28:59
1
0
what does "passing argument 2 of strcmp makes pointer from integer without a cast" error in C language mean?
I am compiling my code in C language in vim text editor and I am getting In function main: two errors one in line 138,143,148 ":warning:passing argument 2 of strcmp makes pointer from integer without a cast" and the other one just in line 143 ":warning: note: expected const char * but argument is of type int" This my ...
strcmp
null
null
null
null
null
open
what does "passing argument 2 of strcmp makes pointer from integer without a cast" error in C language mean? === I am compiling my code in C language in vim text editor and I am getting In function main: two errors one in line 138,143,148 ":warning:passing argument 2 of strcmp makes pointer from integer without a cast...
0
2,868,185
05/19/2010 18:14:49
345,366
05/19/2010 18:14:49
1
0
Java threads for the beginner
I've been trying to explain Java threading to a colleague who has never been exposed to multi-threaded applications, but apparently I'm not a very good teacher. Can anyone recommend a good online or offline resource that can explain threading in a simple, step-by-step manner? I know it's a complex topic, but surely...
java
multithreading
null
null
null
null
open
Java threads for the beginner === I've been trying to explain Java threading to a colleague who has never been exposed to multi-threaded applications, but apparently I'm not a very good teacher. Can anyone recommend a good online or offline resource that can explain threading in a simple, step-by-step manner? I kn...
0
1,251,799
08/09/2009 17:28:47
2,424
08/22/2008 04:09:40
10,951
567
How to determine what row contains a specific decimal is in a sql column
Somewhere in the midst of thousands of records I have a decimal value in a sql column that has an odd value. Specifically, it has a decimal place of .002. The actual amount could be pretty much anything like 238.002 or 543.002 So how can I write a query to find that?
sql-server-2008
null
null
null
null
null
open
How to determine what row contains a specific decimal is in a sql column === Somewhere in the midst of thousands of records I have a decimal value in a sql column that has an odd value. Specifically, it has a decimal place of .002. The actual amount could be pretty much anything like 238.002 or 543.002 So ho...
0
4,623,458
01/07/2011 07:36:37
379,779
06/30/2010 07:45:54
289
37
Is critical thinking required in software enginnering ?
I'm not sure this is a right place to ask this question. Is critical thinking required/useful in software enginnering ? The two areas I can think of are code reviews and requirement analysis.
code-review
requirements-management
null
null
null
01/07/2011 08:00:10
off topic
Is critical thinking required in software enginnering ? === I'm not sure this is a right place to ask this question. Is critical thinking required/useful in software enginnering ? The two areas I can think of are code reviews and requirement analysis.
2
11,004,914
06/12/2012 21:10:09
247,372
01/10/2010 05:52:51
3,461
176
How can I set `less` or `more` max lines (scrollable height) limit/boundary in linux?
(Sorry for the title. Any suggestions?) I've set my commandline PS1 to cover 3 lines: 1. white space 2. user, server and pwd 3. `$` or `#` to input I think `less` (or `more`?) is configured to break after `window's height - 1`, because when I do a `$ git log`, the first two lines are invisible at the top of ...
linux
command-line
ps1
null
null
06/14/2012 04:04:23
off topic
How can I set `less` or `more` max lines (scrollable height) limit/boundary in linux? === (Sorry for the title. Any suggestions?) I've set my commandline PS1 to cover 3 lines: 1. white space 2. user, server and pwd 3. `$` or `#` to input I think `less` (or `more`?) is configured to break after `window's hei...
2
2,817,407
05/12/2010 09:19:33
266,115
02/04/2010 11:10:36
432
33
TripleDES in Perl/PHP/ColdFusion
Recently a problem arose regarding hooking up an API with a payment processor who were requesting a string to be encrypted to be used as a token, using the TripleDES standard. Our Applications run using ColdFusion, which has an Encrypt tag - that supports TripleDES - however the result we were getting back was not what...
tripledes
perl
php
coldfusion
encryption
null
open
TripleDES in Perl/PHP/ColdFusion === Recently a problem arose regarding hooking up an API with a payment processor who were requesting a string to be encrypted to be used as a token, using the TripleDES standard. Our Applications run using ColdFusion, which has an Encrypt tag - that supports TripleDES - however the re...
0
7,413,190
09/14/2011 08:12:12
924,353
09/01/2011 22:36:53
93
0
Separate two digits first a number with php
How can separate two digits first a number by PHP? **Like:** if is number this: `1345` =i want this output=> `13` or `1542=output=>15` or `5872=output=>58` or ...
php
php5
null
null
null
null
open
Separate two digits first a number with php === How can separate two digits first a number by PHP? **Like:** if is number this: `1345` =i want this output=> `13` or `1542=output=>15` or `5872=output=>58` or ...
0
11,027,740
06/14/2012 06:24:51
861,774
07/25/2011 14:35:07
41
0
Httpwebrequest not retrieving Cookies
I have created the following code, which as far as Im aware should work fine? It is not receiving any cookies at all, I have double checked with wire shark and the cookies are being returned... this is being developed on Windows Phone 7. byte[] content = GetLoginRequestContent(username, password); ...
c#
windows-phone-7
null
null
null
null
open
Httpwebrequest not retrieving Cookies === I have created the following code, which as far as Im aware should work fine? It is not receiving any cookies at all, I have double checked with wire shark and the cookies are being returned... this is being developed on Windows Phone 7. byte[] content = Get...
0
10,894,433
06/05/2012 09:03:27
809,807
06/22/2011 06:39:37
182
5
PF Updating a TextInput according to Calendars
I am getting a starting date and an end day from the user and then counting the weekdays according to these values. These are my components: <h:outputText value="Starting Date: "/> <p:calendar pattern="dd/MM/yyyy" value="#{aView.holidays.startingDate}"> <p:ajax listener="#{aView.count}" update="count...
jsf-2.0
primefaces
null
null
null
null
open
PF Updating a TextInput according to Calendars === I am getting a starting date and an end day from the user and then counting the weekdays according to these values. These are my components: <h:outputText value="Starting Date: "/> <p:calendar pattern="dd/MM/yyyy" value="#{aView.holidays.startingDate}"> ...
0
2,413,805
03/10/2010 01:03:44
269,595
02/09/2010 15:38:29
211
13
Best books for SQL Server / database design.
I have some really good books for SQL Server, like: - SQL Server 2008 Bible - Pro SQL Server 2008 - Relational Database Design and Implementation - SQL Server 2008 for Developers. Can you suggest/recommend some other titles, that may address other topics perhaps, that you found truly useful?
sql-server
sql
databases
database-design
database
09/30/2011 12:26:03
not constructive
Best books for SQL Server / database design. === I have some really good books for SQL Server, like: - SQL Server 2008 Bible - Pro SQL Server 2008 - Relational Database Design and Implementation - SQL Server 2008 for Developers. Can you suggest/recommend some other titles, that may address other topics perh...
4
10,884,700
06/04/2012 16:27:59
1,432,581
06/02/2012 15:40:58
1
0
How to create a dropdown menu with multiple choice which uses mysql to find the items to display in android 2.3.3?
I have a project I have to do but I am stuck in the design phase. I need to develop an android application which will have a dropdown menu with multiple choice that will display the items it takes from the database. For example the database will contain a table of courses that the user can choose and the dropdown menu...
android
database
drop-down-menu
null
null
null
open
How to create a dropdown menu with multiple choice which uses mysql to find the items to display in android 2.3.3? === I have a project I have to do but I am stuck in the design phase. I need to develop an android application which will have a dropdown menu with multiple choice that will display the items it takes fr...
0
8,332,140
11/30/2011 19:57:26
105,261
05/12/2009 09:54:53
356
4
asp to php translate
how to write this code in php? fld_year = Request.QueryString("year") fld_month = Request.QueryString("month") if fld_year = "" then fld_year = year(now()) if fld_month = "" then fld_month = month(now()) if fld_month = 12 then fld_Ny = fld_year + 1 fld_Nm = 1 fl...
php
asp
null
null
null
11/30/2011 20:03:31
not a real question
asp to php translate === how to write this code in php? fld_year = Request.QueryString("year") fld_month = Request.QueryString("month") if fld_year = "" then fld_year = year(now()) if fld_month = "" then fld_month = month(now()) if fld_month = 12 then fld_Ny = fld_year + 1...
1
8,272,361
11/25/2011 17:21:07
476,093
10/14/2010 17:41:13
1
0
How to display Magento Custom Options Individually
My Magento site has a product which has a few Custom Options, one text, one file upload and four drop down lists. The design of the site dictates that I need to show these options throughout the product view page and not all in one group. Is there a function that I can call to return the HTML of a singe Custom O...
magento
magento-1.4
null
null
null
null
open
How to display Magento Custom Options Individually === My Magento site has a product which has a few Custom Options, one text, one file upload and four drop down lists. The design of the site dictates that I need to show these options throughout the product view page and not all in one group. Is there a functio...
0
5,566,877
04/06/2011 13:09:51
673,260
03/23/2011 14:54:10
1
0
Regular Expression problem
I need a regular expression for javascript that will get "`jones.com/ca`" from "`Hello we are jones.com/ca in Tampa`". The "`jones.com/ca`" could be any web url extension (example: .net, .co, .gov, etc), and any name. So the regular expression needs to find all instances of say "`.com`" and all the text to the last whi...
javascript
null
null
null
null
null
open
Regular Expression problem === I need a regular expression for javascript that will get "`jones.com/ca`" from "`Hello we are jones.com/ca in Tampa`". The "`jones.com/ca`" could be any web url extension (example: .net, .co, .gov, etc), and any name. So the regular expression needs to find all instances of say "`.com`" ...
0
3,032,325
06/13/2010 13:09:01
252,163
01/16/2010 13:34:44
506
28
1120: Why can't it access the variable?
I'm new at as3, maybe thats the reason why i don't understand, why the `setInterval` causes an error. <mx:Script> <![CDATA[ import flash.utils.setInterval; import mx.controls.Alert; [Bindable] public var MyInt:int = 500; setInterval(function():void{ ++MyInt; },1000); ]]> ...
flex
actionscript-3
null
null
null
null
open
1120: Why can't it access the variable? === I'm new at as3, maybe thats the reason why i don't understand, why the `setInterval` causes an error. <mx:Script> <![CDATA[ import flash.utils.setInterval; import mx.controls.Alert; [Bindable] public var MyInt:int = 500; setInterval(funct...
0
1,281,291
08/15/2009 06:12:28
156,843
08/15/2009 06:05:13
1
0
what language should an EE major learn?
I want to know which language should I learn or reinforce so that i won't be caught off-guard. Let's assume that I'm an Electrical Engineer major and i want to go into the field of Power Systems ( Electric Power Engineering). Also, how can i become really good at using labVIEW.
electrical-engineering
programming-languages
null
null
null
08/17/2009 20:20:19
not a real question
what language should an EE major learn? === I want to know which language should I learn or reinforce so that i won't be caught off-guard. Let's assume that I'm an Electrical Engineer major and i want to go into the field of Power Systems ( Electric Power Engineering). Also, how can i become really good at using la...
1
5,491,536
03/30/2011 19:53:44
69,080
02/20/2009 20:12:39
158
9
Favorite/Recommended Webhosts
I'm in search of a new web host. I've been using Dreamhost for the past 4-5 years, and although I have no complaints, I figured there might be better alternatives out there now. I came across Media Temple, and although their features sound nice, a lot of reviews I read were claiming poor performance. What do you ...
isp
webhost
null
null
null
03/31/2011 13:06:30
not constructive
Favorite/Recommended Webhosts === I'm in search of a new web host. I've been using Dreamhost for the past 4-5 years, and although I have no complaints, I figured there might be better alternatives out there now. I came across Media Temple, and although their features sound nice, a lot of reviews I read were claimin...
4
7,054,779
08/14/2011 03:21:27
852,459
07/19/2011 16:49:33
13
0
Cisco 7945 - Asterisk - Change features on softkeys and set what they do
I have a Cisco 7945g phone. I want to change the features displayed above the soft keys and change how they behave. By soft key, I'm referring to the 4 buttons beneath the display that say Dial, New Call, ReDial, DND, etc. I have a soft key template file titled SK123.xml, I also have XMLDefault.cnf.xml, dialplan.xml SE...
xml
voip
sip
asterisk
cisco
08/14/2011 04:05:34
off topic
Cisco 7945 - Asterisk - Change features on softkeys and set what they do === I have a Cisco 7945g phone. I want to change the features displayed above the soft keys and change how they behave. By soft key, I'm referring to the 4 buttons beneath the display that say Dial, New Call, ReDial, DND, etc. I have a soft key t...
2
10,577,704
05/14/2012 04:59:18
1,006,884
10/21/2011 10:17:20
138
1
Detecting memory leaks in nodejs
Are there some tools for detecting memory leaks in nodejs? And tell me about your experience in testing nodejs applications.
node.js
null
null
null
null
null
open
Detecting memory leaks in nodejs === Are there some tools for detecting memory leaks in nodejs? And tell me about your experience in testing nodejs applications.
0
8,592,990
12/21/2011 16:22:38
999,620
10/17/2011 16:56:20
17
2
Silverlight on Windows Phone: IValueConverter is never called for a custom property
I have a user control with a property defined as follows: public partial class ChartEx : UserControl { private object _dataSource; public object DataSource { get { return _dataSource; } set { _dataSource = value; //break here } } ...
c#
silverlight
binding
null
null
null
open
Silverlight on Windows Phone: IValueConverter is never called for a custom property === I have a user control with a property defined as follows: public partial class ChartEx : UserControl { private object _dataSource; public object DataSource { get { return _dataSource; } ...
0
9,837,699
03/23/2012 10:34:32
944,978
10/14/2010 06:55:53
178
21
Twitter Bootstrap Themeroller
Is there any themeroller application like [jQuery UI Themeroller][1] for [Twitter Bootrap][2]. It would be fun and easy to design and generate custom theme for [Twitter Bootrap][2]. [1]: http://jqueryui.com/themeroller/ [2]: http://twitter.github.com/bootstrap/
jquery
css
jquery-ui
twitter-bootstrap
themeroller
03/23/2012 13:29:36
not a real question
Twitter Bootstrap Themeroller === Is there any themeroller application like [jQuery UI Themeroller][1] for [Twitter Bootrap][2]. It would be fun and easy to design and generate custom theme for [Twitter Bootrap][2]. [1]: http://jqueryui.com/themeroller/ [2]: http://twitter.github.com/bootstrap/
1
9,473,589
02/27/2012 22:46:16
1,234,392
02/26/2012 21:25:00
1
0
g++ compile errors
i am trying to compile VS2008 files with g++ and get the following errors. $ g++ 8-1.cpp /tmp/ccSyAiju.o:8-1.cpp:(.text+0x2f1): undefined reference to `Employee::loadEmployee(std::basic_ifstream<char, std::char_traits<char> >&)' collect2: ld returned 1 exit status
c++
null
null
null
null
04/21/2012 14:30:11
not a real question
g++ compile errors === i am trying to compile VS2008 files with g++ and get the following errors. $ g++ 8-1.cpp /tmp/ccSyAiju.o:8-1.cpp:(.text+0x2f1): undefined reference to `Employee::loadEmployee(std::basic_ifstream<char, std::char_traits<char> >&)' collect2: ld returned 1 exit status
1
4,997,454
02/14/2011 21:25:28
595,146
01/29/2011 17:37:21
21
2
iOS Game Size problem
I developed an iOS Universal game and I want to know if 100mb means that the game is very large compared to other games, I really have a problem with those .png images which are over 8mb each
ios
memory
size
null
null
01/09/2012 13:57:04
not a real question
iOS Game Size problem === I developed an iOS Universal game and I want to know if 100mb means that the game is very large compared to other games, I really have a problem with those .png images which are over 8mb each
1
8,387,868
12/05/2011 15:43:12
1,051,893
11/17/2011 13:32:03
3
0
JSF converts &nbsp; to 0x20 space when sending a4j request
I have a problem: when input text contains non-breaking characters they are converted into white-spaces during the ajax request. But i need them to be converted into 0xA0 character.
jsf
null
null
null
null
12/06/2011 15:45:21
not a real question
JSF converts &nbsp; to 0x20 space when sending a4j request === I have a problem: when input text contains non-breaking characters they are converted into white-spaces during the ajax request. But i need them to be converted into 0xA0 character.
1
7,369,493
09/10/2011 03:50:57
705,773
04/11/2011 12:26:21
384
29
Integer to byte casting in Java
In Java we can do byte b = 5; But why can't we pass same argument to a function which accepts `byte` myObject.testByte(5); public void testByte (byte b) { System.out.println("Its byte"); } It gives following error The method testByte(byte) in the type Apple i...
java
null
null
null
null
null
open
Integer to byte casting in Java === In Java we can do byte b = 5; But why can't we pass same argument to a function which accepts `byte` myObject.testByte(5); public void testByte (byte b) { System.out.println("Its byte"); } It gives following error The meth...
0
238,741
10/26/2008 22:47:25
31,658
10/26/2008 22:47:25
1
0
How do I put GIF/PNG/... image on a BitBtn in Delphi?
I'm using Delphi 2007. How can I put a GIF/PNG image on a BitBtn component?
delphi
null
null
null
null
null
open
How do I put GIF/PNG/... image on a BitBtn in Delphi? === I'm using Delphi 2007. How can I put a GIF/PNG image on a BitBtn component?
0
5,374,587
03/21/2011 06:44:30
643,104
03/03/2011 14:00:07
1
0
i want to know which is the best 'C' compiler which is works with windows 7 ?
Hello friends i m using dev c++ but it has creating some problems while working with windows 7 SO I WAN'T the best compiler which is works with windows 7.
c++
c
compiler
windows-7
null
03/21/2011 06:57:55
not constructive
i want to know which is the best 'C' compiler which is works with windows 7 ? === Hello friends i m using dev c++ but it has creating some problems while working with windows 7 SO I WAN'T the best compiler which is works with windows 7.
4
8,588,187
12/21/2011 10:13:13
1,095,508
12/13/2011 10:21:30
1
0
need to parse this RDF!!! just need to parse this file and catch all the 'Data Gather' text
<?xml version="1.0" encoding="utf-8"?> <rdf:RDF xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:ns1="http://testing.com/seil/v1.3/ap...
java
rdf
jena
null
null
null
open
need to parse this RDF!!! just need to parse this file and catch all the 'Data Gather' text === <?xml version="1.0" encoding="utf-8"?> <rdf:RDF xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:r...
0
8,728,349
01/04/2012 14:20:11
709,406
04/15/2011 07:58:15
662
72
App crashes at times in the setcontentview method
hi guys i am facing a strange problem. My app runs fine till this exception occurs > 01-04 19:23:18.576: ERROR/InputDispatcher(15546): channel '409a24d8 com.sdi.videodate/com.sdi.videodate.LoginPage (server)' ~ Consumer closed input channel or an error occurred. events=0x8 01-04 19:23:18.576: ERROR/InputDispatche...
android
null
null
null
null
03/10/2012 15:19:46
not a real question
App crashes at times in the setcontentview method === hi guys i am facing a strange problem. My app runs fine till this exception occurs > 01-04 19:23:18.576: ERROR/InputDispatcher(15546): channel '409a24d8 com.sdi.videodate/com.sdi.videodate.LoginPage (server)' ~ Consumer closed input channel or an error occurred...
1
8,105,803
11/12/2011 16:30:54
1,036,634
11/08/2011 23:08:06
1
0
access to generic form field in template
I have a form with generic fields forms.py class OfferForm(forms.ModelForm): class Meta: model=Offer some_views.py def add_field(request): form = OfferForm() #some logic here for x in list: form.fi...
python
django
templates
null
null
null
open
access to generic form field in template === I have a form with generic fields forms.py class OfferForm(forms.ModelForm): class Meta: model=Offer some_views.py def add_field(request): form = OfferForm() #some logic here ...
0
5,515,280
04/01/2011 15:11:34
643,092
03/03/2011 13:52:30
10
0
conection to database in C#
I need to connect with sql server 2008 , i am using C# as a front end application. Here is my code: public partial class FlagUser : Form { FlagUserConnectionDataContext DAC; public FlagUser() { //code here DAC = new FlagUserConnectionDataContext(); }
c#
null
null
null
null
04/01/2011 15:14:38
not a real question
conection to database in C# === I need to connect with sql server 2008 , i am using C# as a front end application. Here is my code: public partial class FlagUser : Form { FlagUserConnectionDataContext DAC; public FlagUser() { //code here DAC = new FlagUserConne...
1
10,779,624
05/28/2012 05:12:21
1,373,033
03/12/2011 20:16:49
41
1
Where to upload images (server)
I have 50 millions of images.Which will be used by my 3 website.Prior to making decision about server.Please give me suggestion about servers. 1:-Should i use one server for all images/database.files 2:-Should i use different server for images 3:-If i will put all images on one server (one folder),There is any probl...
image
upload
null
null
null
05/29/2012 05:57:39
off topic
Where to upload images (server) === I have 50 millions of images.Which will be used by my 3 website.Prior to making decision about server.Please give me suggestion about servers. 1:-Should i use one server for all images/database.files 2:-Should i use different server for images 3:-If i will put all images on one s...
2
5,475,108
03/29/2011 15:35:38
590,083
01/26/2011 03:48:47
61
1
Why can't we "pipe" other web sites' result?
A few months ago, I saw news that said Bing piped google's search result. Regardless of whether their did or not, the issue I concern about is: why is it illegal? I know it's immoral. But in the aspect of law, is it a crime? Accord which law?
website
pipe
law
null
null
03/29/2011 16:03:21
off topic
Why can't we "pipe" other web sites' result? === A few months ago, I saw news that said Bing piped google's search result. Regardless of whether their did or not, the issue I concern about is: why is it illegal? I know it's immoral. But in the aspect of law, is it a crime? Accord which law?
2
4,691,729
01/14/2011 13:52:30
207,894
11/10/2009 15:37:29
93
4
Django: How to manipulate a Model object before adding it to DB?
In Python-Django, I've got a Model with a FileField member in it. This member stores video files. I'd like to "interfere" with the standard "add model row/object/instance" proecdure of Django, and manipulate each video I'm adding, before actually *committing* or adding it to database. The manipulation is to conve...
python
django
null
null
null
null
open
Django: How to manipulate a Model object before adding it to DB? === In Python-Django, I've got a Model with a FileField member in it. This member stores video files. I'd like to "interfere" with the standard "add model row/object/instance" proecdure of Django, and manipulate each video I'm adding, before actually ...
0
11,232,363
06/27/2012 18:04:00
1,486,311
06/27/2012 16:21:11
1
0
pointer declaration in header causes the application to crash
I'm having trouble with a class in C++ and Qt. I'm trying to declare a pointer in the header file (i need the pointer to be global), but when i run the program, it just crashes. I don't have any warnings after compiling. Here's the .h definition. 1. #include "ui_EditorWindow.h" 2. #include "IconData.h" ...
c++
qt
pointers
header-files
null
06/28/2012 10:47:11
not a real question
pointer declaration in header causes the application to crash === I'm having trouble with a class in C++ and Qt. I'm trying to declare a pointer in the header file (i need the pointer to be global), but when i run the program, it just crashes. I don't have any warnings after compiling. Here's the .h definition. ...
1
10,364,568
04/28/2012 14:48:03
1,362,484
04/28/2012 06:30:44
3
1
Connection timeout error while uploading bulk images
I have to upload 1000 to 1500 images at a time on server.But it gives following error that The following error was encountered: Read Timeout The system returned: [No Error] A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retr...
c#
asp.net
null
null
null
null
open
Connection timeout error while uploading bulk images === I have to upload 1000 to 1500 images at a time on server.But it gives following error that The following error was encountered: Read Timeout The system returned: [No Error] A Timeout occurred while waiting to read data from the network. T...
0
7,379,373
09/11/2011 15:51:34
939,311
09/11/2011 15:51:34
1
0
facebook-actionscript-api full source download
http://code.google.com/p/facebook-actionscript-api/source/checkout is the checkout page however it is not allowed to checkout completely. under trunk->source it should be "actionscript" tab like in http://code.google.com/p/facebook-actionscript-api/source/browse/trunk/source/?r=320#source%2Factionscript but it canno...
flash
actionscript-3
facebook
null
null
09/12/2011 06:53:15
too localized
facebook-actionscript-api full source download === http://code.google.com/p/facebook-actionscript-api/source/checkout is the checkout page however it is not allowed to checkout completely. under trunk->source it should be "actionscript" tab like in http://code.google.com/p/facebook-actionscript-api/source/browse/tr...
3
1,426,750
09/15/2009 12:03:44
163,423
08/26/2009 10:36:47
43
3
Best books on JVM
Every good Java developer (well.. any developer) has his own list of the best books on each technology. Like: - Core Java — "Thinking In Java" B. Eckel, "Core Java" K. Horstmann; - Advanced Java — "Effective Java", "Java Puzzlers" J. Bloch; - Code Style — "Code Complete" S. Mcconnell; - Design Patterns — ...
books
java
jvm
null
null
09/15/2011 07:23:25
not constructive
Best books on JVM === Every good Java developer (well.. any developer) has his own list of the best books on each technology. Like: - Core Java — "Thinking In Java" B. Eckel, "Core Java" K. Horstmann; - Advanced Java — "Effective Java", "Java Puzzlers" J. Bloch; - Code Style — "Code Complete" S. Mcconnell;...
4
4,283,389
11/26/2010 07:49:17
264,950
02/03/2010 03:58:00
174
0
dependent dropdown box with Yii
i have a countries, states, cities tables , and I need 3 dropdown menus wherein, if i select a country like e.g United States, the states dropdown menu will automatically show only the states that are under United States, and next, if I select a State like e.g California, the Cities drop down menu will only show off t...
php
php5
yii
null
null
null
open
dependent dropdown box with Yii === i have a countries, states, cities tables , and I need 3 dropdown menus wherein, if i select a country like e.g United States, the states dropdown menu will automatically show only the states that are under United States, and next, if I select a State like e.g California, the Citie...
0
9,081,832
01/31/2012 15:07:51
1,155,758
01/18/2012 08:46:06
1
0
exchange data between Internet Web app (j2ee app) and Android mobile application
I am working on a Android app prototype, where I need to exchange data between internet Web app and Android mobile application. How can I achieve that, any pointers?
java
android
java-ee
null
null
null
open
exchange data between Internet Web app (j2ee app) and Android mobile application === I am working on a Android app prototype, where I need to exchange data between internet Web app and Android mobile application. How can I achieve that, any pointers?
0
7,819,933
10/19/2011 10:33:01
1,002,927
10/19/2011 10:24:51
1
0
undefined method `announce' for class `Class' (NameError) in rails
I get the following error after i have included octopus gem in my application ...can anybody help me in this?..... rails console --trace /usr/lib/ruby/gems/1.8/gems/activesupport-3.1.0/lib/active_support/core_ext/module/aliasing.rb:31:in `alias_method': undefined method `announce' for class `Class' (NameError) fro...
ruby-on-rails
null
null
null
null
null
open
undefined method `announce' for class `Class' (NameError) in rails === I get the following error after i have included octopus gem in my application ...can anybody help me in this?..... rails console --trace /usr/lib/ruby/gems/1.8/gems/activesupport-3.1.0/lib/active_support/core_ext/module/aliasing.rb:31:in `alias_...
0
10,171,976
04/16/2012 09:53:55
608,170
02/08/2011 13:15:22
21
2
Using Memcached with YII's Query Builder
I'm using [YII's Query builder][1] for SELECT queries in my application. How to use memcached along with the same? Regards,<br/> Abhijit [1]: http://www.yiiframework.com/doc/guide/1.1/en/database.query-builder
memcached
yii
null
null
null
null
open
Using Memcached with YII's Query Builder === I'm using [YII's Query builder][1] for SELECT queries in my application. How to use memcached along with the same? Regards,<br/> Abhijit [1]: http://www.yiiframework.com/doc/guide/1.1/en/database.query-builder
0
9,566,515
03/05/2012 12:19:08
458,930
09/26/2010 20:41:55
68
1
Why the users of main Domain controller can't logon from child domain in the other site to it's Domain?
I've **A** & **B** site , every site have 1 server , the **A** have main domain **innovation.com** the first domain controller , the other is **alex.innovation.com** the second domain controller . the both server is Windows Server 2008. the problem is the users of the first domain **innovation.com** can't log on from ...
active-directory
windows-server-2008
user-accounts
null
null
03/05/2012 19:29:54
off topic
Why the users of main Domain controller can't logon from child domain in the other site to it's Domain? === I've **A** & **B** site , every site have 1 server , the **A** have main domain **innovation.com** the first domain controller , the other is **alex.innovation.com** the second domain controller . the both serve...
2
6,715,065
07/16/2011 03:17:18
147,601
07/30/2009 05:40:08
6,336
38
Simple games to program for a beginner?
I am teaching a friend how to program in Python, and I'd like to have some simple games to use as exercises for her. We've already done Hangman and Tic Tac Toe. Any other recommendations? (To keep things simple, we're working just with the command line for now. Simple ASCII art is possible.)
python
education
null
null
null
07/17/2011 14:02:42
not constructive
Simple games to program for a beginner? === I am teaching a friend how to program in Python, and I'd like to have some simple games to use as exercises for her. We've already done Hangman and Tic Tac Toe. Any other recommendations? (To keep things simple, we're working just with the command line for now. Simple ASC...
4
7,292,703
09/03/2011 10:56:28
241,552
12/31/2009 13:53:37
361
17
Java RegExp: Which is faster: series of simple ones or one complex?
I am writing a program that has to strip pretty long strings of quite a lot of rubbish. I do that using regular expressions, and as my program is rather sensitive in terms of speed, I need to know which of the solutions is faster: Using a number of consecutive relatively simple regular expressions, or using a single bu...
java
regex
performance
null
null
09/03/2011 16:56:55
not a real question
Java RegExp: Which is faster: series of simple ones or one complex? === I am writing a program that has to strip pretty long strings of quite a lot of rubbish. I do that using regular expressions, and as my program is rather sensitive in terms of speed, I need to know which of the solutions is faster: Using a number o...
1
10,881,664
06/04/2012 12:53:57
1,414,926
05/24/2012 11:36:19
1
0
location network service
i am developing an app to display all details on network provider ,but i got errors can anyone help me to clear it ? logcat-file: D/AndroidRuntime(308): Shutting down VMW/dalvikvm(308):threadid=1: thread exiting with uncaughtexception(group=0x4001d800) E/AndroidRuntime(308): FATAL EXCEPTION: main E/Andro...
android
null
null
null
null
null
open
location network service === i am developing an app to display all details on network provider ,but i got errors can anyone help me to clear it ? logcat-file: D/AndroidRuntime(308): Shutting down VMW/dalvikvm(308):threadid=1: thread exiting with uncaughtexception(group=0x4001d800) E/AndroidRuntime(308): FA...
0
10,528,155
05/10/2012 05:43:53
1,351,560
04/23/2012 14:23:52
2
0
sending message to a specific ip address via thread in java
I use a thread to serve the login process, after a successful login then I will send the message "login has been successful" back to the client. My question is how to send a message to a specific ip address by using a thread
java
null
null
null
null
05/10/2012 06:36:11
not a real question
sending message to a specific ip address via thread in java === I use a thread to serve the login process, after a successful login then I will send the message "login has been successful" back to the client. My question is how to send a message to a specific ip address by using a thread
1
11,596,683
07/21/2012 23:44:19
732,539
04/30/2011 16:02:02
536
26
"Find More Themes" for Flex - Is this a joke?
So I'm designing a Flex app and saw they that I could change the theme of the application very easily. I clicked on the Appearances tab, then clicked on my current default theme and saw a wonderful dialog box of themes I could choose that came with Flash Builder 4.6. I saw the link "Explore More Themes" which re...
flash
flex
actionscript
themes
null
07/22/2012 15:39:36
off topic
"Find More Themes" for Flex - Is this a joke? === So I'm designing a Flex app and saw they that I could change the theme of the application very easily. I clicked on the Appearances tab, then clicked on my current default theme and saw a wonderful dialog box of themes I could choose that came with Flash Builder 4....
2
11,475,022
07/13/2012 17:01:19
1,524,090
07/13/2012 16:22:44
1
0
Converting C++ to C# - code to work with MPEG-TS (Transport Stream)
*I'M NOT ASKING FOR HELP WITH DEALING WITH PACKETS, JUST PURELY THE CONVERSION* I need to rewrite some C++ code in C# but am not familiar enough with C# to figure out what to use in place of everything in the original code. Here's just 1 function from the C++ (it uses a class (BitStream), but I'm not including th...
c#
c++
convert
null
null
07/14/2012 05:01:35
not a real question
Converting C++ to C# - code to work with MPEG-TS (Transport Stream) === *I'M NOT ASKING FOR HELP WITH DEALING WITH PACKETS, JUST PURELY THE CONVERSION* I need to rewrite some C++ code in C# but am not familiar enough with C# to figure out what to use in place of everything in the original code. Here's just 1 fun...
1
10,869,644
06/03/2012 10:43:10
1,431,452
06/01/2012 19:15:13
1
0
Allow person I'm designing website for to upload photos
I hope this question isn't too general but I really don't have a clue how to do it or even where to get started! I'm relatively new to web design and I'm in the process of building a site for a local band. The site is nearly completed however I was wondering if there was a simple way to allow the band to upload thei...
html
null
null
null
null
06/03/2012 12:31:45
off topic
Allow person I'm designing website for to upload photos === I hope this question isn't too general but I really don't have a clue how to do it or even where to get started! I'm relatively new to web design and I'm in the process of building a site for a local band. The site is nearly completed however I was wonderi...
2
6,054,461
05/19/2011 06:01:22
786,954
05/04/2011 05:59:14
1
0
Add hyperlink on label or textview
I want to open the URL or any emial address by using label or text view instead of button... plz if anyone know about this .....give me the solution...
iphone-sdk-4.0
null
null
null
null
05/19/2011 13:33:26
not a real question
Add hyperlink on label or textview === I want to open the URL or any emial address by using label or text view instead of button... plz if anyone know about this .....give me the solution...
1
8,347,219
12/01/2011 19:35:27
317,975
04/15/2010 20:45:27
5,878
254
jQuery, A search for a smarter way to Initialize
I'm looking for a better way to manage global component/plugin/widget initialization in a large project. It has many jQuery-powered components that I would like to initialize quickly & efficiently and after scouring the internet, I've only really found short-sighted examples that are only realistic/performant in smalle...
javascript
jquery
performance
initialization
null
null
open
jQuery, A search for a smarter way to Initialize === I'm looking for a better way to manage global component/plugin/widget initialization in a large project. It has many jQuery-powered components that I would like to initialize quickly & efficiently and after scouring the internet, I've only really found short-sighted...
0
11,689,167
07/27/2012 13:50:31
1,435,712
06/04/2012 17:47:21
481
13
Convert a single byte to a string?
This is simply to error check my code, but I would like to convert a single byte out of a byte array to a string. Does anyone know how to do this? This is what I have so far: recBuf = read( 5 ); Log.i( TAG, (String)recBuf[0] ); But of course this doesn't work. I have googled around a bit but have onl...
java
android
type-conversion
null
null
null
open
Convert a single byte to a string? === This is simply to error check my code, but I would like to convert a single byte out of a byte array to a string. Does anyone know how to do this? This is what I have so far: recBuf = read( 5 ); Log.i( TAG, (String)recBuf[0] ); But of course this doesn't work. ...
0
1,887,655
12/11/2009 12:07:58
137,055
07/12/2009 16:28:54
18
0
iPhone SDK - NSDateFormatter day + month
I would like to display only the day and month of a date. Basically the NSDateFormatterLongStyle but without the year. The problem I'm facing is the localization. In the english version it has to show for example 'January 14' and in french '14 Janvier'. Is there an easy way to print such dates? Or do I have use i...
iphone
nsdateformatter
null
null
null
null
open
iPhone SDK - NSDateFormatter day + month === I would like to display only the day and month of a date. Basically the NSDateFormatterLongStyle but without the year. The problem I'm facing is the localization. In the english version it has to show for example 'January 14' and in french '14 Janvier'. Is there an ea...
0
7,725,695
10/11/2011 11:58:44
597,981
02/01/2011 06:38:55
29
0
Map Quick Search android
have a simple Android application that has a TabBar and one of the tabs displays a list. When the user hits the "Search" Button on the phone, a new search should be triggered. My problem now is that the result will be displayed in a new instance of the results intent. This also makes the TabBar on the top go away. ...
android
search
map
android-intent
null
null
open
Map Quick Search android === have a simple Android application that has a TabBar and one of the tabs displays a list. When the user hits the "Search" Button on the phone, a new search should be triggered. My problem now is that the result will be displayed in a new instance of the results intent. This also makes t...
0
5,975,037
05/12/2011 08:01:09
683,424
03/30/2011 06:51:27
11
0
how to place selected phonebook contacts into an array or list array etc...
hi i have imported all my phonebook contacts into my application with checkboxes each row.now i want put those selected contacts information like Name,phone number,email id into the my sql server.for that how should i approach pls help me out...
android
mysql
null
null
null
05/12/2011 10:06:58
not a real question
how to place selected phonebook contacts into an array or list array etc... === hi i have imported all my phonebook contacts into my application with checkboxes each row.now i want put those selected contacts information like Name,phone number,email id into the my sql server.for that how should i approach pls help me ...
1
565,471
02/19/2009 14:12:59
16,487
09/17/2008 17:36:29
52
10
Logging for ASP.NET - Best Practices
What is the best way to write minimal error logs in an ASP.NET 2.0 web page or web service? For my purposes it'd be best if this was vanilla, and the implementation would work through IIS's virtual directories. I'm currently using the standard TextWriterTraceListener, but it doesn't seem to write to the virtual direc...
.net-2.0
asp.net
iis
logging
null
05/29/2012 13:05:11
not constructive
Logging for ASP.NET - Best Practices === What is the best way to write minimal error logs in an ASP.NET 2.0 web page or web service? For my purposes it'd be best if this was vanilla, and the implementation would work through IIS's virtual directories. I'm currently using the standard TextWriterTraceListener, but it ...
4
7,334,849
09/07/2011 13:41:13
932,793
09/07/2011 13:24:02
1
0
Language recomendation for new project, Python or Scala
I'm 8 years in Enterprice development in Java(JavaEE, ESB, Oracle atc). Now I would like to start my private project. Taking in accout my kind of "dissapoinment" with Java and mainly that I have cca 3hours per day for private project I have decided to make it in some more productive enviroment. Gui is Flex to avoid bro...
python
flex
scala
xml-rpc
null
09/07/2011 13:55:38
not constructive
Language recomendation for new project, Python or Scala === I'm 8 years in Enterprice development in Java(JavaEE, ESB, Oracle atc). Now I would like to start my private project. Taking in accout my kind of "dissapoinment" with Java and mainly that I have cca 3hours per day for private project I have decided to make it...
4
7,264,981
09/01/2011 00:28:17
894,291
08/14/2011 22:30:13
19
1
Icon in java programs
How can I have a icon for my program in java? I've tried searching all over the web ,but I cant find anything
java
icons
null
null
null
null
open
Icon in java programs === How can I have a icon for my program in java? I've tried searching all over the web ,but I cant find anything
0
11,520,050
07/17/2012 09:52:43
1,531,233
07/17/2012 09:08:28
1
0
NSTextField becomes unselectable by rightmouse click
I have NSTextField that processes some mouse events and it could be selected and copied by right mouse click only one time during application execution. How can it be fixed?
objective-c
xcode
nstextfield
null
null
07/18/2012 00:02:38
not a real question
NSTextField becomes unselectable by rightmouse click === I have NSTextField that processes some mouse events and it could be selected and copied by right mouse click only one time during application execution. How can it be fixed?
1
9,822,741
03/22/2012 12:57:32
1,104,118
12/18/2011 03:08:48
31
0
How can I take a picture with a webcam, after seeing a preview, using Java (not javascript)
I know there are several questions similar to mine. I've been trying and trying to find something that works. I can't get any of the suggestions to work. I tried the JMF, FMJ, JMyron, the Marvin Framework, Minimalist Example of Video Capture Using Java (http://www.codeproject.com/Articles/81824/Minimalist-Example-of-Vi...
java
frameworks
webcam
capture
null
03/23/2012 13:13:21
not constructive
How can I take a picture with a webcam, after seeing a preview, using Java (not javascript) === I know there are several questions similar to mine. I've been trying and trying to find something that works. I can't get any of the suggestions to work. I tried the JMF, FMJ, JMyron, the Marvin Framework, Minimalist Exampl...
4
11,222,430
06/27/2012 08:42:37
557,105
12/29/2010 12:11:30
1
0
Increase django view execution time
How can I increase django execution time of a view. Some views of my app do very long tasks that timeout. So I want to increase execution time of my django application
python
django
null
null
null
null
open
Increase django view execution time === How can I increase django execution time of a view. Some views of my app do very long tasks that timeout. So I want to increase execution time of my django application
0
1,518,566
10/05/2009 06:58:44
184,189
10/05/2009 06:58:44
1
0
rdlc Globalisation
I have a globalstrings.resx resource file in my solution which contains all of my key/value pairs for all static labels and tooltips. Everything in my web application has been globalized excepting for my .rdlc files. I've had a look at this solution - [RDLC_Localization][1] - but it does not solve the problem of global...
rdlc
null
null
null
null
null
open
rdlc Globalisation === I have a globalstrings.resx resource file in my solution which contains all of my key/value pairs for all static labels and tooltips. Everything in my web application has been globalized excepting for my .rdlc files. I've had a look at this solution - [RDLC_Localization][1] - but it does not sol...
0
9,133,990
02/03/2012 18:58:31
828,559
07/04/2011 18:10:59
1,009
59
Create a user without having root privileges
Is it possible to create a non-root linux user account without being logged as a root user?
linux
null
null
null
null
02/03/2012 19:08:45
off topic
Create a user without having root privileges === Is it possible to create a non-root linux user account without being logged as a root user?
2
10,701,945
05/22/2012 12:21:45
701,904
04/11/2011 09:42:26
82
1
two different dynamic variables in foreach
I have two variables $items and $stuff[0] I want to loop each variable through an foreach loop like this foreach($items as $i) // do stuff foreach($stuff[0] as $i) // do same stuff as above Is it possible to set de foreach variable dynamic like foreach(($items = isset($items) ? $ite...
php
null
null
null
null
05/23/2012 12:42:51
not a real question
two different dynamic variables in foreach === I have two variables $items and $stuff[0] I want to loop each variable through an foreach loop like this foreach($items as $i) // do stuff foreach($stuff[0] as $i) // do same stuff as above Is it possible to set de foreach variable dynamic li...
1
302,376
11/19/2008 15:56:33
38,986
11/19/2008 15:56:32
1
0
How to relearn programming the right way
Before I took programming courses in high school and college (which did not teach me much besides new syntax for new languages), I started out with a Python tutorial that served as a general introduction to programming. It included variables, if statements, loops, etc. At that point I was so excited about programming t...
self-improvement
null
null
null
null
03/01/2012 19:22:57
not constructive
How to relearn programming the right way === Before I took programming courses in high school and college (which did not teach me much besides new syntax for new languages), I started out with a Python tutorial that served as a general introduction to programming. It included variables, if statements, loops, etc. At t...
4
2,657,545
04/17/2010 06:48:20
98,810
04/30/2009 17:27:41
266
13
Where a developer can sell / donate his time?
Recently business isn't good and was wondering what are your favourite places where - you can sell your time working on a projects (you get specification / idea -> you crank code -> you get paid :) ) (I don't mean selling your own apps, just working for someone else) or - where you can donate your time (you...
selling-software
null
null
null
null
04/17/2010 16:27:52
off topic
Where a developer can sell / donate his time? === Recently business isn't good and was wondering what are your favourite places where - you can sell your time working on a projects (you get specification / idea -> you crank code -> you get paid :) ) (I don't mean selling your own apps, just working for someone els...
2
551,932
02/16/2009 00:42:25
48,705
12/23/2008 17:57:58
183
6
Is it possible to use WPF and Delphi 2007/09 win32?
Is it?! Possible?
delphi
wpf
null
null
null
null
open
Is it possible to use WPF and Delphi 2007/09 win32? === Is it?! Possible?
0
9,979,326
04/02/2012 15:38:02
552,671
12/23/2010 18:06:25
442
16
Python: How to create simple web pages without a huge framework?
I would like to know if there is a way to create web pages without a huge framework in python. I think of something like PHP/Apache, which comes just as a language and not with to much overhead (but I don't like PHP...). In PHP there is no ORM, no template engine, etc. But it is very very easy to just print a `Hello...
python
frameworks
web-frameworks
null
null
04/02/2012 18:21:42
not constructive
Python: How to create simple web pages without a huge framework? === I would like to know if there is a way to create web pages without a huge framework in python. I think of something like PHP/Apache, which comes just as a language and not with to much overhead (but I don't like PHP...). In PHP there is no ORM, no...
4
1,727,305
11/13/2009 05:30:52
144,356
07/24/2009 09:03:51
125
7
Post back complex object from clent side
I'm using ASP.NET MVC and Entity Framework. I'm going to pass a complex entity to the clent side and alow the user to modify it, and post it back to the controller. But I don't know how to do that and whether the client side entity will lost relationship tracking of EF as it is detached from object context. Any idea...
entity-framework
asp.net-mvc
null
null
null
null
open
Post back complex object from clent side === I'm using ASP.NET MVC and Entity Framework. I'm going to pass a complex entity to the clent side and alow the user to modify it, and post it back to the controller. But I don't know how to do that and whether the client side entity will lost relationship tracking of EF as i...
0
8,363,478
12/02/2011 22:26:27
1,055,637
11/19/2011 19:18:36
8
0
load from a file object Enum
I would load from a file a string and put in in a object enum. I create into a class this: public Passenger{ private String pass_name; public enum State{ b,c,d; }; .... State reser; public Passenger(String n,State r) pass_name=n; reser=r; ...
java
homework
null
null
null
null
open
load from a file object Enum === I would load from a file a string and put in in a object enum. I create into a class this: public Passenger{ private String pass_name; public enum State{ b,c,d; }; .... State reser; public Passenger(String n,State r) pas...
0
5,317,293
03/15/2011 19:59:20
657,476
03/13/2011 12:31:38
34
1
Choice of Software for bug tracking/changes for Mathematica Application Package Development CVS Vs. Bugzilla?
I am developing an application package in mathematica with workbench and it is starting to get complex with multpiple versions and components. I read in some mathematica documentation ([http://reference.wolfram.com/mathematica/tutorial/BuildingLargeSoftwareSystemsInMathematica.html][1] Paragraph:Use Source Control )tha...
cvs
mathematica
tracking
bugzilla
null
null
open
Choice of Software for bug tracking/changes for Mathematica Application Package Development CVS Vs. Bugzilla? === I am developing an application package in mathematica with workbench and it is starting to get complex with multpiple versions and components. I read in some mathematica documentation ([http://reference.wo...
0
6,871,839
07/29/2011 10:34:47
228,660
12/10/2009 09:42:32
116
5
Text box value issue
I insert a text box into my page with jquery .html("<input type="text>") Once I click a button, I loop through ($("input[type=text]).each) and then need to get the value of each text box. When I try to get that val() of that text box it returns empty string, although I have typed something in there console.log(...
jquery
null
null
null
null
12/09/2011 23:24:47
too localized
Text box value issue === I insert a text box into my page with jquery .html("<input type="text>") Once I click a button, I loop through ($("input[type=text]).each) and then need to get the value of each text box. When I try to get that val() of that text box it returns empty string, although I have typed somethin...
3
8,237,320
11/23/2011 04:24:12
1,061,117
11/23/2011 04:00:12
1
0
swing application issue in authentication using javax.mail.authenticator
I am developing an swing application for sending the mail using authentication. The Issue I am facing is when i enter wrong username and password it is giving AuthenticationException after that when i enter correct userid and password again it is giving same exception. if i close whole application and start again a...
java
swing
null
null
null
null
open
swing application issue in authentication using javax.mail.authenticator === I am developing an swing application for sending the mail using authentication. The Issue I am facing is when i enter wrong username and password it is giving AuthenticationException after that when i enter correct userid and password aga...
0
3,883,215
10/07/2010 15:25:40
463,045
09/30/2010 16:29:28
1
6
How to send sms by cSharp???
I am making acool software for the LIC insurabce agents for free, i wanna integrate the sms service with it so that they could send sms by it to their clients....
c#
null
null
null
null
10/07/2010 17:44:27
not a real question
How to send sms by cSharp??? === I am making acool software for the LIC insurabce agents for free, i wanna integrate the sms service with it so that they could send sms by it to their clients....
1
1,125,116
07/14/2009 12:42:34
138,039
07/14/2009 12:30:11
1
0
Using JavaScript to scroll through a list of items in ASP.NET MVC
I'm new to ASP.NET MVC and also to JavaScript. What I've got currently is a simple webpage that displays information about employees that is read from a database. Part of the information regarding an employee are his paychecks. Currently I receive this information in an array from the site controller. What I want to do...
javascript
asp.net
mvc
null
null
null
open
Using JavaScript to scroll through a list of items in ASP.NET MVC === I'm new to ASP.NET MVC and also to JavaScript. What I've got currently is a simple webpage that displays information about employees that is read from a database. Part of the information regarding an employee are his paychecks. Currently I receive t...
0
10,966,251
06/10/2012 03:54:40
1,425,733
05/30/2012 09:59:07
110
2
SQLSTATE[HY093]: Invalid parameter number: parameter was not defined
// BUILD VALUES $count = count($matches); for($i = 0; $i < $count; ++$i) { $values[] = '(?)'; } // INSERT INTO DATABASE $q = $this -> dbc -> prepare("INSERT INTO hashes (hash) VALUES " . implode(', ', $values) . " ON DUPLICATE KEY UPDATE hash = hash"); $q -> execute($matches); The code above fai...
php
mysql
pdo
null
null
null
open
SQLSTATE[HY093]: Invalid parameter number: parameter was not defined === // BUILD VALUES $count = count($matches); for($i = 0; $i < $count; ++$i) { $values[] = '(?)'; } // INSERT INTO DATABASE $q = $this -> dbc -> prepare("INSERT INTO hashes (hash) VALUES " . implode(', ', $values) . " ON DUPLICATE KE...
0
8,683,867
12/30/2011 20:39:52
1,049,565
11/16/2011 11:43:45
1
0
nginx required modules under specific circumstances
i want to install nginx with only **required** modules according to my condition. well i have a typical php, mysql website. so fastcgi is needed, no SSL,no load balancing. so what modules are **essential** and what modules i can disable without having problem ? **speed** & **security** are very important!
module
nginx
required
null
null
01/01/2012 05:41:36
off topic
nginx required modules under specific circumstances === i want to install nginx with only **required** modules according to my condition. well i have a typical php, mysql website. so fastcgi is needed, no SSL,no load balancing. so what modules are **essential** and what modules i can disable without having problem ?...
2
11,436,512
07/11/2012 15:50:03
1,361,315
04/27/2012 14:12:23
160
0
Do you set an index on JOIN clauses or where clauses, or both?
Say my query looks like: SELECT t1, t2 FROM t1 LEFT JOIN t2 ON (t1.id = t2.id AND t2.userid = @userid) WHERE t1.enabled = 1 AND t1.startDate <= ??? AND (t1.counter = -1 OR t2.counter IS NULL OR (t1.counter > t2.counter) Now this table might hav...
sql-server
indexes
null
null
null
07/12/2012 17:10:19
off topic
Do you set an index on JOIN clauses or where clauses, or both? === Say my query looks like: SELECT t1, t2 FROM t1 LEFT JOIN t2 ON (t1.id = t2.id AND t2.userid = @userid) WHERE t1.enabled = 1 AND t1.startDate <= ??? AND (t1.counter = -1 OR t2.counter IS NULL OR...
2
9,899,968
03/28/2012 01:25:31
937,429
09/09/2011 19:19:19
10
0
flash object not displaying in safari
I have a flash object embedded in my website with the embed code that I got from a website. It does not show up in Safari, it's just a blank area where the flash object is supposed to be. What can I do to get the object to show up in Safari? Thanks. Here is the embedded code: <object classid="clsid:d27cdb6e-a...
ruby-on-rails
flash
safari
cross-browser
null
null
open
flash object not displaying in safari === I have a flash object embedded in my website with the embed code that I got from a website. It does not show up in Safari, it's just a blank area where the flash object is supposed to be. What can I do to get the object to show up in Safari? Thanks. Here is the embedded cod...
0
10,702,660
05/22/2012 13:08:07
1,386,023
05/10/2012 02:38:42
15
1
Lyx: Change vertical space between numbered Formula in Lyx
I have inserted serveral (20) Numbered formulas directly behind eachother in Lyx 2.0.3. If I export these formulas to the final version in PDF, there is a large vertical space between the formulas. Is there a way to solve this by changing a setting in the document preamble ? Thanks in Advance.
math
latex
equations
lyx
null
05/22/2012 22:52:01
off topic
Lyx: Change vertical space between numbered Formula in Lyx === I have inserted serveral (20) Numbered formulas directly behind eachother in Lyx 2.0.3. If I export these formulas to the final version in PDF, there is a large vertical space between the formulas. Is there a way to solve this by changing a setting ...
2
10,663,405
05/19/2012 07:54:56
339,753
05/12/2010 21:26:09
584
3
A linux distro to use inside an existing environment
At work i am forced to use an old version RedHat enterprise. This is okay for most purposes, but there are some applications where I _really_ want to use a newer version (vim, ctag, git, tmux, etc...). As I am not root on the system, I have overcome this problem by creating a "myroot" folder, where i have installed ...
linux
unix
null
null
null
05/19/2012 20:10:42
off topic
A linux distro to use inside an existing environment === At work i am forced to use an old version RedHat enterprise. This is okay for most purposes, but there are some applications where I _really_ want to use a newer version (vim, ctag, git, tmux, etc...). As I am not root on the system, I have overcome this prob...
2
11,030,912
06/14/2012 10:09:35
1,389,106
05/11/2012 09:35:45
163
2
String.split() JavaScript method is not working in firefox
I am trying to split a string in javascript . it works fine in chrome, but it is not working in firefox code var a="1#abc"; var b=a.split('#'); The error on cole is `There is no method split()`
javascript
string
firefox
google-chrome
string-split
06/14/2012 12:18:42
not a real question
String.split() JavaScript method is not working in firefox === I am trying to split a string in javascript . it works fine in chrome, but it is not working in firefox code var a="1#abc"; var b=a.split('#'); The error on cole is `There is no method split()`
1
9,488,546
02/28/2012 19:40:49
1,033,668
11/07/2011 11:49:46
360
16
Extremely dynamic queries with MyBatis for remote grid filtering/pagination/sorting
A project I'm working on makes heavy use of the ExtJS framework. We have a lot of data to display and we do so via grids, which all have a standard set of paging, sorting, and filtering features. Currently, our backend is in PHP and we are using straight SQL. I wrote a SQL wrapper in PHP that would accept a query, a...
extjs
mybatis
null
null
null
null
open
Extremely dynamic queries with MyBatis for remote grid filtering/pagination/sorting === A project I'm working on makes heavy use of the ExtJS framework. We have a lot of data to display and we do so via grids, which all have a standard set of paging, sorting, and filtering features. Currently, our backend is in PHP...
0