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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4,214,436 | 11/18/2010 11:53:17 | 166,452 | 09/01/2009 08:02:20 | 606 | 39 | How to execute unit tests with the debugger in mixed mode? (VS2008) | I'm fixing some unit tests and I need to debug them. The callstack is mixed (there are managed and unmanaged DLLs) so I need the debugger to be in mixed mode.
As far as I've seen if you start a native unit text the debugger is in native mode and if you start a managed UT the debugger is managed.
Is there a way ... | visual-studio-2008 | unit-testing | debugging | mixed-mode | null | null | open | How to execute unit tests with the debugger in mixed mode? (VS2008)
===
I'm fixing some unit tests and I need to debug them. The callstack is mixed (there are managed and unmanaged DLLs) so I need the debugger to be in mixed mode.
As far as I've seen if you start a native unit text the debugger is in native mode a... | 0 |
1,501,922 | 10/01/2009 04:45:11 | 62,237 | 02/04/2009 03:28:10 | 979 | 47 | Changing Class during construction | Is there a way to modify the class being constructed in a constructor?
public class A {
A() {
//if (condition) return object of type B
//else return A itself
}
}
public class B extends A { }
Basically I want to use the base class constructor as a factory method. Is it... | java | factory | null | null | null | null | open | Changing Class during construction
===
Is there a way to modify the class being constructed in a constructor?
public class A {
A() {
//if (condition) return object of type B
//else return A itself
}
}
public class B extends A { }
Basically I want to use the base clas... | 0 |
3,405,248 | 08/04/2010 11:58:10 | 362,664 | 06/09/2010 16:29:06 | 6 | 0 | extjs: nested baseParams in request | In the frame of an Ajax request, I am trying to use a **nested** object for parameter "baseParams". Basically, I would like to produce an URL like "ajax.php?**foo[controller]=demo&foo[action]=index**".
Bellow is the code that wrongly produces: "ajax.php?**foo=[object]&foo=[object]**".
<pre>
Ext.data.JsonStore(
... | ajax | extjs | null | null | null | null | open | extjs: nested baseParams in request
===
In the frame of an Ajax request, I am trying to use a **nested** object for parameter "baseParams". Basically, I would like to produce an URL like "ajax.php?**foo[controller]=demo&foo[action]=index**".
Bellow is the code that wrongly produces: "ajax.php?**foo=[object]&foo=[... | 0 |
10,119,073 | 04/12/2012 07:14:11 | 828,896 | 07/05/2011 02:13:21 | 49 | 0 | How can I keep space, tab, CR and LF? | The string s include space, tab, CR and LF, alert(s) can render format correctly,
but $("#mydiv").text(s) lost CR and LF, I hope $("#mydiv").text(s) can render format correctly, how can I do ? Thanks!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transi... | jquery | null | null | null | null | null | open | How can I keep space, tab, CR and LF?
===
The string s include space, tab, CR and LF, alert(s) can render format correctly,
but $("#mydiv").text(s) lost CR and LF, I hope $("#mydiv").text(s) can render format correctly, how can I do ? Thanks!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "ht... | 0 |
10,414,164 | 05/02/2012 12:52:06 | 807,566 | 06/21/2011 00:17:21 | 604 | 28 | How To Make a "Corrupt" File | Suppose, during testing, you wish to test how the software handles a "corrupt" file.
I have two questions:
**1. In general, how do you define a "corrupt" file? In other words, what constitutes a corrupt file?**
As an example:
Suppose you need to test a "corrupt" .pdf file.
One suggestion is to simply ta... | unit-testing | testing | functional-testing | null | null | 05/03/2012 08:08:10 | not constructive | How To Make a "Corrupt" File
===
Suppose, during testing, you wish to test how the software handles a "corrupt" file.
I have two questions:
**1. In general, how do you define a "corrupt" file? In other words, what constitutes a corrupt file?**
As an example:
Suppose you need to test a "corrupt" .pdf file.... | 4 |
1,528,206 | 10/06/2009 21:28:33 | 185,222 | 10/06/2009 20:23:16 | 1 | 1 | How to load themes from a database in Spring MVC based on user-agent , etc | I am brand new to Spring web MVC. I am trying to create a simple 1 paged site that will check the users browser and display the current theme for that browser.
If its a mobile app, I need to allow the user a button to switch to the regular site.
Also the current theme for mobile and non-mobile is stored in a da... | spring-mvc | java | java-ee | themes | spring | null | open | How to load themes from a database in Spring MVC based on user-agent , etc
===
I am brand new to Spring web MVC. I am trying to create a simple 1 paged site that will check the users browser and display the current theme for that browser.
If its a mobile app, I need to allow the user a button to switch to the regu... | 0 |
765,264 | 04/19/2009 11:30:58 | 74,089 | 03/05/2009 05:43:34 | 145 | 11 | Developing API: balance between new features and back compatibility | I'm working now on <b>API for developers</b> feature of our product.
The first version was released and it has small number of users at the moment. Since I started to develop its second version, some parts was reworked, some parts was removed to make API more elegant and clear.
But 2nd version deployment can be a... | api | specifications | compatibility | project-planning | null | null | open | Developing API: balance between new features and back compatibility
===
I'm working now on <b>API for developers</b> feature of our product.
The first version was released and it has small number of users at the moment. Since I started to develop its second version, some parts was reworked, some parts was removed t... | 0 |
6,066,989 | 05/20/2011 02:51:32 | 762,065 | 05/20/2011 02:51:32 | 1 | 0 | Search a list of terms from this website, and nostop even any one of the terms are missing. | I am trying to use RCurl package to get data from the genecard databases
http://www-bimas.cit.nih.gov/cards//
I read a wonderful solution in a previous posted questions:
http://stackoverflow.com/questions/2443127/how-can-i-use-r-rcurl-xml-packages-to-scrape-this-webpage
However, my problem is different in... | list | r | null | null | null | null | open | Search a list of terms from this website, and nostop even any one of the terms are missing.
===
I am trying to use RCurl package to get data from the genecard databases
http://www-bimas.cit.nih.gov/cards//
I read a wonderful solution in a previous posted questions:
http://stackoverflow.com/questions/2443127/... | 0 |
9,434,709 | 02/24/2012 16:50:45 | 1,123,924 | 12/31/2011 03:55:47 | 32 | 0 | installing Moodle on Ubuntu | I have installed Moodle on Ubuntu 11.10 from Synaptic Package manager, and had set the moodle site URL to http://localhost/moodle when prompted.
I have an Apache server running on my computer, and I use PhpMyAdmin to do most of the database management work.
However, after Moodle has installed I cannot find the Mo... | apache | ubuntu | lamp | moodle | null | 02/24/2012 17:03:45 | off topic | installing Moodle on Ubuntu
===
I have installed Moodle on Ubuntu 11.10 from Synaptic Package manager, and had set the moodle site URL to http://localhost/moodle when prompted.
I have an Apache server running on my computer, and I use PhpMyAdmin to do most of the database management work.
However, after Moodle h... | 2 |
4,637,983 | 01/09/2011 06:29:51 | 568,595 | 01/09/2011 06:21:31 | 1 | 0 | How to read JSON array with @ # tags in data using jQuery, | {
"locenter": [
{
"loname": {
"@empid": "1001",
"#text": "FE1"
},
"centers": [
{
"@id": "0000100001",
"#text": "dcgiDal"
}
]
},
... | jquery | json | null | null | null | null | open | How to read JSON array with @ # tags in data using jQuery,
===
{
"locenter": [
{
"loname": {
"@empid": "1001",
"#text": "FE1"
},
"centers": [
{
"@id": "0000100001",
"#text... | 0 |
11,274,042 | 06/30/2012 12:23:01 | 339,167 | 05/12/2010 09:49:09 | 402 | 27 | Running apps side by side on a dual monitor setup (on Windows 8 RC) | How can I run IE on one monitor and Media player app on the other monitor side by side, I do not want the app to snap (that app should maximize). Somehow when I context select one app the other app pauses. | windows | windows-8 | null | null | null | 07/04/2012 22:33:03 | off topic | Running apps side by side on a dual monitor setup (on Windows 8 RC)
===
How can I run IE on one monitor and Media player app on the other monitor side by side, I do not want the app to snap (that app should maximize). Somehow when I context select one app the other app pauses. | 2 |
4,109,883 | 11/05/2010 20:40:02 | 177,389 | 09/22/2009 20:17:16 | 498 | 6 | Besides time/experience, what core knowledge set distinguishes a Sr Web Dev from a regular one? | I'm trying to advance to the next level of my career as a web developer, and I know a little about a lot in terms of web technology, but maybe not enough.
I've been digging deeper into the workings of javascript,
understanding the http protocol
and jumping on to the html 5 bandwagon
where should I be focu... | senior-developer | null | null | null | null | 01/29/2012 02:26:22 | not constructive | Besides time/experience, what core knowledge set distinguishes a Sr Web Dev from a regular one?
===
I'm trying to advance to the next level of my career as a web developer, and I know a little about a lot in terms of web technology, but maybe not enough.
I've been digging deeper into the workings of javascript,
... | 4 |
10,413,017 | 05/02/2012 11:41:59 | 1,192,686 | 02/06/2012 16:04:21 | 27 | 0 | Android play music in a random amount of time | Now I can play a music in android. But I want to play this sound in a random amount of time between 2 to 8 seconds.How Can I randomly play it that for example the first time, it plays for 2 seconds, the next time 7 sec and so on? Can anybody help me? | android | null | null | null | null | null | open | Android play music in a random amount of time
===
Now I can play a music in android. But I want to play this sound in a random amount of time between 2 to 8 seconds.How Can I randomly play it that for example the first time, it plays for 2 seconds, the next time 7 sec and so on? Can anybody help me? | 0 |
5,350,672 | 03/18/2011 10:27:25 | 208,809 | 11/11/2009 16:11:22 | 52,583 | 1,876 | Pros and Cons of Interface constants | PHP interfaces allow the definition of constants in an interface, e.g.
interface FooBar
{
const FOO = 1;
const BAR = 2;
}
echo FooBar::FOO; // 1
Any implementing class will automatically have these constants available, e.g.
class MyFooBar implement FooBar
{
}
... | php | interface | software-engineering | constants | null | null | open | Pros and Cons of Interface constants
===
PHP interfaces allow the definition of constants in an interface, e.g.
interface FooBar
{
const FOO = 1;
const BAR = 2;
}
echo FooBar::FOO; // 1
Any implementing class will automatically have these constants available, e.g.
clas... | 0 |
10,023,824 | 04/05/2012 06:44:19 | 1,309,156 | 04/02/2012 22:26:20 | 1 | 0 | OnInfoListener never fires. Ever | I'm currently trying to write a simple audio player that streams a URL until the user quits. Nothing fancy really, but I'm trying to use the onInfo method of MediaPlayer to wait for the metadata update flag. I have the following code for creating the media player object.
/**
* Creates a new media player an... | android | android-mediaplayer | null | null | null | null | open | OnInfoListener never fires. Ever
===
I'm currently trying to write a simple audio player that streams a URL until the user quits. Nothing fancy really, but I'm trying to use the onInfo method of MediaPlayer to wait for the metadata update flag. I have the following code for creating the media player object.
/**... | 0 |
6,595,915 | 07/06/2011 11:54:01 | 645,380 | 03/04/2011 20:26:16 | 23 | 3 | Again can not get same result in c# | I ams still experiencing some problems with ActionScript 3 and flash and I think it is because of variable scopes what I am trying to do is to make this code iterate exactly same number of times as flash does but the problem is again variable scopes here so please if you have time could you help me with converting it t... | c# | actionscript-3 | implementation | null | null | 07/06/2011 15:13:15 | too localized | Again can not get same result in c#
===
I ams still experiencing some problems with ActionScript 3 and flash and I think it is because of variable scopes what I am trying to do is to make this code iterate exactly same number of times as flash does but the problem is again variable scopes here so please if you have ti... | 3 |
3,664,484 | 09/08/2010 03:39:55 | 321,090 | 04/20/2010 08:25:33 | 146 | 2 | NSMutableArray 'addObject:' Crashing iPhone App | This is my error:
Terminating app due to uncaught exception 'NSInvalidArgumentException',
reason: '-[__NSArrayI addObject:]: unrecognized selector sent to instance
I have no idea why this is happening. Both the array (which is NSMutableArray) and the object being added are definitely not nil, and the @p... | iphone | objective-c | nsmutablearray | nsarray | null | null | open | NSMutableArray 'addObject:' Crashing iPhone App
===
This is my error:
Terminating app due to uncaught exception 'NSInvalidArgumentException',
reason: '-[__NSArrayI addObject:]: unrecognized selector sent to instance
I have no idea why this is happening. Both the array (which is NSMutableArray) and the ... | 0 |
1,935,118 | 12/20/2009 07:28:20 | 682,281 | 12/20/2009 07:28:20 | 1 | 0 | Can any one know what is this...? | run:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at coop.AgencyDetails.AddToDatebase(AgencyDetails.java:442)
at coop.AgencyDetails.addData(AgencyDetails.java:394)
at coop.AgencyDetails.submitbtnActionPerformed(AgencyDetails.java:342)
at coop.AgencyDetails.a... | java | null | null | null | null | 02/07/2012 19:11:02 | not a real question | Can any one know what is this...?
===
run:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at coop.AgencyDetails.AddToDatebase(AgencyDetails.java:442)
at coop.AgencyDetails.addData(AgencyDetails.java:394)
at coop.AgencyDetails.submitbtnActionPerformed(AgencyDetails.jav... | 1 |
2,957,697 | 06/02/2010 12:37:23 | 356,423 | 06/02/2010 12:30:04 | 1 | 0 | Drupal - Hide a single page from search index | I've taken over an existing Drupal installation and have been asked to remove a single page from the site search results. I know about the lullabot tutorial through this question: http://stackoverflow.com/questions/1748837/hide-drupal-nodes-from-search, but that talks about excluding a class of content when I really ju... | search | drupal | index | exclude | null | null | open | Drupal - Hide a single page from search index
===
I've taken over an existing Drupal installation and have been asked to remove a single page from the site search results. I know about the lullabot tutorial through this question: http://stackoverflow.com/questions/1748837/hide-drupal-nodes-from-search, but that talks ... | 0 |
2,324,477 | 02/24/2010 08:08:06 | 269,559 | 02/09/2010 14:52:24 | 35 | 5 | Is Object Relational Mapper the holy Graal? | They seem complex and unnecessary. The applications I've built at work or home have never used any ORM and many of them haven't been even Object-oriented. Is it depenpable about size when they can be useful. How to determine how big a application should be when they be useful? | orm | null | null | null | null | 02/24/2010 09:02:01 | not constructive | Is Object Relational Mapper the holy Graal?
===
They seem complex and unnecessary. The applications I've built at work or home have never used any ORM and many of them haven't been even Object-oriented. Is it depenpable about size when they can be useful. How to determine how big a application should be when they be ... | 4 |
2,999,731 | 06/08/2010 17:31:30 | 220,511 | 11/28/2009 16:19:29 | 1 | 0 | .NET C# Filestream writing to file and reading the bfile | I have a web service that checks a dictionary to see if a file exists and then if it does exist it reads the file, otherwise it saves to the file. This is from a web app. I wonder what is the best way to do this because I occasionally get a FileNotFoundException exception if the same file is accessed at the same time. ... | c# | .net | filestream | null | null | null | open | .NET C# Filestream writing to file and reading the bfile
===
I have a web service that checks a dictionary to see if a file exists and then if it does exist it reads the file, otherwise it saves to the file. This is from a web app. I wonder what is the best way to do this because I occasionally get a FileNotFoundExcep... | 0 |
41,479 | 09/03/2008 11:29:57 | 3,394 | 08/28/2008 12:35:39 | 1,191 | 67 | Use of var keyword in C# | After discussion with colleagues regarding the use of the 'var' keyword in C# 3 I wondered what people's opinions were on the appropriate uses of type inference via var?
For example I rather lazily used var in questionable circumstances, e.g.:-
foreach(var item in someList) { // ... } // Type of 'item' not cl... | var | type-inference | c# | .net | null | 01/09/2012 15:21:20 | not constructive | Use of var keyword in C#
===
After discussion with colleagues regarding the use of the 'var' keyword in C# 3 I wondered what people's opinions were on the appropriate uses of type inference via var?
For example I rather lazily used var in questionable circumstances, e.g.:-
foreach(var item in someList) { // ... | 4 |
6,839,227 | 07/27/2011 03:42:02 | 834,721 | 07/08/2011 04:17:35 | 19 | 0 | Hiding fields from view if table is empty and validating if not empty | Here is the scenario
I am trying to work out a way to render specific data into a view based on additional user input. (I only want the specific <dt> and corresponding <dd> tags to render if there has been additional input received from the user)
And if the user has added more info, how would I go about validating... | php | cakephp | cakephp-1.3 | null | null | null | open | Hiding fields from view if table is empty and validating if not empty
===
Here is the scenario
I am trying to work out a way to render specific data into a view based on additional user input. (I only want the specific <dt> and corresponding <dd> tags to render if there has been additional input received from the us... | 0 |
11,109,229 | 06/19/2012 20:51:08 | 1,464,940 | 06/18/2012 22:03:48 | 1 | 0 | Issue with IFRAME? | Can any help me out please. I am facing problem with iframe that too in chrome.
**How to make IFRAME transparent.?** | html | css | null | null | null | 06/19/2012 21:02:45 | not a real question | Issue with IFRAME?
===
Can any help me out please. I am facing problem with iframe that too in chrome.
**How to make IFRAME transparent.?** | 1 |
9,492,623 | 02/29/2012 02:08:29 | 1,239,203 | 02/29/2012 01:54:05 | 1 | 0 | How (or is it possible) to make browser cookies? | How (or is it possible) to make browser cookies? I want to make a game, but I (obviously) need save/load, and the ability to determine the time spent between reloading, _etc._ SO YAH. **HELP!**
Also, if you know any good java tutorial sites, channels, _etc._, please tell me. I am still a beginner.
Any help is app... | java | eclipse | cookies | new-operator | null | null | open | How (or is it possible) to make browser cookies?
===
How (or is it possible) to make browser cookies? I want to make a game, but I (obviously) need save/load, and the ability to determine the time spent between reloading, _etc._ SO YAH. **HELP!**
Also, if you know any good java tutorial sites, channels, _etc._, ple... | 0 |
7,062,690 | 08/15/2011 07:48:30 | 393,087 | 07/15/2010 18:26:42 | 726 | 3 | very unsave behavior of extract() and compact() function with non standard variables, it is a bug or a feature ;)? | Not everyone knows that php can handle variables that have first characters as numbers, spaces, or other special language reserved words and characters in it. And it seems for whoever coded extract function this esoteric knowledge was not known..
${0} = 'bug';
$array = array('zero','one');
extract($a... | php | php-5.3 | bugs | php5.4 | null | 08/16/2011 00:42:17 | off topic | very unsave behavior of extract() and compact() function with non standard variables, it is a bug or a feature ;)?
===
Not everyone knows that php can handle variables that have first characters as numbers, spaces, or other special language reserved words and characters in it. And it seems for whoever coded extract fu... | 2 |
9,443,782 | 02/25/2012 11:59:54 | 1,023,060 | 11/01/2011 04:09:00 | 73 | 1 | Invalid length for a Base-64 char array in LINQ TO SQL | I am currently working on a Log in form but the thing here is that when I enter an invalid username this errors comes up.
Invalid length for a Base-64 char array.
On this line of code:
bool isSame = hasher.CompareStringToHash(txtPassword.Text, hashedPassword);
Here is the full code
public vo... | c# | .net | linq | linq-to-sql | null | null | open | Invalid length for a Base-64 char array in LINQ TO SQL
===
I am currently working on a Log in form but the thing here is that when I enter an invalid username this errors comes up.
Invalid length for a Base-64 char array.
On this line of code:
bool isSame = hasher.CompareStringToHash(txtPassword.Text... | 0 |
8,236,017 | 11/23/2011 00:52:07 | 807,325 | 02/21/2011 17:08:44 | 1,414 | 16 | Which one is the fastest query? | I need to find whether using `*` or select ony the fields you want is faster. In my case, there will be only one match ever.
So, which is faster? This :
SELECT id, name,description,address,phone,img FROM companies WHERE username = '$cname' LIMIT 1
or this one?
SELECT * FROM companies WHERE username... | php | mysql | query | null | null | 11/23/2011 07:19:28 | not constructive | Which one is the fastest query?
===
I need to find whether using `*` or select ony the fields you want is faster. In my case, there will be only one match ever.
So, which is faster? This :
SELECT id, name,description,address,phone,img FROM companies WHERE username = '$cname' LIMIT 1
or this one?
S... | 4 |
11,203,997 | 06/26/2012 09:05:09 | 930,961 | 09/06/2011 15:04:16 | 16 | 0 | How to add generated projet in the TFS2010 Binaries output folder | With TFS2010 build, the build of a solution with web projects creates a "_PublishedWebsites" in the Binaries output folder and delete all Bin folders in the Sources folder. So impossible to move by script another generated project.
How can I move another generated projets no web in the same solution to the Binaries ... | tfs2010 | build-automation | null | null | null | null | open | How to add generated projet in the TFS2010 Binaries output folder
===
With TFS2010 build, the build of a solution with web projects creates a "_PublishedWebsites" in the Binaries output folder and delete all Bin folders in the Sources folder. So impossible to move by script another generated project.
How can I move... | 0 |
10,186,313 | 04/17/2012 06:36:19 | 87,150 | 04/04/2009 19:40:19 | 98 | 3 | No option for Dynamic web project in eclipse | I need to create a dynamic web project in Eclipse but the option doesn't appear anymore.
I installed Google Web Apps engine(JAVA) and its SDK along with GWT, ever since the option for dynamic project has disappeared.
Also the option to generate web client from WSDL files is no longer there.
I've tried re-installin... | eclipse | web-services | google-app-engine | null | null | null | open | No option for Dynamic web project in eclipse
===
I need to create a dynamic web project in Eclipse but the option doesn't appear anymore.
I installed Google Web Apps engine(JAVA) and its SDK along with GWT, ever since the option for dynamic project has disappeared.
Also the option to generate web client from WSDL ... | 0 |
9,791,230 | 03/20/2012 16:48:18 | 467,875 | 10/06/2010 11:21:37 | 355 | 41 | Accessibility of JavaScript on small screen mobile devices? | Im working on a mobile optimised site. Im using media queries to detect the screen size and the majority of the content is still shown just formated differently.
The site has some JavaScript reliant interactive tools. What if any are the accessibility concerns for using JavaScript with mobile devices?
On deskto... | javascript | mobile | accessibility | null | null | null | open | Accessibility of JavaScript on small screen mobile devices?
===
Im working on a mobile optimised site. Im using media queries to detect the screen size and the majority of the content is still shown just formated differently.
The site has some JavaScript reliant interactive tools. What if any are the accessibility... | 0 |
5,719,669 | 04/19/2011 16:34:12 | 715,578 | 04/19/2011 16:10:29 | 1 | 0 | RENAMING FILE NAMES AND EXTENSIONS | How can I rename a file's filename and file extension in my current directory? If I have these files [abc.txt, 123.mp3, 54.jpg, 145.bat], how can I change that one .txt file to a file named "testing.bat"? | python | html | c | ios | programming-languages | 04/19/2011 20:10:39 | not a real question | RENAMING FILE NAMES AND EXTENSIONS
===
How can I rename a file's filename and file extension in my current directory? If I have these files [abc.txt, 123.mp3, 54.jpg, 145.bat], how can I change that one .txt file to a file named "testing.bat"? | 1 |
9,009,444 | 01/25/2012 20:02:40 | 1,170,002 | 01/25/2012 19:58:22 | 1 | 0 | How to Deploy a ColdFusion WAR File | ColdFusion 9 (and other versions) has the ability to package a CF application as a WAR file. Has anybody on the planet ever done this and successfully deployed their ColdFusion application to something like CloudBees (http://www.cloudbees.com/) or Amazon Elastic Beanstalk (http://aws.amazon.com/elasticbeanstalk/)?
... | coldfusion | amazon | war | beanstalk | elastic | 01/27/2012 14:22:18 | not a real question | How to Deploy a ColdFusion WAR File
===
ColdFusion 9 (and other versions) has the ability to package a CF application as a WAR file. Has anybody on the planet ever done this and successfully deployed their ColdFusion application to something like CloudBees (http://www.cloudbees.com/) or Amazon Elastic Beanstalk (http... | 1 |
8,565,730 | 12/19/2011 18:30:47 | 70,386 | 02/24/2009 14:26:46 | 21,937 | 1,048 | Clone a mercurial project using git? | I'm using git for all of my projects. Now I would like to clone a project that are using mercurial.
Are there some kind of mercurial <-> git bridge or something that I can use? | c# | git | version-control | mercurial | null | null | open | Clone a mercurial project using git?
===
I'm using git for all of my projects. Now I would like to clone a project that are using mercurial.
Are there some kind of mercurial <-> git bridge or something that I can use? | 0 |
9,211,180 | 02/09/2012 12:53:28 | 1,015,190 | 10/26/2011 18:24:17 | 34 | 0 | Constructing a wizard in Ruby on Rails | So I am trying to build a wizard for my users on sign up.
I cannot use javascript (What I found is the general solution for this kind of forms.)
The reason is that every page in my wizard is heavy Javascript dependent, which means that loading all at once would take to long time.
And oh, the wizard deals with 3 diff... | ruby-on-rails | forms | wizard | null | null | null | open | Constructing a wizard in Ruby on Rails
===
So I am trying to build a wizard for my users on sign up.
I cannot use javascript (What I found is the general solution for this kind of forms.)
The reason is that every page in my wizard is heavy Javascript dependent, which means that loading all at once would take to long... | 0 |
5,758,657 | 04/22/2011 18:27:29 | 661,411 | 03/15/2011 21:11:55 | 3 | 0 | Geolocation from form | I have a Javascript form where a user inputs an address, city, and state. When this form is submitted, I want the address to be converted into latitude and longitude, and to store those two values to a database. Any help at all is greatly appreciated! | javascript | database | forms | geolocation | address | null | open | Geolocation from form
===
I have a Javascript form where a user inputs an address, city, and state. When this form is submitted, I want the address to be converted into latitude and longitude, and to store those two values to a database. Any help at all is greatly appreciated! | 0 |
10,348,314 | 04/27/2012 09:39:15 | 599,835 | 02/02/2011 10:31:56 | 16 | 0 | sencha hide show button | Hi i am new to sencha and i try to find out how some things work in sencha architect /sencha touch.
i found a project http://miamicoder.com/2012/how-to-create-a-sencha-touch-2-app-part-1/
and i try to make that in architect.
at this point i try to make the toolbar on top of my app. i have some buttons there that... | sencha | sencha-touch-2 | null | null | null | null | open | sencha hide show button
===
Hi i am new to sencha and i try to find out how some things work in sencha architect /sencha touch.
i found a project http://miamicoder.com/2012/how-to-create-a-sencha-touch-2-app-part-1/
and i try to make that in architect.
at this point i try to make the toolbar on top of my app. i... | 0 |
10,177,114 | 04/16/2012 15:30:41 | 1,336,648 | 04/16/2012 15:21:28 | 1 | 0 | How to make this Java 'Hangman' work? | Im doing a java homework program where you have 20 random words and it randomly chooses 1 of the twenty, after that you have to guess the word hangman style (with 10 lives), and assuming the word is Telephone it would first appear like _ _ _ _ _ _ _ _ _ and say you enter in a guess "e", it would become _ e _ e _ _ _ _ ... | java | null | null | null | null | 04/18/2012 06:01:38 | not a real question | How to make this Java 'Hangman' work?
===
Im doing a java homework program where you have 20 random words and it randomly chooses 1 of the twenty, after that you have to guess the word hangman style (with 10 lives), and assuming the word is Telephone it would first appear like _ _ _ _ _ _ _ _ _ and say you enter in a ... | 1 |
6,761,738 | 07/20/2011 12:17:11 | 648,138 | 03/07/2011 12:27:30 | 1,256 | 28 | How can i open up a file and view it | I know the following snippet does not have the functionality of opening a file for viewing.
JFileChooser open = new JFileChooser();
int option = open.showOpenDialog( this );
if( option == JFileChooser.APPROVE_OPTION ) {
try {
Scanner scanner = new Scanner... | java | file | io | jfilechooser | null | null | open | How can i open up a file and view it
===
I know the following snippet does not have the functionality of opening a file for viewing.
JFileChooser open = new JFileChooser();
int option = open.showOpenDialog( this );
if( option == JFileChooser.APPROVE_OPTION ) {
try {
... | 0 |
4,812,725 | 01/27/2011 04:24:07 | 554,202 | 10/20/2010 07:04:56 | 1 | 1 | Crash problem Unknown situation |
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000
Crashed Thread: 0
Thread 0 Crashed:
0 libobjc.A.dylib 0x33a06466 0x33a03000 + 13414
1 Foundation 0x302eedf6 0x302ce000 + 134646
2 CoreFoundation 0x3044509... | iphone | cocoa | crash | null | null | 01/29/2011 00:36:01 | not a real question | Crash problem Unknown situation
===
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000
Crashed Thread: 0
Thread 0 Crashed:
0 libobjc.A.dylib 0x33a06466 0x33a03000 + 13414
1 Foundation 0x302eedf6 0x302ce000 + 134646
2 Cor... | 1 |
11,545,802 | 07/18/2012 16:13:40 | 1,535,319 | 07/18/2012 15:29:45 | 1 | 0 | comparing query results from within the same table | RDBMS SQL Server, T-SQL
Consider a table that links information from two different tables: Articles and Categories. This table contains for each Article one or several entries containing the ID of the Categories the Article belongs to. Therefore, a SELECT * FROM TABLE WHERE ARTICLEID=X returns 1 to n results.
I ... | sql | tsql | intersect | null | null | null | open | comparing query results from within the same table
===
RDBMS SQL Server, T-SQL
Consider a table that links information from two different tables: Articles and Categories. This table contains for each Article one or several entries containing the ID of the Categories the Article belongs to. Therefore, a SELECT * FRO... | 0 |
7,384,139 | 09/12/2011 06:39:55 | 930,079 | 09/06/2011 06:43:23 | 1 | 0 | Blackberry: Web Filtering | I want to block the particular website from access to user. Is there is any API to block the website on blackberry.
Or is there is any way by which i can get the notification that which website is opened.
thanks in advance | blackberry | null | null | null | null | 09/13/2011 10:46:40 | off topic | Blackberry: Web Filtering
===
I want to block the particular website from access to user. Is there is any API to block the website on blackberry.
Or is there is any way by which i can get the notification that which website is opened.
thanks in advance | 2 |
8,120,875 | 11/14/2011 11:27:18 | 483,967 | 10/22/2010 08:22:32 | 35 | 0 | How to retrieve attributes with XPath and Perl | I have the following XML structure:
<RECORD>
<TYPE ID="check_ping">
<HOSTS>
<HOST H="192.168.0.1" W="50,1%" C="100,1%" />
<HOST H="192.168.0.2" W="50,1%" C="70,1%" />
</HOSTS>
</TYPE>
<TYPE ID="check_ssh">
<HOSTS>
<HOST H="192.168.0.3" P="21"/>
<HOST H="192.168.0... | xml | perl | xpath | null | null | null | open | How to retrieve attributes with XPath and Perl
===
I have the following XML structure:
<RECORD>
<TYPE ID="check_ping">
<HOSTS>
<HOST H="192.168.0.1" W="50,1%" C="100,1%" />
<HOST H="192.168.0.2" W="50,1%" C="70,1%" />
</HOSTS>
</TYPE>
<TYPE ID="check_ssh">
<HOSTS>
<H... | 0 |
4,823,549 | 01/28/2011 00:32:06 | 315,017 | 04/13/2010 00:04:33 | 6 | 1 | Java/C# Interface wiring | Is it possible in Java or C# to wire an interface method to a particular general purpose method?
In other words can I do the following without the stub methods which call the actual method:
public interface IInterface1
{
object DoSomething(object withThis);
}
public interface IInterf... | c# | java | interface | null | null | null | open | Java/C# Interface wiring
===
Is it possible in Java or C# to wire an interface method to a particular general purpose method?
In other words can I do the following without the stub methods which call the actual method:
public interface IInterface1
{
object DoSomething(object withThis);
}
... | 0 |
6,565,470 | 07/03/2011 20:48:01 | 445,126 | 09/11/2010 14:33:35 | 1,591 | 71 | <body> element not at the top of the page | Over at my site, I have noticed that while the scrollTo() method in jQuery functions fine in Firefox, it does not go to the top in Chrome.
I think that has something to do with the fact that my `<body>` tag seems to start away from top of the page, but I have failed to find the CSS that is at fault!
Is this a k... | jquery | css | firefox | google-chrome | scrollto | 07/04/2011 12:45:04 | not a real question | <body> element not at the top of the page
===
Over at my site, I have noticed that while the scrollTo() method in jQuery functions fine in Firefox, it does not go to the top in Chrome.
I think that has something to do with the fact that my `<body>` tag seems to start away from top of the page, but I have failed to... | 1 |
5,817,005 | 04/28/2011 10:13:13 | 630,064 | 02/23/2011 11:18:06 | 23 | 0 | javascript in html form | I have make a one small application in iphone.
and in that application one webview is there in which two radio button is there.
And i would like to pass the value of radio button (eg.yes or no) with javascript in html form for store the value of botton, so how can i do that.
please reply | javascript | html | null | null | null | null | open | javascript in html form
===
I have make a one small application in iphone.
and in that application one webview is there in which two radio button is there.
And i would like to pass the value of radio button (eg.yes or no) with javascript in html form for store the value of botton, so how can i do that.
please rep... | 0 |
1,003,354 | 06/16/2009 19:00:41 | 83,528 | 03/27/2009 08:28:55 | 427 | 24 | plugin tasklist asp.net or javascript | I would like to add a taglist in my webapplication. I have a list of tags with an integer indicating each tag's popularity.
Many web applications display the tags and their popularity using a different font-size.
Because it is so broadly used, I would think that their is a plugin out there that displays this.
... | tags | javascript | asp.net | null | null | null | open | plugin tasklist asp.net or javascript
===
I would like to add a taglist in my webapplication. I have a list of tags with an integer indicating each tag's popularity.
Many web applications display the tags and their popularity using a different font-size.
Because it is so broadly used, I would think that their is... | 0 |
8,003,441 | 11/03/2011 23:56:33 | 289,319 | 03/09/2010 02:42:06 | 1,736 | 71 | What is a MySQL Server Instance? | I'm trying to understand what is meant by a Server Instance in MySQL. Googling for the term "MySQL Server Instance" reveals absolutely nothing! Further, the only reference I can find in the documentation refers to using New Server Instance Wizard, but doesn't seem to explain why I'd ever want to use this.
Coming fr... | mysql | sql-server | null | null | null | null | open | What is a MySQL Server Instance?
===
I'm trying to understand what is meant by a Server Instance in MySQL. Googling for the term "MySQL Server Instance" reveals absolutely nothing! Further, the only reference I can find in the documentation refers to using New Server Instance Wizard, but doesn't seem to explain why I... | 0 |
6,174,835 | 05/30/2011 09:59:22 | 718,248 | 04/21/2011 03:49:36 | 3 | 0 | What's the best way create a pyramid-like html table? | I'm trying to create a table like this:
<pre>
A B
C D E
</pre>
In which case each line is centered and the cells are evenly distributed.
I'm currently using nested tables but feel that's not the best solution. Anyone has a better idea?
Thanks. | html | css | table | null | null | null | open | What's the best way create a pyramid-like html table?
===
I'm trying to create a table like this:
<pre>
A B
C D E
</pre>
In which case each line is centered and the cells are evenly distributed.
I'm currently using nested tables but feel that's not the best solution. Anyone has a better idea?
Than... | 0 |
9,508,305 | 02/29/2012 23:25:47 | 1,031,962 | 11/06/2011 08:11:27 | -5 | 0 | MATLAB code Output | In Matlab, what would be the output for the following,
v = [1 2 3 4]
b = [2 2 2 2]'
output of this calculation,
v + b | c | matlab | math | matrix | null | 03/01/2012 20:52:41 | not a real question | MATLAB code Output
===
In Matlab, what would be the output for the following,
v = [1 2 3 4]
b = [2 2 2 2]'
output of this calculation,
v + b | 1 |
11,007,824 | 06/13/2012 03:27:47 | 1,411,651 | 05/23/2012 04:14:58 | 1 | 0 | How to use New-Object of a class present in a C# DLL using PowerShell--different data types | I'm making two objects in C# that I use in my PowerShell Code. I want to make a FeatureObject, set its variables; then make FeatureAttributes and add it to the list in the FeatureObject. I can set and get the strings, ints, ect.--but I'm having trouble adding the FeatureAttribute to the List in the FeatureObject.
C#... | c# | list | object | dll | powershell | null | open | How to use New-Object of a class present in a C# DLL using PowerShell--different data types
===
I'm making two objects in C# that I use in my PowerShell Code. I want to make a FeatureObject, set its variables; then make FeatureAttributes and add it to the list in the FeatureObject. I can set and get the strings, ints,... | 0 |
53,417 | 09/10/2008 04:38:19 | 2,847 | 08/25/2008 14:12:52 | 595 | 45 | NHibernate or LINQ to SQL | If starting a new project what would you use for your ORM NHibernate or LINQ and why. What are the pros and cons of each.
edit: LINQ to SQL not just LINQ (thanks @Jon Limjap) | nhibernate | linq | c# | .net | null | 07/22/2012 02:42:19 | not constructive | NHibernate or LINQ to SQL
===
If starting a new project what would you use for your ORM NHibernate or LINQ and why. What are the pros and cons of each.
edit: LINQ to SQL not just LINQ (thanks @Jon Limjap) | 4 |
2,216,688 | 02/07/2010 10:35:34 | 213,042 | 11/17/2009 16:36:48 | 436 | 16 | Is there a PHP IDE that can handle Magento's code base? | Magento has a large code base (6000+ php files), uses a complex autoloading logic, and has a lot of configuration in XML. I'm looking for an IDE that can get it's little brain around this code base - show me where a function is declared, where it's called, etc. Is there any IDE that can handle this beast? | magento | php | ide | null | null | null | open | Is there a PHP IDE that can handle Magento's code base?
===
Magento has a large code base (6000+ php files), uses a complex autoloading logic, and has a lot of configuration in XML. I'm looking for an IDE that can get it's little brain around this code base - show me where a function is declared, where it's called, e... | 0 |
9,375,846 | 02/21/2012 10:24:23 | 1,208,848 | 02/14/2012 10:34:04 | 1 | 0 | Rails: test code in lib directory with RubyTest with Sublime Text 2 | I would like test code in the lib directory of Rails. I use RubyTest to work in Sublime Text 2. My library is in `lib/my_lib`.
module MyLib
def self.get_zero
0
end
end
My unit test is in `test/unit/lib/my_lib`
require 'test/unit'
require 'my_lib/my_class_to_test'
... | ruby-on-rails | sublimetext | ruby-test | null | null | null | open | Rails: test code in lib directory with RubyTest with Sublime Text 2
===
I would like test code in the lib directory of Rails. I use RubyTest to work in Sublime Text 2. My library is in `lib/my_lib`.
module MyLib
def self.get_zero
0
end
end
My unit test is in `test/unit/lib/my_lib`
... | 0 |
4,764,105 | 01/21/2011 21:42:40 | 242,241 | 09/19/2008 21:40:11 | 2,406 | 139 | How to post UTF-8 text from MySQL to Twitter successfully | I have some text in UTF-8. I put it into a MySQL database, collation `utf8_general_ci` and then I've been auto-posting it to Twitter via Net::Twitter.
But when I post it, even though Twitter itself seems to be expecting UTF-8, going by the content-type in their input pages, I'm getting those artefacts you get when U... | mysql | perl | twitter | character-encoding | null | null | open | How to post UTF-8 text from MySQL to Twitter successfully
===
I have some text in UTF-8. I put it into a MySQL database, collation `utf8_general_ci` and then I've been auto-posting it to Twitter via Net::Twitter.
But when I post it, even though Twitter itself seems to be expecting UTF-8, going by the content-type i... | 0 |
11,605,197 | 07/23/2012 00:39:57 | 1,544,669 | 07/23/2012 00:27:25 | 1 | 0 | Sign personal certificate with digicert wildcard certificate | we have a wildcard certificate (*.ourcompany.com) purchased form digicert. I have been asked to set up a system wherein certain employee's have their own SSL Cert, to be used for signing PDF's, etc.
I have the impression that I can create these and sign them using our certificate, making them valid. however all my s... | ssl | openssl | ssl-certificate | null | null | 07/24/2012 02:06:31 | off topic | Sign personal certificate with digicert wildcard certificate
===
we have a wildcard certificate (*.ourcompany.com) purchased form digicert. I have been asked to set up a system wherein certain employee's have their own SSL Cert, to be used for signing PDF's, etc.
I have the impression that I can create these and si... | 2 |
8,116,500 | 11/14/2011 01:58:10 | 796,530 | 06/13/2011 19:45:46 | 150 | 1 | Is FORTRAN to HPC as Assembly Language/C is to Operating Systems? | I am working on High Performance Computing for quiet some time now and have been regularly using various C++ Libraries like Boost uBLAS, MTL4 etc for my work. And I have been wondering about the relevance of FORTRAN in the big picture. I have observed that though the libraries are now written in C++. the basic kernels ... | c++ | fortran | hpc | null | null | 11/14/2011 06:25:54 | not constructive | Is FORTRAN to HPC as Assembly Language/C is to Operating Systems?
===
I am working on High Performance Computing for quiet some time now and have been regularly using various C++ Libraries like Boost uBLAS, MTL4 etc for my work. And I have been wondering about the relevance of FORTRAN in the big picture. I have observ... | 4 |
8,059,297 | 11/09/2011 01:17:20 | 401,092 | 07/24/2010 14:55:56 | 4,019 | 254 | UIAlertView in landscape mode does not display message | I am trying to create a simple UIAlertView for an app in landscape mode but all I see is the title and buttons but no actual message.
It has something to do with the space available for the UIAlertView on the screen as if I remove a couple of the buttons then the message displays fine.
Is there a way to force the... | uialertview | null | null | null | null | null | open | UIAlertView in landscape mode does not display message
===
I am trying to create a simple UIAlertView for an app in landscape mode but all I see is the title and buttons but no actual message.
It has something to do with the space available for the UIAlertView on the screen as if I remove a couple of the buttons th... | 0 |
11,709,166 | 07/29/2012 12:15:38 | 701,854 | 04/11/2011 09:16:32 | 181 | 2 | Java condition program | I am doing java programming practice from a website. I have to display this out put using arrays.
Enter the number of students: 3
Enter the grade for student 1: 55
Enter the grade for student 2: 108
Invalid grade, try again...
Enter the grade for student 2: 56
Enter the grade for student... | java | null | null | null | null | 07/30/2012 03:19:05 | not a real question | Java condition program
===
I am doing java programming practice from a website. I have to display this out put using arrays.
Enter the number of students: 3
Enter the grade for student 1: 55
Enter the grade for student 2: 108
Invalid grade, try again...
Enter the grade for student 2: 56
... | 1 |
5,361,450 | 03/19/2011 10:12:40 | 667,167 | 03/19/2011 09:23:47 | 1 | 0 | c++ problems in string | I HAVE A PROBLEM AGAINST "STRING FUNCTIONS"
please..
i beg you to help regarding this problems about turbo C please help me..
its hard for me to answer...
these are:
1.using string functions.
Write a program that takes nouns and forms their plurals and the basis of these rules:
a. if noun ends in "y", remove t... | c++ | null | null | null | null | 03/19/2011 10:27:21 | not a real question | c++ problems in string
===
I HAVE A PROBLEM AGAINST "STRING FUNCTIONS"
please..
i beg you to help regarding this problems about turbo C please help me..
its hard for me to answer...
these are:
1.using string functions.
Write a program that takes nouns and forms their plurals and the basis of these rules:
a. i... | 1 |
1,482,006 | 09/26/2009 19:38:39 | 146,758 | 07/29/2009 00:08:44 | 74 | 2 | How to create an Amazon EC2 AMI from an instance? | How to create an EC2 AMI from an instance?
Ok, so I got an EC2 account. I launched an instance with Fedora 8, Apache, MySQL PHP. I also configured some things and installed Piwik. "Cool...", I thought, "... I should now be able to create an AMI with that custom configuration. Instead, all I can find are guides wit... | amazon-ec2 | cloud | virtualization | null | null | 04/13/2012 17:24:46 | off topic | How to create an Amazon EC2 AMI from an instance?
===
How to create an EC2 AMI from an instance?
Ok, so I got an EC2 account. I launched an instance with Fedora 8, Apache, MySQL PHP. I also configured some things and installed Piwik. "Cool...", I thought, "... I should now be able to create an AMI with that custo... | 2 |
7,798,326 | 10/17/2011 19:09:19 | 338,432 | 05/11/2010 15:30:02 | 29 | 0 | How can I make my .net command-line exe accept img%03d.png? | Command line programs like ffmpeg.exe accept a parameter like so:
c:\> ffmpeg.exe -i img%03d.png img.gif
This will grab all these images in the directory and use them inside the program:
img001.png
img002.png
img003.png
img004.png
Is there a clever way to implement this in my VB.net c... | vb.net | null | null | null | null | null | open | How can I make my .net command-line exe accept img%03d.png?
===
Command line programs like ffmpeg.exe accept a parameter like so:
c:\> ffmpeg.exe -i img%03d.png img.gif
This will grab all these images in the directory and use them inside the program:
img001.png
img002.png
img003.png
img... | 0 |
9,234,966 | 02/10/2012 21:21:12 | 1,176,156 | 01/29/2012 06:57:30 | 108 | 0 | Meaning of Provability Symbol ⊢ in Axiomatic Programming Paper | I'm reading "An Axiomatic Basis for Computer Programming." They use the provability symbol ⊢ in their axioms, e.g.
⊢P {Q} R
Wikipedia describes the use of that symbol as such "x ⊢ y means y is provable from x (in some specified formal system)," but that doesn't seem to fit here. What does the symbol mean?
... | logic | computer-science | axiom | null | null | 02/13/2012 07:27:57 | off topic | Meaning of Provability Symbol ⊢ in Axiomatic Programming Paper
===
I'm reading "An Axiomatic Basis for Computer Programming." They use the provability symbol ⊢ in their axioms, e.g.
⊢P {Q} R
Wikipedia describes the use of that symbol as such "x ⊢ y means y is provable from x (in some specified formal system)... | 2 |
2,438,362 | 03/13/2010 12:47:51 | 11,926 | 09/16/2008 12:22:52 | 407 | 41 | List of resources to learn cassandra | Lately I have been reading a lot of blog topics about big sites(facebook, twitter, digg, reddit to name a few) using cassandra as their datastore instead of MysqL.
I would like to gather a list of resources to learn using cassandra. Hopefully some videos or podcasts explaining how to use cassandra.
My list
-----... | cassandra | resources | list | null | null | 02/27/2012 17:32:09 | not constructive | List of resources to learn cassandra
===
Lately I have been reading a lot of blog topics about big sites(facebook, twitter, digg, reddit to name a few) using cassandra as their datastore instead of MysqL.
I would like to gather a list of resources to learn using cassandra. Hopefully some videos or podcasts explaini... | 4 |
9,009,599 | 01/25/2012 20:13:05 | 1,128,327 | 01/03/2012 17:18:04 | 11 | 1 | IE9 3d surface chart | I'm looking for an API or some sort of solution to do 3d surface charts within IE9, and I like how [javascript-surface-plot](http://code.google.com/p/javascript-surface-plot/) works, but it does not work in IE9.
Are there any other ways to do 3d rendering like that for charts in IE9?
I'm using Telerik controls f... | c# | javascript | asp.net | telerik | internet-explorer-9 | null | open | IE9 3d surface chart
===
I'm looking for an API or some sort of solution to do 3d surface charts within IE9, and I like how [javascript-surface-plot](http://code.google.com/p/javascript-surface-plot/) works, but it does not work in IE9.
Are there any other ways to do 3d rendering like that for charts in IE9?
I'... | 0 |
3,292,954 | 07/20/2010 18:08:49 | 348,311 | 05/23/2010 14:58:10 | 77 | 5 | Friends Referral | I want a PHP code to load contact list from Hotmail, Yahoo and Gmail something like a friend referral scripts. if possible, I don`t want something ready-made (except for the connection libraries) ... | php | null | null | null | null | 07/21/2010 02:29:24 | not a real question | Friends Referral
===
I want a PHP code to load contact list from Hotmail, Yahoo and Gmail something like a friend referral scripts. if possible, I don`t want something ready-made (except for the connection libraries) ... | 1 |
7,299,205 | 09/04/2011 12:29:12 | 438,755 | 09/03/2010 08:03:08 | 95 | 1 | debian php5.2 php5.3 virtualmin | Is there a way to run both version in same time? Is there a guide somewhere? I've managed to compile PHP5.2 and enable FastCGI
Thanks.
| linux | debian | null | null | null | 09/04/2011 20:27:14 | off topic | debian php5.2 php5.3 virtualmin
===
Is there a way to run both version in same time? Is there a guide somewhere? I've managed to compile PHP5.2 and enable FastCGI
Thanks.
| 2 |
8,868,712 | 01/15/2012 09:25:46 | 1,039,228 | 11/10/2011 07:30:59 | 1 | 0 | magento redirects to another subdomain based on cookie in multi stores | I have a magento store but currently decided to add other stores to separate the inventory and also have a clean catalog so i decided to create stores and host them on sub-domains like electronics.mydomain.com and sport.mydomain.com. i followed this tutorial http://www.crucialwebhost.com/blog/how-to-setup-multiple-mage... | php | .htaccess | magento | null | null | null | open | magento redirects to another subdomain based on cookie in multi stores
===
I have a magento store but currently decided to add other stores to separate the inventory and also have a clean catalog so i decided to create stores and host them on sub-domains like electronics.mydomain.com and sport.mydomain.com. i followed... | 0 |
5,882,186 | 05/04/2011 10:44:56 | 725,430 | 04/26/2011 13:13:33 | 67 | 0 | Make Title Float Over Content | [On this page][1] I'm trying to make the title float over the content so that they are in line... I've tried to give the title similar CSS to the content as far as positioning is concerned. I'd be grateful for any tips!
Thanks guys,
Tara
[1]: http://www.2touchrulz.com/courses/ | css | null | null | null | null | 05/09/2011 01:19:45 | not a real question | Make Title Float Over Content
===
[On this page][1] I'm trying to make the title float over the content so that they are in line... I've tried to give the title similar CSS to the content as far as positioning is concerned. I'd be grateful for any tips!
Thanks guys,
Tara
[1]: http://www.2touchrulz.com/cou... | 1 |
6,751,553 | 07/19/2011 17:40:44 | 784,925 | 06/05/2011 17:11:15 | 441 | 15 | java what is the industry standard web framework | I've seen a lot of questions on here on what is the best web framework for java, but what I want to know is what is the most common one used in industry. If I wanted to get a job developing java based web applications which is the one that will be the most useful to have on my resume? Is it JSF since that's backed by o... | java | web-applications | frameworks | null | null | 07/19/2011 18:55:55 | not constructive | java what is the industry standard web framework
===
I've seen a lot of questions on here on what is the best web framework for java, but what I want to know is what is the most common one used in industry. If I wanted to get a job developing java based web applications which is the one that will be the most useful to... | 4 |
8,832,464 | 01/12/2012 09:10:33 | 771,291 | 05/26/2011 12:28:22 | 6 | 0 | i need a java script or jquery to convert css files according to screen size as i`m working on responsive design | i can target all browsers using this code:
`<link rel="stylesheet" media="screen and (min-device-width: 1024px)" href="large.css"/>
<link rel='stylesheet' media='screen and (min-width: 1023px) and (max-width: 1025px)' href='medium.css' />
<link rel='stylesheet' media="screen and (min-width: 419px) and (max-width: 1... | javascript | jquery | css | responsive-design | null | 01/13/2012 10:57:41 | not a real question | i need a java script or jquery to convert css files according to screen size as i`m working on responsive design
===
i can target all browsers using this code:
`<link rel="stylesheet" media="screen and (min-device-width: 1024px)" href="large.css"/>
<link rel='stylesheet' media='screen and (min-width: 1023px) and (m... | 1 |
8,959,836 | 01/22/2012 08:06:39 | 288,613 | 03/08/2010 08:49:08 | 847 | 12 | debian package to ko file | I have downloaded hp-be2net_4.0.359.0-2_all.deb package which is used for NIC driver for linux.
I installed the above package using below command
dpkg --install hp-be2net_4.0.359.0-2_all.deb.
Then i have checked whether the package is installed properly?
dpkg --list | grep -i "be2net"
Output:
... | debian | null | null | null | null | 01/22/2012 15:37:01 | off topic | debian package to ko file
===
I have downloaded hp-be2net_4.0.359.0-2_all.deb package which is used for NIC driver for linux.
I installed the above package using below command
dpkg --install hp-be2net_4.0.359.0-2_all.deb.
Then i have checked whether the package is installed properly?
dpkg --li... | 2 |
3,756,272 | 09/20/2010 23:32:30 | 435,565 | 08/31/2010 05:15:14 | 556 | 0 | Difference between SaaS or PaaS | Is there any general standard that defines what is a SaaS and what is a PaaS. The 2 seems to be used interchangeably? My guess is that everything is SaaS, so is there something about PaaS that makes it different from SaaS and better called PaaS? | web-services | web-applications | business | saas | paas | 01/15/2012 12:23:44 | not constructive | Difference between SaaS or PaaS
===
Is there any general standard that defines what is a SaaS and what is a PaaS. The 2 seems to be used interchangeably? My guess is that everything is SaaS, so is there something about PaaS that makes it different from SaaS and better called PaaS? | 4 |
8,145,470 | 11/16/2011 01:18:52 | 1,048,735 | 11/16/2011 01:14:51 | 1 | 0 | Javascript - Detecting the first character and alerting the user | I have a question. I'm wanting to run a basic function in Javascript which takes an input field from a form and checks the very first character to ensure it does not have a £ sign (GBP) infront of the value
I can't seem to find the right code anywhere to do this? - Anyone have any idea's... I'm a bit of a noob to ... | javascript | forms | validation | null | null | null | open | Javascript - Detecting the first character and alerting the user
===
I have a question. I'm wanting to run a basic function in Javascript which takes an input field from a form and checks the very first character to ensure it does not have a £ sign (GBP) infront of the value
I can't seem to find the right code an... | 0 |
8,424,087 | 12/07/2011 23:22:19 | 1,054,530 | 11/18/2011 19:54:55 | 1 | 1 | Using Jsoup to traverse the web | I'm trying to use JSoup in Eclipse to traverse the web and find a lot of information regarding the FIFA world cup, it's players and participating countries for every FIFA cup. Can anyone show me how? Is it possible to just code it to go to google, input in a query(in English, now sql) and go through each site trying to... | java | jsoup | null | null | null | 12/08/2011 03:32:08 | not a real question | Using Jsoup to traverse the web
===
I'm trying to use JSoup in Eclipse to traverse the web and find a lot of information regarding the FIFA world cup, it's players and participating countries for every FIFA cup. Can anyone show me how? Is it possible to just code it to go to google, input in a query(in English, now sq... | 1 |
8,115,727 | 11/13/2011 23:42:38 | 439,805 | 09/04/2010 21:28:10 | 44 | 0 | Link won't open in new window | I'm having some trouble using the jQuery BlockUI plugin.
You can see the issue here: http://totalfilehosters.co.uk/tester.html
What I'm trying to do is have a clickable link in the content lock, but even when I add target="_blank", it won't send to the URL.
Any ideas? | javascript | jquery | null | null | null | null | open | Link won't open in new window
===
I'm having some trouble using the jQuery BlockUI plugin.
You can see the issue here: http://totalfilehosters.co.uk/tester.html
What I'm trying to do is have a clickable link in the content lock, but even when I add target="_blank", it won't send to the URL.
Any ideas? | 0 |
8,306,951 | 11/29/2011 06:51:13 | 170,501 | 09/08/2009 22:44:19 | 718 | 4 | compiling and linking openAL with mingw? | How do I compile the following [example][1] from gamedev using mingw?. I've installed the openAl SDK to `C:\Program Files (x86)\OpenAL 1.1 SDK` and I have mingw and msys installed in `C:\MinGW` and `C:\msys`.
I'm not sure how to compile this or what to link. I've looked at the docs but they don't specify anything. ... | audio | gcc | g++ | mingw | openal | null | open | compiling and linking openAL with mingw?
===
How do I compile the following [example][1] from gamedev using mingw?. I've installed the openAl SDK to `C:\Program Files (x86)\OpenAL 1.1 SDK` and I have mingw and msys installed in `C:\MinGW` and `C:\msys`.
I'm not sure how to compile this or what to link. I've looked... | 0 |
971,218 | 06/09/2009 16:45:34 | 119,973 | 06/09/2009 16:41:23 | 1 | 0 | jQuery & PHP and MYSQL IE Problem | Now All of this code works fine in Firfox but in IE the divs dont change when the php infomation changes.
Can some one help me please as i am working on a project and this is holding me back
Thank you.
Here is the **jQuery Code:**
<script>
$.ajaxSetup({ cache: false });
$(document).ready(function(){
$... | jquery | javascript | internet-explorer | problem | php | null | open | jQuery & PHP and MYSQL IE Problem
===
Now All of this code works fine in Firfox but in IE the divs dont change when the php infomation changes.
Can some one help me please as i am working on a project and this is holding me back
Thank you.
Here is the **jQuery Code:**
<script>
$.ajaxSetup({ cache: false });... | 0 |
10,244,967 | 04/20/2012 11:02:02 | 1,065,448 | 11/25/2011 10:40:10 | 90 | 4 | Information Library application | Any suggestions for a known open-source webapplication(mainly to store information(various) like a library of info kinda)
Thease are the main features i'm looking for in it
1. Document centre
2. Important URL links
3. Search
Any Simple web-application which can be used as information library
| java | jsp | application | null | null | 04/21/2012 07:44:38 | off topic | Information Library application
===
Any suggestions for a known open-source webapplication(mainly to store information(various) like a library of info kinda)
Thease are the main features i'm looking for in it
1. Document centre
2. Important URL links
3. Search
Any Simple web-application which can be used... | 2 |
8,075,345 | 11/10/2011 05:27:00 | 564,963 | 01/06/2011 04:54:19 | 169 | 1 | dividing the time slots and displaying them | `hi friends
i am converting seconds into hours minutes and seconds ..
and method is as follows
- (NSString *)convertTimeFromSeconds:(NSString *)seconds {
// Return variable.
NSString *result = @"";
// Int variables for calculation.
int secs = [seconds intValue];
int tempHour ... | iphone | objective-c | null | null | null | null | open | dividing the time slots and displaying them
===
`hi friends
i am converting seconds into hours minutes and seconds ..
and method is as follows
- (NSString *)convertTimeFromSeconds:(NSString *)seconds {
// Return variable.
NSString *result = @"";
// Int variables for calculation.
i... | 0 |
4,007,357 | 10/24/2010 07:06:30 | 428,321 | 01/08/2010 12:44:14 | 13 | 0 | What is the best way to learn CUDA? | I have some knowledge of C/C++ programming and want to learn CUDA. I'm also on a mac. So what is the best way to learn CUDA? | cuda | null | null | null | null | 08/01/2012 02:23:14 | not constructive | What is the best way to learn CUDA?
===
I have some knowledge of C/C++ programming and want to learn CUDA. I'm also on a mac. So what is the best way to learn CUDA? | 4 |
1,284,083 | 08/16/2009 11:25:14 | 58,394 | 01/23/2009 18:51:59 | 414 | 9 | Choosing a stand-alone full-text search server: Sphinx or SOLR? | I'm looking for a stand-alone full-text search server with the following properties:
* Must operate as a stand-alone server that can serve search requests from multiple clients
* Must be able to do "bulk indexing" by indexing the result of an SQL query: say "SELECT id, text_to_index FROM documents;"
* Must be free... | solr | lucene | sphinx | mysql | full-text-search | 02/15/2012 12:25:47 | not constructive | Choosing a stand-alone full-text search server: Sphinx or SOLR?
===
I'm looking for a stand-alone full-text search server with the following properties:
* Must operate as a stand-alone server that can serve search requests from multiple clients
* Must be able to do "bulk indexing" by indexing the result of an SQL ... | 4 |
3,697,033 | 09/12/2010 23:11:16 | 16,822 | 09/17/2008 21:09:17 | 790 | 46 | How can I get the base URI in AppEngine? | How can I get the base URI in a Google AppEngine app written in Python?
e.g.
<pre>http://example.appspot.com/</pre> | python | google-app-engine | null | null | null | null | open | How can I get the base URI in AppEngine?
===
How can I get the base URI in a Google AppEngine app written in Python?
e.g.
<pre>http://example.appspot.com/</pre> | 0 |
8,245,594 | 11/23/2011 16:22:34 | 983,783 | 10/07/2011 10:18:22 | 72 | 0 | A*star Algorithm Implementation Is Not Working | Am implementing the AStar algorithm with manhattan heureustic but am find a lot of problem getting it done. I get infinite loop: THE PROBLEM IS IN THE SEARCH METHOD. I ADDED THE ADDITIONAL CODE FOR DEBUGGING PURPOSES.
this is my code snippet for the search:
public ArrayList<Node> search(Node startNode, Nod... | java | algorithm | null | null | null | 11/23/2011 17:53:34 | too localized | A*star Algorithm Implementation Is Not Working
===
Am implementing the AStar algorithm with manhattan heureustic but am find a lot of problem getting it done. I get infinite loop: THE PROBLEM IS IN THE SEARCH METHOD. I ADDED THE ADDITIONAL CODE FOR DEBUGGING PURPOSES.
this is my code snippet for the search:
... | 3 |
9,576,756 | 03/06/2012 01:42:45 | 1,084,499 | 12/06/2011 22:35:01 | 8 | 0 | Using Rspec, how do I test the JSON format of my controller in Rails 3.0.11? | I've scoured the web, but, alas, I just can't seem to get Rspec to correctly send content-type so I can test my JSON API. I'm using the RABL gem for templates, Rails 3.0.11, and Ruby 1.9.2-p180.
My curl output, which works fine (should be a 401, I know):
mrsnuggles:tmp gaahrdner$ curl -i -H "Accept: applicati... | ruby-on-rails | json | api | header | rspec | null | open | Using Rspec, how do I test the JSON format of my controller in Rails 3.0.11?
===
I've scoured the web, but, alas, I just can't seem to get Rspec to correctly send content-type so I can test my JSON API. I'm using the RABL gem for templates, Rails 3.0.11, and Ruby 1.9.2-p180.
My curl output, which works fine (should... | 0 |
6,354,618 | 06/15/2011 07:48:26 | 799,150 | 06/15/2011 07:48:26 | 1 | 0 | gif image repeat play in html | I want play repeatedly a gif file (as in liknk below) on a blog. what the code I have to put on the page
http://i57.photobucket.com/albums/g223/sadeedp/Football/mardna.gif | gif | animated-gif | null | null | null | 06/15/2011 10:33:09 | too localized | gif image repeat play in html
===
I want play repeatedly a gif file (as in liknk below) on a blog. what the code I have to put on the page
http://i57.photobucket.com/albums/g223/sadeedp/Football/mardna.gif | 3 |
4,453,211 | 12/15/2010 17:54:36 | 314,606 | 04/12/2010 14:33:31 | 3 | 0 | user32.dll FindWindowEx, finding elements by classname on remote WPF window | I have a WPF application that is being started from a command-line application.
I am trying to do some simple automation (get/set text, click some buttons, etc). I cannot seem to find any of the child windows in WPF.
I have working models with WPF and UIA Framework, WinForms and WinAPI, but cannot seem to ge... | wpf | winapi | findwindow | null | null | null | open | user32.dll FindWindowEx, finding elements by classname on remote WPF window
===
I have a WPF application that is being started from a command-line application.
I am trying to do some simple automation (get/set text, click some buttons, etc). I cannot seem to find any of the child windows in WPF.
I have work... | 0 |
4,672,233 | 01/12/2011 18:02:16 | 198,700 | 10/29/2009 07:06:47 | 252 | 7 | track page views | i am looking for a c# code which tracks number of times a page is visited by unique users(as like tracking ip address) per day and display it to my site.
apart from using Google Analytics, is there any way to do this.?
thank you | c# | asp.net | pageviews | null | null | null | open | track page views
===
i am looking for a c# code which tracks number of times a page is visited by unique users(as like tracking ip address) per day and display it to my site.
apart from using Google Analytics, is there any way to do this.?
thank you | 0 |
11,228,688 | 06/27/2012 14:37:18 | 428,273 | 08/23/2010 09:54:54 | 28 | 0 | Declaring JAXB as a dependency. Why? | Why would you want to declare JAXB as a dependency of your Java application since it's anyway shipped with the JRE and cannot be overriden in your applications classpath?
Using the jersey-client as an example, in their POM file they declare a dependency to jaxb-impl without specifying the exact version even. What ar... | java | maven | jaxb | jersey | null | null | open | Declaring JAXB as a dependency. Why?
===
Why would you want to declare JAXB as a dependency of your Java application since it's anyway shipped with the JRE and cannot be overriden in your applications classpath?
Using the jersey-client as an example, in their POM file they declare a dependency to jaxb-impl without ... | 0 |
6,857,729 | 07/28/2011 10:48:42 | 841,090 | 07/12/2011 15:55:13 | 56 | 3 | CSS issue with the site | I can't seem to pinpoint the issue with menu under the title being pushed down when there are two select boxes on the right under the product.
This site is where it is pushed down under the menu "Details What's Inside..."
http://www.playerspriority.wmetools.com/shop/index.php/pro-peptide.html
Below is the site t... | html | css | wordpress | null | null | 07/29/2011 12:19:26 | too localized | CSS issue with the site
===
I can't seem to pinpoint the issue with menu under the title being pushed down when there are two select boxes on the right under the product.
This site is where it is pushed down under the menu "Details What's Inside..."
http://www.playerspriority.wmetools.com/shop/index.php/pro-peptid... | 3 |
7,391,909 | 09/12/2011 17:58:22 | 899,558 | 08/17/2011 22:03:56 | 40 | 0 | cheap hosting services allowing one to run 64 bit virtual machines | I'm a PhD student working on a project on cloud based scientific computing and I need to find a hosting service that would allow me to install virtual machines so that I can run the Mosix VM http://www.mosix.org/
The goal is to create a distributed cluster with virtual machines that a host, running on a local compu... | hosting | virtualization | opencl | scientific-computing | null | 09/12/2011 18:25:07 | off topic | cheap hosting services allowing one to run 64 bit virtual machines
===
I'm a PhD student working on a project on cloud based scientific computing and I need to find a hosting service that would allow me to install virtual machines so that I can run the Mosix VM http://www.mosix.org/
The goal is to create a distrib... | 2 |
3,793,068 | 09/25/2010 08:39:37 | 479,291 | 03/02/2010 10:24:51 | 167 | 15 | Difference between WCF sync and async call??? | I am new to WCF, want to know what difference it make sync call or async call, it will be really helpful if some one will explain with example
Thanx | wcf | null | null | null | null | null | open | Difference between WCF sync and async call???
===
I am new to WCF, want to know what difference it make sync call or async call, it will be really helpful if some one will explain with example
Thanx | 0 |
7,449,316 | 09/16/2011 19:10:52 | 589,331 | 01/25/2011 16:41:34 | 74 | 2 | Question on CNAME for different domains | Is it posssible for me to use CNAME for different domains like
www.domain2.com CNAME www.domain1.com
Both are server from same server but different Virtual host (root paths are different)
Thank you
Balaji | dns | virtualhost | cname | null | null | 11/12/2011 08:46:07 | off topic | Question on CNAME for different domains
===
Is it posssible for me to use CNAME for different domains like
www.domain2.com CNAME www.domain1.com
Both are server from same server but different Virtual host (root paths are different)
Thank you
Balaji | 2 |
5,016,457 | 02/16/2011 12:33:42 | 291,270 | 03/11/2010 07:28:02 | 18 | 0 | Dynamically add KeyBindings in WPF | Is it possible to dynamically define KeyBindings based on a bound data source? I have a screen with a grid and I allow users to save various layouts for it. I currently bind the grids context menu to the layout names (via the ViewModel), allowing them to switch layouts via the menu.
However, I would like to associat... | c# | wpf | mvvm | null | null | null | open | Dynamically add KeyBindings in WPF
===
Is it possible to dynamically define KeyBindings based on a bound data source? I have a screen with a grid and I allow users to save various layouts for it. I currently bind the grids context menu to the layout names (via the ViewModel), allowing them to switch layouts via the me... | 0 |
6,540,649 | 06/30/2011 20:21:18 | 257,530 | 01/23/2010 19:31:51 | 789 | 50 | choosing exactly what I want in css - meta-instructions | What do we call this metas (for example '+' [plus sign] and so on) And where can I find full list of them ? | css | null | null | null | null | 07/02/2011 00:30:59 | not a real question | choosing exactly what I want in css - meta-instructions
===
What do we call this metas (for example '+' [plus sign] and so on) And where can I find full list of them ? | 1 |
11,658,659 | 07/25/2012 21:08:24 | 1,535,578 | 07/18/2012 16:58:36 | 1 | 0 | Checkallatindex objective c | must clear all itens2 clear when the item, wanted a simple way to do this
-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{
NSLog(@"Numero : %d",[cellsArray count]);
NSMutableDictionary *item = [cellsArray objectAtIndex:indexPath.... | iphone | objective-c | checked | unchecked | null | 07/27/2012 00:25:58 | not a real question | Checkallatindex objective c
===
must clear all itens2 clear when the item, wanted a simple way to do this
-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{
NSLog(@"Numero : %d",[cellsArray count]);
NSMutableDictionary *item = [ce... | 1 |
4,219,255 | 11/18/2010 20:28:46 | 243,392 | 01/04/2010 18:52:34 | 1 | 0 | How do you get the list of targets in a makefile? | I've used rake a bit (a Ruby make program), and it has an option to get a list of all the available targets, eg
> rake --tasks
rake db:charset # retrieve the charset for your data...
rake db:collation # retrieve the collation for your da...
rake db:create # Creates the databases defi... | makefile | gnu-make | targets | null | null | null | open | How do you get the list of targets in a makefile?
===
I've used rake a bit (a Ruby make program), and it has an option to get a list of all the available targets, eg
> rake --tasks
rake db:charset # retrieve the charset for your data...
rake db:collation # retrieve the collation for your da...... | 0 |
2,407,362 | 03/09/2010 07:43:33 | 139,217 | 07/16/2009 05:57:51 | 86 | 13 | Modify web.xml using Ant | Is there any way to strip elements out of a web.xml file using ANT?
For example I have certain servlets I use for Unit Testing defined in the web.xml that are unnecessary in the production environment is there a way to strip these out or do I need to have a separate production web.xml file?
Thank You. | ant | servlets | java | null | null | null | open | Modify web.xml using Ant
===
Is there any way to strip elements out of a web.xml file using ANT?
For example I have certain servlets I use for Unit Testing defined in the web.xml that are unnecessary in the production environment is there a way to strip these out or do I need to have a separate production web.xml ... | 0 |
2,279,128 | 02/17/2010 08:00:52 | 217,067 | 11/23/2009 14:36:51 | 172 | 2 | Object pooling: howto | I need to implement a pool of Sessions that are returned by an external system,
so that I can reuse them quickly as soon as one is needed (creating a Session takes a while).
I've worked with datasource to create a pool of database connections (DBCP from Apache), and it was
an implemented solution.
What do we use ... | java | object-pooling | pooling | null | null | null | open | Object pooling: howto
===
I need to implement a pool of Sessions that are returned by an external system,
so that I can reuse them quickly as soon as one is needed (creating a Session takes a while).
I've worked with datasource to create a pool of database connections (DBCP from Apache), and it was
an implemented s... | 0 |
5,705,786 | 04/18/2011 16:13:35 | 182,542 | 10/01/2009 14:50:31 | 274 | 29 | Is this clean coding? (.Net, C#) | In one of our projects I found this code
class A
{
private B b = new B();
protected void AMethod()
{
var x = b.DomeSome();
}
}
My question, is this "clean" way of coding? Would it be cleaner to instance b in AMethod?
Does ist depend?
| c# | null | null | null | null | 04/18/2011 16:19:19 | not a real question | Is this clean coding? (.Net, C#)
===
In one of our projects I found this code
class A
{
private B b = new B();
protected void AMethod()
{
var x = b.DomeSome();
}
}
My question, is this "clean" way of coding? Would it be cleaner to instanc... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.