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
7,216,621
08/27/2011 18:52:21
477,697
10/16/2010 04:17:47
65
0
Free softwares to convert WMA to MP3
I'm looking for a good software that can convert WMA to MP3 (PC and MAC). Please help. Thanks.
mp3
wma
null
null
null
08/27/2011 22:46:26
off topic
Free softwares to convert WMA to MP3 === I'm looking for a good software that can convert WMA to MP3 (PC and MAC). Please help. Thanks.
2
8,013,885
11/04/2011 18:09:49
986,847
10/09/2011 22:48:59
3
2
Argument is always null when using RemoteAttribute
I am trying to make my first remote-validation in MVC, which I cannot get to work since the argument my validation action receives is always null. public class Book { [Remote("IsValidDate", "Validation")] public DateTime ReleaseDate { get; set; } } Then I have some other values I need ...
mvc
remote
dataannotations
null
null
null
open
Argument is always null when using RemoteAttribute === I am trying to make my first remote-validation in MVC, which I cannot get to work since the argument my validation action receives is always null. public class Book { [Remote("IsValidDate", "Validation")] public DateTime ReleaseDate { get...
0
8,213,235
11/21/2011 14:19:03
636,342
02/27/2011 10:13:11
75
2
Mysql covering vs composite vs column index
In the following query SELECT col1,col2 FROM table1 WHERE col3='value1' AND col4='value2' If I have 2 separate indexes one on **col3** and the other on **col4**, Which one of them will be used in this query ? I read somewhere that for each table in the query only one index is used. D...
mysql
sql
index
covering-index
composite-index
null
open
Mysql covering vs composite vs column index === In the following query SELECT col1,col2 FROM table1 WHERE col3='value1' AND col4='value2' If I have 2 separate indexes one on **col3** and the other on **col4**, Which one of them will be used in this query ? I read somewhere that for ...
0
6,354,904
06/15/2011 08:19:47
799,182
06/15/2011 08:19:47
1
0
How to get privileges set for a report by obiee webservice or How to Judge a user whether have privilege to access a report?
I want to integrate obiee with MIS. I can view catalog of report through obiee's web service,and can explore reports. The question is how to judge a user whether he has privileges to access a certain report? if he has, list the report. This is to say, I will list reports which a user has access privileges. Please...
obiee
null
null
null
null
null
open
How to get privileges set for a report by obiee webservice or How to Judge a user whether have privilege to access a report? === I want to integrate obiee with MIS. I can view catalog of report through obiee's web service,and can explore reports. The question is how to judge a user whether he has privileges to acce...
0
7,687,811
10/07/2011 13:17:34
984,060
10/07/2011 13:13:21
1
0
F# TupleGet ActivePattern usage
I would like to know how to extract values out of a tuple Expression in F# when using quotations. If for example, I have a quotation <@ fst(sample_tuple) @>, how do I deconstruct the tuple quotation to get out the values?
f#
tuples
null
null
null
null
open
F# TupleGet ActivePattern usage === I would like to know how to extract values out of a tuple Expression in F# when using quotations. If for example, I have a quotation <@ fst(sample_tuple) @>, how do I deconstruct the tuple quotation to get out the values?
0
1,385,595
09/06/2009 12:49:40
111,160
05/22/2009 15:52:10
1,220
46
Debugging exercises
Is there something like Project Euler, but with each task consisting of a broken program which you have to fix? So one can improve debugging skills. Where you can post your improved version, and it checks if your fixed version of the program works correctly (and possibly that you haven't just totally rewritten). Perhap...
debugging
homework
null
null
null
12/10/2011 06:06:17
not constructive
Debugging exercises === Is there something like Project Euler, but with each task consisting of a broken program which you have to fix? So one can improve debugging skills. Where you can post your improved version, and it checks if your fixed version of the program works correctly (and possibly that you haven't just t...
4
11,061,302
06/16/2012 06:16:00
45,843
12/12/2008 21:03:08
2,744
23
Skipping C++ global destructors
Is there a way to either suppress the generation of destructors for global objects (in particular those of collection types such as `vector` and `unordered_map`), or to exit a program without calling such destructors (but still flushing stdout, as I gather `abort` does not do)?
c++
destructor
exit
null
null
null
open
Skipping C++ global destructors === Is there a way to either suppress the generation of destructors for global objects (in particular those of collection types such as `vector` and `unordered_map`), or to exit a program without calling such destructors (but still flushing stdout, as I gather `abort` does not do)?
0
5,118,955
02/25/2011 15:19:29
182,654
10/01/2009 17:37:49
973
44
Can I automatically trigger model validation inside a custom model binder?
I have a complex object that I'm binding off of a form. The model binder looks like this: public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) { var form = new MyForm(); var myObject = ...; //try to load up the object ...
asp.net-mvc
validation
imodelbinder
null
null
null
open
Can I automatically trigger model validation inside a custom model binder? === I have a complex object that I'm binding off of a form. The model binder looks like this: public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) { var form = new MyFor...
0
1,584,421
10/18/2009 09:02:45
17,216
09/18/2008 04:35:34
55
0
Can't use DLL (written in C++) in Delphi: The procedure entry point could not be located
I've compiled a DLL in Visual Studio (the source code is in C++, which I barely understand). Here's a piece of **Scraper.h**: struct SWin { char title[512]; HWND hwnd; }; SCRAPER_API bool ScraperGetWinList(SWin winList[100]); Now I'm trying to use the above function in my ...
delphi
c++
dll
dllimport
null
null
open
Can't use DLL (written in C++) in Delphi: The procedure entry point could not be located === I've compiled a DLL in Visual Studio (the source code is in C++, which I barely understand). Here's a piece of **Scraper.h**: struct SWin { char title[512]; HWND hwnd; }; SCRAPER_API...
0
6,963,639
08/05/2011 23:29:29
880,901
08/05/2011 15:48:37
1
0
Sine and Cosine
Can someone explain how sin(e)&cos(ine) can be used to get the end projection coordinates(x,y) of a rotating object? Ive tried in some many different ways but english is not my native language. Makes it rather hard for me to understand.
javascript
math
canvas
trigonometry
null
08/05/2011 23:58:41
off topic
Sine and Cosine === Can someone explain how sin(e)&cos(ine) can be used to get the end projection coordinates(x,y) of a rotating object? Ive tried in some many different ways but english is not my native language. Makes it rather hard for me to understand.
2
6,731,612
07/18/2011 10:33:48
456,917
09/24/2010 05:17:22
57
0
Finding a point on a given line Segment with sum of distance from given points on the line segment is maximum
I need to find the point on given line Segment such the its sum of distance form given points on the line segment is maximum.All given points are lying on the line Segment
math
mathematica
null
null
null
07/18/2011 22:57:05
not a real question
Finding a point on a given line Segment with sum of distance from given points on the line segment is maximum === I need to find the point on given line Segment such the its sum of distance form given points on the line segment is maximum.All given points are lying on the line Segment
1
3,878,587
10/07/2010 04:08:37
278,666
02/22/2010 12:30:24
3
0
Books for facebook with ruby on rails!
Hey guys! do you know good books for facebook with ruby on rails. please suggest some good books for facebook with ruby on rails!
ruby-on-rails
facebook
null
null
null
09/25/2011 21:53:00
not constructive
Books for facebook with ruby on rails! === Hey guys! do you know good books for facebook with ruby on rails. please suggest some good books for facebook with ruby on rails!
4
10,145,639
04/13/2012 17:40:18
311,130
04/07/2010 15:18:03
1,556
25
editable profile page
I'm using twitter bootstrap. I want to create a profile page with an `edit` button on the top left. When a user clicks on this button, all the profile fields become editable (I think `input` elements) Any idea how to implement it most easily?
html
css
user-interface
razor
twitter-bootstrap
04/14/2012 19:51:33
not a real question
editable profile page === I'm using twitter bootstrap. I want to create a profile page with an `edit` button on the top left. When a user clicks on this button, all the profile fields become editable (I think `input` elements) Any idea how to implement it most easily?
1
2,950,801
06/01/2010 14:52:53
231,216
12/14/2009 11:59:17
198
15
NHibernate - is property lazy loading possible?
I've got some binary data that I store and was going to separate this out into a separate table so it could be lazy loaded. However, i then came across this post by Ayende ([http://ayende.com/Blog/archive/2010/01/27/nhibernate-new-feature-lazy-properties.aspx][1]) which suggests that property lazy loading is now pos...
nhibernate
lazy-loading
null
null
null
null
open
NHibernate - is property lazy loading possible? === I've got some binary data that I store and was going to separate this out into a separate table so it could be lazy loaded. However, i then came across this post by Ayende ([http://ayende.com/Blog/archive/2010/01/27/nhibernate-new-feature-lazy-properties.aspx][1])...
0
3,424,471
08/06/2010 13:58:41
201,605
11/03/2009 11:38:31
26
8
Using plugins that are not updated anymore
I have a simple question: Would you rather use a plugin that is actively developed by the author(s) or use a plugin that is good in your perspective, but you know that it was last updated years ago and has no active support?
javascript
jquery
jquery-plugins
frontend
null
null
open
Using plugins that are not updated anymore === I have a simple question: Would you rather use a plugin that is actively developed by the author(s) or use a plugin that is good in your perspective, but you know that it was last updated years ago and has no active support?
0
2,953,532
06/01/2010 21:37:45
355,859
06/01/2010 21:09:51
1
0
is it even possible to modify .apk, by adding additional class to .dex and re-packing with modified manifest.xml??
is it even possible to modify .apk, by adding additional class to .dex and re-packing with modified manifest.xml?? I know there are tools such as baksmali / smali to disassemble / re-assemble given classes.dex from .apk, but not sure limitation what could be modified from there on? I'm trying to add additional...
android
apk
null
null
null
null
open
is it even possible to modify .apk, by adding additional class to .dex and re-packing with modified manifest.xml?? === is it even possible to modify .apk, by adding additional class to .dex and re-packing with modified manifest.xml?? I know there are tools such as baksmali / smali to disassemble / re-assemble g...
0
5,992,126
05/13/2011 12:54:26
517,544
11/16/2010 18:34:17
320
10
JDBC driver load doubt.
I am told that the prefered method to load the JDBC driver is : Class.forName(driverName); I understand that this is better for a dynamic decision between multiple drivers maybe read from an XML config file or user input. The thing I am curious about is how does invoking this statement loads the stated driver int...
java
jdbc
null
null
null
null
open
JDBC driver load doubt. === I am told that the prefered method to load the JDBC driver is : Class.forName(driverName); I understand that this is better for a dynamic decision between multiple drivers maybe read from an XML config file or user input. The thing I am curious about is how does invoking this statemen...
0
11,174,035
06/24/2012 00:14:18
345,299
05/19/2010 16:31:39
588
10
Evaluation of (String-)Hashing Algorithms?
Many (standard-)libraries for various languages bring their own hash functions, but as far as I can tell, only little is known about their performance - both in terms of run-time performance as well as collision resistance. An answer to another <a href="http://stackoverflow.com/questions/3423346/how-to-have-a-bigint...
string
algorithm
hash
evaluation
null
null
open
Evaluation of (String-)Hashing Algorithms? === Many (standard-)libraries for various languages bring their own hash functions, but as far as I can tell, only little is known about their performance - both in terms of run-time performance as well as collision resistance. An answer to another <a href="http://stackove...
0
7,584,394
09/28/2011 13:55:52
969,219
09/28/2011 13:50:02
1
0
vnc2swf : edit.py not working
i need to convert video from swf to flv. im using vnc2swf : edit.py but it's not working. shows no errors but outputs a file with one blank frame. here is the command: **/usr/share/pyvnc2swf/edit.py -o outlet.flv -s 1 1.swf** Using pygame 1.9.1release there is no soundcard Input movie: version=7, size=718x35...
video-conversion
null
null
null
null
09/29/2011 10:47:38
not a real question
vnc2swf : edit.py not working === i need to convert video from swf to flv. im using vnc2swf : edit.py but it's not working. shows no errors but outputs a file with one blank frame. here is the command: **/usr/share/pyvnc2swf/edit.py -o outlet.flv -s 1 1.swf** Using pygame 1.9.1release there is no soundcard ...
1
7,287
08/10/2008 18:49:53
573
08/06/2008 21:00:42
144
15
How do you test/change untested and untestable code?
Lately I had to change some code on older systems where not all of the code has unit tests. Before making the changes I want to write tests, but each class created a lot of dependencies and other anti-patterns which made testing quite hard. Obviously, I wanted to refactor the code to make it easier to test, write...
unittesting
refactoring
legacy
null
null
null
open
How do you test/change untested and untestable code? === Lately I had to change some code on older systems where not all of the code has unit tests. Before making the changes I want to write tests, but each class created a lot of dependencies and other anti-patterns which made testing quite hard. Obviously, I wa...
0
9,177,699
02/07/2012 14:08:29
337,100
05/10/2010 08:48:54
21
1
Cannot create a row of size 8768 which is greater than the allowable maximum row size of 8060
I am getting this error when I put a compiled JAVA code in JBoss 5.0. When I run directly from eclipse it completely works fine. The database is SQL Server 2008 and we are using Hibernate to query the database. I suspect that there is some setting in JBoss which might solve this issue. Looking for a solution t...
java
eclipse
sql-server-2008
jboss5.x
null
02/07/2012 20:27:38
not a real question
Cannot create a row of size 8768 which is greater than the allowable maximum row size of 8060 === I am getting this error when I put a compiled JAVA code in JBoss 5.0. When I run directly from eclipse it completely works fine. The database is SQL Server 2008 and we are using Hibernate to query the database. I su...
1
8,758,843
01/06/2012 13:52:10
1,122,893
12/30/2011 12:13:17
1
0
PHP Tournament Bracket
I need to write php tournament system with bracket. Like in ESL web site. the php should draw the bracket if for example there are 4 players there should be 2 round. but I don't know how can start to this is there any suggestion for me? I've been looking into google last 2 weeks but nothing I can find.
php
tournament
null
null
null
01/06/2012 14:00:44
not a real question
PHP Tournament Bracket === I need to write php tournament system with bracket. Like in ESL web site. the php should draw the bracket if for example there are 4 players there should be 2 round. but I don't know how can start to this is there any suggestion for me? I've been looking into google last 2 weeks but n...
1
3,630,717
09/02/2010 19:56:54
438,346
09/02/2010 19:56:45
1
0
Checkbox array $_POST[data] from multipart/form-data?
I am stumped. (But then I'm no expert programmer!) I had modified a working form to include an upload script but now that it's using enctype="multipart/form-data" I can no longer seem to get at the checkbox array $_POST data. It sees it as an array, which is good I guess, but I haven't managed to do anything with it...
arrays
forms
post
checkbox
multipartform-data
07/01/2011 08:30:14
not a real question
Checkbox array $_POST[data] from multipart/form-data? === I am stumped. (But then I'm no expert programmer!) I had modified a working form to include an upload script but now that it's using enctype="multipart/form-data" I can no longer seem to get at the checkbox array $_POST data. It sees it as an array, which is...
1
5,371,550
03/20/2011 21:15:38
508,518
11/15/2010 16:53:42
71
0
HTML Row headings on left
I am trying to create a simple HTML table in which I want the first column values to act as heading for that row.Below is the link to the example > http://jsfiddle.net/eEEuv/ In the table,I want row1 and row2 as the heading and want to remove the left, top, and bottom borders around that column. I am able to remo...
html
table
null
null
null
null
open
HTML Row headings on left === I am trying to create a simple HTML table in which I want the first column values to act as heading for that row.Below is the link to the example > http://jsfiddle.net/eEEuv/ In the table,I want row1 and row2 as the heading and want to remove the left, top, and bottom borders around...
0
9,708,335
03/14/2012 18:55:48
938,363
09/10/2011 16:23:28
393
10
uninitialized constant ActionRecord for session.rb
We are implementing session time out in our rails 3.1.3 app. What we did is to manually create model session.rb like this: # encoding: utf-8 class Session < ActionRecord::Base def self.sweep(time = 1.hour) if time.is_a?(String) time = time.split.inject { |count, unit| count.to...
ruby-on-rails
session
ruby-on-rails-3.1
rspec
null
03/14/2012 19:21:51
too localized
uninitialized constant ActionRecord for session.rb === We are implementing session time out in our rails 3.1.3 app. What we did is to manually create model session.rb like this: # encoding: utf-8 class Session < ActionRecord::Base def self.sweep(time = 1.hour) if time.is_a?(String) ...
3
1,713,700
11/11/2009 07:52:11
207,223
11/09/2009 19:30:50
11
1
dose it makes sense to study COBOL
I have had a talk with a friend of mine about the relative vulnerability of different types of IT workers to unexpected unemployment (e.g. layoffs, company going out of business, obsolete skills etc.) as it seems COBOL developers (or maintainers?) seems very secure in their positions, regardless of the state i...
cobol
career-development
null
null
null
02/06/2012 01:10:41
not constructive
dose it makes sense to study COBOL === I have had a talk with a friend of mine about the relative vulnerability of different types of IT workers to unexpected unemployment (e.g. layoffs, company going out of business, obsolete skills etc.) as it seems COBOL developers (or maintainers?) seems very secure in t...
4
5,658,899
04/14/2011 05:21:08
412,982
08/06/2010 11:41:00
438
15
Can any one tell me the regex for exlcuding Numbers and special charaters in asp.net?
Please tell me thREgular expression for excluding special charaters and numbers . Thanks in advance,
asp.net
regex
null
null
null
04/15/2011 01:45:15
too localized
Can any one tell me the regex for exlcuding Numbers and special charaters in asp.net? === Please tell me thREgular expression for excluding special charaters and numbers . Thanks in advance,
3
8,083,309
11/10/2011 16:56:59
478,513
10/17/2010 12:29:25
714
8
Unpacking the data structure returned by Cake PHP's compact(...) function
I'm working on the front-end of a Cake PHP project that has its back-end finished with a basic/half-implemented front-end on top. In the a controller class I came across this: $arr1 = $this->SomeModel->Data1FromDB->find('list'); $arr2 = $this->SomeModel->Data2FromDB->find('list'); $arr3 = $this->Som...
php
cakephp
null
null
null
null
open
Unpacking the data structure returned by Cake PHP's compact(...) function === I'm working on the front-end of a Cake PHP project that has its back-end finished with a basic/half-implemented front-end on top. In the a controller class I came across this: $arr1 = $this->SomeModel->Data1FromDB->find('list'); ...
0
3,246,733
07/14/2010 13:47:38
391,637
07/14/2010 13:47:37
1
0
Finger Print Recognition
I am new to Bio informatics field. I had been given a task to create a system that recognizes the finger print of human. Help me with some basics and with java codes to implement the task as easily as possible.Since I want to develop the application, direct me the articles and papers on this application.
bioinformatics
null
null
null
null
07/21/2010 02:34:30
not a real question
Finger Print Recognition === I am new to Bio informatics field. I had been given a task to create a system that recognizes the finger print of human. Help me with some basics and with java codes to implement the task as easily as possible.Since I want to develop the application, direct me the articles and papers on...
1
5,601,931
04/09/2011 00:01:01
647,794
03/07/2011 08:22:18
1,023
80
Best (and safest) way to merge a git branch into master
So let's assume on day 1 you create a new branch from `master` we call it `test`. There are several other developers who either commit to `master` or create other branches and later merge into `master`. Let's say work on `test` is taking several days and you want to continuously keep `test` updated with commits i...
git
null
null
null
null
null
open
Best (and safest) way to merge a git branch into master === So let's assume on day 1 you create a new branch from `master` we call it `test`. There are several other developers who either commit to `master` or create other branches and later merge into `master`. Let's say work on `test` is taking several days an...
0
8,653,260
12/28/2011 07:52:04
1,067,919
11/27/2011 13:57:26
1
0
autocomplete in android not working with dynamic data
I am facing problem with auto complete in android. Instead of hard coding data in Activity itself, I tried to read the data dynamically from other application on every key press which is matched. Please find below my program and suggest me where I am wrong. Note: at the first time key press, the results are getting ...
android
null
null
null
null
null
open
autocomplete in android not working with dynamic data === I am facing problem with auto complete in android. Instead of hard coding data in Activity itself, I tried to read the data dynamically from other application on every key press which is matched. Please find below my program and suggest me where I am wrong. ...
0
3,453,994
08/10/2010 22:30:23
411,459
08/05/2010 02:09:32
21
1
Neolapis For Marketing/Branding
I am asking a quesiton related to marketing and branding of software. I'm looking for some answers from people who have been in the industry for a while regarding the name Neolapis for a software company. Most people don't know what it means which is New Rock in latin but regardless when you hear the name Neolapis does...
marketing
company
branding
null
null
08/10/2010 22:44:49
off topic
Neolapis For Marketing/Branding === I am asking a quesiton related to marketing and branding of software. I'm looking for some answers from people who have been in the industry for a while regarding the name Neolapis for a software company. Most people don't know what it means which is New Rock in latin but regardless...
2
2,134,268
01/25/2010 17:39:07
258,633
01/25/2010 17:39:07
1
0
Junior Deverloper Interview Questions
Hi I'm a junior c# web developer preparing for my first interview. What kinds of things/topics should i expect to know?
junior
c#
asp.net
null
null
11/29/2011 02:52:57
not constructive
Junior Deverloper Interview Questions === Hi I'm a junior c# web developer preparing for my first interview. What kinds of things/topics should i expect to know?
4
7,341,250
09/07/2011 22:28:15
237,766
12/23/2009 17:19:54
176
14
.net Graph Mining
Briefly, I need some advises on a solution that I’m trying to implement. I'm implementing a social network, using .net technologies and I need to infer knowledge from the data collected and persisted at the database (A kind of Graph/Link Mining). My questions are: 1. This task should be performed by a business ...
.net
architecture
graph
microsoft
mining
null
open
.net Graph Mining === Briefly, I need some advises on a solution that I’m trying to implement. I'm implementing a social network, using .net technologies and I need to infer knowledge from the data collected and persisted at the database (A kind of Graph/Link Mining). My questions are: 1. This task should be p...
0
6,018,627
05/16/2011 14:07:00
726,991
04/27/2011 10:07:21
6
0
java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter
hii i am developping a smallll application using hibernate2 and there is exception in the class main test: INFO: connection properties: {user=root, password=manel} 16 mai 2011 16:03:27 net.sf.hibernate.transaction.TransactionFactoryFactory buildTransactionFactory INFO: Transaction strategy: net.sf.hibernate.transa...
hibernate
java-ee-6
null
null
null
null
open
java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter === hii i am developping a smallll application using hibernate2 and there is exception in the class main test: INFO: connection properties: {user=root, password=manel} 16 mai 2011 16:03:27 net.sf.hibernate.transaction.TransactionFactoryFactory buildTransac...
0
7,797,575
10/17/2011 17:53:43
318,519
04/16/2010 13:28:25
13
0
Media Wiki user can't view some history on some pages
I have a user on an internal wiki (MediaWiki 1.14.0) that can't see the full history on at least one page. It seems to only show the article creation date. I see the full history, and when this user visits other pages, they see the full history. Ideas as to what might cause this? The page is not protected or ...
mediawiki
null
null
null
null
10/17/2011 22:41:18
off topic
Media Wiki user can't view some history on some pages === I have a user on an internal wiki (MediaWiki 1.14.0) that can't see the full history on at least one page. It seems to only show the article creation date. I see the full history, and when this user visits other pages, they see the full history. Ideas ...
2
8,394,356
12/06/2011 01:47:35
240,569
12/30/2009 01:13:32
1,796
96
Copy files while skipping over files that exist - Unix
I'd like to take a large folder (~100GB) and copy it over to another folder. I'd like it to skip any files that exist (not folders) so if `/music/index.html` does not exist it would still copy even though the `/music` directory already exists. I found [this](http://superuser.com/questions/118781/copy-files-in-linux-...
osx
shell
unix
terminal
null
12/06/2011 13:03:02
off topic
Copy files while skipping over files that exist - Unix === I'd like to take a large folder (~100GB) and copy it over to another folder. I'd like it to skip any files that exist (not folders) so if `/music/index.html` does not exist it would still copy even though the `/music` directory already exists. I found [this...
2
7,506,505
09/21/2011 20:55:03
149,615
08/03/2009 09:41:45
744
27
SSL Error sslv3 alert decompression failure using Net::HTTP
I'm using `Net::HTTP` in ruby to make outgoing SSL connections. I've migrated my application to a new server. Both are using `ruby 1.8.7` Now there seems to be an issue with SSL, it worked perfectly before. I get the following error: `ruby/1.8/net/http.rb:586:in `connect': SSL_connect returned=1 errno=0 st...
ruby
https
openssl
null
null
null
open
SSL Error sslv3 alert decompression failure using Net::HTTP === I'm using `Net::HTTP` in ruby to make outgoing SSL connections. I've migrated my application to a new server. Both are using `ruby 1.8.7` Now there seems to be an issue with SSL, it worked perfectly before. I get the following error: `ruby/1....
0
7,517,938
09/22/2011 16:06:10
635,436
02/02/2011 07:09:21
243
5
iPhone - SQLite using TEXT primary key
Does anyone know if I can use an TEXT (UUID) primary key for an SQLite iPhone database. I am not using CoreData. Thank you. Best Regards, Andrei
iphone
database
sqlite
core-data
uuid
null
open
iPhone - SQLite using TEXT primary key === Does anyone know if I can use an TEXT (UUID) primary key for an SQLite iPhone database. I am not using CoreData. Thank you. Best Regards, Andrei
0
5,850,726
05/01/2011 19:20:54
578,847
01/17/2011 17:20:07
14
6
Using POST to send data back to objective c
I am attempting to send data back to my objective c program from javascript. I found a very helpful question [here][1] that got me started, but I quickly ran into a problem: the post seems to be failing. I also verified syntax at [this helpful site][2]. I know this because I update the contents of a div on my...
javascript
objective-c
cocoa-touch
ipad
uiwebview
null
open
Using POST to send data back to objective c === I am attempting to send data back to my objective c program from javascript. I found a very helpful question [here][1] that got me started, but I quickly ran into a problem: the post seems to be failing. I also verified syntax at [this helpful site][2]. I know ...
0
10,883,301
06/04/2012 14:48:10
1,314,565
04/05/2012 07:02:22
500
13
linkyfy some text in TextView
I have a String in TextView and I want to Linkify a substring from that string. for example: **click here** to know more. How can I linkify "click here".
android
android-textview
linkify
null
null
null
open
linkyfy some text in TextView === I have a String in TextView and I want to Linkify a substring from that string. for example: **click here** to know more. How can I linkify "click here".
0
6,814,113
07/25/2011 09:30:58
841,090
07/12/2011 15:55:13
29
3
SQL Query MySQL
I'm getting below error when I perform SQL query below. What do you think is wrong? #1054 - Unknown column 'distance' in 'where clause' SELECT longitude, latitude, firstname, surname, profile_pic, facebook_id, 6371 * ACos( Cos( RADIANS( users.latitude ) ) * Cos( RADIANS( 23 ) ) * Cos( RADIANS( 23 ) - RADIAN...
php
mysql
null
null
null
null
open
SQL Query MySQL === I'm getting below error when I perform SQL query below. What do you think is wrong? #1054 - Unknown column 'distance' in 'where clause' SELECT longitude, latitude, firstname, surname, profile_pic, facebook_id, 6371 * ACos( Cos( RADIANS( users.latitude ) ) * Cos( RADIANS( 23 ) ) * Cos( R...
0
108,201
09/20/2008 13:51:38
18,658
09/19/2008 08:49:09
449
46
Common Lisp or Scheme?
Which would you recommend learning, CL or Scheme? What are the pros and cons of each, compared to eachother?
lisp
comparison
scheme
common-lisp
null
09/16/2011 08:48:31
not constructive
Common Lisp or Scheme? === Which would you recommend learning, CL or Scheme? What are the pros and cons of each, compared to eachother?
4
7,548,716
09/25/2011 21:23:19
903,455
08/20/2011 05:32:26
429
8
Starting own SMS gateway service
I have my own SMS gateway from which I can send SMS to any number across India. My gateway works on HTTP API to send SMS. Today I saw this http://en.wikipedia.org/wiki/List_of_SMS_gateways and I would like to know how to setup such domain so that my users will type their `mobilenumber@mydomain.com` to send SMS. Now ...
sms-gateway
null
null
null
null
10/07/2011 23:42:14
off topic
Starting own SMS gateway service === I have my own SMS gateway from which I can send SMS to any number across India. My gateway works on HTTP API to send SMS. Today I saw this http://en.wikipedia.org/wiki/List_of_SMS_gateways and I would like to know how to setup such domain so that my users will type their `mobilenum...
2
11,400,859
07/09/2012 18:23:15
1,299,272
03/28/2012 21:09:38
1
0
Drupal Multisite with shared users -- not shared permissions
I'm supporting a Drupal multisite installation -- We have a shared user table; however, due to the multiple sites having different modules activated, the Permissions aren't shared. Can anyone suggest a module (or set of modules) or other solution where I can easily manage user permissions across multiple domains,...
drupal
null
null
null
null
07/10/2012 18:32:37
off topic
Drupal Multisite with shared users -- not shared permissions === I'm supporting a Drupal multisite installation -- We have a shared user table; however, due to the multiple sites having different modules activated, the Permissions aren't shared. Can anyone suggest a module (or set of modules) or other solution w...
2
8,880,616
01/16/2012 13:23:16
399,145
07/22/2010 13:40:20
389
2
How to get LDAP displayname and email id using Msbuild?
I got communitytasks to send mail. But in subject itself if i add display name of LDAP user, I would know who is taking build. Following Code in Powershell would give me mail id and displayname $searcher = [adsisearcher]"(samaccountname=$env:USERNAME)" $mailid= $searcher.FindOne().Properties...
powershell
msbuild
powershell-v2.0
msbuild-task
msbuild-4.0
null
open
How to get LDAP displayname and email id using Msbuild? === I got communitytasks to send mail. But in subject itself if i add display name of LDAP user, I would know who is taking build. Following Code in Powershell would give me mail id and displayname $searcher = [adsisearcher]"(samaccountname=$en...
0
1,522,719
10/05/2009 22:25:26
32,484
10/29/2008 17:48:46
2,604
108
What would be the most useful certification for a developer (ITIL)?
I am quite busy balancing my career, practise (working on 5 projects outside of work of varying sizes), and finishing my certs. While I have 70-536 and 70-560 (MOSS Config) an 2 non MS exams, and 2 ASP.NET exams to finish, I want to complete one certification which is not strictly related to development and thus will m...
career-development
null
null
null
null
04/15/2011 15:01:21
off topic
What would be the most useful certification for a developer (ITIL)? === I am quite busy balancing my career, practise (working on 5 projects outside of work of varying sizes), and finishing my certs. While I have 70-536 and 70-560 (MOSS Config) an 2 non MS exams, and 2 ASP.NET exams to finish, I want to complete one c...
2
7,881,789
10/24/2011 20:47:00
978,685
10/04/2011 14:42:17
7
0
Retreiving mysql connection strings from app.config?
How can I call the connection string by name from an app.config file in my vb.net program?
sql
vb.net
connection-string
app-config
null
null
open
Retreiving mysql connection strings from app.config? === How can I call the connection string by name from an app.config file in my vb.net program?
0
9,161,890
02/06/2012 14:46:08
1,059,897
11/22/2011 13:43:39
11
0
Develop desktop application to update sharepoint 2010 list
i want to update sharepoint list from desktop application. How can I do that ?
sharepoint
null
null
null
null
02/07/2012 13:11:03
not a real question
Develop desktop application to update sharepoint 2010 list === i want to update sharepoint list from desktop application. How can I do that ?
1
3,837,556
10/01/2010 08:26:12
431,764
08/26/2010 11:01:31
3
0
Navigation application in mac
i am new to mac development, i have to create an application which will have multiple views/windows like in installation wizard( where few option are selected one after other etc). Can any one provide me a link for any such tutorial or where can i refer them. sample app will be very much appreciated.
xcode
navigation
osx
null
null
null
open
Navigation application in mac === i am new to mac development, i have to create an application which will have multiple views/windows like in installation wizard( where few option are selected one after other etc). Can any one provide me a link for any such tutorial or where can i refer them. sample app will be very m...
0
7,760,868
10/13/2011 21:51:40
950,963
09/18/2011 06:25:03
16
0
C++ Storing the product of two random numbers
C++ question this time. I'm trying to store the product between two random numbers... It's supposed to be asking what the product between two random numbers that generate based on srand(time(0)), and quitting after -1 is entered... The following is my code: #include <iostream> using std::cout; using std...
c++
variables
random
null
null
10/14/2011 02:18:10
too localized
C++ Storing the product of two random numbers === C++ question this time. I'm trying to store the product between two random numbers... It's supposed to be asking what the product between two random numbers that generate based on srand(time(0)), and quitting after -1 is entered... The following is my code: ...
3
6,791,480
07/22/2011 14:26:36
696,948
04/07/2011 14:01:51
1,120
49
check for array1's values in array2
Having the following two different arrays in php: Array1 ( [0] => Array ( [id] => 1 [name] => William ) [1] => Array ( [id] => 2 [name] => Bob ) [2] => Array ( [id] => 3...
php
multidimensional-array
null
null
null
null
open
check for array1's values in array2 === Having the following two different arrays in php: Array1 ( [0] => Array ( [id] => 1 [name] => William ) [1] => Array ( [id] => 2 [name] => Bob ) [2] => ...
0
11,651,432
07/25/2012 13:58:39
1,545,152
07/23/2012 06:55:50
1
0
Do i need to develop touch screen version of an application seperately
I am developing an desktop based application in c++. I want to make it touch screen enabled, where touch screen is available. My question do i need a separate version for this application for touchscreen?
c++
touch
null
null
null
07/26/2012 11:39:43
not a real question
Do i need to develop touch screen version of an application seperately === I am developing an desktop based application in c++. I want to make it touch screen enabled, where touch screen is available. My question do i need a separate version for this application for touchscreen?
1
3,886,348
10/07/2010 22:29:42
372,935
06/22/2010 08:22:56
131
5
Reference an ASP control inside a function or class method
How do you reference an asp.net control on your page inside a function or a class. private void PageLoad(object sender, EventArgs e) { //An example control from my page is txtUserName ChangeText(ref txtUserName, "Hello World"); } private void ChangeText(ref HtmlGenericContr...
c#
asp.net
null
null
null
null
open
Reference an ASP control inside a function or class method === How do you reference an asp.net control on your page inside a function or a class. private void PageLoad(object sender, EventArgs e) { //An example control from my page is txtUserName ChangeText(ref txtUserName, "Hello World");...
0
11,687,997
07/27/2012 12:43:04
662,285
03/16/2011 10:22:03
382
3
Compare two Objects
Employee emp1 = new Employee {Name = "Swapnil",Age = 27 }; Employee emp2 = new Employee { Name = "Swapnil", Age = 27 }; if (object.Equals(emp1, emp2)) { } else { } This cod...
c#
null
null
null
null
07/30/2012 06:41:01
not a real question
Compare two Objects === Employee emp1 = new Employee {Name = "Swapnil",Age = 27 }; Employee emp2 = new Employee { Name = "Swapnil", Age = 27 }; if (object.Equals(emp1, emp2)) { } else { ...
1
11,448,935
07/12/2012 09:34:09
1,338,429
04/17/2012 10:03:53
80
11
SimpleAudioEngine takes time to play sound
I am using SimpleAudioEngine to play sounds in my cocos2D application. I have a situation of continues shooting bullets on tapping on a button and playing a sound whenever a bullet is shot. When i continuously tap the shoot button sometimes, game scene jerks. This started happening when i integrated the sounds. Th...
iphone
ios
cocos2d-iphone
cocos2d
null
null
open
SimpleAudioEngine takes time to play sound === I am using SimpleAudioEngine to play sounds in my cocos2D application. I have a situation of continues shooting bullets on tapping on a button and playing a sound whenever a bullet is shot. When i continuously tap the shoot button sometimes, game scene jerks. This starte...
0
7,126,751
08/19/2011 19:59:50
764,106
05/21/2011 15:45:50
26
3
Why upgrading Magento 1.5.1.0 to 1.6.0.0 fails?
Some time ago I upgraded a Magento store 1.4.2.0 to version 1.5.1.0, and the upgrade process was ok. I got some bug/errors though and would like to upgrade Magento to 1.6.0.0, as it is a stable release now. I downloaded magento 1.6 and followed the installation process, using the old database. After the screen where...
magento
null
null
null
null
08/23/2011 16:49:57
off topic
Why upgrading Magento 1.5.1.0 to 1.6.0.0 fails? === Some time ago I upgraded a Magento store 1.4.2.0 to version 1.5.1.0, and the upgrade process was ok. I got some bug/errors though and would like to upgrade Magento to 1.6.0.0, as it is a stable release now. I downloaded magento 1.6 and followed the installation pr...
2
5,839,261
04/30/2011 03:22:55
613,940
02/12/2011 04:55:48
13
0
jQuery Ajax load and getScript
I'm trying to set up my site so that content in the main area is loaded via javascript (some pages take a while to render). However, I've run into a bit of a logical problem when using jQuery.load(), jQuery.getScript and jQuery.ajax(). I need to be able to load certain javascript files via getScript so that I can us...
jquery
ajax
load
getscript
null
null
open
jQuery Ajax load and getScript === I'm trying to set up my site so that content in the main area is loaded via javascript (some pages take a while to render). However, I've run into a bit of a logical problem when using jQuery.load(), jQuery.getScript and jQuery.ajax(). I need to be able to load certain javascript ...
0
6,384,051
06/17/2011 09:49:38
795,411
06/13/2011 05:07:37
11
0
toString() method is not overridden when a reference to Annotation is output in println()
package javaapplication20; import java.lang.annotation.*; import java.lang.reflect.*; @Retention (RetentionPolicy.RUNTIME) @interface MyAnno { String str(); int yu(); } @Retention (RetentionPolicy.RUNTIME) @interface Wasp { double hg(); } @MyAnno(str = "Falcon", yu=5 ) @Wasp(hg = 54.67) publ...
java
null
null
null
null
06/18/2011 01:13:59
not a real question
toString() method is not overridden when a reference to Annotation is output in println() === package javaapplication20; import java.lang.annotation.*; import java.lang.reflect.*; @Retention (RetentionPolicy.RUNTIME) @interface MyAnno { String str(); int yu(); } @Retention (RetentionPolicy.RUNTIME) ...
1
10,665,298
05/19/2012 12:44:43
1,278,943
03/19/2012 15:43:34
381
31
how to know who shared my app and whom get that share
i add share button to my app , what i wonder if there is away to know: who press the share button in my app and whom recieved that share , is this possible to do it . thanks in advance , any help will be appreciated . My code to add share as follow : Intent sharingIntent = new Intent(android.conte...
android
android-intent
null
null
null
null
open
how to know who shared my app and whom get that share === i add share button to my app , what i wonder if there is away to know: who press the share button in my app and whom recieved that share , is this possible to do it . thanks in advance , any help will be appreciated . My code to add share as foll...
0
2,770,793
05/05/2010 05:18:01
248,959
01/12/2010 14:34:00
149
8
How a query without filtration values is called? "empty query" ?
you know, a query that shows all the registers of a table. Javi
query
null
null
null
null
null
open
How a query without filtration values is called? "empty query" ? === you know, a query that shows all the registers of a table. Javi
0
9,201,535
02/08/2012 21:15:52
245,473
01/07/2010 11:42:57
25
1
MS SQL Sever Database Encryption Products
I need some Product recommendation for Encrypting SQL stored procedure.
sql-server-2008
null
null
null
null
02/08/2012 21:54:08
off topic
MS SQL Sever Database Encryption Products === I need some Product recommendation for Encrypting SQL stored procedure.
2
9,859,439
03/25/2012 10:26:19
1,030,331
11/04/2011 19:28:02
90
10
Sending alerts to users from Google App Engine
I am building a Web site that sends alerts to users' phones when certain conditions are true. My original plan was to use text messaging via e-mail. You can send an e-mail to `(phonenumber)@vtext.com` to send a free text to Verizon customers, for example. The problem is that Google App Engine has a quota of 100 outgoin...
python
google-app-engine
sms
xmpp
null
03/26/2012 14:34:34
not constructive
Sending alerts to users from Google App Engine === I am building a Web site that sends alerts to users' phones when certain conditions are true. My original plan was to use text messaging via e-mail. You can send an e-mail to `(phonenumber)@vtext.com` to send a free text to Verizon customers, for example. The problem ...
4
3,270,121
07/17/2010 03:30:08
394,458
07/17/2010 03:30:08
1
0
loop until all elements have been accessed N times in python
I have a group of buckets, each with a certain number of items in them. I want to make combinations with one item from each bucket. The loop should keep making different combinations until each item has participated in at least some defined number. I can easily see how to run the loop and stop once a single element ...
python
list
sorting
loops
while-loops
null
open
loop until all elements have been accessed N times in python === I have a group of buckets, each with a certain number of items in them. I want to make combinations with one item from each bucket. The loop should keep making different combinations until each item has participated in at least some defined number. I ...
0
7,015,174
08/10/2011 17:31:37
888,449
08/10/2011 17:31:37
1
0
Issues with static variable PHP
I am having some issue with a static variable in php. I am calling a php function from another JS function, and the static variable isn't increasing. Shouldn't it be? Here's something like what I'm trying to do(just very simplified); <?php function someFunc() { static $y = 0; ...
php
javascript
static
global
null
null
open
Issues with static variable PHP === I am having some issue with a static variable in php. I am calling a php function from another JS function, and the static variable isn't increasing. Shouldn't it be? Here's something like what I'm trying to do(just very simplified); <?php function someFunc() { ...
0
10,194,728
04/17/2012 15:58:17
1,036,704
11/09/2011 00:16:43
50
0
JQuery click event works only once
Here is a link http://jsfiddle.net/DUCY3/1/ Basically in the long term it should continue to add columns/rows when you click the yellow. But it's not even sensing the click event the second time. Not sure why. Thanks.
jquery
null
null
null
null
null
open
JQuery click event works only once === Here is a link http://jsfiddle.net/DUCY3/1/ Basically in the long term it should continue to add columns/rows when you click the yellow. But it's not even sensing the click event the second time. Not sure why. Thanks.
0
2,281,338
02/17/2010 14:17:55
149,808
08/03/2009 14:59:01
9,140
572
PHP Packaging/Deployment
What is a good way to package a web application in PHP for easy deployment? Currently, I am using make to generate a gzipped tar file. In Java, most people use Maven and build WARs. I wonder if there is a similar standard practice in PHP world. There is a Maven for PHP. I wonder if it's the way to go.
php
packages
maven-2
null
null
03/06/2012 16:53:15
not constructive
PHP Packaging/Deployment === What is a good way to package a web application in PHP for easy deployment? Currently, I am using make to generate a gzipped tar file. In Java, most people use Maven and build WARs. I wonder if there is a similar standard practice in PHP world. There is a Maven for PHP. I wonder if it's...
4
5,148,350
02/28/2011 22:30:52
153,799
08/10/2009 15:19:15
60
2
jquery Object Iteration with Alert
Can someone explain how to iterate through all my object values with an alert? // get a single audio url echonest.artist("Prince").audio( function(audioCollection) { $('#artistAudioURL').append(audioCollection.data.audio[0].url); });
jquery
null
null
null
null
null
open
jquery Object Iteration with Alert === Can someone explain how to iterate through all my object values with an alert? // get a single audio url echonest.artist("Prince").audio( function(audioCollection) { $('#artistAudioURL').append(audioCollection.data.audio[0].url); });
0
3,339,004
07/26/2010 21:04:10
146,587
07/28/2009 18:09:01
926
23
custom ban page for homebrew website
I understand how to ban an IPs address from my apache webserver using .htaccess: order allow,deny deny from 192.168.44.201 deny from 224.39.163.12 deny from 172.16.7.92 allow from all I'd like to create a custom "You've been banned" page. How could I do this?
apache
http
.htaccess
null
null
null
open
custom ban page for homebrew website === I understand how to ban an IPs address from my apache webserver using .htaccess: order allow,deny deny from 192.168.44.201 deny from 224.39.163.12 deny from 172.16.7.92 allow from all I'd like to create a custom "You've been banned" page. How could...
0
11,257,522
06/29/2012 07:08:17
1,490,485
06/29/2012 06:47:58
1
0
Symfony2: Getting Exception while "How to create a custom Authentication Provider"
i am new to Symfony2 and need to create a Custom Authentication Provider, so i read the [How to create a custom Authentication Provider][1]. I created all classes, also the Custom User Provider from [How to create a custom User Provider][2] but i am getting this Exception: RuntimeException: The parent definitio...
authentication
symfony-2.0
user
provider
null
null
open
Symfony2: Getting Exception while "How to create a custom Authentication Provider" === i am new to Symfony2 and need to create a Custom Authentication Provider, so i read the [How to create a custom Authentication Provider][1]. I created all classes, also the Custom User Provider from [How to create a custom User Pro...
0
7,752,067
10/13/2011 09:28:38
311,174
04/07/2010 16:21:36
8
1
java process to notify the shell spring load completion
I use spring in a stand alone web application, which means there's no servlet container but rather it runs in a JVM machine: public class A { public static void main(String[] args) throws Exception { AbstractApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml")...
spring
bash
jmx
null
null
null
open
java process to notify the shell spring load completion === I use spring in a stand alone web application, which means there's no servlet container but rather it runs in a JVM machine: public class A { public static void main(String[] args) throws Exception { AbstractApplicationContext context =...
0
2,246,479
02/11/2010 17:59:34
270,856
02/11/2010 06:00:23
1
0
Creating "feeds" from multiple, different Rails models
I'm working on an application that has a few different models (tickets, posts, reports, etc..). The data is different in each model and I want to create a "feed" from all those models that displays the 10 most recent entries across the board (a mix of all the data). What is the best way to go about this? Should I cr...
ruby-on-rails
single-table-inheritance
null
null
null
null
open
Creating "feeds" from multiple, different Rails models === I'm working on an application that has a few different models (tickets, posts, reports, etc..). The data is different in each model and I want to create a "feed" from all those models that displays the 10 most recent entries across the board (a mix of all the ...
0
4,020,627
10/26/2010 04:07:50
232,703
12/16/2009 07:01:14
9
2
Create book shelf in AppStore
Please tell me about how to create BOOK SHELF in AppStore for iPad. Thanks
ipad
books
ibook
null
null
10/26/2010 13:29:51
off topic
Create book shelf in AppStore === Please tell me about how to create BOOK SHELF in AppStore for iPad. Thanks
2
3,636,134
09/03/2010 13:22:49
438,986
09/03/2010 13:17:51
1
0
Unhandled event loop exception
org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3884) at org.eclipse.swt.SWT.error(SWT.java:3799) at org.eclipse.swt.SWT.error(SWT.java:3770) at org.eclipse.swt.widgets.Widget.error(Widget.java:450) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:388) at org....
java
null
null
null
null
07/12/2011 14:56:03
not a real question
Unhandled event loop exception === org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3884) at org.eclipse.swt.SWT.error(SWT.java:3799) at org.eclipse.swt.SWT.error(SWT.java:3770) at org.eclipse.swt.widgets.Widget.error(Widget.java:450) at org.eclipse.swt.widgets.Widget.ch...
1
6,875,916
07/29/2011 16:06:32
816,577
06/26/2011 22:49:34
53
0
How to get uid value of an android application from a list displayed in a spinner?
I am developing a small application which displays the installed application as a list in a spinner. Only the application name is displayed as spinner values. Whenever I select an application from spinner I need to retrieve the UID of the selected application. How can I implement the function? The following is my ...
android
application
null
null
null
null
open
How to get uid value of an android application from a list displayed in a spinner? === I am developing a small application which displays the installed application as a list in a spinner. Only the application name is displayed as spinner values. Whenever I select an application from spinner I need to retrieve the UI...
0
8,268,616
11/25/2011 11:42:40
1,063,011
11/24/2011 00:50:39
8
0
Scripts to break out of frames and proxies
I need Javascript or PHP code to break out of frames and proxies ? Can anyone help ?
php
javascript
frames
break
proxies
11/25/2011 11:47:55
not a real question
Scripts to break out of frames and proxies === I need Javascript or PHP code to break out of frames and proxies ? Can anyone help ?
1
5,167,050
03/02/2011 11:50:40
220,627
11/28/2009 20:46:40
1,976
121
Set a web page background color before the background image loads
I have a web application, and the background image is a dark color. It's also over 100KB in size. (I don't really appreciate the background image being that big, but that's not anything I can do anything about, or the subject of this question.. In addition it's a JPEG! .. The web design has come from the customer and I...
html
css
null
null
null
null
open
Set a web page background color before the background image loads === I have a web application, and the background image is a dark color. It's also over 100KB in size. (I don't really appreciate the background image being that big, but that's not anything I can do anything about, or the subject of this question.. In a...
0
11,715,972
07/30/2012 05:43:07
872,435
08/01/2011 08:24:43
89
7
How to check a check box if it's value is in database
net i wanted to asked if the data grid view that i have inserted check box values in sqlserver database. the view like this Before [IMG]http://i.imgur.com/RsC8R.png[/IMG] After [IMG]http://i.imgur.com/hI11m.png[/IMG] Thank for help.
asp.net
vb.net
null
null
null
07/30/2012 12:15:28
not a real question
How to check a check box if it's value is in database === net i wanted to asked if the data grid view that i have inserted check box values in sqlserver database. the view like this Before [IMG]http://i.imgur.com/RsC8R.png[/IMG] After [IMG]http://i.imgur.com/hI11m.png[/IMG] Thank for help.
1
5,053,787
02/19/2011 21:56:06
486,927
10/25/2010 21:03:16
8
1
Android's custom status bar notification bug?
I am trying to show a custom notification content on the status bar via Remote View. I am using fill_parent for both width and height, but there is always a small gap on the right side. What am I doing wrong here? I wish I can post the image, but I have less than 10 rep points... Layout code (I also used Linear...
android
notifications
statusbar
null
null
null
open
Android's custom status bar notification bug? === I am trying to show a custom notification content on the status bar via Remote View. I am using fill_parent for both width and height, but there is always a small gap on the right side. What am I doing wrong here? I wish I can post the image, but I have less than ...
0
4,585,927
01/03/2011 15:53:51
561,442
01/03/2011 15:53:51
1
0
Which knowledge base software is used on this site?
I would like to ask if anyone has any idea of the knowledge base software being used at http://www.weedportal.com/kb/. Is it an in-house developed KB application in PHP or is this KB software developed by some company and is available for sale somewhere on the web. Any ideas would be highly appreciated! Kind rega...
base
knowledge
null
null
null
11/09/2011 04:49:26
off topic
Which knowledge base software is used on this site? === I would like to ask if anyone has any idea of the knowledge base software being used at http://www.weedportal.com/kb/. Is it an in-house developed KB application in PHP or is this KB software developed by some company and is available for sale somewhere on the we...
2
11,477,093
07/13/2012 19:28:33
1,524,462
07/13/2012 19:18:52
1
0
Codeigniter Loading external site in default controller
I'm not able to figure this out on my own so here I am asking for your help. How do I load a website that I already made as a view in the code igniter default controller? I put my website under a folder name site, and in the default controller I loaded the view site/index , but then in my site there are problems ...
php
codeigniter
null
null
null
null
open
Codeigniter Loading external site in default controller === I'm not able to figure this out on my own so here I am asking for your help. How do I load a website that I already made as a view in the code igniter default controller? I put my website under a folder name site, and in the default controller I loaded ...
0
9,996,713
04/03/2012 15:39:58
1,309,152
04/02/2012 22:24:54
11
0
C'tor in c++ class
can I declare new variables, like one of a different class, in a c'tor? Assume I have a class named List and a Node (nested in the List class), then I want to do: List::List(int num) { Node Nod(num); //creating a new Node which is holding num List_Head=&Nod; //List_Head is a Node pointer variabl...
class
constructor
nested
null
null
null
open
C'tor in c++ class === can I declare new variables, like one of a different class, in a c'tor? Assume I have a class named List and a Node (nested in the List class), then I want to do: List::List(int num) { Node Nod(num); //creating a new Node which is holding num List_Head=&Nod; //List_Head i...
0
5,685,183
04/16/2011 07:41:48
166,482
09/01/2009 09:09:21
513
17
Which UI library do you think is lightweight and easy to customize for web development?
I am looking for a good UI library for web development. I expected it to be lightweight which means that it should not generate too much dom structure and also easy to customizable. I have tried dijit but it is too complicated. Besides, another concern is it seems that all the UI library is based on the core lib...
javascript
jquery
user-interface
dojo
null
04/16/2011 21:10:18
not constructive
Which UI library do you think is lightweight and easy to customize for web development? === I am looking for a good UI library for web development. I expected it to be lightweight which means that it should not generate too much dom structure and also easy to customizable. I have tried dijit but it is too complicated....
4
6,429,612
06/21/2011 17:43:09
807,089
06/20/2011 17:22:10
6
0
converting array of Unicode chars to an array of ASCII characters
So what I understand of this is that a Unicode character is two bytes long, so the first byte should be an ASCII token and the second byte should be another ASCII token. I have an array of Unicode chars and I want to convert it to an array of ASCII characters that will end up being twice as long as the original.
c#
arrays
unicode
ascii
null
06/23/2011 00:50:56
not a real question
converting array of Unicode chars to an array of ASCII characters === So what I understand of this is that a Unicode character is two bytes long, so the first byte should be an ASCII token and the second byte should be another ASCII token. I have an array of Unicode chars and I want to convert it to an array of ASCII ...
1
9,211,613
02/09/2012 13:21:04
635,523
02/26/2011 13:14:40
281
13
Check for referrer in Backbone.js
I am using backbone.js for my web application, in particular Routing and History. So I have an URL like http://localhost/search/John+Doe. In my router.js, I have a route like search: function () { /* do something */ /* Can I check here, whether I came to this page using Backbone's navigat...
javascript
backbone.js
referrer
null
null
null
open
Check for referrer in Backbone.js === I am using backbone.js for my web application, in particular Routing and History. So I have an URL like http://localhost/search/John+Doe. In my router.js, I have a route like search: function () { /* do something */ /* Can I check here, whether I cam...
0
8,359,216
12/02/2011 16:12:45
73,228
03/03/2009 13:49:07
3,068
120
Why is SharePoint 2010 it looking for en-us and not en-gb?
> Failed to read resource file "C:\Program Files\Common Files\Microsoft > Shared\Web Server > Extensions\14\Resources\RegistrationResource.en-US.resx" from feature > id "(null)". I am getting loads of errors implying im using en-US but I have set it to use United Kingdom in the site settings. I have even resor...
sharepoint2010
multilingual
language-packs
null
null
12/02/2011 18:40:39
off topic
Why is SharePoint 2010 it looking for en-us and not en-gb? === > Failed to read resource file "C:\Program Files\Common Files\Microsoft > Shared\Web Server > Extensions\14\Resources\RegistrationResource.en-US.resx" from feature > id "(null)". I am getting loads of errors implying im using en-US but I have set it ...
2
7,656,400
10/05/2011 03:28:09
979,619
10/05/2011 03:18:01
1
0
Unprotect Excel workbook
I have an excel file with a number of worksheets. The previous owner/user protected the entire "workbook" made up of a number of worksheets and I don't have the password. Currently I the worksheet editing is very limited nor can I add a new worksheet. I would like more editing control but more importantly I simply need...
excel
workbook
null
null
null
10/05/2011 04:09:07
off topic
Unprotect Excel workbook === I have an excel file with a number of worksheets. The previous owner/user protected the entire "workbook" made up of a number of worksheets and I don't have the password. Currently I the worksheet editing is very limited nor can I add a new worksheet. I would like more editing control but ...
2
9,275,331
02/14/2012 10:32:46
365,251
06/12/2010 13:37:57
2,713
4
IE can't manage "global" variables?
I have [this][1] code : <div class="riga" style="border-top:0;"> <div class="col3" id="txtValoreCatastale">0,00 euro</div> </div> <script type="text/javascript"> txtValoreCatastale = $('#txtValoreCatastale'); </script> seems I get an error : SCRIPT438: ...
javascript
jquery
internet-explorer
null
null
null
open
IE can't manage "global" variables? === I have [this][1] code : <div class="riga" style="border-top:0;"> <div class="col3" id="txtValoreCatastale">0,00 euro</div> </div> <script type="text/javascript"> txtValoreCatastale = $('#txtValoreCatastale'); </script> ...
0
6,395,525
06/18/2011 11:02:56
652,450
03/09/2011 21:36:37
50
2
PreviewMouseDown not tunnelling as expected
I have the following tree on my app: MainWindow (Window) > LayoutRoot (Grid) > (MyCustomControl) > Item1 (Grid) > Button (Button1) MyCustomControl derives from ItemsControl and displays its items on a StackPanel. MyCustomControl needs to know when the mouse is clicked inside...
wpf
mouse
routed-events
null
null
null
open
PreviewMouseDown not tunnelling as expected === I have the following tree on my app: MainWindow (Window) > LayoutRoot (Grid) > (MyCustomControl) > Item1 (Grid) > Button (Button1) MyCustomControl derives from ItemsControl and displays its items on a StackPanel. MyCustomContr...
0
10,104,522
04/11/2012 10:53:19
174,184
09/16/2009 07:41:01
304
13
Java Foreach with a condition
Is it possible for Java foreach to have conditions? For example, for(Foo foo : foos && try == true) { //Do something } Is there an equivalent to this, such that I can put an AND condition inside `for`?
java
foreach
null
null
null
null
open
Java Foreach with a condition === Is it possible for Java foreach to have conditions? For example, for(Foo foo : foos && try == true) { //Do something } Is there an equivalent to this, such that I can put an AND condition inside `for`?
0
4,040,764
10/28/2010 07:40:05
489,805
10/28/2010 07:40:05
1
0
Best XML parser 4 iPhone? Best way to parse a XML Document 4 iPhone?
I need to parse a XML and then print it in a tabla view. Someone who can help me. Explain me about parsing or giving me documentation? Whatever... By the way i'm using a parser class, that I don't understand much... that works in iPhone Simulator but don't works in my device. I don't know why... Thank you so match....
iphone
objective-c
null
null
null
09/20/2011 19:55:31
not constructive
Best XML parser 4 iPhone? Best way to parse a XML Document 4 iPhone? === I need to parse a XML and then print it in a tabla view. Someone who can help me. Explain me about parsing or giving me documentation? Whatever... By the way i'm using a parser class, that I don't understand much... that works in iPhone Simula...
4
6,064,183
05/19/2011 19:59:32
467,411
10/05/2010 23:30:41
830
59
Limiting the drawing to a rectangle in OpenGLES
I need to limit the drawing of an object to a rectangle. I can't just change the viewport to match the rectangle becouse the ModelView matrix (that should change the rectangle, but not the content) may not be identity. A solution that would work is to draw to a FBO that match the rectangle, then draw the FBO to the scr...
opengl-es
null
null
null
null
null
open
Limiting the drawing to a rectangle in OpenGLES === I need to limit the drawing of an object to a rectangle. I can't just change the viewport to match the rectangle becouse the ModelView matrix (that should change the rectangle, but not the content) may not be identity. A solution that would work is to draw to a FBO t...
0
9,268,072
02/13/2012 21:10:07
918,880
08/30/2011 02:34:35
6
0
how to check for input validation java
this is what i have so far, how do i make it so it will check the the EditText boxes are empty. when i test it out with all empty boxes it will force close, why and/or how do I fix it? if ((x1field.getText().toString().equals(""))); { forgetunits.setText("you have forgotten a number"); } if ((x2field.ge...
java
android
null
null
null
02/13/2012 23:34:08
not a real question
how to check for input validation java === this is what i have so far, how do i make it so it will check the the EditText boxes are empty. when i test it out with all empty boxes it will force close, why and/or how do I fix it? if ((x1field.getText().toString().equals(""))); { forgetunits.setText("you have ...
1
9,170,042
02/07/2012 01:58:37
112,705
05/26/2009 18:33:55
3,003
142
How to add padding around a WebView
My layout file defines a WebView, underneath which there are some fixed height buttons. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layo...
android
android-layout
null
null
null
null
open
How to add padding around a WebView === My layout file defines a WebView, underneath which there are some fixed height buttons. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layou...
0
9,677,573
03/13/2012 02:24:17
1,098,965
12/15/2011 01:19:08
140
2
Include a view not bounded to a specific controller action in Symfony2 with Twig?
I'd like to include `form_fields.html.twig` (view not bounded to a controller action) within `edit.html.twig`, actually a view served by `MyController`. Given the following directory structure: MyBundle - Resources - views - MyController - form_field...
symfony
symfony-2.0
twig
symfony-forms
null
null
open
Include a view not bounded to a specific controller action in Symfony2 with Twig? === I'd like to include `form_fields.html.twig` (view not bounded to a controller action) within `edit.html.twig`, actually a view served by `MyController`. Given the following directory structure: MyBundle - Resources...
0
9,478,385
02/28/2012 08:09:49
1,237,358
02/28/2012 07:50:28
1
0
How to Read/Write Data from Smart Card Memory Card (SLE 4442)
How can i read or write Data from memory card SLE4442. I wanna know step by step. I wanna know all about of APDU command for SLE4442. I think APDU may be different. Can someone help me? Thank u.
command
smartcard
apdu
null
null
02/29/2012 14:09:52
not a real question
How to Read/Write Data from Smart Card Memory Card (SLE 4442) === How can i read or write Data from memory card SLE4442. I wanna know step by step. I wanna know all about of APDU command for SLE4442. I think APDU may be different. Can someone help me? Thank u.
1
3,006,150
06/09/2010 13:21:22
338,476
05/11/2010 16:13:34
67
1
Java: How to check if a date Object equals yesterday?
Right now I am using this code Calendar cal = Calendar.getInstance(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DATE) - 1, 12, 0, 0); //Sets Calendar to "yeserday, 12am" if(sdf.format(getDateFromLine(line))....
java
date
calendar
null
null
null
open
Java: How to check if a date Object equals yesterday? === Right now I am using this code Calendar cal = Calendar.getInstance(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DATE) - 1, 12, 0, 0); //Sets Calendar to ...
0
4,530,689
12/25/2010 15:51:03
547,726
12/19/2010 14:00:13
15
0
the width problem of 3 divs
I want to put 3 parallel divs in html. div middle should be the width of `960px` and center of the page, div left and div right will be both site of the div middle,the page min-width will be `1024px`, when the browser's width is more than `1024px`,div left and div right maybe width `(100%-960px)/2` the overflow-x is hi...
css
width
overflow
null
null
null
open
the width problem of 3 divs === I want to put 3 parallel divs in html. div middle should be the width of `960px` and center of the page, div left and div right will be both site of the div middle,the page min-width will be `1024px`, when the browser's width is more than `1024px`,div left and div right maybe width `(1...
0
7,223,647
08/28/2011 20:19:49
916,778
08/28/2011 20:14:35
1
0
A clear Buffer function.. i am new to C so please be gentle
I need to write a clearBuffer function that takes as input a char pointer and the size of bytes of the chunk of data that the pointer points to and initializes each byte in the chunk to 0. Note that this can be used to initialize the bytes of any type of data to 0s by using the address of operator to get is address and...
c
pointers
buffer
null
null
08/28/2011 20:26:11
not a real question
A clear Buffer function.. i am new to C so please be gentle === I need to write a clearBuffer function that takes as input a char pointer and the size of bytes of the chunk of data that the pointer points to and initializes each byte in the chunk to 0. Note that this can be used to initialize the bytes of any type of ...
1
8,939,694
01/20/2012 10:07:20
14,537
09/17/2008 00:46:12
2,640
52
Silverlight DatePicker binding broken - what can I do to fix this?
I have a very simple binding problem with a DatePicker that is eluding me. I have a ListBox bound to a list of objects with a DateTime property. I have an editing portion of my page for changing the selected item. This works fine - when I update the date in the DatePicker, the ListBox shows my updated date. Howev...
silverlight
data-binding
null
null
null
null
open
Silverlight DatePicker binding broken - what can I do to fix this? === I have a very simple binding problem with a DatePicker that is eluding me. I have a ListBox bound to a list of objects with a DateTime property. I have an editing portion of my page for changing the selected item. This works fine - when I update...
0