qid int64 4 19.1M | question stringlengths 18 48.3k | answers list | date stringlengths 10 10 | metadata list |
|---|---|---|---|---|
63,206 | <p>If Java application requires certain JRE version then how can I check its availability on Mac OS X during installation?</p>
| [
{
"answer_id": 63227,
"author": "Stu Thompson",
"author_id": 2961,
"author_profile": "https://Stackoverflow.com/users/2961",
"pm_score": 2,
"selected": true,
"text": "manoa:~ stu$ ll /System/Library/Frameworks/JavaVM.framework/Versions/\ntotal 56\n774077 lrwxr-xr-x 1 root wheel 5 Ju... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63206",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7292/"
] |
63,232 | <p>How would you make the contents of Flex RIA applications accessible to Google, so that Google can index the content and shows links to the right items in your Flex RIA. Consider a online shop, created in Flex, where the offered items shall be indexed by Google. Then a link on Google should open the corresponding pro... | [
{
"answer_id": 64077,
"author": "Theo",
"author_id": 1109,
"author_profile": "https://Stackoverflow.com/users/1109",
"pm_score": 4,
"selected": true,
"text": "/items/345"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/63232",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7524/"
] |
63,291 | <p>How do I select all the columns in a table that only contain NULL values for all the rows? I'm using <strong>MS SQL Server 2005</strong>. I'm trying to find out which columns are not used in the table so I can delete them.</p>
| [
{
"answer_id": 63312,
"author": "Community",
"author_id": -1,
"author_profile": "https://Stackoverflow.com/users/-1",
"pm_score": 4,
"selected": false,
"text": "SELECT cols\nFROM table\nWHERE cols IS NULL\n"
},
{
"answer_id": 63374,
"author": "Charles Graham",
"author_id"... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63291",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/299/"
] |
63,295 | <p>I have Sun webserver iws6 (iplanet 6) proxying my bea cluster.
My cluster is under /portal/yadda.
I want anyone who goes to </p>
<pre><code>http://the.domain.com/
</code></pre>
<p>to be quickly redirected to </p>
<pre><code>http://the.domain.com/portal/
</code></pre>
<p>I have and index.html that does a post and... | [
{
"answer_id": 63398,
"author": "Adam Davis",
"author_id": 2915,
"author_profile": "https://Stackoverflow.com/users/2915",
"pm_score": -1,
"selected": false,
"text": "<?php\nheader(\"Location: http://www.example.com/\"); /* Redirect browser */\n\n/* Make sure that code below does not get... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63295",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7659/"
] |
63,303 | <p>I have a System.Diagnostics.Process object in a program targeted at the .Net framework 3.5</p>
<p>I have redirected both <code>StandardOutput</code> and <code>StandardError</code> pipes and I'm receiving data from them asynchronously. I've also set an event handler for the Exited event.</p>
<p>Once I call <code>P... | [
{
"answer_id": 1423665,
"author": "csharptest.net",
"author_id": 164392,
"author_profile": "https://Stackoverflow.com/users/164392",
"pm_score": 5,
"selected": false,
"text": "e.Data null static void proc_ErrorDataReceived(object sender, DataReceivedEventArgs e)\n{\n if( e.Data == nu... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63303",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
63,343 | <p>Here's an interesting problem. On a recently installed Server 2008 64bit I opened IE and through the Tools -> Options I changed the homepage to iGoogle.com. Clicked okay and then clicked the homepage button. IE crashes.</p>
<p>Now you'd think that I could just remove iGoogle as the homepage but when I open IE it im... | [
{
"answer_id": 63367,
"author": "Sietse",
"author_id": 6400,
"author_profile": "https://Stackoverflow.com/users/6400",
"pm_score": 2,
"selected": false,
"text": "start » run » iexplore about:blank\n"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/63343",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1463/"
] |
63,379 | <p>I have a case where a VB.Net winforms app needs to play WMV files from across the network. The user running the app cannot be given direct access to the network share. Through impersonation, I can see that the files exist (without impersonation, File.Exists returns false for the files on the network share). When I t... | [
{
"answer_id": 64630,
"author": "Alvaro Rodriguez",
"author_id": 1550,
"author_profile": "https://Stackoverflow.com/users/1550",
"pm_score": 0,
"selected": false,
"text": "[DllImport(\"advapi32.dll\", SetLastError=true)]\npublic static extern int LogonUser(string pszUsername, string pszD... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63379",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
63,399 | <p>I need to do a dump of a table on a remote server, but I can't access the server directly. The only access I have is through PHP scripts.</p>
<p>Is there some way in which MySQL will return an </p>
<pre><code>INSERT INTO `table_name` (`field1`, `field2`) VALUES ('a', 'b'), ('c', 'd')
</code></pre>
<p>statement, l... | [
{
"answer_id": 63431,
"author": "agnul",
"author_id": 6069,
"author_profile": "https://Stackoverflow.com/users/6069",
"pm_score": 0,
"selected": false,
"text": "select 'insert into table table_name (field1, field2) values'\n || table_name.field1 || ', ' || table_field2 || ');'\nfro... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63399",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6681/"
] |
63,421 | <p>Currently my workflow with Emacs when I am coding in C or C++ involves three windows. The largest on the right contains the file I am working with. The left is split into two, the bottom being a shell which I use to type in compile or make commands, and the top is often some sort of documentation or README file th... | [
{
"answer_id": 63511,
"author": "Ben Collins",
"author_id": 3279,
"author_profile": "https://Stackoverflow.com/users/3279",
"pm_score": 7,
"selected": true,
"text": "M-x compile M-x compile M-x gdb"
},
{
"answer_id": 594533,
"author": "Jonas Kölker",
"author_id": 58668,
... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63421",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7545/"
] |
63,439 | <p>How can I programatically cause a control's tooltip to show in a Winforms app without needing the mouse to hover over the control? (P/Invoke is ok if necessary). </p>
| [
{
"answer_id": 63471,
"author": "Mark D",
"author_id": 7452,
"author_profile": "https://Stackoverflow.com/users/7452",
"pm_score": 0,
"selected": false,
"text": "static HWND hwndToolTip = NULL;\n\nvoid CreateToolTip( HWND hWndControl, TCHAR *tipText )\n{ \n BOOL success;\n\n if( hwn... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63439",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2187/"
] |
63,447 | <p>How do I perform an <code>IF...THEN</code> in an <code>SQL SELECT</code> statement?</p>
<p>For example:</p>
<pre><code>SELECT IF(Obsolete = 'N' OR InStock = 'Y' ? 1 : 0) AS Saleable, * FROM Product
</code></pre>
| [
{
"answer_id": 63474,
"author": "John Sheehan",
"author_id": 1786,
"author_profile": "https://Stackoverflow.com/users/1786",
"pm_score": 6,
"selected": false,
"text": "SELECT \n(CASE \n WHEN (Obsolete = 'N' OR InStock = 'Y') THEN 'YES'\n EL... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63447",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6522/"
] |
63,463 | <p>Let's say I have a web page that currently accepts a single ID value via a url parameter:<br>
<a href="http://example.com/mypage.aspx?ID=1234" rel="nofollow noreferrer">http://example.com/mypage.aspx?ID=1234</a></p>
<p>I want to change it to accept a <em>list</em> of ids, like this:<br>
<a href="http://exam... | [
{
"answer_id": 63472,
"author": "Grokys",
"author_id": 6448,
"author_profile": "https://Stackoverflow.com/users/6448",
"pm_score": 0,
"selected": false,
"text": "string[] splitIds = ids.split(',');\n"
},
{
"answer_id": 63508,
"author": "Mark Embling",
"author_id": 6844,
... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63463",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3043/"
] |
63,494 | <p>I discovered <a href="http://en.wikipedia.org/wiki/Template_metaprogramming" rel="noreferrer">template metaprogramming</a> more than 5 years ago and got a huge kick out of reading <a href="https://rads.stackoverflow.com/amzn/click/com/0201704315" rel="noreferrer" rel="nofollow noreferrer">Modern C++ Design</a> but I... | [
{
"answer_id": 3586490,
"author": "deft_code",
"author_id": 28817,
"author_profile": "https://Stackoverflow.com/users/28817",
"pm_score": 3,
"selected": false,
"text": "template< typename T >\nT& singleton();\n\ntemplate< typename T >\nT& zombie_singleton();\n\ntemplate< typename T >\nT&... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63494",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3848/"
] |
63,517 | <p>I'm absolutely stunned by the fact that MS just couldn't get it right to navigate to the definition of a method, when you're combining C# and VB projects in one solution. If you're trying to navigate from VB to C#, it brings up the "Object Explorer", and if from C# to VB, it generates a metadata file.</p>
<p>Hones... | [
{
"answer_id": 21877038,
"author": "Giulio Caccin",
"author_id": 1636173,
"author_profile": "https://Stackoverflow.com/users/1636173",
"pm_score": 0,
"selected": false,
"text": "ctrl+, F12"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/63517",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7850/"
] |
63,546 | <p>Would like to programmically change the connecton string for a database which utilizes the membership provider of asp.net within a windows application. The system.configuration namespace allows changes to the user settings, however, we would like to adjust a application setting? Does one need to write a class with u... | [
{
"answer_id": 63579,
"author": "Joseph Daigle",
"author_id": 507,
"author_profile": "https://Stackoverflow.com/users/507",
"pm_score": 3,
"selected": false,
"text": "Configuration myConfig = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); myConfig.ConnectionStrin... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63546",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7950/"
] |
63,556 | <p>I have a class with a bunch of properties that look like this:</p>
<pre><code>public string Name
{
get { return _name; }
set { IsDirty = true; _name = value; }
}
</code></pre>
<p>It would be a lot easier if I could rely on C# 3.0 to generate the backing store for these, but is there any way to factor out t... | [
{
"answer_id": 63623,
"author": "Community",
"author_id": -1,
"author_profile": "https://Stackoverflow.com/users/-1",
"pm_score": 0,
"selected": false,
"text": "class A\n{\n [Foo]\n public int Property1{get; set;}\n public int Property2{get {return variable;} set{ Property1 = va... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63556",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1404/"
] |
63,581 | <p>I'm using <a href="http://www.c6software.com/Products/PopBox/" rel="nofollow noreferrer">PopBox</a> for magnifying thumbnails on my page.
But I want my website to work even for users which turned javascript off.</p>
<p>I tried to use the following HTML code:</p>
<pre><code><a href="image.jpg">
<img ... | [
{
"answer_id": 63626,
"author": "Chris Shaffer",
"author_id": 6744,
"author_profile": "https://Stackoverflow.com/users/6744",
"pm_score": 3,
"selected": true,
"text": "<a href=\"image.jpg onclick=\"Pop()\"; return false;\"><img ...></a>\n false Pop <a>"
},
{
"answer_id": 63638,
... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63581",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4186/"
] |
63,599 | <p>We have an issue using the <code>PEAR</code> libraries on <code>Windows</code> from <code>PHP</code>.</p>
<p>Pear contains many classes, we are making use of a fair few, one of which is the Mail class found in <code>Mail.php</code>. We use PEAR on the path, rather than providing the full explicit path to individual... | [
{
"answer_id": 63627,
"author": "ceejayoz",
"author_id": 1902010,
"author_profile": "https://Stackoverflow.com/users/1902010",
"pm_score": 2,
"selected": false,
"text": "include('Mail.php'); include('./Mail.php');"
},
{
"answer_id": 65937,
"author": "farzad",
"author_id":... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63599",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7106/"
] |
63,618 | <p>Shoes has some built in dump commands (Shoes.debug), but are there other tools that can debug the code without injecting debug messages throughout? Something like gdb would be great.</p>
| [
{
"answer_id": 63923,
"author": "Brian Phillips",
"author_id": 7230,
"author_profile": "https://Stackoverflow.com/users/7230",
"pm_score": 1,
"selected": false,
"text": "\n% sudo gem install ruby-debug\n \nclass Foo\n require 'ruby-debug'\n def some_method_somewhere\n debugger # act... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63618",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7936/"
] |
63,671 | <p>I seem to remember reading something about how it is bad for structs to implement interfaces in CLR via C#, but I can't seem to find anything about it. Is it bad? Are there unintended consequences of doing so?</p>
<pre><code>public interface Foo { Bar GetBar(); }
public struct Fubar : Foo { public Bar GetBar() { ... | [
{
"answer_id": 63711,
"author": "Joseph Daigle",
"author_id": 507,
"author_profile": "https://Stackoverflow.com/users/507",
"pm_score": 0,
"selected": false,
"text": "IComparable IFormattable"
},
{
"answer_id": 1289537,
"author": "ShuggyCoUk",
"author_id": 12748,
"aut... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63671",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
63,687 | <p>I would like to save the programs settings every time the user exits the program. So I need a way to call a function when the user quits the program. How do I do that?</p>
<p>I am using Java 1.5.</p>
| [
{
"answer_id": 63701,
"author": "Mat Mannion",
"author_id": 6282,
"author_profile": "https://Stackoverflow.com/users/6282",
"pm_score": 6,
"selected": true,
"text": "Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {\n public void run() {\n // what you want to do\... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63687",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
63,690 | <p>I work with embedded Linux systems that sometimes want to get their IP address from a DHCP server. The DHCP Client client we use (<a href="http://www.phystech.com/download/dhcpcd.html" rel="nofollow noreferrer" title="DHCPCD">dhcpcd</a>) has limited retry logic. If our device starts up without any DHCP server avai... | [
{
"answer_id": 64746,
"author": "jpbarto",
"author_id": 8511,
"author_profile": "https://Stackoverflow.com/users/8511",
"pm_score": 1,
"selected": false,
"text": "rc.local"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/63690",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7685/"
] |
63,694 | <p>Is there any feasible way of using generics to create a Math library that does not depend on the base type chosen to store data?</p>
<p>In other words, let's assume I want to write a Fraction class. The fraction can be represented by two ints or two doubles or whatnot. The important thing is that the basic four ari... | [
{
"answer_id": 64142,
"author": "fryguybob",
"author_id": 4592,
"author_profile": "https://Stackoverflow.com/users/4592",
"pm_score": 6,
"selected": true,
"text": " abstract class MathProvider<T>\n {\n public abstract T Divide(T a, T b);\n public abstract T Multiply(T... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63694",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7028/"
] |
63,723 | <p>Is there a way I can configure the MidPointRounding enumeration default setting in a config file (I.e. web.config or app.config) I have a considerable source code base, and I need to configure at the application scope how rounding will occur, whether used in Math.Round or decimal type rounding... I would like to d... | [
{
"answer_id": 64271,
"author": "rohancragg",
"author_id": 5351,
"author_profile": "https://Stackoverflow.com/users/5351",
"pm_score": 0,
"selected": false,
"text": "MyEnum GetEnumValue(string enumString) {\n return (MyEnum)Enum.Parse(typeof(MyEnum),enumString);\n}\n"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/63723",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
63,741 | <p>Why does the default IntelliJ default class javadoc comment use non-standard syntax? Instead of creating a line with "User: jstauffer" it could create a line with "@author jstauffer". The other lines that it creates (Date and Time) probably don't have javadoc syntax to use but why not use the javadoc syntax when ava... | [
{
"answer_id": 63922,
"author": "Rob Dickerson",
"author_id": 7530,
"author_profile": "https://Stackoverflow.com/users/7530",
"pm_score": 6,
"selected": false,
"text": "@author File -> Settings -> File Templates File Header Includes File -> Settings -> Editor -> File and Code Templates -... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63741",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6770/"
] |
63,743 | <p>I am developing a web page code, which fetches dynamically the content from the server and then places this content to container nodes using something like</p>
<pre><code>container.innerHTML = content;
</code></pre>
<p>Sometimes I have to overwrite some previous content in this node. This works fine, until it happ... | [
{
"answer_id": 63811,
"author": "palehorse",
"author_id": 312,
"author_profile": "https://Stackoverflow.com/users/312",
"pm_score": 0,
"selected": false,
"text": "$('#container').html( content );\n"
},
{
"answer_id": 65912,
"author": "Scott Swezey",
"author_id": 9439,
... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63743",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3894/"
] |
63,748 | <p>I want to implement in Java a class for handling graph data structures. I have a Node class and an Edge class. The Graph class maintains two list: a list of nodes and a list of edges. Each node must have an unique name. How do I guard against a situation like this:
</p>
<pre><code>Graph g = new Graph();
Node n1 = ... | [
{
"answer_id": 63795,
"author": "jjnguy",
"author_id": 2598,
"author_profile": "https://Stackoverflow.com/users/2598",
"pm_score": 1,
"selected": false,
"text": "Node"
},
{
"answer_id": 63846,
"author": "Jim Kiley",
"author_id": 7178,
"author_profile": "https://Stacko... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63748",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3885/"
] |
63,752 | <p>Semantically speaking, is there an appropriate place in today's websites (late 2008+) where using the bold <code><b></code> and italic <code><i></code> tags are more useful than the more widely used <code><strong></code> and <code><em></code> tags?</p>
| [
{
"answer_id": 63761,
"author": "ceejayoz",
"author_id": 1902010,
"author_profile": "https://Stackoverflow.com/users/1902010",
"pm_score": 3,
"selected": false,
"text": "SPAN"
},
{
"answer_id": 63821,
"author": "Chris Broadfoot",
"author_id": 3947,
"author_profile": "... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63752",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8086/"
] |
63,755 | <p>Does anyone know a good way to do this? I need to have simple forms that submit to email without writing a lot of code. These forms will be hosted in content-viewer web parts or similar in MOSS 2007. I'd like to avoid using InfoPath.</p>
| [
{
"answer_id": 17395874,
"author": "Ricksy",
"author_id": 2537442,
"author_profile": "https://Stackoverflow.com/users/2537442",
"pm_score": 0,
"selected": false,
"text": "text boxes text areas select drop downs"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/63755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8033/"
] |
63,758 | <p>I have a Java application that launches another java application. The launcher has a watchdog timer and receives periodic notifications from the second VM. However, if no notifications are received then the second virtual machine should be killed and the launcher will perform some additional clean-up activities.</... | [
{
"answer_id": 63807,
"author": "James A. N. Stauffer",
"author_id": 6770,
"author_profile": "https://Stackoverflow.com/users/6770",
"pm_score": 0,
"selected": false,
"text": "java.lang.Runtime.exec"
},
{
"answer_id": 63909,
"author": "David Webb",
"author_id": 3171,
... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63758",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2309/"
] |
63,764 | <p>How can I find what databases I have a minimum of read access to in either basic SQL, MySQL specific or in PHP?</p>
| [
{
"answer_id": 63869,
"author": "Jay Shepherd",
"author_id": 7511,
"author_profile": "https://Stackoverflow.com/users/7511",
"pm_score": 1,
"selected": false,
"text": "SHOW DATABASES; SHOW DATABASES;"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/63764",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/115/"
] |
63,771 | <p>As I build *nix piped commands I find that I want to see the output of one stage to verify correctness before building the next stage but I don't want to re-run each stage. Does anyone know of a program that will help with that? It would keep the output of the last stage automatically to use for any new stages. I us... | [
{
"answer_id": 63783,
"author": "pjz",
"author_id": 8002,
"author_profile": "https://Stackoverflow.com/users/8002",
"pm_score": 3,
"selected": false,
"text": "cat /var/log/syslog | tee /tmp/syslog.out | grep something | tee /tmp/grep.out | sed 's/foo/bar/g' | tee /tmp/sed.out | cat >>/va... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63771",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6770/"
] |
63,776 | <p>Given an integer typedef:</p>
<pre><code>typedef unsigned int TYPE;
</code></pre>
<p>or</p>
<pre><code>typedef unsigned long TYPE;
</code></pre>
<p>I have the following code to reverse the bits of an integer:</p>
<pre><code>TYPE max_bit= (TYPE)-1;
void reverse_int_setup()
{
TYPE bits= (TYPE)max_bit;
w... | [
{
"answer_id": 63854,
"author": "TK.",
"author_id": 1816,
"author_profile": "https://Stackoverflow.com/users/1816",
"pm_score": 0,
"selected": false,
"text": "long temp = 0;\nint counter = 0;\nint number_of_bits = sizeof(value) * 8; // get the number of bits that represent value (assumin... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63776",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6899/"
] |
63,800 | <p>Does Java impose any extra restrictions of its own. Windows (upto Vista) does not allow names to include</p>
<pre><code>\ / < > ? * :
</code></pre>
<p>I know HOW to validate names (a regular expression).</p>
<p>I need to validate filenames entered by users. </p>
<p>My application does not need to run on a... | [
{
"answer_id": 63861,
"author": "jjnguy",
"author_id": 2598,
"author_profile": "https://Stackoverflow.com/users/2598",
"pm_score": 2,
"selected": false,
"text": "File.separator\n"
},
{
"answer_id": 63963,
"author": "Andrew",
"author_id": 7613,
"author_profile": "https... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63800",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8118/"
] |
63,805 | <p>How do I ask PowerShell where something is? </p>
<p>For instance, "which notepad" and it returns the directory where the notepad.exe is run from according to the current paths.</p>
| [
{
"answer_id": 63831,
"author": "Nicholas",
"author_id": 8054,
"author_profile": "https://Stackoverflow.com/users/8054",
"pm_score": 2,
"selected": false,
"text": "Function Find-Path($Path, [switch]$All = $false, [Microsoft.PowerShell.Commands.TestPathType]$type = \"Any\")\n## You could ... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63805",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1220/"
] |
63,870 | <p>I have a rather large file (150 million lines of 10 chars). I need to split it in 150 files of 2 million lines, with each output line being alternatively the first 5 characters or the last 5 characters of the source line.
I could do this in Perl rather quickly, but I was wondering if there was an easy solution using... | [
{
"answer_id": 63941,
"author": "HD.",
"author_id": 6525,
"author_profile": "https://Stackoverflow.com/users/6525",
"pm_score": 3,
"selected": true,
"text": "sed 's/\\(.....\\)\\(.....\\)/\\1\\n\\2/' input_file | split -l 2000000 - out-prefix-\n"
},
{
"answer_id": 63973,
"aut... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63870",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7028/"
] |
63,881 | <p>I have a strange problem with my cake (cake_1.2.0.7296-rc2).
My start()-action runs twice, under certain circumstances, even though only one request is made.</p>
<p>The triggers seem to be :
- loading an object like: <code>$this->Questionnaire->read(null, $questionnaire_id);</code>
- accessing $this-data </p>... | [
{
"answer_id": 12165162,
"author": "Aloe",
"author_id": 1631160,
"author_profile": "https://Stackoverflow.com/users/1631160",
"pm_score": 1,
"selected": false,
"text": "www file_put_contents(\"log-\" . date(\"Hms\") . \".txt\", $this->params['pass'] ); // CakePHP v1.3 \nfile_put_contents... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63881",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
63,885 | <p>I am trying to create a rather simple effect on a set of images. When an image doesn't have the mouse over it, I'd like it to have a simple, gray border. When it does have an image over it, I'd like it to have a different, "selected", border.</p>
<p>The following CSS works great in Firefox:</p>
<pre class="lang-... | [
{
"answer_id": 64098,
"author": "Eric DeLabar",
"author_id": 7556,
"author_profile": "https://Stackoverflow.com/users/7556",
"pm_score": 0,
"selected": false,
"text": "<div class=\"myImage\"><a href=\"...\" class=\"image\"><img .../></a></div>\n .myImage a.image\n{\n border: 1px soli... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63885",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7357/"
] |
63,897 | <p>I'm testing the VB function below that I got from a Google search. I plan to use it to generate hash codes for quick string comparison. However, there are occasions in which two different strings have the same hash code. For example, these strings</p>
<p>"122Gen 1 heap size (.NET CLR Memory w3wp):mccsmtpteweb025.2... | [
{
"answer_id": 63964,
"author": "Clinton Pierce",
"author_id": 8173,
"author_profile": "https://Stackoverflow.com/users/8173",
"pm_score": 4,
"selected": true,
"text": "System.Security.Cryptography"
},
{
"answer_id": 64055,
"author": "user7936",
"author_id": 7936,
"au... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63897",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8203/"
] |
63,930 | <p>Struts 1.3 application. Main website is NOT served by struts/Java. I need to forward the result of a struts action to a page in the website, that is outside of the struts context. Currently, I forward to a JSP in context and use a meta-refresh to forward to the real location. That seems kinda sucky. Is there a ... | [
{
"answer_id": 64049,
"author": "shrisha",
"author_id": 6466,
"author_profile": "https://Stackoverflow.com/users/6466",
"pm_score": 4,
"selected": true,
"text": "sendRedirect() HttpServletResponse Action execute() return null setModule() ActionForward"
},
{
"answer_id": 1006703,
... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63930",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3029/"
] |
63,950 | <p>I program with Emacs on Ubuntu (Hardy Heron at the moment), and I like the default text coloration in the Emacs GUI. However, the default text coloration when Emacs is run in the terminal is different and garish.</p>
<p>How do I make the colors in the terminal match the colors in the GUI?</p>
| [
{
"answer_id": 64585,
"author": "insipid",
"author_id": 8649,
"author_profile": "https://Stackoverflow.com/users/8649",
"pm_score": 7,
"selected": false,
"text": "env TERM=xterm-256color emacs -nw\n .bashrc export TERM=xterm-256color\n M-x list-colors-display color-theme"
},
{
"a... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63950",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
63,960 | <p>I haven't programmed games for about 10 years (My last experience was DJGPP + Allegro), but I thought I'd check out XNA over the weekend to see how it was shaping up.</p>
<p>I am fairly impressed, however as I continue to piece together a game engine, I have a (probably) basic question.</p>
<p>How much should you ... | [
{
"answer_id": 79886,
"author": "Empyrean",
"author_id": 14830,
"author_profile": "https://Stackoverflow.com/users/14830",
"pm_score": 2,
"selected": false,
"text": " private delegate void SpacialItemVisitor(ISpacialItem item);\n\n protected override void Update(GameTime gameTime)\... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63960",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1965/"
] |
63,974 | <p>In my application I have a DataGridView control that displays data for the selected object. When I select a different object (in a combobox above), I need to update the grid. Unfortunately different objects have completely different data, even different columns, so I need to clear all the existing data and columns, ... | [
{
"answer_id": 65578,
"author": "Ken Wootton",
"author_id": 7357,
"author_profile": "https://Stackoverflow.com/users/7357",
"pm_score": 3,
"selected": false,
"text": "this.SuspendLayout();\n\n// Do something interesting.\n\nthis.ResumeLayout();\n"
},
{
"answer_id": 70281,
"au... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63974",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5363/"
] |
63,995 | <p>I would like to give a class a unique ID every time a new one is instantiated. For example with a class named Foo i would like to be able to do the following</p>
<pre><code>dim a as New Foo()
dim b as New Foo()
</code></pre>
<p>and a would get a unique id and b would get a unique ID. The ids only have to be uniq... | [
{
"answer_id": 64033,
"author": "Magnus Akselvoll",
"author_id": 4683,
"author_profile": "https://Stackoverflow.com/users/4683",
"pm_score": 0,
"selected": false,
"text": "Shared Sub New()\n _nextId = 0\nEnd Sub\n"
},
{
"answer_id": 64108,
"author": "Joel Coehoorn",
"au... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63995",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8054/"
] |
63,998 | <p>Continuing the "Hidden features of ..." meme, let's share the lesser-known but useful features of Ruby programming language.</p>
<p>Try to limit this discussion with core Ruby, without any Ruby on Rails stuff.</p>
<p>See also:</p>
<ul>
<li><a href="https://stackoverflow.com/questions/9033/hidden-features-of-c">Hi... | [
{
"answer_id": 64080,
"author": "CodingWithoutComments",
"author_id": 25,
"author_profile": "https://Stackoverflow.com/users/25",
"pm_score": 5,
"selected": false,
"text": "((0..9).each do |n|\n define_method \"press_#{n}\" do\n @number = @number.to_i * 10 + n\n end\n end\n"
... | 2008/09/15 | [
"https://Stackoverflow.com/questions/63998",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7754/"
] |
64,000 | <p>When launching a process from Java, both stderr and stdout can block on output if I don't read from the pipes. Currently I have a thread that pro-actively reads from one and the main thread blocks on the other.</p>
<p>Is there an easy way to join the two streams or otherwise cause the subprocess to continue while ... | [
{
"answer_id": 64183,
"author": "Mat Mannion",
"author_id": 6282,
"author_profile": "https://Stackoverflow.com/users/6282",
"pm_score": 3,
"selected": true,
"text": "ProcessBuilder builder = new ProcessBuilder(command);\nbuilder.redirectErrorStream(true);\n Process p = builder.start();\n... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64000",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4926/"
] |
64,003 | <p>I want to put a copyright notice in the footer of a web site, but I think it's incredibly tacky for the year to be outdated.</p>
<p>How would I make the year update automatically with <a href="http://en.wikipedia.org/wiki/PHP#History" rel="noreferrer">PHP 4</a> or <a href="http://en.wikipedia.org/wiki/PHP#History" r... | [
{
"answer_id": 64009,
"author": "Daniel Papasian",
"author_id": 7548,
"author_profile": "https://Stackoverflow.com/users/7548",
"pm_score": 9,
"selected": false,
"text": "<?php echo date(\"Y\"); ?>\n"
},
{
"answer_id": 64011,
"author": "Mark Biek",
"author_id": 305,
"... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64003",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1661459/"
] |
64,029 | <p>I have a very specific problem using C# and a Windows MDI Form application. I want to display two (or more) images to the user, a 'left' and a 'right' image. The names of the images are concealed from the user, and then the user selects which image they prefer (this is part of a study involving medical image quali... | [
{
"answer_id": 64330,
"author": "OwenP",
"author_id": 2547,
"author_profile": "https://Stackoverflow.com/users/2547",
"pm_score": 0,
"selected": false,
"text": "ActivateMdiChild"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64029",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
64,036 | <p>It's a bit difficult to implement a deep object copy function. What steps you take to ensure the original object and the cloned one share no reference? </p>
| [
{
"answer_id": 64611,
"author": "user8690",
"author_id": 8690,
"author_profile": "https://Stackoverflow.com/users/8690",
"pm_score": 6,
"selected": false,
"text": "org.apache.commons.lang3.SerializationUtils.clone(T)"
},
{
"answer_id": 228900,
"author": "sankara",
"author... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64036",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3885/"
] |
64,038 | <p>When I use the default java locale on my linux machine it comes out with the US locale settings, where do I change this so that it comes out with the correct locale?</p>
| [
{
"answer_id": 64096,
"author": "Chris Broadfoot",
"author_id": 3947,
"author_profile": "https://Stackoverflow.com/users/3947",
"pm_score": 6,
"selected": false,
"text": "user.language user.country user.variant java -Duser.language=th -Duser.country=TH -Duser.variant=TH SomeClass"
},
... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64038",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
64,041 | <p>How do I change font size on the DataGridView?</p>
| [
{
"answer_id": 64167,
"author": "psamwel",
"author_id": 3089,
"author_profile": "https://Stackoverflow.com/users/3089",
"pm_score": 7,
"selected": true,
"text": " private void UpdateFont()\n {\n //Change cell font\n foreach(DataGridViewColumn c in dgAssets.Columns)\n ... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64041",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4653/"
] |
64,046 | <p>I have a strange problem when I publish my website. I inherited this project and the problem started before I arrived so I don't know what conditions lead to the creation of the problem.</p>
<p>Basically, 3 folders below the website project fail to publish properly. When the PrecompiledWeb is transferred to the hos... | [
{
"answer_id": 1123019,
"author": "Mircea Grelus",
"author_id": 119138,
"author_profile": "https://Stackoverflow.com/users/119138",
"pm_score": 0,
"selected": false,
"text": "aspnet_compiler -errorstack"
},
{
"answer_id": 32035009,
"author": "Abhilash Thomas",
"author_id"... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64046",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8152/"
] |
64,059 | <p>I have some website which requires a logon and shows sensitive information.</p>
<p>The person goes to the page, is prompted to log in, then gets to see the information.</p>
<p>The person logs out of the site, and is redirected back to the login page.</p>
<p>The person then can hit "back" and go right back to the ... | [
{
"answer_id": 64079,
"author": "Espo",
"author_id": 2257,
"author_profile": "https://Stackoverflow.com/users/2257",
"pm_score": 2,
"selected": false,
"text": "Response.Cache.SetCacheability(HttpCacheability.NoCache)\n"
},
{
"answer_id": 64081,
"author": "TheSmurf",
"auth... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64059",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2577/"
] |
64,061 | <p>What Java library would you say is the best for consuming and parsing feeds? Requirements:</p>
<ul>
<li>Embeddable</li>
<li>Supports Atom & RSS</li>
<li>Has caching architecture</li>
<li>Should be able to deal with any feed format the same way</li>
</ul>
<p>(Please: <em>one</em> suggestion per answer.)</p>
| [
{
"answer_id": 4357661,
"author": "so_mv",
"author_id": 186858,
"author_profile": "https://Stackoverflow.com/users/186858",
"pm_score": 0,
"selected": false,
"text": "dormant"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64061",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2041950/"
] |
64,117 | <p>I had to delete all the rows from a log table that contained about 5 million rows. My initial try was to issue the following command in query analyzer:</p>
<p>delete from client_log</p>
<p>which took a very long time.</p>
| [
{
"answer_id": 64133,
"author": "Martynnw",
"author_id": 5466,
"author_profile": "https://Stackoverflow.com/users/5466",
"pm_score": 1,
"selected": false,
"text": "Truncate Table"
},
{
"answer_id": 64156,
"author": "James A. Rosen",
"author_id": 1190,
"author_profile"... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64117",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4096/"
] |
64,139 | <p>I have a usercontrol that has several public properties. These properties automatically show up in the properties window of the VS2005 designer under the "Misc" category. Except two of the properties which are enumerations don't show up correctly.</p>
<p>The first on uses the following enum:</p>
<pre><code>publi... | [
{
"answer_id": 64188,
"author": "Thunder3",
"author_id": 2832,
"author_profile": "https://Stackoverflow.com/users/2832",
"pm_score": 0,
"selected": false,
"text": "batch=\"false\" <compilation> public enum VerticalControlAlign\n{\n Center = 0,\n Top = 1,\n Bottom = 2\n}\n"
},
... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64139",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/194/"
] |
64,141 | <p>In Python is there any way to make a class, then make a second version of that class with identical dat,a but which can be changed, then reverted to be the same as the data in the original class? </p>
<p>So I would make a class with the numbers 1 to 5 as the data in it, then make a second class with the same names ... | [
{
"answer_id": 64163,
"author": "Teifion",
"author_id": 1384652,
"author_profile": "https://Stackoverflow.com/users/1384652",
"pm_score": 4,
"selected": true,
"text": "class dog(object):\n def __init__(self, height, width, lenght):\n self.height = height\n self.width = w... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64141",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8324/"
] |
64,146 | <p>When a script is saved as a bundle, it can use the <code>localized string</code> command to find the appropriate string, e.g. in <code>Contents/Resources/English.lproj/Localizable.strings</code>. If this is a format string, what is the best way to fill in the placeholders? In other words, what is the AppleScript equ... | [
{
"answer_id": 66899,
"author": "nlanza",
"author_id": 9373,
"author_profile": "https://Stackoverflow.com/users/9373",
"pm_score": 0,
"selected": false,
"text": "printf(1) call method call method \"stringWithFormat:\" of class \"NSString\" with parameters {formatString, arguments}\n"
}... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64146",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6311/"
] |
64,174 | <p>Is there any way to change Firefox system icon (the one on the left top of the window)? </p>
<p>Precision : I want to change the icon of a bundled version of Firefox with apache/php and my application. So manual operation on each computer is not a solution.
I try Resource Hacker and it's the good solution. The add ... | [
{
"answer_id": 9433191,
"author": "studgeek",
"author_id": 255961,
"author_profile": "https://Stackoverflow.com/users/255961",
"pm_score": 2,
"selected": false,
"text": "omni.ja omni.ja omni.ja.off icons/default chrome chrome/icons/default/main-window.ico main-window.ico downloadManager.... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64174",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8404/"
] |
64,193 | <p>I am using the AJAX Control Toolkit Popup Calendar Control in a datagrid. When it is in the footer it looks fine. When it is in the edit side of the datagrid it is inheriting the style from the datagrid and looks completely different (i.e. too big). </p>
<p>Is there a way to alter the CSS so that it does not inheri... | [
{
"answer_id": 64317,
"author": "user8456",
"author_id": 8456,
"author_profile": "https://Stackoverflow.com/users/8456",
"pm_score": 2,
"selected": true,
"text": "body table tr td table tr {\n /*css goes here */\n\n}\n"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64193",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7316/"
] |
64,200 | <p>How do I call MySQL stored procedures from Perl? Stored procedure functionality is fairly new to MySQL and the MySQL modules for Perl don't seem to have caught up yet.</p>
| [
{
"answer_id": 64283,
"author": "aggergren",
"author_id": 7742,
"author_profile": "https://Stackoverflow.com/users/7742",
"pm_score": 2,
"selected": false,
"text": "#!/usr/bin/perl\n#\nuse strict;\nuse DBI qw(:sql_types);\n\nmy $dbh = DBI->connect(\n $ConnStr,\n $Us... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64200",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
64,202 | <p>I am using SQL Server 2000 and I have two databases that both replicate (transactional push subscription) to a single database. I need to know which database the records came from.</p>
<p>So I want to add a fixed column specified in the publication to my table so I can tell which database the row originated from.<... | [
{
"answer_id": 65508,
"author": "Chris Shaffer",
"author_id": 6744,
"author_profile": "https://Stackoverflow.com/users/6744",
"pm_score": 1,
"selected": false,
"text": "\nALTER TABLE TableName ADD\n MyColumn AS 'Server1'\n"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64202",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2253/"
] |
64,204 | <p>I am creating a Windows Service in C# that processes messages from a queue. I want to give ops the flexibility of partitioning the service in production according to properties of the message. For example, they should be able to say that one instance processes web orders from Customer A, another batch orders from Cu... | [
{
"answer_id": 2133312,
"author": "Árpád Varga",
"author_id": 258533,
"author_profile": "https://Stackoverflow.com/users/258533",
"pm_score": 2,
"selected": false,
"text": "MessageEnumerator en = q.GetMessageEnumerator2();\n\nwhile (en.MoveNext())\n{\n if (en.Current.Label == label)\n... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64204",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7668/"
] |
64,209 | <p>I'm reading lines of text that can come in any order. The problem is that the output can actually be indentical to the previous output. How can I detect this, without sorting the output first?</p>
<p>Is there some kind of hash function that can take identical input, but in any order, and still produce the same resu... | [
{
"answer_id": 64236,
"author": "Nicholas",
"author_id": 8054,
"author_profile": "https://Stackoverflow.com/users/8054",
"pm_score": 0,
"selected": false,
"text": "A B C D\nD E F G\nC B A D\n"
},
{
"answer_id": 67573,
"author": "Community",
"author_id": -1,
"author_pr... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64209",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8406/"
] |
64,214 | <p>I read everywhere that business logic belongs in the models and not in controller but where is the limit?
I am toying with a personnal accounting application. </p>
<pre><code>Account
Entry
Operation
</code></pre>
<p>When creating an operation it is only valid if the corresponding entries are created and linked to ... | [
{
"answer_id": 64389,
"author": "Community",
"author_id": -1,
"author_profile": "https://Stackoverflow.com/users/-1",
"pm_score": 0,
"selected": false,
"text": "class Operation < ActiveRecord::Base\n has_many :entries\n validates_associated :entries\nend\n"
},
{
"answer_id": 66... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64214",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7898/"
] |
64,272 | <p>I want to create a custom control in C#. But every time I have to fully redraw my control, it flickers, even if I use double buffering (drawing to an Image first, and blitting that).</p>
<p>How do I eliminate flicker when I have to fully redraw?</p>
| [
{
"answer_id": 64507,
"author": "Shaun Austin",
"author_id": 1120,
"author_profile": "https://Stackoverflow.com/users/1120",
"pm_score": 5,
"selected": true,
"text": "SetStyle(ControlStyles.OptimizedDoubleBuffer | \n ControlStyles.UserPaint |\n ControlStyles.AllPaintingIn... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64272",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7305/"
] |
64,279 | <p>We create new sites in IIS 6 (Windows Server 2003) using IIS Manager. When these sites are created in IIS 6, the ASP.NET version defaults to ASP.NET 1.1. We would like it to default to ASP.NET 2.0. The reason this is a problem for us is that when you take any site on the server and switch the ASP.NET version from... | [
{
"answer_id": 68043,
"author": "Tim",
"author_id": 10363,
"author_profile": "https://Stackoverflow.com/users/10363",
"pm_score": 4,
"selected": false,
"text": "aspnet_regiis -lk W3SVC/ aspnet_regiis -sn W3SVC/<Identifier ID>/ROOT/ <Identifier ID> W3SVC/ aspnet_regiis -sn W3SVC/ aspnet_r... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64279",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
64,284 | <p>Let's say I have a list of categories for navigation on a web app. Rather than selecting from the database for every user, should I add a function call in the application_onStart of the global.asax to fetch that data into an array or collection that is re-used over and over. If my data does not change at all - (Ed... | [
{
"answer_id": 64361,
"author": "Al.",
"author_id": 7921,
"author_profile": "https://Stackoverflow.com/users/7921",
"pm_score": 1,
"selected": false,
"text": "// Create and load the profile object\nx_siteprofile thisprofile = new x_siteprofile(Server.MapPath(String.Concat(config.Path, \"... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64284",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1115144/"
] |
64,291 | <p>I'm working on an application that needs to quickly render simple 3D scenes on the server, and then return them as a JPEG via HTTP. Basically, I want to be able to simply include a dynamic 3D scene in an HTML page, by doing something like:</p>
<pre><code><img src="http://www.myserver.com/renderimage?scene=1&... | [
{
"answer_id": 12820722,
"author": "Janus Troelsen",
"author_id": 309483,
"author_profile": "https://Stackoverflow.com/users/309483",
"pm_score": 2,
"selected": false,
"text": "<?php\nchdir(\"/tmp\");\n@unlink(\"demo.png\");\nsystem(\"~janus/.wine/drive_c/POV-Ray-v3.7-RC6/bin/pvengine-ss... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64291",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8409/"
] |
64,311 | <p>The design for the website I am working on calls for a custom image on lists instead of a bullet. Using the image is fine, but I have been having difficulties ensuring that it is centered against the text of the list item across all browsers. Does anyone know of a standard solution for this?</p>
| [
{
"answer_id": 64340,
"author": "Dillie-O",
"author_id": 71,
"author_profile": "https://Stackoverflow.com/users/71",
"pm_score": 0,
"selected": false,
"text": "li\n{\n background-image: URL('custom.png');\n background-repeat: no-repeat;\n background-position: center;\n}\n"
},
{... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64311",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4284/"
] |
64,321 | <p>You write a function and, looking at the resulting assembly, you see it can be improved.</p>
<p>You would like to keep the function you wrote, for readability, but you would like to substitute your own assembly for the compiler's. Is there any way to establish a relationship between your high-livel language functio... | [
{
"answer_id": 64460,
"author": "spoulson",
"author_id": 3347,
"author_profile": "https://Stackoverflow.com/users/3347",
"pm_score": 1,
"selected": false,
"text": "__asm { } extern \"C\""
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64321",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8522/"
] |
64,333 | <p>What do I lose by adopting test driven design?</p>
<p>List only negatives; do not list benefits written in a negative form.</p>
| [
{
"answer_id": 64358,
"author": "Jason Cohen",
"author_id": 4926,
"author_profile": "https://Stackoverflow.com/users/4926",
"pm_score": -1,
"selected": false,
"text": "private"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64333",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8509/"
] |
64,351 | <p>I'm trying to load a page that is basically an edit form inside a
dialog (ui.dialog). I can load this page fine from an external (I'm
using asp.net) page.</p>
<p>The problem is that inside of my "popup" form, I need to <code>$(function()
{my function here});</code> syntax to do some stuff when the page loads,
alon... | [
{
"answer_id": 64515,
"author": "Alexey Lebedev",
"author_id": 8338,
"author_profile": "https://Stackoverflow.com/users/8338",
"pm_score": 3,
"selected": true,
"text": "$.ajax({\n //...\n success: function(text) {\n // insert text into container\n // the code from $(funct... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64351",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8534/"
] |
64,360 | <p>When I cut (kill) text in Emacs 22.1.1 (in its own window on X, in KDE, on Kubuntu), I can't paste (yank) it in any other application.</p>
| [
{
"answer_id": 64558,
"author": "memius",
"author_id": 8522,
"author_profile": "https://Stackoverflow.com/users/8522",
"pm_score": 8,
"selected": true,
"text": ".emacs (setq x-select-enable-clipboard t)\n"
},
{
"answer_id": 65473,
"author": "Chris Conway",
"author_id": 14... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64360",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8522/"
] |
64,387 | <p><strong>Emacs</strong>: <code>C-U (79) #</code> » a pretty 79 character length divider</p>
<p><strong>VIM</strong>: <code>79-i-#</code> » see above</p>
<p><strong><a href="http://macromates.com/" rel="nofollow noreferrer">Textmate</a></strong>: ????</p>
<p>Or is it just assumed that we'll make a Rub... | [
{
"answer_id": 64975,
"author": "pjbeardsley",
"author_id": 6812,
"author_profile": "https://Stackoverflow.com/users/6812",
"pm_score": 2,
"selected": false,
"text": "python -c \"print '#' * $TM_SELECTED_TEXT\"\n"
},
{
"answer_id": 91221,
"author": "Matt",
"author_id": 15... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64387",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
64,388 | <p>I'm trying to use Visual Studio 2008's extensibility to write an addin that will create a project folder with various messages in it after parsing an interface. I'm having trouble at the step of creating/adding the folder, however. I've tried using </p>
<pre><code>ProjectItem folder =
item.ProjectItem.Collection.A... | [
{
"answer_id": 64901,
"author": "Andrew",
"author_id": 8586,
"author_profile": "https://Stackoverflow.com/users/8586",
"pm_score": 2,
"selected": false,
"text": "DirectoryInfo dirInfo = new DirectoryInfo(newDirectoryParent + newDirectoryName);\n\nif (dirInfo.Exists)\n{\n dirInfo.Delet... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64388",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8586/"
] |
64,426 | <p>I'm looking for a good server/client protocol supported in Python for making data requests/file transfers between one server and many clients. Security is also an issue - so secure login would be a plus. I've been looking into XML-RPC, but it looks to be a pretty old (and possibly unused these days?) protocol.</p>... | [
{
"answer_id": 64489,
"author": "Will Harris",
"author_id": 4702,
"author_profile": "https://Stackoverflow.com/users/4702",
"pm_score": 2,
"selected": false,
"text": "urllib"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64426",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8585/"
] |
64,432 | <p>I have inherited a large legacy ColdFusion app. There are hundreds of <cfquery>some sql here #variable#</cfquery> statements that need to be parameterized along the lines of: <cfquery> some sql here <cfqueryparam value="#variable#"/> </cfquery></p>
<p>How can I go about adding paramet... | [
{
"answer_id": 72772,
"author": "betelgeuce",
"author_id": 366182,
"author_profile": "https://Stackoverflow.com/users/366182",
"pm_score": 1,
"selected": false,
"text": "<cf_inputFilter\n scopes = \"FORM,COOKIE,URL\"\n chars = \"<,>,!,&,|,%,=,(,),',{,}\"\n ... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64432",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8563/"
] |
64,436 | <p>I'm using Excel VBA to a write a UDF. I would like to overload my own UDF with a couple of different versions so that different arguments will call different functions. </p>
<p>As VBA doesn't seem to support this, could anyone suggest a good, non-messy way of achieving the same goal? Should I be using Optional argu... | [
{
"answer_id": 64494,
"author": "theo",
"author_id": 7870,
"author_profile": "https://Stackoverflow.com/users/7870",
"pm_score": 0,
"selected": false,
"text": "Foo_DescriptiveName1()\n\nFoo_DescriptiveName2()\n"
},
{
"answer_id": 70526,
"author": "Joel Spolsky",
"author_i... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64436",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/69157/"
] |
64,469 | <p>I have a VB6 program that someone recently helped me convert to VB.NET</p>
<p>In the program, when saving files, I stamp them with the date which I was getting by calling the Today() function. </p>
<p>When I try to run the new VB.NET code in Vista it throws a permission exception for the Today() . If I run Visual ... | [
{
"answer_id": 64521,
"author": "David J. Sokol",
"author_id": 1390,
"author_profile": "https://Stackoverflow.com/users/1390",
"pm_score": 4,
"selected": true,
"text": "DateTime.Now DateTime.Today Len() Left() Right() OpenFile() FreeFile()"
},
{
"answer_id": 64526,
"author": ... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64469",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8482/"
] |
64,498 | <p>Can you specialize a template method within a template class without specializing the class template parameter?</p>
<p>Please note that the specialization is on the <em>value</em> of the template parameter, not its type.</p>
<p>This seems to compile under Visual Studio 2008 SP1 complier, but not GCC 4.2.4.</p>
<p... | [
{
"answer_id": 64824,
"author": "moswald",
"author_id": 8368,
"author_profile": "https://Stackoverflow.com/users/8368",
"pm_score": 2,
"selected": false,
"text": "template<typename ty>\nclass A\n{\npublic:\n void foo(bool b);\n void foo(int i);\n};\n template<typename ty>\nclas... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64498",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8524/"
] |
64,505 | <p>I'm using the following method to send mail from Python using SMTP. Is it the right method to use or are there gotchas I'm missing ?</p>
<pre><code>from smtplib import SMTP
import datetime
debuglevel = 0
smtp = SMTP()
smtp.set_debuglevel(debuglevel)
smtp.connect('YOUR.MAIL.SERVER', 26)
smtp.login('USERNAME@DOMAIN... | [
{
"answer_id": 64554,
"author": "pjz",
"author_id": 8002,
"author_profile": "https://Stackoverflow.com/users/8002",
"pm_score": 3,
"selected": false,
"text": ".login() .sendmail() .connect()"
},
{
"answer_id": 64890,
"author": "Vincent Marchetti",
"author_id": 8935,
"... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64505",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8206/"
] |
64,508 | <p>What does the following Guile scheme code do?</p>
<pre><code>(eq? y '.)
(cons x '.)
</code></pre>
<p>The code is not valid in MzScheme, is there a portable equivalent across scheme implementations?</p>
<p>I am trying to port this code written by someone else. Guile seems to respond to '. with #{.}#, but I'm not s... | [
{
"answer_id": 15561595,
"author": "NalaGinrut",
"author_id": 259033,
"author_profile": "https://Stackoverflow.com/users/259033",
"pm_score": 1,
"selected": false,
"text": "#{.}#"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64508",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8689/"
] |
64,518 | <p>I have a Glade GUI description file with a <code>GtkTreeView</code> in a <code>GtkHBox</code> in a window; and there's a handler for the <code>row_activated</code> signal. Now, Glade has automatically set the "events" property (inherited from <code>GtkWidget</code>) of that treeview to some value (<code>GDK_POINTER_... | [
{
"answer_id": 65017,
"author": "Community",
"author_id": -1,
"author_profile": "https://Stackoverflow.com/users/-1",
"pm_score": 0,
"selected": false,
"text": "row_activated"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
64,537 | <p>How do I use Perl to create graphs?</p>
<p>I'm running scheduled job that creates text reports. I'd like to move this to the next step (for the management) and also create some graphs that go along with this. Is this possible / feasible? It'd be great if I could do this using Office some how.</p>
<h2>update: s... | [
{
"answer_id": 64556,
"author": "user8456",
"author_id": 8456,
"author_profile": "https://Stackoverflow.com/users/8456",
"pm_score": 2,
"selected": false,
"text": "Spreadsheet::WriteExcel::Chart\n"
},
{
"answer_id": 66276,
"author": "Pat",
"author_id": 238,
"author_pr... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64537",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8676/"
] |
64,559 | <p>I've started to work a bit with master pages for an ASP.net mvc site and I've come across a question. When I link in a stylesheet on the master page it seems to update the path to the sheet correctly. That is in the code I have</p>
<pre><code><link href="../../Content/Site.css" rel="stylesheet" type="text/css"... | [
{
"answer_id": 64586,
"author": "Iain Holder",
"author_id": 1122,
"author_profile": "https://Stackoverflow.com/users/1122",
"pm_score": 0,
"selected": false,
"text": "<link href=\"~/Content/Site.css\" rel=\"stylesheet\" type=\"text/css\" />\n"
},
{
"answer_id": 66376,
"author... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64559",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/361/"
] |
64,570 | <p>PHP's explode function returns an array of strings split on some provided substring. It will return empty strings when there are leading, trailing, or consecutive delimiters, like this:</p>
<pre><code>var_dump(explode('/', '1/2//3/'));
array(5) {
[0]=>
string(1) "1"
[1]=>
string(1) "2&qu... | [
{
"answer_id": 64606,
"author": "James Aylett",
"author_id": 6302,
"author_profile": "https://Stackoverflow.com/users/6302",
"pm_score": 2,
"selected": false,
"text": "function not_empty_string($s) {\n return $s !== \"\";\n}\n\narray_filter(explode('/', '1/2//3/'), 'not_empty_string');\... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64570",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5726/"
] |
64,581 | <p>Any information on how to display the ODBC connections dialog and get the chosen ODBC back?</p>
| [
{
"answer_id": 65161,
"author": "RyanBrady",
"author_id": 2555,
"author_profile": "https://Stackoverflow.com/users/2555",
"pm_score": 2,
"selected": false,
"text": "// a_RootKey is Microsoft.Win32.RegistryKey \n// DSN is a class not provided in this code sample - you can see what propert... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64581",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
64,602 | <p>There are three assembly version attributes. What are differences? Is it ok if I use <code>AssemblyVersion</code> and ignore the rest?</p>
<hr>
<p>MSDN says:</p>
<ul>
<li><p><a href="https://learn.microsoft.com/en-us/dotnet/api/system.reflection.assemblyversionattribute" rel="noreferrer">AssemblyVersion</a>:</p>
... | [
{
"answer_id": 64634,
"author": "Bob King",
"author_id": 6897,
"author_profile": "https://Stackoverflow.com/users/6897",
"pm_score": 5,
"selected": false,
"text": "AssemblyVersion AssemblyFileVersion AssemblyFileVersion AssemblyInformationalVersion AssemblyVersion AssemblyFileVersion Ass... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64602",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2361/"
] |
64,605 | <p>Is it possible to use both JScript and VBScript in the same HTA? Can I call VBScript functions from JScript and vice-versa? Are there any "gotchas," like the JScript running first and the VBScript running second (classic ASP pages have this issue).</p>
| [
{
"answer_id": 64638,
"author": "Mark Brackett",
"author_id": 2199,
"author_profile": "https://Stackoverflow.com/users/2199",
"pm_score": 5,
"selected": true,
"text": "<script language=\"javascript\">\n // javascript code\n</script>\n\n<script language=\"vbscript\">\n ' vbscript code... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64605",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5616/"
] |
64,631 | <p>I know next to nothing when it comes to the how and why of https connections. Obviously, when I'm transmitting secure data like passwords or especially credit card information, https is a critical tool. What do I need to know about it, though? What are the most common mistakes you see developers making when they ... | [
{
"answer_id": 210279,
"author": "JSchaefer",
"author_id": 3676,
"author_profile": "https://Stackoverflow.com/users/3676",
"pm_score": 0,
"selected": false,
"text": "<link>"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64631",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
64,639 | <p>What's the proper way to convert from a scientific notation string such as "1.234567E-06" to a floating point variable using C#?</p>
| [
{
"answer_id": 64662,
"author": "Community",
"author_id": -1,
"author_profile": "https://Stackoverflow.com/users/-1",
"pm_score": 7,
"selected": true,
"text": "Double.Parse(\"1.234567E-06\", System.Globalization.NumberStyles.Float);\n"
},
{
"answer_id": 221197,
"author": "Jay... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64639",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2488/"
] |
64,640 | <p>Someone please correct me if I'm wrong, but parsing a yyyy/MM/dd (or other specific formats) dates in C# <strong>should</strong> be as easy as </p>
<pre><code>DateTime.ParseExact(theDate, "yyyy/MM/dd");
</code></pre>
<p>but no, C# forces you to create an IFormatProvider.</p>
<p>Is there an app.config friendly way... | [
{
"answer_id": 64675,
"author": "John Sheehan",
"author_id": 1786,
"author_profile": "https://Stackoverflow.com/users/1786",
"pm_score": 2,
"selected": false,
"text": "public static DateTime ParseExactDateTime(this string dateString, string formatString) {\n return DateTime.ParseExact... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64640",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7311/"
] |
64,645 | <p>I have an interface that I have defined in C++ which now needs to be implemented in C#. What is the best way to go about this? I don't want to use COM at all in my interface definition. The way I have solved this right now is to to have two interface definitions, one in C++ and one in C#. I then expose the C# interf... | [
{
"answer_id": 66930,
"author": "mlbrock",
"author_id": 9966,
"author_profile": "https://Stackoverflow.com/users/9966",
"pm_score": 0,
"selected": false,
"text": "public __gc class MyClass_Net {\npublic:\n MyClass_Net()\n :native_ptr_(new MyClass())\n {\n }\n ~MyClass_Net()\... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64645",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8661/"
] |
64,649 | <p>If I issue the <a href="https://en.wikipedia.org/wiki/Find_(Unix)" rel="noreferrer">find</a> command as follows:</p>
<pre><code>find . -name *.ear
</code></pre>
<p>It prints out:</p>
<pre><code>./dir1/dir2/earFile1.ear
./dir1/dir2/earFile2.ear
./dir1/dir3/earFile1.ear
</code></pre>
<p>I want to 'print' the name and ... | [
{
"answer_id": 64666,
"author": "Jeremy Weathers",
"author_id": 8794,
"author_profile": "https://Stackoverflow.com/users/8794",
"pm_score": 0,
"selected": false,
"text": "find . -name \"*.ear\" -exec ls -l {} \\;\n"
},
{
"answer_id": 64678,
"author": "Yaba",
"author_id": ... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64649",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/700/"
] |
64,653 | <p>I am trying to delete several rows from a MySQL 5.0.45 database:</p>
<pre><code>delete from bundle_inclusions;
</code></pre>
<p>The client works for a while and then returns the error:</p>
<pre><code>Lock wait timeout exceeded; try restarting transaction
</code></pre>
<p>It's possible there is some uncommitted t... | [
{
"answer_id": 10704454,
"author": "Lars Bohl",
"author_id": 438960,
"author_profile": "https://Stackoverflow.com/users/438960",
"pm_score": 3,
"selected": false,
"text": "innodb_lock_wait_timeout = 50\n"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64653",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8344/"
] |
64,689 | <p>Is this function declaration in C#:</p>
<pre><code>void foo(string mystring)
</code></pre>
<p>the same as this one in C:</p>
<pre><code>void foo(char *)
</code></pre>
<p>i.e. In C#, does the called function receive a pointer behind the scenes?</p>
| [
{
"answer_id": 64713,
"author": "user7116",
"author_id": 7116,
"author_profile": "https://Stackoverflow.com/users/7116",
"pm_score": 5,
"selected": true,
"text": "void foo(const char *);\n"
},
{
"answer_id": 64727,
"author": "David Thibault",
"author_id": 5903,
"autho... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64689",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1463/"
] |
64,693 | <p>Theres is a little problem I want to solve with Haskell:
let substitute a function that change all of the wildcards in a string for one concrete parameter. The function has de signature of:</p>
<pre><code>subs :: String -> String -> String -> String
-- example:
-- subs 'x' "x^3 + x + sin(x)" "6.2" will gen... | [
{
"answer_id": 65479,
"author": "Dan Dyer",
"author_id": 5171,
"author_profile": "https://Stackoverflow.com/users/5171",
"pm_score": 4,
"selected": true,
"text": "import Text.Regex(mkRegex, subRegex)\n\nsubs :: String -> String -> String -> String\nsubs wildcard input value = subRegex (m... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64693",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6766/"
] |
64,723 | <p>What is a <strong>non recursive</strong> algorithm for deciding whether a passed in amount can be built additively from a set of numbers.<br>
In my case I'm determining whether a certain currency amount (such as $40) can be met by adding up some combination of a set of bills (such as $5, $10 and $20 bills). That is... | [
{
"answer_id": 64864,
"author": "seanyboy",
"author_id": 1726,
"author_profile": "https://Stackoverflow.com/users/1726",
"pm_score": 2,
"selected": false,
"text": "Denominations = [10,20,50,100]\nRequired = 570\n\nDenominations = sort(Denominations)\niBase = integer (Required / Denominat... | 2008/09/15 | [
"https://Stackoverflow.com/questions/64723",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8852/"
] |
64,745 | <p>Coming from <code>J2ME</code> programming are there any similarities that would make it easy to adapt to <code>Android API</code>. Or is <code>Android API</code> completely different from the <code>J2ME</code> way of programming mobile apps. </p>
| [
{
"answer_id": 539260,
"author": "haseman",
"author_id": 62516,
"author_profile": "https://Stackoverflow.com/users/62516",
"pm_score": 4,
"selected": false,
"text": "postInvalidate invalidate drawRect drawImage"
}
] | 2008/09/15 | [
"https://Stackoverflow.com/questions/64745",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.