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
8,664,295
12/29/2011 05:24:01
1,120,405
12/29/2011 03:44:01
1
0
Does unordered_map copy/release contained objects if there is insert/remove/rehash operation?
I wanna store small objects in unordered_map, just wondering if it may copy/release contained objects if there is any insert/remove/rehash operation? I think unordered_map uses link list to store key/value pair, it should not need to copy/release objects like vector for memory reallocation.
c++
boost
stl
null
null
null
open
Does unordered_map copy/release contained objects if there is insert/remove/rehash operation? === I wanna store small objects in unordered_map, just wondering if it may copy/release contained objects if there is any insert/remove/rehash operation? I think unordered_map uses link list to store key/value pair, it should...
0
9,293,777
02/15/2012 12:53:26
502,044
11/09/2010 15:04:12
403
4
cannot run a .svb file
I am using Windows 7 and have associated .svb files with C:\Windows\System32\wscript.exe which is the Windows Script Host program But when I click the file I get the popup "There is no script engine for file extension .svb" I have googled it but cold find a solution Any ideas?
windows
windows-7
script
null
null
null
open
cannot run a .svb file === I am using Windows 7 and have associated .svb files with C:\Windows\System32\wscript.exe which is the Windows Script Host program But when I click the file I get the popup "There is no script engine for file extension .svb" I have googled it but cold find a solution Any ideas?
0
9,082,510
01/31/2012 15:50:57
350,305
05/25/2010 20:26:31
1
0
Pull street names from mysql to dropdown with php and display results on next page
I have searched all around stackoverflow, and only come across vague code on how to proceed. The closest was how to do multiple drop-downs based on one selection. The overall concept is to pull street names from MySQL table with PHP into dropdown. On selection, display list of all people with that street name.
php
mysql
null
null
null
02/01/2012 02:06:33
not a real question
Pull street names from mysql to dropdown with php and display results on next page === I have searched all around stackoverflow, and only come across vague code on how to proceed. The closest was how to do multiple drop-downs based on one selection. The overall concept is to pull street names from MySQL table with...
1
4,527,552
12/24/2010 17:30:12
264,052
02/02/2010 04:03:26
1,395
7
How does IE downloading is achieved?
I often click on a file link in the IE and a download box just pops out. But what happens behind this scene? I know that IE always talks to web server with HTTP protocol, and HTTP is **text based**. So is IE download achieved with HTTP protocol? If so, how could arbitrary file format be downloaded over a text based ...
web-services
internet-explorer
download
null
null
null
open
How does IE downloading is achieved? === I often click on a file link in the IE and a download box just pops out. But what happens behind this scene? I know that IE always talks to web server with HTTP protocol, and HTTP is **text based**. So is IE download achieved with HTTP protocol? If so, how could arbitrary fi...
0
137,657
09/26/2008 03:47:07
115
08/02/2008 05:44:40
2,474
218
Free insaller
Is there something like install shield that I can use for free?
installer
null
null
null
null
06/14/2012 16:48:46
not constructive
Free insaller === Is there something like install shield that I can use for free?
4
4,238,698
11/21/2010 15:44:00
514,103
11/16/2010 19:20:39
56
0
Do the simplicity of PHP is in the languge itself or is there anonter thing that make it simple?
Everyone says that PHP is simpler than ASP.NET and C#, why it is easier ans simpler? Considering C# and PHP for web development, what is the thing that make PHP easier exactly? I want to understand this point please.
c#
php
null
null
null
11/22/2010 02:15:40
not constructive
Do the simplicity of PHP is in the languge itself or is there anonter thing that make it simple? === Everyone says that PHP is simpler than ASP.NET and C#, why it is easier ans simpler? Considering C# and PHP for web development, what is the thing that make PHP easier exactly? I want to understand this point please...
4
9,571,014
03/05/2012 17:20:58
401,643
07/25/2010 16:56:58
338
3
design workflow in an asp.net mvc application
I have an application that could be divided into 2 modes. Template mode and detail plan mode. Please do not take the modes literally its just a sample to show you the workflow. In both modes there is a tree control on the left and a datagrid onn the right. In each mode the datagrid has some more or less columns and...
asp.net-mvc
design
application
workflow
null
03/05/2012 20:01:59
not a real question
design workflow in an asp.net mvc application === I have an application that could be divided into 2 modes. Template mode and detail plan mode. Please do not take the modes literally its just a sample to show you the workflow. In both modes there is a tree control on the left and a datagrid onn the right. In each ...
1
5,325,326
03/16/2011 12:33:17
662,483
03/16/2011 12:33:17
1
0
Assembly output of Hello world written in C
I ran gcc -S over this: int main() { printf ("Hello world!"); } and I got this assembly code: .file "test.c" .section .rodata .LC0: .string "Hello world!" .text .globl main .type main, @function main: ...
assembly
null
null
null
null
null
open
Assembly output of Hello world written in C === I ran gcc -S over this: int main() { printf ("Hello world!"); } and I got this assembly code: .file "test.c" .section .rodata .LC0: .string "Hello world!" .text .globl main ...
0
7,068,771
08/15/2011 18:10:23
886,454
08/09/2011 17:29:18
1
0
Using uTorrent Web API via .NET
I'm trying to get list of torrents from uTorrent using [Web API](http://www.utorrent.com/community/developers/webapi). Getting required token goes O.K.: WebClient client = new WebClient() { Credentials = new NetworkCredential(UserName, pass) }; StreamReader Reader = new StreamReader(client.OpenRead("http://...
c#
.net
token
web-api
utorrent
null
open
Using uTorrent Web API via .NET === I'm trying to get list of torrents from uTorrent using [Web API](http://www.utorrent.com/community/developers/webapi). Getting required token goes O.K.: WebClient client = new WebClient() { Credentials = new NetworkCredential(UserName, pass) }; StreamReader Reader = new ...
0
9,672,093
03/12/2012 17:45:06
1,150,718
01/15/2012 18:32:28
20
0
Best resources to learn C/C++
I am mostly a javascript/jquery developer programming UI/UX experiences but I want to learn more about other languages such as C/C++ and I am not really sure where to start... Do I learn Java first? I don't know! I was wondering what the best way to go about this was?
java
c++
c
null
null
03/12/2012 17:50:24
not a real question
Best resources to learn C/C++ === I am mostly a javascript/jquery developer programming UI/UX experiences but I want to learn more about other languages such as C/C++ and I am not really sure where to start... Do I learn Java first? I don't know! I was wondering what the best way to go about this was?
1
6,070,092
05/20/2011 09:42:47
719,115
04/21/2011 14:28:51
11
0
Comparing Times 24 Hour Intervals
I have 2 timestamps in JavaScript. One timestamp comes from an Ajax call to my database and the other is generated when the script it loaded. What I want to do is check to see if the timestamp from the database is older than 24 hours compared the timestamp that was just generated. In my case the database timestam...
javascript
null
null
null
null
null
open
Comparing Times 24 Hour Intervals === I have 2 timestamps in JavaScript. One timestamp comes from an Ajax call to my database and the other is generated when the script it loaded. What I want to do is check to see if the timestamp from the database is older than 24 hours compared the timestamp that was just generat...
0
7,808,494
10/18/2011 14:03:28
523,960
11/29/2010 13:37:15
113
0
Which Python GUI IDE is the most widely used?
I am still kind of new to programming and after playing around with a lot of languages trying to find which one worked best for me I stumbled across python and have been doing really well with it. The only problem/concern I have is that I do not mainly want to do web development. I want to create desktop apps with n...
python
wxpython
null
null
null
10/18/2011 15:44:02
not constructive
Which Python GUI IDE is the most widely used? === I am still kind of new to programming and after playing around with a lot of languages trying to find which one worked best for me I stumbled across python and have been doing really well with it. The only problem/concern I have is that I do not mainly want to do we...
4
8,365,203
12/03/2011 03:15:00
719,998
04/22/2011 03:29:42
1
0
How to write a PHP to capture daily currency rates and store in mySQL?
I am new to PHP & mySQL. I would like to know how to write a PHP to get/parse the daily currency rate (say USD and EUR) and store them in mysql database? Any tutorial would be very helpful
php
mysql
currency
null
null
12/03/2011 07:58:42
not a real question
How to write a PHP to capture daily currency rates and store in mySQL? === I am new to PHP & mySQL. I would like to know how to write a PHP to get/parse the daily currency rate (say USD and EUR) and store them in mysql database? Any tutorial would be very helpful
1
11,254,568
06/29/2012 00:07:29
1,367,853
05/01/2012 13:49:01
21
1
Array return is not working
use Text::Diff; my $count; our $stats2 = 0; for($count = 0; $count <= 1000; $count++){ my $data_dir="archive/oswiostat/oracleapps.*dat"; my $data_file= `ls -t $data_dir | head -1`; chomp($data_file); while(defined($data_file)){ print $data_file; open (DAT,$data_file) || ...
perl
null
null
null
null
07/02/2012 03:04:10
too localized
Array return is not working === use Text::Diff; my $count; our $stats2 = 0; for($count = 0; $count <= 1000; $count++){ my $data_dir="archive/oswiostat/oracleapps.*dat"; my $data_file= `ls -t $data_dir | head -1`; chomp($data_file); while(defined($data_file)){ print $data_fil...
3
4,970,534
02/11/2011 15:04:36
217,187
11/23/2009 17:25:04
92
12
iPhone Objective C oauth 2.0 Login - unsupported_grant_type
I am brand new to salesforce development and am trying to connect to Sales force to get the token. I guess my question is 2 fold: 1) Do I have to use a webpage to authenticate with SF? 2) If not, why is this not working? When I try to use the username and password method of authenticating, I get: {"error":"...
iphone
oauth
salesforce
nsurlrequest
oauth-2.0
null
open
iPhone Objective C oauth 2.0 Login - unsupported_grant_type === I am brand new to salesforce development and am trying to connect to Sales force to get the token. I guess my question is 2 fold: 1) Do I have to use a webpage to authenticate with SF? 2) If not, why is this not working? When I try to use the u...
0
6,225,617
06/03/2011 10:02:51
342,279
05/16/2010 08:28:06
270
6
PHP keep form info after submit form failed
I am building a form in a mvc system view, and i want that all the inserted values will be kept,in case of form submit failure. How can this be done: i tried like (example for a field): <label for="user_firstname">Nume</label> <input id="user_firstname" type="text" name="user_firstname" value=<?= $_P...
php
forms
value
submit
null
null
open
PHP keep form info after submit form failed === I am building a form in a mvc system view, and i want that all the inserted values will be kept,in case of form submit failure. How can this be done: i tried like (example for a field): <label for="user_firstname">Nume</label> <input id="user_firstname...
0
9,086,238
01/31/2012 20:12:33
993,963
10/13/2011 16:57:58
3
0
SQL2008R2 - AdventureWorksR2 - Fatal Error
I get an error whilst installing Adventureworks. Got SQL Server 2008 R2 and same AdventureWorks version. I start the installation, it starts extract all scripts and so on. When I accept the License Terms and press next, I get an error. Fatal error: Details ISupportInitialize.EndInit. An exception occured in SMO...
sql
fatal-error
adventureworks
null
null
01/31/2012 21:21:55
off topic
SQL2008R2 - AdventureWorksR2 - Fatal Error === I get an error whilst installing Adventureworks. Got SQL Server 2008 R2 and same AdventureWorks version. I start the installation, it starts extract all scripts and so on. When I accept the License Terms and press next, I get an error. Fatal error: Details ISuppor...
2
8,061,984
11/09/2011 08:11:39
763,794
05/21/2011 08:19:47
1
1
Recommendation on response handling for the ajax-upload script
I have used the multiple-file upload script from valums.com/ajax-upload/ How I can handle the JSON-response? The actually input parameter 'responseJSON' of the 'onComplete' function is some '__proto__: Object' object. It hasn't the valid JSON format. However, the server response has the valid JSON format content. Be...
javascript
jquery
json
ajax-upload
ajaxuploader
null
open
Recommendation on response handling for the ajax-upload script === I have used the multiple-file upload script from valums.com/ajax-upload/ How I can handle the JSON-response? The actually input parameter 'responseJSON' of the 'onComplete' function is some '__proto__: Object' object. It hasn't the valid JSON format....
0
3,852,349
10/04/2010 01:43:44
465,471
10/04/2010 01:43:44
1
0
How do I show another window in an IPhone window application
First of all, I'm new to Objective-C and IPhone programming. There is somehing I can not get to work. I have a IPhone window application and in the MainWindow I have a button. I want to show another window when I click the button. I've bind the event with my controller. I just don't know how to show my other window ...
iphone
objective-c
cocoa-touch
xcode
null
null
open
How do I show another window in an IPhone window application === First of all, I'm new to Objective-C and IPhone programming. There is somehing I can not get to work. I have a IPhone window application and in the MainWindow I have a button. I want to show another window when I click the button. I've bind the event w...
0
8,401,345
12/06/2011 14:18:44
809,356
06/21/2011 22:23:52
71
1
How to imitate a web host failure to check if the backup works
Because my main web host has failed me before, and because I have accounts in two different web hosts, I am thinking on using them both to make sure my websites are always up. The idea is to set one host as the primary DNS, and the other as the secondary DNS, so that if the first one fails, the traffic gets automatical...
hosting
dns
null
null
null
12/06/2011 16:24:12
off topic
How to imitate a web host failure to check if the backup works === Because my main web host has failed me before, and because I have accounts in two different web hosts, I am thinking on using them both to make sure my websites are always up. The idea is to set one host as the primary DNS, and the other as the seconda...
2
7,910,415
10/27/2011 00:14:38
915,109
08/27/2011 03:56:10
1
0
Where the a class instance will be located on memory if it is declared as A a ?
If declare an instance of class A : "A a;" which kind of memory type will it be created on? any other type of memory type? My solution: It depends on where it is declared. If it is a global variable, and outside any class and functions, it is on heap. If it in a class or function, it is on stack. If i...
java
c++
c
class
object
10/27/2011 00:46:39
not a real question
Where the a class instance will be located on memory if it is declared as A a ? === If declare an instance of class A : "A a;" which kind of memory type will it be created on? any other type of memory type? My solution: It depends on where it is declared. If it is a global variable, and outside any class...
1
7,373,767
09/10/2011 18:34:16
938,478
09/10/2011 18:34:16
1
0
Why My C# program runs on my Pc but not in other computers?
I used C# language in visual studio 2008 and some SQL server management databases in my program but here in my computer the program runs well but in other Pcs it just can't be run :( My databases use windows authentication ( not sql server authentication )and I just added them in my project I guess the problem is m...
sql-server-2008
c#-4.0
null
null
null
09/10/2011 19:49:54
not a real question
Why My C# program runs on my Pc but not in other computers? === I used C# language in visual studio 2008 and some SQL server management databases in my program but here in my computer the program runs well but in other Pcs it just can't be run :( My databases use windows authentication ( not sql server authenticatio...
1
4,648,728
01/10/2011 16:02:45
570,063
01/10/2011 16:02:46
1
0
BST red black - :((
i need to insert, delete a node and rotate a Red-Black tree but nothing i do works! can somebody help me? i use c++(Microsoft Visual Studio 2008)
binary-tree
null
null
null
null
01/10/2011 16:10:04
not a real question
BST red black - :(( === i need to insert, delete a node and rotate a Red-Black tree but nothing i do works! can somebody help me? i use c++(Microsoft Visual Studio 2008)
1
7,953,916
10/31/2011 12:48:17
754,352
05/15/2011 09:41:28
82
0
auto scroller horizontal images from database
i have following code that generate some images with urls associated from database <html> <head> <title></title> </head> <body> <div id="datacontainer"> <?php ini_set('display_errors', 0); header('Content-type: text/html; charset=UTF...
database
image
horizontal
scroller
null
11/02/2011 05:55:35
not a real question
auto scroller horizontal images from database === i have following code that generate some images with urls associated from database <html> <head> <title></title> </head> <body> <div id="datacontainer"> <?php ini_set('display_errors', 0); ...
1
11,072,996
06/17/2012 16:36:30
1,282,022
03/20/2012 21:38:23
5
0
simple wordpress cart plugin
I know there are plenty checkout plugins out there but to be honest - they are so extended and huge.. I am looking for something really simple: + I have category like COOKIES and subpages there which are my products + on product page after description should be only button add to cart (plus No of ordered items -> if ...
wordpress
shopping-cart
cart
null
null
06/18/2012 18:30:25
off topic
simple wordpress cart plugin === I know there are plenty checkout plugins out there but to be honest - they are so extended and huge.. I am looking for something really simple: + I have category like COOKIES and subpages there which are my products + on product page after description should be only button add to car...
2
8,634,163
12/26/2011 08:41:33
1,096,315
12/13/2011 17:36:26
1
1
ANTLR : A lexer or a parser error?
I wrote a simple lexer in ANTLR and the grammer for ID is something like this : ID : (('a'..'z'|'A'..'Z') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*|'_'('a'..'z'|'A'..'Z') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*); (No digits are allowed at the beginning) when I generated the code (in java) and tested the input : 3a...
antlr
lexer
null
null
null
null
open
ANTLR : A lexer or a parser error? === I wrote a simple lexer in ANTLR and the grammer for ID is something like this : ID : (('a'..'z'|'A'..'Z') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*|'_'('a'..'z'|'A'..'Z') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*); (No digits are allowed at the beginning) when I generated the code (i...
0
6,451,816
06/23/2011 09:17:14
811,913
06/23/2011 09:17:14
1
0
PHP Division by Zero Problem
I have the following PHP code to display my tag cloud. It seems if I don't have at least two tags that are the same, I get a warning message saying Warnng: Division by zero (shown below). Could some one please help me fix this code? Thank you! <?php // define variables $fontSizeUnit = "px"; $maxFontSize = ...
php
dividebyzero
null
null
null
06/23/2011 10:26:27
not a real question
PHP Division by Zero Problem === I have the following PHP code to display my tag cloud. It seems if I don't have at least two tags that are the same, I get a warning message saying Warnng: Division by zero (shown below). Could some one please help me fix this code? Thank you! <?php // define variables $font...
1
6,738,063
07/18/2011 19:12:51
780,182
06/01/2011 20:50:21
6
0
Post Array from JavaScript to PHP Post
I have a php file that normally takes input array from an html multiple select box, and I need a way to post that data from JScript code in another file. As I understand it, JQuery post would work nicely for this, however that will not work in IE. Is there any easy way to pass an array of values through JavaScript s...
php
javascript
arrays
http-post
null
null
open
Post Array from JavaScript to PHP Post === I have a php file that normally takes input array from an html multiple select box, and I need a way to post that data from JScript code in another file. As I understand it, JQuery post would work nicely for this, however that will not work in IE. Is there any easy way to ...
0
8,305,476
11/29/2011 03:29:04
146,610
07/28/2009 18:46:18
61
3
Ninject Binding Attribute to Filter with Constructor Arguments
I read as many answers as I could for this, but they seem to fall short of one detail. The trouble is when binding an action filter (with a service injected by controller) to a corresponding attribute, I've been unable to figure out how to pass parameter/property values from the attribute to its bound filter. Below ...
asp.net-mvc-3
dependency-injection
attributes
filter
ninject
null
open
Ninject Binding Attribute to Filter with Constructor Arguments === I read as many answers as I could for this, but they seem to fall short of one detail. The trouble is when binding an action filter (with a service injected by controller) to a corresponding attribute, I've been unable to figure out how to pass para...
0
5,578,389
04/07/2011 08:50:08
696,432
04/07/2011 08:50:08
1
0
Send and Retrive data from XML
I am making an application. i want to send the data to XML as well as i want retrive data from XML. I am using HTML. plz help me
html
xml
html5
null
null
04/07/2011 18:06:39
not a real question
Send and Retrive data from XML === I am making an application. i want to send the data to XML as well as i want retrive data from XML. I am using HTML. plz help me
1
4,170,021
11/12/2010 23:48:01
329,205
04/29/2010 18:45:45
123
3
Why doesn't this simple jQuery ajax work?
Why doesn't this simply jQuery ajax code not load `pull.php` into the `div` with `id` of `#alert`? ... <script src="jquery.js"></script> <script> $(document).ready(function() { $(".pull_button").click(function() { $("#alert").load("pull.php"); }); }); </sc...
jquery
ajax
debugging
jquery-ajax
javascript-library
null
open
Why doesn't this simple jQuery ajax work? === Why doesn't this simply jQuery ajax code not load `pull.php` into the `div` with `id` of `#alert`? ... <script src="jquery.js"></script> <script> $(document).ready(function() { $(".pull_button").click(function() { $("#alert").load...
0
8,713,613
01/03/2012 14:18:09
740,700
05/05/2011 20:44:49
122
5
Semantic analysis into compilers
How it's done the semantic analysis in a compiler? (a generic/abstract compiler)<br /> I had to answer to this question during my last exam, but my answer was not enough for the professor. I talked about BNF (with an example), syntactic cards, but it wasn't enough, and he asked to me: "What happen when the compiler fo...
compiler
semantic
compiler-theory
semantic-analysis
null
01/03/2012 20:35:25
not a real question
Semantic analysis into compilers === How it's done the semantic analysis in a compiler? (a generic/abstract compiler)<br /> I had to answer to this question during my last exam, but my answer was not enough for the professor. I talked about BNF (with an example), syntactic cards, but it wasn't enough, and he asked to...
1
7,968,370
11/01/2011 14:58:00
607,846
02/08/2011 09:16:51
383
5
Getting started with ASP .NET
I use the following listener to listen to a particular pattern. The process method is called many times each second. Is there a nicer way to do this :) Thanks, Barry class Listener: def __init__(self, data_to_catch): self.data_to_catch = data_to_catch self.length_of_data_...
python
null
null
null
null
11/01/2011 15:51:42
not a real question
Getting started with ASP .NET === I use the following listener to listen to a particular pattern. The process method is called many times each second. Is there a nicer way to do this :) Thanks, Barry class Listener: def __init__(self, data_to_catch): self.data_to_catch = data_to_catc...
1
10,612,011
05/16/2012 04:30:05
1,194,039
02/07/2012 07:14:57
37
2
CSS IE8 Photos are hidden
In my gallery I have thumbnail images that sit in an unordered list. For some reason they do not display in IE8. Could anyone explain why? [www.melbournedodgeball.com.au/dodgeball2012/photos][1] [1]: http://www.melbournedodgeball.com.au/dodgeball2012/photos Thanks!
css
internet-explorer-8
null
null
null
null
open
CSS IE8 Photos are hidden === In my gallery I have thumbnail images that sit in an unordered list. For some reason they do not display in IE8. Could anyone explain why? [www.melbournedodgeball.com.au/dodgeball2012/photos][1] [1]: http://www.melbournedodgeball.com.au/dodgeball2012/photos Thanks!
0
7,295,089
09/03/2011 18:41:07
926,891
09/03/2011 18:28:01
1
0
Give pseudocode to create a number generation program?
Give pseudocode to create a number generation program? Where the number runs from 0,1,2,3,.....,9,A,B,...,Z,10,11,...1A,1B,...,1Z,20,... - if the input given is RAM,the program should generate the next number as RAN. /*----------------------------------------------------*/ please give me the answers as soon...
pseudocode
null
null
null
null
09/05/2011 00:04:02
not a real question
Give pseudocode to create a number generation program? === Give pseudocode to create a number generation program? Where the number runs from 0,1,2,3,.....,9,A,B,...,Z,10,11,...1A,1B,...,1Z,20,... - if the input given is RAM,the program should generate the next number as RAN. /*------------------------------...
1
8,359,126
12/02/2011 16:06:42
580,981
01/19/2011 05:52:11
93
0
Something cannot be resolved to be a type
My code is a simple vending machine. I used centralised parttern to coding. But I found some errors such as in class veding_machine, Ls[3]=new nosmall_cups(); Ls[4]=new nolarge_cups(); Ls[5]=new exit(); Ls[6]=new start(); these errors are the same:" Multiple markers at this line ...
java
null
null
null
null
12/02/2011 17:15:30
not a real question
Something cannot be resolved to be a type === My code is a simple vending machine. I used centralised parttern to coding. But I found some errors such as in class veding_machine, Ls[3]=new nosmall_cups(); Ls[4]=new nolarge_cups(); Ls[5]=new exit(); Ls[6]=new start(); these errors are the same:" ...
1
23,640
08/22/2008 22:13:06
324
08/04/2008 16:46:29
60
2
Free or Open Source Collaboration/eLearning Software
I am looking for open source or free data collaboration software. Specifically this is for a non-profit organization that wants to teach remote students how a foreign language. The idea is that an instructor would teach a class and there would be up to 10 students in the class at a time. The instructor would be able ...
elearning
collaboration
null
null
null
12/10/2011 16:40:17
not constructive
Free or Open Source Collaboration/eLearning Software === I am looking for open source or free data collaboration software. Specifically this is for a non-profit organization that wants to teach remote students how a foreign language. The idea is that an instructor would teach a class and there would be up to 10 stude...
4
3,756,596
09/21/2010 00:58:25
343,540
05/17/2010 23:31:39
67
2
Join SQL Query Problem?
First Select Statement: SELECT dbo.FG_FILLIN.PartNumber, dbo.DropshipPackinglist.Shiplist_Qty, dbo.DropshipPackinglist.Quantity FROM dbo.FG_FILLIN INNER JOIN dbo.DropshipPackinglist ON dbo.FG_FILLIN.PartNumber = dbo.DropshipPackinglist.PartNumber WHERE (dbo.FG_FILLIN.Batch = 'CIP_HK_6') GRO...
c#
sql
mysql
sql-server
null
null
open
Join SQL Query Problem? === First Select Statement: SELECT dbo.FG_FILLIN.PartNumber, dbo.DropshipPackinglist.Shiplist_Qty, dbo.DropshipPackinglist.Quantity FROM dbo.FG_FILLIN INNER JOIN dbo.DropshipPackinglist ON dbo.FG_FILLIN.PartNumber = dbo.DropshipPackinglist.PartNumber WHERE (dbo.FG_FI...
0
4,216,505
11/18/2010 15:33:08
507,401
11/14/2010 14:30:23
38
0
about environment variables in unix
i want to know about the environment variables and want to know how are they used and where are they used?
unix
null
null
null
null
11/18/2010 15:39:25
not a real question
about environment variables in unix === i want to know about the environment variables and want to know how are they used and where are they used?
1
4,295,555
11/28/2010 05:35:20
268,687
02/08/2010 13:55:17
573
24
Dynamic image rendering on iOS
I have a programming task for an application I am writing for the iPad and the documentation is not clear about how to go about doing this. I am hoping for some good advice on approaching this problem. Basically, I have a memory buffer that stores raw RGB for a 256x192 pixel image. This image will be written to re...
ipad
graphics
ios4
null
null
null
open
Dynamic image rendering on iOS === I have a programming task for an application I am writing for the iPad and the documentation is not clear about how to go about doing this. I am hoping for some good advice on approaching this problem. Basically, I have a memory buffer that stores raw RGB for a 256x192 pixel imag...
0
10,408,974
05/02/2012 06:48:23
1,353,660
04/24/2012 12:24:45
1
0
Finding Available network Access points in Qt
I need to find available network connections like eth,wlan,bluetooth. Does Qt emit any signals on detection of these access-points automatically? And also if more than 1 connection is available how would I know that which access point is used by system? And also if only 1 connection[apart form eth0] is present, for ex:...
linux
qt
network-programming
wlan
qtnetwork
null
open
Finding Available network Access points in Qt === I need to find available network connections like eth,wlan,bluetooth. Does Qt emit any signals on detection of these access-points automatically? And also if more than 1 connection is available how would I know that which access point is used by system? And also if onl...
0
9,086,672
01/31/2012 20:46:45
256,048
01/21/2010 17:57:03
103
0
How is ReuseCabinetCache used in a WIX install
Similiar question: http://stackoverflow.com/questions/1207020/reusing-wix-components-to-speed-up-candle-light My project has the very same problem as the one referenced; a very large static database that never changes is compressed into the msi every time a build is required. I would like to do as the question asks:...
wix
wix3.5
null
null
null
null
open
How is ReuseCabinetCache used in a WIX install === Similiar question: http://stackoverflow.com/questions/1207020/reusing-wix-components-to-speed-up-candle-light My project has the very same problem as the one referenced; a very large static database that never changes is compressed into the msi every time a build i...
0
10,486,158
05/07/2012 17:11:22
1,243,296
03/01/2012 17:19:36
1
0
Jquery dialog with Iframe not working in IE9
Jquery dialog with Iframe not wroking in IE9. I have an HTML Button on my parent.aspx <input type="button" id="btnMessageFilter" class="mainFont" value="Message Filter" /> On "btnMessageFilter" click, I want to open another aspx page (child.aspx) in Jquery dialog; I was doing this like this: $(document).rea...
iframe
dialog
internet-explorer-9
null
null
null
open
Jquery dialog with Iframe not working in IE9 === Jquery dialog with Iframe not wroking in IE9. I have an HTML Button on my parent.aspx <input type="button" id="btnMessageFilter" class="mainFont" value="Message Filter" /> On "btnMessageFilter" click, I want to open another aspx page (child.aspx) in Jquery dial...
0
11,704,831
07/28/2012 21:35:37
1,560,183
07/28/2012 21:32:25
1
0
What's a good backup software that will scan for particular files and only back those up?
I don't want all 500GB backed up, I just want all my office documents backed up (they are spread out through dozens of folders). I don't want to use iCloud, but I want to be able to FTP the backup to my web server.
ftp
backup
office
documents
null
07/29/2012 18:27:21
off topic
What's a good backup software that will scan for particular files and only back those up? === I don't want all 500GB backed up, I just want all my office documents backed up (they are spread out through dozens of folders). I don't want to use iCloud, but I want to be able to FTP the backup to my web server.
2
11,481,397
07/14/2012 05:45:56
1,357,346
04/25/2012 22:16:11
18
0
Why can't I import (via require) the LuaFileSystem dll (lfs.dll) into a Lua script being run by a C# program through LuaInterface?
When using LuaInterface to run a Lua script which imports the LuaFileSystem, I get an obscure error. Here's my stack trace: QTools: ERROR: LuaInterface.LuaException: error loading module 'lfs' from file '.\lfs.dll': T at LuaInterface.Lua.ThrowExceptionFromError(Int32 oldTop) at LuaInterf...
lua
luainterface
null
null
null
null
open
Why can't I import (via require) the LuaFileSystem dll (lfs.dll) into a Lua script being run by a C# program through LuaInterface? === When using LuaInterface to run a Lua script which imports the LuaFileSystem, I get an obscure error. Here's my stack trace: QTools: ERROR: LuaInterface.LuaException: error lo...
0
6,887,773
07/31/2011 05:43:36
871,301
07/31/2011 05:43:36
1
0
Apache 2.2.19 release compatible with tomcat 6?
We have apache 2.2.14 but need to upgrade to a higher version due to security vulnerabilities. Apache 2.2.19 is the highest and available now, but we are not sure if it will be compatible with Tomcat 6 we are having. How can I find out about the compatibilities & possible risks? and will it be compatible with tomcat 7?...
apache
null
null
null
null
null
open
Apache 2.2.19 release compatible with tomcat 6? === We have apache 2.2.14 but need to upgrade to a higher version due to security vulnerabilities. Apache 2.2.19 is the highest and available now, but we are not sure if it will be compatible with Tomcat 6 we are having. How can I find out about the compatibilities & pos...
0
9,038,022
01/27/2012 18:12:27
1,124,199
12/31/2011 10:03:45
15
0
Search submits on localsever but does nothing on remote
I have a search bar on my website that submits to the next page perfectly fine on my localhost with wamp but when I put it on my hosts server it doesn't submit, it does nothing. If you type in a search term it doesn't even move to the next page it just has the spinny icon in the tab and does nothing and the address bar...
php
javascript
html
sql
null
null
open
Search submits on localsever but does nothing on remote === I have a search bar on my website that submits to the next page perfectly fine on my localhost with wamp but when I put it on my hosts server it doesn't submit, it does nothing. If you type in a search term it doesn't even move to the next page it just has th...
0
7,639,010
10/03/2011 18:20:09
478,573
10/17/2010 14:54:01
1,601
30
How to resize and float right a background image using css?
I am working on this site: http://www.problemio.com and I have a requirement to add the background image to the top banner which I did. What I can't figure out how to do is how to shift it all the way to the right and make it smaller in length so that it only takes up half of the screen width. Any idea how to do ...
html
css
null
null
null
null
open
How to resize and float right a background image using css? === I am working on this site: http://www.problemio.com and I have a requirement to add the background image to the top banner which I did. What I can't figure out how to do is how to shift it all the way to the right and make it smaller in length so that ...
0
3,524,850
08/19/2010 18:10:58
425,571
08/19/2010 17:50:24
1
0
How do you create an indexed table view based on last name.
If you could find a tutorial for an indexed table view based on last name like the "Contacts" app, that would be great. I've search all around but can't find one on last names.
iphone
uitableview
indexed
null
null
null
open
How do you create an indexed table view based on last name. === If you could find a tutorial for an indexed table view based on last name like the "Contacts" app, that would be great. I've search all around but can't find one on last names.
0
9,570,480
03/05/2012 16:47:17
1,242,503
03/01/2012 11:17:51
4
0
Howdo display random number generated on te scree in textView
i m trying to show the random number generated on the screen but for some reason its not coming up the screen luk like _______ 1 2 3 4 5 6 7 8 9 del 0 # - random number are to be shown where"___" is main.xml <TextView android:id="@+id/Title" android:layout_width="fil...
android
null
null
null
null
null
open
Howdo display random number generated on te scree in textView === i m trying to show the random number generated on the screen but for some reason its not coming up the screen luk like _______ 1 2 3 4 5 6 7 8 9 del 0 # - random number are to be shown where"___" is main.xml <TextView ...
0
1,447,962
09/19/2009 06:35:33
4,227
09/02/2008 13:08:22
86
24
DesignTime data not showing in Blend when bound against CollectionViewSource
I have datatemplate for a viewmodel where an itemscontrol is bound again a CollectionViewSource (to enable sorting in xaml). <DataTemplate x:Key="equipmentDataTemplate"> <Viewbox> <Viewbox.Resources> <CollectionViewSource x:Key="viewSource" Source="{Binding Modules}"> ...
wpf
blend
collectionviewsource
null
null
null
open
DesignTime data not showing in Blend when bound against CollectionViewSource === I have datatemplate for a viewmodel where an itemscontrol is bound again a CollectionViewSource (to enable sorting in xaml). <DataTemplate x:Key="equipmentDataTemplate"> <Viewbox> <Viewbox.Resources> ...
0
6,308,574
06/10/2011 15:29:23
792,230
06/10/2011 06:25:09
1
0
C# interview question
In one of the interview, i got asked the following question but i am not sure what is that, Please help me to understand about the question Use C# to turn an 4th and 7th bits of a said byte myFlag in which write most bit is first bit.
c#
null
null
null
null
06/11/2011 10:03:49
not a real question
C# interview question === In one of the interview, i got asked the following question but i am not sure what is that, Please help me to understand about the question Use C# to turn an 4th and 7th bits of a said byte myFlag in which write most bit is first bit.
1
3,107,946
06/24/2010 07:28:07
374,989
06/24/2010 07:28:07
1
0
Modify HTML Object tag attributes with mootools in IE
I got an object tag (generated by SWFObject) which I'ld like to modify width and height properties on window resize with mootools library. With a : $('my_object').set({ 'width': new_width, 'height': new_height }); everything working fine in a firefox, chrome and others. Unfortunately, Internet explorer (7 & 8)...
html
mootools
javascript
null
null
null
open
Modify HTML Object tag attributes with mootools in IE === I got an object tag (generated by SWFObject) which I'ld like to modify width and height properties on window resize with mootools library. With a : $('my_object').set({ 'width': new_width, 'height': new_height }); everything working fine in a firefox, c...
0
10,611,218
05/16/2012 02:23:05
1,369,607
05/02/2012 09:16:11
8
0
Chicking FACEBOOK user login status
I have a web site. i do it using PHP. In home page i want to check if a user is still logged / or not into facebook. if facebook session is available alert("OK") otherwise alert("No") I have tried this code but it not working for me <html> <head> </head> <body> <scri...
php
facebook
null
null
null
05/17/2012 20:09:57
not a real question
Chicking FACEBOOK user login status === I have a web site. i do it using PHP. In home page i want to check if a user is still logged / or not into facebook. if facebook session is available alert("OK") otherwise alert("No") I have tried this code but it not working for me <html> <head> ...
1
9,084,478
01/31/2012 17:54:51
310,291
03/02/2010 15:22:39
3,508
21
Why my javascript alert doesn't show up
I tested the code below in google chrome but alert shows up why ? (I took it from http://msdn.microsoft.com/en-us/magazine/cc163419.aspx) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/...
javascript
html
null
null
null
01/31/2012 18:11:39
too localized
Why my javascript alert doesn't show up === I tested the code below in google chrome but alert shows up why ? (I took it from http://msdn.microsoft.com/en-us/magazine/cc163419.aspx) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ...
3
10,995,252
06/12/2012 10:55:26
916,439
08/28/2011 13:12:42
488
10
resolution of iPad simulator
I am new to iOS, how to find what is the resolution of iPad. Googling resulted me to choose 748*1024, is this value represents in pixels? Or do we have any alternate measurement unit?
ios5
iphone-sdk-4.0
xcode4.2
null
null
null
open
resolution of iPad simulator === I am new to iOS, how to find what is the resolution of iPad. Googling resulted me to choose 748*1024, is this value represents in pixels? Or do we have any alternate measurement unit?
0
6,162,401
05/28/2011 14:59:58
663,724
03/17/2011 05:17:05
117
3
Conversion of Date to different Format
From my JSP Page , i amgetting date in this format Fri May 13 2011 19:59:09 GMT 0530 (India Standard Time) Please tell me how can i convert this data to yyyy-mm-dd HH24:Mi:ss this format . Please advice . Thank you .
java
null
null
null
null
null
open
Conversion of Date to different Format === From my JSP Page , i amgetting date in this format Fri May 13 2011 19:59:09 GMT 0530 (India Standard Time) Please tell me how can i convert this data to yyyy-mm-dd HH24:Mi:ss this format . Please advice . Thank you .
0
7,393,920
09/12/2011 20:54:11
640,261
03/01/2011 22:47:04
195
31
C DataStructures in C++ Code
I am performing performance comparison tests against several algorithms. One of them is in C, the rest are C++. I don't want to change any of the code in the algorithms. The C code will not compile with the C++ command g++ -std=c++0x -O3 -msse2 -m32 -DNDEBUG -DINTEL -D_REENTRANT -lrt -pthread -fno-strict-ali...
c++
c
data-structures
compilation
null
09/12/2011 22:00:06
not a real question
C DataStructures in C++ Code === I am performing performance comparison tests against several algorithms. One of them is in C, the rest are C++. I don't want to change any of the code in the algorithms. The C code will not compile with the C++ command g++ -std=c++0x -O3 -msse2 -m32 -DNDEBUG -DINTEL -D_REENT...
1
99,807
09/19/2008 05:10:00
1,167,846
09/15/2008 11:12:33
173
19
Useful Textmate Shortcuts
Macs are renowned (or bemoaned) for having an extensive number of shortcuts. However, OS X itself pales in comparison to the shortcut lists in Textmate and its bundles. What are some useful keyboard shortcuts you use?
mac
keyboard-shortcuts
textmate
bundle
null
06/20/2012 12:08:54
not constructive
Useful Textmate Shortcuts === Macs are renowned (or bemoaned) for having an extensive number of shortcuts. However, OS X itself pales in comparison to the shortcut lists in Textmate and its bundles. What are some useful keyboard shortcuts you use?
4
10,241,777
04/20/2012 07:11:06
65,120
02/11/2009 15:02:52
2,000
28
CSS3 visual formatting model
I'm confused by what is written in the specification on the box model in that **it generates for each element 0 or more boxes** but I do not understand when an element may generate 0 box. In fact in the specification is also said that **each element generates a box**. Thanks.
css3
null
null
null
null
null
open
CSS3 visual formatting model === I'm confused by what is written in the specification on the box model in that **it generates for each element 0 or more boxes** but I do not understand when an element may generate 0 box. In fact in the specification is also said that **each element generates a box**. Thanks.
0
7,205,494
08/26/2011 13:38:04
851,798
07/19/2011 10:58:00
84
9
Short Link SDK iOs
I'm looking for an sdk/easy way to create a short link programmatically, preferably via a known service such as bitly.com / tinurl.com<br /><br /> The only way I've found doing this is with McAfee's beta short-link service, but it is unknown, and I want the link to be from a known service. Does anybody know such wa...
ios
short-url
null
null
null
null
open
Short Link SDK iOs === I'm looking for an sdk/easy way to create a short link programmatically, preferably via a known service such as bitly.com / tinurl.com<br /><br /> The only way I've found doing this is with McAfee's beta short-link service, but it is unknown, and I want the link to be from a known service. D...
0
8,088,800
11/11/2011 01:54:49
1,040,876
11/11/2011 01:12:13
1
0
Java - cannot read back int from data file after writing
I am trying to write a char[] and then an int, but it caused IOException when I try to read back the int. What I am really trying to do is to write a fixed byte array for a String, that's why I used the Writer class because I can't find write(char[]) in DataOutputStream. What did I do wrong? import java.io.*; ...
java
input
stream
reader
null
11/11/2011 05:07:11
too localized
Java - cannot read back int from data file after writing === I am trying to write a char[] and then an int, but it caused IOException when I try to read back the int. What I am really trying to do is to write a fixed byte array for a String, that's why I used the Writer class because I can't find write(char[]) in Dat...
3
2,322,603
02/23/2010 23:32:38
232,495
12/15/2009 22:23:18
602
4
Move cursor in JavaScript
Is it possible to move the mouse so that it is positioned inside a text input using JavaScript?
javascript
null
null
null
null
null
open
Move cursor in JavaScript === Is it possible to move the mouse so that it is positioned inside a text input using JavaScript?
0
4,771,050
01/22/2011 22:29:32
310,648
04/07/2010 05:26:33
527
2
Triggering a jquery action when the users mark a Checkbox
im very new in javascript and jquery. I have this checkbox: <label for="editable">Editable </label><input name="editable" type="checkbox" id="edita"/> And this jquery action: $('#slickbox1').toggle(400); return false; I want to execute that action when the checkbox is checked. Thanks!
javascript
jquery
null
null
null
null
open
Triggering a jquery action when the users mark a Checkbox === im very new in javascript and jquery. I have this checkbox: <label for="editable">Editable </label><input name="editable" type="checkbox" id="edita"/> And this jquery action: $('#slickbox1').toggle(400); return false; I want to exe...
0
10,081,262
04/09/2012 23:42:11
1,313,998
04/04/2012 22:41:49
6
0
SQL missing data
Hello I wondering if there are any SQL people out there who might know the answer to a brief question: I am attempting to search for missing data points within a table. The data points are not suppose to be on weekends as well as various other holidays. I have it working by building a temporary table that holds a...
sql
null
null
null
null
04/09/2012 23:55:55
not a real question
SQL missing data === Hello I wondering if there are any SQL people out there who might know the answer to a brief question: I am attempting to search for missing data points within a table. The data points are not suppose to be on weekends as well as various other holidays. I have it working by building a tempor...
1
2,240,738
02/10/2010 22:12:29
230,518
12/13/2009 02:18:03
226
0
Theory: Sampling Theorem & Nyquist Frequency
i've got a problem with the sampling theorem Sampling theorem states that a signal can be reconstructed exactly from it's samples if the original signal has no frequencies aboth half the sampling frequency. But what about frequencies exactly half the sampling frequency?? let's say i sample a sine (with an arbitra...
theory
math
null
null
null
02/11/2010 04:25:27
off topic
Theory: Sampling Theorem & Nyquist Frequency === i've got a problem with the sampling theorem Sampling theorem states that a signal can be reconstructed exactly from it's samples if the original signal has no frequencies aboth half the sampling frequency. But what about frequencies exactly half the sampling freq...
2
5,877,341
05/04/2011 00:51:28
609,767
02/09/2011 13:07:31
116
12
Doubts about subdomains in rails app
I have an application that will be marketed as a service. In this application I have an area where the User signs up, another area which is like if it were the User Site and another area that eh administration of User Site. To this end, I'm using wildcards to have subdomains with login User, my problem is to define whe...
ruby-on-rails
wildcard
saas
subdomains
null
05/07/2011 11:07:10
not a real question
Doubts about subdomains in rails app === I have an application that will be marketed as a service. In this application I have an area where the User signs up, another area which is like if it were the User Site and another area that eh administration of User Site. To this end, I'm using wildcards to have subdomains wi...
1
5,948,489
05/10/2011 10:11:13
746,616
05/10/2011 10:11:13
1
0
what is the mean of blackberry widgets applications ?
i am new to blackberry development , i want to know what is the mean of blackberry widgets applications and differrence between it and blackberry java based developmedt
java
null
null
null
null
05/10/2011 11:15:47
not a real question
what is the mean of blackberry widgets applications ? === i am new to blackberry development , i want to know what is the mean of blackberry widgets applications and differrence between it and blackberry java based developmedt
1
5,196,497
03/04/2011 16:25:58
638,237
02/28/2011 19:13:20
6
0
Xcode : how to make the user divide answer ...
Xcode : I have a tip calc that gives you the tip in USD in a label. This works fine. **I want to make that the user can divide the tip amout(on label) to how much persons they are.** So for example if the tip is 5 USD , and the user is with five people , then he is able to divide the tip amount to 5 , wich gives a...
cocoa
xcode
sdk
iphone-simulator
calc
03/06/2011 09:53:20
not a real question
Xcode : how to make the user divide answer ... === Xcode : I have a tip calc that gives you the tip in USD in a label. This works fine. **I want to make that the user can divide the tip amout(on label) to how much persons they are.** So for example if the tip is 5 USD , and the user is with five people , then he ...
1
11,399,219
07/09/2012 16:26:02
1,491,069
06/29/2012 11:39:36
1
0
Is the set of codes of Deterministic Finite-State Automata a regular language?
Let $\Sigma$ be a given alphabet. Is there a way to code up Deterministic Finite state Automata (DFA) over $\Sigma$ as strings of $\Sigma$ in such a way that the corresponding subset of $\Sigma^*$ is a regular language? For example for Turing machines, the set of codes of Turing machines over a fixed alphabet is dec...
logic
finite-automata
automata
formal-languages
computability
07/10/2012 21:57:50
off topic
Is the set of codes of Deterministic Finite-State Automata a regular language? === Let $\Sigma$ be a given alphabet. Is there a way to code up Deterministic Finite state Automata (DFA) over $\Sigma$ as strings of $\Sigma$ in such a way that the corresponding subset of $\Sigma^*$ is a regular language? For example f...
2
3,115,937
06/25/2010 06:11:52
150,046
08/03/2009 23:31:41
905
23
Passing a reference to a TObjectDictionary<TKey, TValue>.TValueEnumerator
I am trying to use Delphi 2010's TObjectDictionary<TKey, TValue> generic. I would like to pass an enumerator of the `Values` property of that generic class, and the compiler doesn't seem to want to let me... Example: TAttributeStates = class(TInterfacedObject, IAttributeStates) private FStates: TOb...
delphi
generics
delphi-2010
nested-generics
null
null
open
Passing a reference to a TObjectDictionary<TKey, TValue>.TValueEnumerator === I am trying to use Delphi 2010's TObjectDictionary<TKey, TValue> generic. I would like to pass an enumerator of the `Values` property of that generic class, and the compiler doesn't seem to want to let me... Example: TAttributeSta...
0
868,297
05/15/2009 12:07:37
91,607
04/16/2009 12:44:26
29
1
Good books/resources for User Interface design ?
I suck at User Interface design. I've always concentrated on the design/coding/programming part and I want to know what books I can use to be better at designing User Interfaces in general and Web Interfaces in particular. Thanks.
user-interface
null
null
null
null
09/28/2011 11:32:15
not constructive
Good books/resources for User Interface design ? === I suck at User Interface design. I've always concentrated on the design/coding/programming part and I want to know what books I can use to be better at designing User Interfaces in general and Web Interfaces in particular. Thanks.
4
8,198,234
11/19/2011 23:41:07
1,055,847
11/19/2011 23:34:53
1
0
Where should an absolute beginning programmer start?
Yea, I own a couple of Python, C++ and Java books. I'm 16 and pretty interested in programming, but I am kind of lost on where to start to get an idea of the basics. I want to know the in's and out's of programming. Any book and programming language recommendations? My only current experience is HTML (but that isn't re...
python
null
null
null
null
11/20/2011 16:08:21
not constructive
Where should an absolute beginning programmer start? === Yea, I own a couple of Python, C++ and Java books. I'm 16 and pretty interested in programming, but I am kind of lost on where to start to get an idea of the basics. I want to know the in's and out's of programming. Any book and programming language recommendati...
4
11,487,597
07/14/2012 21:43:12
1,510,578
07/08/2012 21:12:00
51
1
cron: Unix versus Windows (and also magento)
I notice my magento-1.7.0.2.zip file installs cron.php and cron.sh files in the base directory of the Magento installation. So, I was wondering (after recalling that on Unix cron works by manipulating /etc/crontab)... How does cron on windows differ from cron on Unix/Linux? How does magento implement cron? ...
linux
magento
windows-7
cron
null
07/15/2012 01:12:02
not a real question
cron: Unix versus Windows (and also magento) === I notice my magento-1.7.0.2.zip file installs cron.php and cron.sh files in the base directory of the Magento installation. So, I was wondering (after recalling that on Unix cron works by manipulating /etc/crontab)... How does cron on windows differ from cron on ...
1
8,212,665
11/21/2011 13:36:11
689,901
04/03/2011 14:49:18
25
0
Cannot Comprehend Requirement
I'm trying to brush up my algorithmic skills and came across this problem. Here goes: http://opc.iarcs.org.in/index.php/problems/LEADGAME My code is: #include <iostream> #include <cmath> using namespace std; int main(int argc, char* argv[]) { int count; cin >>...
c++
algorithm
null
null
null
11/21/2011 17:36:19
too localized
Cannot Comprehend Requirement === I'm trying to brush up my algorithmic skills and came across this problem. Here goes: http://opc.iarcs.org.in/index.php/problems/LEADGAME My code is: #include <iostream> #include <cmath> using namespace std; int main(int argc, char* argv[]) ...
3
1,716,363
11/11/2009 16:30:38
104,060
05/09/2009 13:16:27
904
10
First chance exception - long at memory location?
What is this and how can I handle/fix it? > First-chance exception at 0x756fb727 in Program.exe: Microsoft > C++ exception: long at memory location > 0x0018f7a4. I am getting about a thousand of these each time I run my application. How can I track this down and fix it/
c++
exception
compiler
null
null
null
open
First chance exception - long at memory location? === What is this and how can I handle/fix it? > First-chance exception at 0x756fb727 in Program.exe: Microsoft > C++ exception: long at memory location > 0x0018f7a4. I am getting about a thousand of these each time I run my application. How can I track thi...
0
5,044,502
02/18/2011 17:27:55
182,786
10/01/2009 21:59:41
1,023
44
NHibernate "Could not determine type for X" error
After upgrading the NHibernate and FluentNHibernate DLLs in a project, I'm now getting a "Could not determine type for: MyApp.Domain.Entities.AppCategory" exception thrown when initializing the SessionFactory. The only change in my code was tweaking the implementation of ForeignKeyConvention to override the `GetKeyNam...
c#
nhibernate
fluent-nhibernate
null
null
01/22/2012 15:40:19
too localized
NHibernate "Could not determine type for X" error === After upgrading the NHibernate and FluentNHibernate DLLs in a project, I'm now getting a "Could not determine type for: MyApp.Domain.Entities.AppCategory" exception thrown when initializing the SessionFactory. The only change in my code was tweaking the implementa...
3
6,925,631
08/03/2011 11:18:51
876,471
08/03/2011 11:18:51
1
0
silverstripe function to return menu level
I'm trying to write a function that returns what menu levels are visible on the page...at the moment I'm using <% if %> statements in the template, ie: <div class="<% if Menu(1) %>navA<% end_if %> <% if Menu(2) %>navB<% end_if %> <% if Menu(3) %>navC<% end_if %>">...</div> Which, if there are 3 menu levels on...
silverstripe
null
null
null
null
null
open
silverstripe function to return menu level === I'm trying to write a function that returns what menu levels are visible on the page...at the moment I'm using <% if %> statements in the template, ie: <div class="<% if Menu(1) %>navA<% end_if %> <% if Menu(2) %>navB<% end_if %> <% if Menu(3) %>navC<% end_if %>">....
0
9,499,056
02/29/2012 12:18:28
462,496
09/30/2010 05:41:19
53
1
How to limit rows in SELECT with TRANSBASE
I'm working with huge records amount in one table and i need to SELECT them in 50000 pages. Is it possible somehow to limit these pages so the query would be faster and row count will be limited and offsetted? I'm using ODBC with php like this: $odbc_query = "SELECT * FROM " . $table_name; ...
database
transbase
null
null
null
null
open
How to limit rows in SELECT with TRANSBASE === I'm working with huge records amount in one table and i need to SELECT them in 50000 pages. Is it possible somehow to limit these pages so the query would be faster and row count will be limited and offsetted? I'm using ODBC with php like this: $odbc_query...
0
11,683,571
07/27/2012 07:47:06
1,512,179
07/09/2012 14:05:29
5
0
Need some good sources to learn java
I am a beginner at java and i am learning java by thenewboston's java for beginners series. http://www.youtube.com/playlist?list=PLFE2CE09D83EE3E28&feature=plcp it is very interesting and easy to understand but as i can see that he only explains the main part and doesn't share a lot of information due to the simple...
java
null
null
null
null
07/27/2012 09:20:04
not constructive
Need some good sources to learn java === I am a beginner at java and i am learning java by thenewboston's java for beginners series. http://www.youtube.com/playlist?list=PLFE2CE09D83EE3E28&feature=plcp it is very interesting and easy to understand but as i can see that he only explains the main part and doesn't sh...
4
8,608,779
12/22/2011 19:25:43
1,047,895
11/15/2011 15:28:04
1
0
Advanced Map Android
I'm starting to work with google maps in android and don't know where to start to do something cool. anybody have a good website where teachs about using maps in android? here is something i want to do... image: http://imageshack.us/photo/my-images/215/printgooglemaps.jpg/ in this case, using maps app from...
android
maps
null
null
null
12/22/2011 20:31:52
not a real question
Advanced Map Android === I'm starting to work with google maps in android and don't know where to start to do something cool. anybody have a good website where teachs about using maps in android? here is something i want to do... image: http://imageshack.us/photo/my-images/215/printgooglemaps.jpg/ in this...
1
7,242,057
08/30/2011 10:52:06
919,384
08/30/2011 09:26:13
-1
0
how to create TAGS
How can I create tags, like the one in Stack Over Flow ,, when you post a question and you add the tags !! how can i create something like that example but not exactly like this: <style type="text/css"> .tagcloud { font-weight: bolder; line-height: 1.4em; } .tagcloud li { d...
php
ajax
tags
null
null
08/30/2011 11:01:49
not a real question
how to create TAGS === How can I create tags, like the one in Stack Over Flow ,, when you post a question and you add the tags !! how can i create something like that example but not exactly like this: <style type="text/css"> .tagcloud { font-weight: bolder; line-height: 1.4em; } ...
1
5,244,735
03/09/2011 10:55:28
445,826
09/12/2010 22:33:56
418
25
Urls not working while integrating custom application with django-cms
I'm trying to integrate an django application with django-cms. I'm using the basic "Poll" application as mentioned in basic Django tutorial and following guidelines over <a href="http://readthedocs.org/docs/django-cms/en/2.1.3/extending_cms/extending_examples.html#my-first-app-apphook">here</a>. Now I can integrate...
django
django-models
django-cms
null
null
null
open
Urls not working while integrating custom application with django-cms === I'm trying to integrate an django application with django-cms. I'm using the basic "Poll" application as mentioned in basic Django tutorial and following guidelines over <a href="http://readthedocs.org/docs/django-cms/en/2.1.3/extending_cms/exte...
0
1,505,621
10/01/2009 18:24:25
85,971
04/02/2009 02:29:20
96
2
PHP Import Foreign Class' Method into MyClass
Wondering if this is possible in PHP Land: Let's say I have a class as follows: class myClass{ var $myVar; ... myMethod(){ $this->myVar = 10; } } and another class: class anotherClass { ... addFive(){ $this->myVar += 5; ...
php
oop
python
closures
anonymous-methods
null
open
PHP Import Foreign Class' Method into MyClass === Wondering if this is possible in PHP Land: Let's say I have a class as follows: class myClass{ var $myVar; ... myMethod(){ $this->myVar = 10; } } and another class: class anotherClass { ... ...
0
7,516,202
09/22/2011 14:14:00
329,755
04/30/2010 12:46:03
235
25
MSI , MSP pros and cons
What are the pros and cons of using MSI and MSP in using them for deployment. I was thinking of automating the deployment of my software using MSI and MSP. I wanted to understand if there is any concerns. And also how feasible is it to use MSP for patch deployment
asp.net
msi
windows-installer
msp
null
10/12/2011 14:32:33
not constructive
MSI , MSP pros and cons === What are the pros and cons of using MSI and MSP in using them for deployment. I was thinking of automating the deployment of my software using MSI and MSP. I wanted to understand if there is any concerns. And also how feasible is it to use MSP for patch deployment
4
1,266,194
08/12/2009 13:31:35
144,755
07/24/2009 21:15:16
25
2
Silverlight controls not loading
I'm working on a Silverlight 3.0 app, and about 1 out of every 10 or 20 times, a UserControl I've created won't load with the rest of the application. The rest of the application loads and functions correctly. So far, I've been exclusively launching this from visual studio, but I'd like to be sure that this isn't somet...
silverlight
silverlight-3.0
null
null
null
null
open
Silverlight controls not loading === I'm working on a Silverlight 3.0 app, and about 1 out of every 10 or 20 times, a UserControl I've created won't load with the rest of the application. The rest of the application loads and functions correctly. So far, I've been exclusively launching this from visual studio, but I'd...
0
10,196,191
04/17/2012 17:38:55
805,065
06/19/2011 04:40:45
347
16
Multiple iOS Developer Accounts
If I and another individual want to publish an application, we would have to somehow create a joint account, and I understand this. However, in the future, if we were to independently publish applications, that would require us to create another developer account each and thus spend another $99 yearly. So my question i...
iphone
app-store
null
null
null
04/19/2012 02:41:16
off topic
Multiple iOS Developer Accounts === If I and another individual want to publish an application, we would have to somehow create a joint account, and I understand this. However, in the future, if we were to independently publish applications, that would require us to create another developer account each and thus spend...
2
10,272,545
04/22/2012 22:08:22
766,650
05/23/2011 20:15:56
340
19
Android Cloud Storage
I understand that this is an <b>insanely</b> broad topic, but can anyone give me any starting links/documentation on how to integrate cloud storage into my app? As an example (this isn't the actual app, since there's dozens of apps like this), I want the user to write a note and have it automatically saved to some clou...
android
backup
cloud
null
null
04/25/2012 11:40:58
not a real question
Android Cloud Storage === I understand that this is an <b>insanely</b> broad topic, but can anyone give me any starting links/documentation on how to integrate cloud storage into my app? As an example (this isn't the actual app, since there's dozens of apps like this), I want the user to write a note and have it autom...
1
1,554,429
10/12/2009 12:57:34
171,336
09/10/2009 09:35:05
1
0
how to manipulate child control in flex
I am trying to manipulate (move up and down, enable/disable and launch a form) child controls inside a panel control. However I am unable to get the id of the child control on which the click event occurs. To illustrate, I am trying to create similar functionality as is available. I am trying to create the up-down ...
flex
flex3
air
null
null
null
open
how to manipulate child control in flex === I am trying to manipulate (move up and down, enable/disable and launch a form) child controls inside a panel control. However I am unable to get the id of the child control on which the click event occurs. To illustrate, I am trying to create similar functionality as is ...
0
6,943,277
08/04/2011 14:31:30
147,306
07/29/2009 18:15:40
187
13
activitygroup inside tabhost
I have three tabs and one of which contains an activitygroup. The activitygroup calls a camera which takes a picture and returns a preview image to be displayed on the tab window. When i startactivity from cameraActivity it goes back to the activity that called the tabbed screen(Activity A). > Activity ...
android
android-tabhost
activitygroup
null
null
08/07/2011 09:51:53
not a real question
activitygroup inside tabhost === I have three tabs and one of which contains an activitygroup. The activitygroup calls a camera which takes a picture and returns a preview image to be displayed on the tab window. When i startactivity from cameraActivity it goes back to the activity that called the tabbed screen(Activ...
1
9,324,992
02/17/2012 08:23:08
1,071,545
11/29/2011 14:59:49
8
0
How to use multiple layouts in a single activity on android?
I have a problem, i wanna save all my data in one class using multiple layouts. please tell me how do i use multiple layouts in one class ??
android
android-layout
null
null
null
02/17/2012 14:51:37
not a real question
How to use multiple layouts in a single activity on android? === I have a problem, i wanna save all my data in one class using multiple layouts. please tell me how do i use multiple layouts in one class ??
1
10,906,448
06/05/2012 23:39:25
240,363
12/29/2009 18:18:53
300
26
MySQL grouping by day then display the date from the grouped results
So i have a whole load of votes going into a voting system. I want to display how many votes i have in any one day. But i also want to then, display the amount of votes per day and spit out which day they were voted on, i.e 24k votes on 05/06/12, 27k votes on 06/06/12 SELECT count(*) AS count FROM results ...
php
mysql
null
null
null
null
open
MySQL grouping by day then display the date from the grouped results === So i have a whole load of votes going into a voting system. I want to display how many votes i have in any one day. But i also want to then, display the amount of votes per day and spit out which day they were voted on, i.e 24k votes on 05/06/12,...
0
8,184,547
11/18/2011 15:08:42
1,054,049
11/18/2011 15:01:38
1
0
Need demo code or Articles on Silverlight 4.0, MVVM, RIA, MEF, Caliburn.Micro and NHibernate
I am new to Silverlight and MVVM and need very good articles OR DEMO on Silverlight 4.0 application on MVVM, Caliburn.Micro, MEF, WCF RIA service with NHibernate for LOB application. Please share your valuable thoughts or link on the same. Your help we be highly appreciated. Thanks
nhibernate
silverlight-4.0
mvvm
wcf-ria-services
caliburn.micro
11/19/2011 05:19:33
not a real question
Need demo code or Articles on Silverlight 4.0, MVVM, RIA, MEF, Caliburn.Micro and NHibernate === I am new to Silverlight and MVVM and need very good articles OR DEMO on Silverlight 4.0 application on MVVM, Caliburn.Micro, MEF, WCF RIA service with NHibernate for LOB application. Please share your valuable thoughts or ...
1
11,513,953
07/16/2012 23:15:20
1,515,626
07/10/2012 17:46:23
28
2
Creating contingency tables from recoded variables (atomic vectors)
Another boneheaded request. I am trying to create contingency tables using recoded variables where any answer is coded as "1" and non-answers are coded as "0." My original data might have looked like this: some variables are recoded from character strings, whereas others are recoded from numbers. id var1 ...
r
null
null
null
null
null
open
Creating contingency tables from recoded variables (atomic vectors) === Another boneheaded request. I am trying to create contingency tables using recoded variables where any answer is coded as "1" and non-answers are coded as "0." My original data might have looked like this: some variables are recoded from chara...
0
7,800,574
10/17/2011 22:56:37
742,082
05/06/2011 15:47:33
172
20
gcc error from easy_install of setproctitle
I'm trying to install setproctitle. I've tried just downloading the package and using setup.py to install and I've tried easy_install. Neither method works, both come up with something that looks like: :~$ sudo easy_install setproctitle Searching for setproctitle Reading http://pypi.python.org/simple/s...
python
easy-install
setup.py
null
null
null
open
gcc error from easy_install of setproctitle === I'm trying to install setproctitle. I've tried just downloading the package and using setup.py to install and I've tried easy_install. Neither method works, both come up with something that looks like: :~$ sudo easy_install setproctitle Searching for setproct...
0
3,553,462
08/24/2010 03:53:37
429,088
08/24/2010 03:50:46
1
0
How do I match a range of range combining diacritical marks in Vim?
I have a file, and some lines contain unicode characters with diacritical marks in them. I would like to delete all lines in the file that contain any unicode diacritical accent character (unicode 0x0300 - unicode 0x0362). I can blow away pretty much any other unicode in the file as range matches like the following...
vim
unicode
null
null
null
null
open
How do I match a range of range combining diacritical marks in Vim? === I have a file, and some lines contain unicode characters with diacritical marks in them. I would like to delete all lines in the file that contain any unicode diacritical accent character (unicode 0x0300 - unicode 0x0362). I can blow away pret...
0
9,003,571
01/25/2012 13:34:09
891,772
08/12/2011 12:32:14
172
11
Complex tabbed form with panels in .NET MVC 3
I'm trying to create some complex form scheme in a .NET MVC 3 project (or so I think). I'll show a wireframe so that you can understand better. ![Wireframe for my form][1] As you can see from the pic above, it's a form to create a new Car Dealership. I can choose from many available car's manufacturers (in the `Add...
asp.net-mvc-3
tabs
panel
null
null
null
open
Complex tabbed form with panels in .NET MVC 3 === I'm trying to create some complex form scheme in a .NET MVC 3 project (or so I think). I'll show a wireframe so that you can understand better. ![Wireframe for my form][1] As you can see from the pic above, it's a form to create a new Car Dealership. I can choose f...
0
1,145,121
07/17/2009 19:05:39
1,432
08/15/2008 15:33:54
3,486
169
Why does this code with generics compile?
This seems like a stupid question, but I'm tripping over it at the moment. Why does this compile? import java.util.*; public class Test { public static void main (String[] argv) throws Exception { Map<String,String> map = new HashMap<String,String>(); ...
java
generics
null
null
null
null
open
Why does this code with generics compile? === This seems like a stupid question, but I'm tripping over it at the moment. Why does this compile? import java.util.*; public class Test { public static void main (String[] argv) throws Exception { Map<String,String> map ...
0
2,127,093
01/24/2010 12:55:24
257,807
01/24/2010 12:55:24
1
0
self timer properties
Is is it possible to tell if a picture from a digital camera was taken with the self timer by looking at the picture properties?
self
timer
null
null
null
01/24/2010 13:06:29
off topic
self timer properties === Is is it possible to tell if a picture from a digital camera was taken with the self timer by looking at the picture properties?
2
891,934
05/21/2009 08:46:17
82,488
03/25/2009 10:04:26
6
0
Satchmo donations
Can anyone share some pointers on building a Donations module for Satchmo? I'm comfortable customizing Satchmo's product models etc but unable to find anything related to Donations I realize it's possible to create a Donations virtual product but as far as I can tell this still requires setting the amount beforehand...
django
satchmo
python
e-commerce
null
null
open
Satchmo donations === Can anyone share some pointers on building a Donations module for Satchmo? I'm comfortable customizing Satchmo's product models etc but unable to find anything related to Donations I realize it's possible to create a Donations virtual product but as far as I can tell this still requires settin...
0