qid int64 4 19.1M | question stringlengths 18 48.3k | answers list | date stringlengths 10 10 | metadata list |
|---|---|---|---|---|
142,252 | <p>This code works (C# 3)</p>
<pre><code>double d;
if(d == (double)(int)d) ...;
</code></pre>
<ol>
<li>Is there a better way to do this?</li>
<li>For extraneous reasons I want to avoid the double cast so; what nice ways exist other than this? (even if they aren't as good)</li>
</ol>
<p><em>Note:</em> Several people ... | [
{
"answer_id": 142262,
"author": "swilliams",
"author_id": 736,
"author_profile": "https://Stackoverflow.com/users/736",
"pm_score": 2,
"selected": false,
"text": "if (d == (int)d) {\n //...\n}\n"
},
{
"answer_id": 142263,
"author": "Community",
"author_id": -1,
"auth... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142252",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1343/"
] |
142,261 | <p>Is there a way to get the C/C++ preprocessor or a template or such to mangle/hash the __FILE__ and __LINE__ and perhaps some other external input like a build-number into a single short number that can be quoted in logs or error messages?</p>
<p>(The intention would be to be able to reverse it (to a list of candida... | [
{
"answer_id": 142328,
"author": "Mike G.",
"author_id": 18901,
"author_profile": "https://Stackoverflow.com/users/18901",
"pm_score": 0,
"selected": false,
"text": "typedef union ErrorCode {\n struct {\n unsigned int file: 15;\n unsigned int line: 12; /* Better than 5 b... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142261",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15721/"
] |
142,273 | <p>We are beginning to go down the path of mobile browser support for an enterprise e-commerce webapp (Java/Servlet based). Of course there are many decisions to be made, but it seems to me the cornerstone is to be able to reliably detect mobile browsers, and make decisions on the content to be returned accordingly. ... | [
{
"answer_id": 1555338,
"author": "Dave DuPlantis",
"author_id": 8174,
"author_profile": "https://Stackoverflow.com/users/8174",
"pm_score": 2,
"selected": false,
"text": "HTTP_X_WAP_PROFILE HTTP_ACCEPT HTTP_USER_AGENT"
},
{
"answer_id": 7988637,
"author": "ian",
"author_... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142273",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17123/"
] |
142,282 | <p>If I have a <code>UIView</code> (or <code>UIView</code> subclass) that is visible, how can I tell if it's currently being shown on the screen (as opposed to, for example, being in a section of a scroll view that is currently off-screen)?</p>
<p>To maybe give you a better idea of what I mean, <code>UITableView</code... | [
{
"answer_id": 145040,
"author": "schwa",
"author_id": 23113,
"author_profile": "https://Stackoverflow.com/users/23113",
"pm_score": 5,
"selected": true,
"text": "CGRectIntersectsRect() -[UIView convertRect:to(from)View] -[UIScrollView contentOffset]"
},
{
"answer_id": 11855952,
... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142282",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/544/"
] |
142,317 | <p>I have the following code that shows either a bug or a misunderstanding on my part.</p>
<p>I sent the same list, but modified over an ObjectOutputStream. Once as [0] and other as [1]. But when I read it, I get [0] twice. I think this is caused by the fact that I am sending over the same object and ObjectOutputSt... | [
{
"answer_id": 142704,
"author": "Pyrolistical",
"author_id": 21838,
"author_profile": "https://Stackoverflow.com/users/21838",
"pm_score": 3,
"selected": false,
"text": "public void writeUnshared(Object obj);\n"
}
] | 2008/09/26 | [
"https://Stackoverflow.com/questions/142317",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21838/"
] |
142,319 | <p>This is a new gmail labs feature that lets you specify an RSS feed to grab random quotes from to append to your email signature. I'd like to use that to generate signatures programmatically based on parameters I pass in, the current time, etc. (For example, I have a script in pine that appends the current probabil... | [
{
"answer_id": 142704,
"author": "Pyrolistical",
"author_id": 21838,
"author_profile": "https://Stackoverflow.com/users/21838",
"pm_score": 3,
"selected": false,
"text": "public void writeUnshared(Object obj);\n"
}
] | 2008/09/26 | [
"https://Stackoverflow.com/questions/142319",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4234/"
] |
142,320 | <p>I'm setting up our new Dev server, what is the easiest way to assign multiple IP addresses to Windows 2008 Server Network Adapter?</p>
<p>I'm setting up our development machine, running IIS 7 and want to have the range between 192.168.1.200 - .254 available when I'm setting up a new website in IIS 7.</p>
| [
{
"answer_id": 142411,
"author": "Adam Mitz",
"author_id": 2574,
"author_profile": "https://Stackoverflow.com/users/2574",
"pm_score": 2,
"selected": false,
"text": "> netsh interface ipv4 add address \"Local Area Connection\" 192.168.1.201 255.255.255.0\n"
},
{
"answer_id": 1424... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142320",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3747/"
] |
142,340 | <p>I understand that Microsoft uses this template when versioning their products: Major.Minor.Build.Revision. </p>
<p>Major is changed when the "developers" want to show that there is a big change in the software and backward compatibility cannot be assumed. Maybe a major rewrite of the code is done. </p>
<p>Minor nu... | [
{
"answer_id": 142425,
"author": "Bernard",
"author_id": 61,
"author_profile": "https://Stackoverflow.com/users/61",
"pm_score": 0,
"selected": false,
"text": "001 002b3"
},
{
"answer_id": 142615,
"author": "Jonathan Lonowski",
"author_id": 15031,
"author_profile": "h... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142340",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4093/"
] |
142,356 | <p>What is the most efficient way to get the default constructor (i.e. instance constructor with no parameters) of a System.Type?</p>
<p>I was thinking something along the lines of the code below but it seems like there should be a simplier more efficient way to do it.</p>
<pre><code>Type type = typeof(FooBar)
Bindin... | [
{
"answer_id": 142362,
"author": "Curt Hagenlocher",
"author_id": 533,
"author_profile": "https://Stackoverflow.com/users/533",
"pm_score": 8,
"selected": true,
"text": "type.GetConstructor(Type.EmptyTypes)\n"
},
{
"answer_id": 142442,
"author": "Alex Lyman",
"author_id":... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142356",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12784/"
] |
142,357 | <p>What are the best JVM settings you have found for running Eclipse?</p>
| [
{
"answer_id": 142596,
"author": "Stephen Denne",
"author_id": 11721,
"author_profile": "https://Stackoverflow.com/users/11721",
"pm_score": 4,
"selected": false,
"text": "Workspace name (shown in window title) -showlocation"
},
{
"answer_id": 144349,
"author": "VonC",
"a... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142357",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15352/"
] |
142,391 | <p>I am making extensive use of <code>boost:shared_ptr</code> in my code. In fact, most of the objects that are allocated on the heap are held by a <code>shared_ptr</code>. Unfortunately this means that I can't pass <code>this</code> into any function that takes a <code>shared_ptr</code>. Consider this code:</p>
<pre>... | [
{
"answer_id": 142401,
"author": "Brian R. Bondy",
"author_id": 3153,
"author_profile": "https://Stackoverflow.com/users/3153",
"pm_score": 8,
"selected": true,
"text": "#include <boost/enable_shared_from_this.hpp>\n\nclass Y: public boost::enable_shared_from_this<Y>\n{\npublic:\n\n s... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142391",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1031/"
] |
142,400 | <p>I've had a hard time finding good ways of taking a time format and easily determining if it's valid then producing a resulting element that has some formatting using XSLT 1.0.</p>
<p>Given the following xml:</p>
<pre><code><root>
<srcTime>2300</srcTime>
</root>
</code></pre>
<p>It woul... | [
{
"answer_id": 144536,
"author": "JeniT",
"author_id": 6739,
"author_profile": "https://Stackoverflow.com/users/6739",
"pm_score": 4,
"selected": true,
"text": "<srcTime>23:00</srcTime> <dstTime>\n <xsl:if test=\"string-length(srcTime) = 4 or\n string-length(srcTime) = 5\... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142400",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4916/"
] |
142,407 | <p>I am testing a Ruby Rails website and wanted to get started with Unit and Functional testing.</p>
| [
{
"answer_id": 142540,
"author": "Sam Stokes",
"author_id": 20131,
"author_profile": "https://Stackoverflow.com/users/20131",
"pm_score": 3,
"selected": false,
"text": "describe \"hello_world\"\n it \"should say hello to the world\" do\n # RSpec comes with its own mock-object framewo... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142407",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/22883/"
] |
142,417 | <p>Recently, <a href="https://stackoverflow.com/users/5200/lee-baldwin">Lee Baldwin</a> showed how to write a <a href="https://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function#141689">generic, variable argument memoize function</a>. I thought it would be better to return a simpler function ... | [
{
"answer_id": 24216007,
"author": "Tom Blodget",
"author_id": 2226988,
"author_profile": "https://Stackoverflow.com/users/2226988",
"pm_score": 2,
"selected": false,
"text": "debug.getlocal ... debug.sethook assert(_VERSION==\"Lua 5.2\", \"Must be compatible with Lua 5.2\")\n local func... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142417",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1438/"
] |
142,420 | <p>I have a method lets say:</p>
<pre><code>private static String drawCellValue(
int maxCellLength, String cellValue, String align) { }
</code></pre>
<p>and as you can notice, I have a parameter called align. Inside this method I'm going to have some if condition on whether the value is a 'left' or 'right'.. sett... | [
{
"answer_id": 142428,
"author": "Carra",
"author_id": 21679,
"author_profile": "https://Stackoverflow.com/users/21679",
"pm_score": 7,
"selected": true,
"text": "private enum Alignment { LEFT, RIGHT }; \nString drawCellValue (int maxCellLength, String cellValue, Alignment align){\n ... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142420",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6618/"
] |
142,431 | <p>I'm setting up a server to offer JIRA and SVN. I figure, I'll use LDAP to keep the identity management simple. </p>
<p>So, before I write one.... is there a good app out there to let users change their ldap password? I want something that lets a user authenticate with ldap and update their password. A form wit... | [
{
"answer_id": 142428,
"author": "Carra",
"author_id": 21679,
"author_profile": "https://Stackoverflow.com/users/21679",
"pm_score": 7,
"selected": true,
"text": "private enum Alignment { LEFT, RIGHT }; \nString drawCellValue (int maxCellLength, String cellValue, Alignment align){\n ... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142431",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9950/"
] |
142,452 | <p>There are many scenarios where it would be useful to call a Win32 function or some other DLL from a PowerShell script. to Given the following function signature:</p>
<pre><code>bool MyFunction( char* buffer, int* bufferSize )
</code></pre>
<p>I hear there is something that makes this easier in PowerShell CTP 2, bu... | [
{
"answer_id": 142516,
"author": "Bruno Gomes",
"author_id": 8669,
"author_profile": "https://Stackoverflow.com/users/8669",
"pm_score": 3,
"selected": false,
"text": "PS C:\\> Invoke-Win32 \"msvcrt.dll\" ([Int32]) \"puts\" ([String]) \"Test\"\nTest\n0\n"
}
] | 2008/09/26 | [
"https://Stackoverflow.com/questions/142452",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4916/"
] |
142,478 | <p>In handling a WM_GETMINMAXINFO message, I attempt to alter the parameter MINMAXINFO structure by changing the ptMaxSize. It doesn't seem to have any effect. When I receive the WM_SIZE message, I always get the same value, no matter whether I increase or decrease the ptMaxSize in the WM_GETMINMAXINFO.</p>
| [
{
"answer_id": 61550191,
"author": "metablaster",
"author_id": 12091999,
"author_profile": "https://Stackoverflow.com/users/12091999",
"pm_score": 0,
"selected": false,
"text": "WS_THICKFRAME WS_CAPTION WM_GETMINMAXINFO"
}
] | 2008/09/26 | [
"https://Stackoverflow.com/questions/142478",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1965047/"
] |
142,481 | <p>Is there such a thing as unit test generation? If so...</p>
<p>...does it work well? </p>
<p>...What are the auto generation solutions that are available for .NET?</p>
<p>...are there examples of using a technology like this?</p>
<p>...is this only good for certain types of applications, or could it be used to r... | [
{
"answer_id": 40569949,
"author": "johng",
"author_id": 2390625,
"author_profile": "https://Stackoverflow.com/users/2390625",
"pm_score": 2,
"selected": false,
"text": "ErrorUnit MSTest NUnit Visual Studio"
}
] | 2008/09/26 | [
"https://Stackoverflow.com/questions/142481",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19854/"
] |
142,504 | <h3>What are some methods of utilising Eclipse for Dependency Management?</h3>
| [
{
"answer_id": 203256,
"author": "Ken Liu",
"author_id": 25688,
"author_profile": "https://Stackoverflow.com/users/25688",
"pm_score": 2,
"selected": false,
"text": "mvn eclipse:eclipse"
}
] | 2008/09/26 | [
"https://Stackoverflow.com/questions/142504",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4857/"
] |
142,508 | <p>I need my code to do different things based on the operating system on which it gets compiled. I'm looking for something like this:</p>
<pre><code>#ifdef OSisWindows
// do Windows-specific stuff
#else
// do Unix-specific stuff
#endif
</code></pre>
<p>Is there a way to do this? Is there a better way to do the same ... | [
{
"answer_id": 142522,
"author": "davenpcj",
"author_id": 4777,
"author_profile": "https://Stackoverflow.com/users/4777",
"pm_score": 0,
"selected": false,
"text": "__WIN32__ touch foo.h; gcc -dM foo.h"
},
{
"answer_id": 142524,
"author": "devio",
"author_id": 21336,
... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142508",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10601/"
] |
142,527 | <p>Is it possible to highlight text inside of a textarea using javascript? Either changing the background of just a portion of the text area or making a portion of the text <em>selected</em>?</p>
| [
{
"answer_id": 7599199,
"author": "Julien L",
"author_id": 690236,
"author_profile": "https://Stackoverflow.com/users/690236",
"pm_score": 4,
"selected": false,
"text": "<html>\n <head>\n <title></title>\n <!-- Load jQuery -->\n <script type=\"text/javascript\" sr... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142527",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/80/"
] |
142,545 | <p>The <code>__debug__</code> variable is handy in part because it affects every module. If I want to create another variable that works the same way, how would I do it?</p>
<p>The variable (let's be original and call it 'foo') doesn't have to be truly global, in the sense that if I change foo in one module, it is upd... | [
{
"answer_id": 142561,
"author": "awatts",
"author_id": 22847,
"author_profile": "https://Stackoverflow.com/users/22847",
"pm_score": 1,
"selected": false,
"text": "__builtin__ import __builtin__\n__builtin__.foo = 'some-value'\n __builtins__ foo foo = 'some-other-value'"
},
{
"a... | 2008/09/26 | [
"https://Stackoverflow.com/questions/142545",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/22897/"
] |
142,548 | <p>Is there a way to deploy a given war file on Tomcat server? I want to do this without using the web interface.</p>
| [
{
"answer_id": 142554,
"author": "anjanb",
"author_id": 11142,
"author_profile": "https://Stackoverflow.com/users/11142",
"pm_score": 2,
"selected": false,
"text": " <Context path=\"/strutsDisplayTag\" \n reloadable=\"true\" \n docBase=\"C:\\work\\learn\\jsp\\strutsDispl... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142548",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17712/"
] |
142,559 | <p>I have pushed my .htaccess files to the production severs, but they don't work. Would a restart be the next step, or should I check something else.</p>
| [
{
"answer_id": 142576,
"author": "Milen A. Radev",
"author_id": 15785,
"author_profile": "https://Stackoverflow.com/users/15785",
"pm_score": 6,
"selected": false,
"text": ".htaccess"
},
{
"answer_id": 43694908,
"author": "Abhishek Gurjar",
"author_id": 5345150,
"auth... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142559",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/22325/"
] |
142,602 | <p>I was a C++ developer (mostly ATL/COM stuff) until, as many of us, I switched to C# in 2001. I didn't do much C++ programming since then.</p>
<p>Do you have any tips on how to revive my C++ skills? What has changed in C++ in the last years? Are there good books, articles or blogs covering the language. The problem ... | [
{
"answer_id": 142871,
"author": "Pat Notz",
"author_id": 825,
"author_profile": "https://Stackoverflow.com/users/825",
"pm_score": 2,
"selected": false,
"text": "gtest"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/142602",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/712/"
] |
142,614 | <p>Does anyone have C# code handy for doing a ping and traceroute to a target computer? I am looking for a pure code solution, not what I'm doing now, which is invoking the ping.exe and tracert.exe program and parsing the output. I would like something more robust.</p>
| [
{
"answer_id": 2688152,
"author": "Scott",
"author_id": 6042,
"author_profile": "https://Stackoverflow.com/users/6042",
"pm_score": 6,
"selected": false,
"text": "using System.Collections.Generic;\nusing System.Net.NetworkInformation;\nusing System.Text;\nusing System.Net;\n\nnamespace A... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142614",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
142,633 | <p>I have a Button inside an UpdatePanel. The button is being used as the OK button for a ModalPopupExtender. For some reason, the button click event is not firing. Any ideas? Am I missing something?</p>
<pre><code><asp:updatepanel id="UpdatePanel1" runat="server">
<ContentTemplate>
<cc1... | [
{
"answer_id": 142656,
"author": "Kyle Trauberman",
"author_id": 21461,
"author_profile": "https://Stackoverflow.com/users/21461",
"pm_score": 3,
"selected": false,
"text": "OkControlID=\"ModalOKButton\"\n"
},
{
"answer_id": 383911,
"author": "balexandre",
"author_id": 28... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142633",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21461/"
] |
142,644 | <p>We recently attempted to break apart some of our Visual Studio projects into libraries, and everything seemed to compile and build fine in a test project with one of the library projects as a dependency. However, attempting to run the application gave us the following nasty run-time error message:</p>
<blockquote>
... | [
{
"answer_id": 142893,
"author": "Alex M",
"author_id": 9652,
"author_profile": "https://Stackoverflow.com/users/9652",
"pm_score": 1,
"selected": false,
"text": "esp int a, b[2];\n b[3] a esp"
},
{
"answer_id": 143387,
"author": "Mike Dimmick",
"author_id": 6970,
"au... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142644",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/11180/"
] |
142,653 | <p>I have DocumentRoot /var/www/test in my .htaccess file. This is causing the apache server to give me a 500 internal server error.</p>
<p>The error log file shows:
alert] [client 127.0.0.1] /var/www/.htaccess: DocumentRoot not allowed here</p>
<p>AllowOveride All is set in my conf file.</p>
<p>Any idea why thi... | [
{
"answer_id": 142657,
"author": "Greg Hewgill",
"author_id": 893,
"author_profile": "https://Stackoverflow.com/users/893",
"pm_score": 5,
"selected": true,
"text": ".htaccess httpd.conf"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/142653",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
142,693 | <p>You know those websites that let you type in your checking account number and the routing number, and then they can transfer money to and from your account?</p>
<p>How does that work? Any good services or APIs for doing that? Any gotchas?</p>
| [
{
"answer_id": 13636783,
"author": "Christopher Ashley",
"author_id": 654553,
"author_profile": "https://Stackoverflow.com/users/654553",
"pm_score": 1,
"selected": false,
"text": "<?php\n\nrequire \"../mpgClasses.php\";\n\n/************************ Request Variables ********************... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142693",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17076/"
] |
142,708 | <p>I can't seem to find any <em>useful</em> documentation from Microsoft about how one would use the <code>Delimiter</code> and <code>InheritsFromParent</code> attributes in the <code>UserMacro</code> element when defining user Macros in <code>.vsprops</code> property sheet files for Visual Studio.</p>
<p>Here's sampl... | [
{
"answer_id": 145260,
"author": "jwfearn",
"author_id": 10559,
"author_profile": "https://Stackoverflow.com/users/10559",
"pm_score": 4,
"selected": true,
"text": "InheritsFromParent p.vcproj d.vsprops InheritedPropertySheets d.vsprops b.vsprops p.vcproj .vsprops ...\n<UserMacro Name=\"... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142708",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10559/"
] |
142,710 | <p>A legacy embedded system is implemented using a cooperative multi-tasking scheduler. </p>
<p>The system essentially works along the following lines:</p>
<ul>
<li>Task A does work</li>
<li>When Task A is done, it yields the processor.</li>
<li>Task B gets the processor and does work.</li>
<li>Task B yields<br>
...... | [
{
"answer_id": 313159,
"author": "Richard Harrison",
"author_id": 19624,
"author_profile": "https://Stackoverflow.com/users/19624",
"pm_score": 0,
"selected": false,
"text": "void scheduler()\n{\n while (1)\n {\n int st = microseconds();\n a();\n b();\n ... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142710",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10703/"
] |
142,740 | <p>I want to do something like the following in spring:</p>
<pre><code><beans>
...
<bean id="bean1" ... />
<bean id="bean2">
<property name="propName" value="bean1.foo" />
...
</code></pre>
<p>I would think that this would access the getFoo() method of bean1 and call the se... | [
{
"answer_id": 142765,
"author": "sblundy",
"author_id": 4893,
"author_profile": "https://Stackoverflow.com/users/4893",
"pm_score": -1,
"selected": false,
"text": "foo class SpringRef {\n private String targetProperty;\n private Object targetBean;\n\n //getters/setters\n\n public Ob... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142740",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/22063/"
] |
142,750 | <p>I'm trying to get either CreateProcess or CreateProcessW to execute a process with a name < MAX_PATH characters but in a path that's greater than MAX_PATH characters. According to the docs at: <a href="http://msdn.microsoft.com/en-us/library/ms682425.aspx" rel="nofollow noreferrer"><a href="http://msdn.m... | [
{
"answer_id": 143399,
"author": "Zooba",
"author_id": 891,
"author_profile": "https://Stackoverflow.com/users/891",
"pm_score": 1,
"selected": false,
"text": "MAX_PATH lpCommandLine PATH lpEnvironment"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/142750",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9572/"
] |
142,764 | <p>I'd like to how to upgrade the default python installation(2.5.2) supplied with ubuntu 8.04 to python 2.6rc2. I'd like to make 2.6 the default python version on the system and migrate all the other useful installed python libraries installed on 2.5.2 to python 2.6rc2. Please let me know how I can achieve this.</p>
... | [
{
"answer_id": 142770,
"author": "John Millikin",
"author_id": 3560,
"author_profile": "https://Stackoverflow.com/users/3560",
"pm_score": 5,
"selected": true,
"text": "./configure && make && sudo make install /usr/bin/python /usr/bin/python2.5 ln -s /usr/local/bin/python2.6 /usr/bin/pyt... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142764",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
142,789 | <p>From the reading that I have done, Core Audio relies heavily on callbacks (and C++, but that's another story). </p>
<p>I understand the concept (sort of) of setting up a function that is called by another function repeatedly to accomplish a task. I just don't understand how they get set up and how they actually w... | [
{
"answer_id": 142792,
"author": "John Millikin",
"author_id": 3560,
"author_profile": "https://Stackoverflow.com/users/3560",
"pm_score": 2,
"selected": false,
"text": "on_event() watch_events()"
},
{
"answer_id": 142809,
"author": "aib",
"author_id": 1088,
"author_p... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142789",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/22913/"
] |
142,812 | <p>I need a compact representation of an array of booleans, does Python have a builtin bitfield type or will I need to find an alternate solution?</p>
| [
{
"answer_id": 265491,
"author": "MattG",
"author_id": 23048,
"author_profile": "https://Stackoverflow.com/users/23048",
"pm_score": 3,
"selected": false,
"text": "testA = 2**0\ntestB = 2**1\ntestC = 2**3\n table = table | testB\n table = table & (~testC)\n bitfield_length = 0xff\nif ((t... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142812",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10471/"
] |
142,813 | <p>I want to convert a number between 0 and 4096 ( 12-bits ) to its 3 character hexadecimal string representation in C#. </p>
<p>Example:</p>
<pre>
2748 to "ABC"
</pre>
| [
{
"answer_id": 142819,
"author": "Muxa",
"author_id": 10793,
"author_profile": "https://Stackoverflow.com/users/10793",
"pm_score": 3,
"selected": true,
"text": "2748.ToString(\"X\")\n"
},
{
"answer_id": 142828,
"author": "Adam Davis",
"author_id": 2915,
"author_profi... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142813",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/609/"
] |
142,820 | <p>I've create a WinForms control that inherits from System.Windows.Forms.UserControl...I've got some custom events on the control that I would like the consumer of my control to be able to see. I'm unable to actually get my events to show up in the Events tab of the Properties window during design time. This means the... | [
{
"answer_id": 142823,
"author": "Phil Wright",
"author_id": 6276,
"author_profile": "https://Stackoverflow.com/users/6276",
"pm_score": 6,
"selected": true,
"text": "[Browsable(true)]\npublic event EventHandler MyCustomEvent;\n"
},
{
"answer_id": 41104603,
"author": "Pierre-... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142820",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4403/"
] |
142,826 | <p>I've been working on a web crawling .NET app in my free time, and one of the features of this app that I wanted to included was a pause button to pause a specific thread.</p>
<p>I'm relatively new to multi-threading and I haven't been able to figure out a way to pause a thread indefinitely that is currently support... | [
{
"answer_id": 143153,
"author": "Brannon",
"author_id": 5745,
"author_profile": "https://Stackoverflow.com/users/5745",
"pm_score": 8,
"selected": true,
"text": "Thread.Suspend SuspendThread ResumeThread SuspendThread ManualResetEvent while (true)\n{\n _suspendEvent.WaitOne(Timeout.I... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142826",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/392/"
] |
142,830 | <p>I have seen the other questions <em>but I am still not satisfied with the way this subject is covered</em>.</p>
<p><strong>I would like to extract a distiled list of things to check on comments at a code inspection.</strong> </p>
<p>I am sure people will say things that will just cancel each other. But hey, maybe ... | [
{
"answer_id": 142876,
"author": "Mez",
"author_id": 20010,
"author_profile": "https://Stackoverflow.com/users/20010",
"pm_score": 1,
"selected": false,
"text": "/**\n * Class to clean variables\n *\n * @package Majyk\n * @author Martin Meredith <martin@sourceguru.net>\n * @lice... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142830",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14921/"
] |
142,844 | <p>I would like to drag and drop my data file onto a Python script and have it process the file and generate output. The Python script accepts the name of the data file as a command-line parameter, but Windows Explorer doesn't allow the script to be a drop target.</p>
<p>Is there some kind of configuration that needs ... | [
{
"answer_id": 142854,
"author": "Blair Conrad",
"author_id": 1199,
"author_profile": "https://Stackoverflow.com/users/1199",
"pm_score": 7,
"selected": true,
"text": "Windows Registry Editor Version 5.00\n\n[HKEY_CLASSES_ROOT\\Python.File\\shellex\\DropHandler]\n@=\"{60254CA5-953B-11CF-... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142844",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4859/"
] |
142,845 | <p>I'm working on an application that consists of an overall Quartz-based scheduler and "CycledJob" run using CronTriggers. The purpose of the application is to process inputs from different email inboxes based on the source country. </p>
<p>Based on the country that it comes in from (i.e. US, UK, FR, etc.) the applic... | [
{
"answer_id": 143018,
"author": "jt.",
"author_id": 4362,
"author_profile": "https://Stackoverflow.com/users/4362",
"pm_score": 1,
"selected": false,
"text": "log4j.additivity.my-us-logger=false\n"
},
{
"answer_id": 144184,
"author": "erickson",
"author_id": 3474,
"a... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142845",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/18402/"
] |
142,855 | <p>What programming languages support arbitrary precision arithmetic and could you give a short example of how to print an arbitrary number of digits?</p>
| [
{
"answer_id": 142866,
"author": "torial",
"author_id": 13990,
"author_profile": "https://Stackoverflow.com/users/13990",
"pm_score": 3,
"selected": false,
"text": "from math import log as _flog\nfrom decimal import getcontext, Decimal\n\ndef log(x):\n if x < 0:\n return Decima... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142855",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10577/"
] |
142,863 | <p><em>Comment on Duplicate Reference: Why would this be marked duplicate when it was asked years prior to the question referenced as a duplicate? I also believe the question, detail, and response is much better than the referenced question.</em></p>
<p>I've been a C++ programmer for quite a while but I'm new to Java... | [
{
"answer_id": 142881,
"author": "Kevin Day",
"author_id": 10973,
"author_profile": "https://Stackoverflow.com/users/10973",
"pm_score": 5,
"selected": true,
"text": "./com/* /src jar /lib TGGL jar /src jar files /lib right click jar file Build Path->Add"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/142863",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/22917/"
] |
142,868 | <p>How do I change Oracle from port 8080? My Eclipse is using 8080, so I can't use that.</p>
| [
{
"answer_id": 143090,
"author": "tardate",
"author_id": 6329,
"author_profile": "https://Stackoverflow.com/users/6329",
"pm_score": 1,
"selected": false,
"text": "<web-site xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\nxsi:noNamespaceSchemaLocation=\"http://xmlns.oracle.com/o... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142868",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/22916/"
] |
142,877 | <p>I have a very large codebase (read: thousands of modules) that has code shared across numerous projects that all run on different operating systems with different C++ compilers. Needless to say, maintaining the build process can be quite a chore. </p>
<p>There are several places in the codebase where it would clean... | [
{
"answer_id": 142884,
"author": "Greg Hewgill",
"author_id": 893,
"author_profile": "https://Stackoverflow.com/users/893",
"pm_score": 2,
"selected": false,
"text": "#define EXISTS_FILE1_C\n#define EXISTS_FILE1_H\n#define EXISTS_FILE2_C\n EXISTS_*"
},
{
"answer_id": 142921,
... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142877",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
142,903 | <p>I started playing around with Linq today and ran into a problem I couldn't find an answer to. I was querying a simple SQL Server database that had some employee records. One of the fields is the full name (cn). I thought it would be interesting to group by the first name by splitting the full name at the first space... | [
{
"answer_id": 143078,
"author": "Amy B",
"author_id": 8155,
"author_profile": "https://Stackoverflow.com/users/8155",
"pm_score": 2,
"selected": false,
"text": "string oneSpace = \" \";\nstring fiftySpace = \" \";\n\nvar query = \n from ... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142903",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/18321/"
] |
142,944 | <p>I remember seeing the code for a Highpass filter a few days back somewhere in the samples, however I can't find it anywhere now! Could someone remember me where the Highpass filter implementation code was?</p>
<p>Or better yet post the algorithm?</p>
<p>Thanks!</p>
| [
{
"answer_id": 142962,
"author": "Adam Davis",
"author_id": 2915,
"author_profile": "https://Stackoverflow.com/users/2915",
"pm_score": 6,
"selected": true,
"text": "#define kFilteringFactor 0.1\nstatic UIAccelerationValue rollingX=0, rollingY=0, rollingZ=0;\n\n\n- (void)accelerometer:(U... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142944",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15124/"
] |
142,965 | <p>An existing Java site is designed to run under "/" on tomcat and there are many specific references to fixed absolute paths like "/dir/dir/page".</p>
<p>Want to migrate this to Java EE packaging, where the site will need to run under a context-root e.g. "/dir/dir/page" becomes "/my-context-root/dir/dir/page"</p>
<... | [
{
"answer_id": 143136,
"author": "Will Hartung",
"author_id": 13663,
"author_profile": "https://Stackoverflow.com/users/13663",
"pm_score": 2,
"selected": true,
"text": "sed -e 's/<a/<t:a/g' -e 's/<\\/a>/<\\/t:a>/g' old/x.jsp > new/x.jsp\n"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/142965",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6329/"
] |
142,972 | <p>I have a series of ASCII flat files coming in from a mainframe to be processed by a C# application. A new feed has been introduced with a Packed Decimal (COMP-3) field, which needs to be converted to a numerical value.</p>
<p>The files are being transferred via FTP, using ASCII transfer mode. I am concerned that th... | [
{
"answer_id": 143001,
"author": "Jason Stevenson",
"author_id": 13368,
"author_profile": "https://Stackoverflow.com/users/13368",
"pm_score": 2,
"selected": false,
"text": "Imports System\nImports System.IO\nImports System.Text\nImports System.Text.Encoding\n\n\n\n'4/20/07 submission in... | 2008/09/27 | [
"https://Stackoverflow.com/questions/142972",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/11112/"
] |
143,025 | <pre><code>struct a
{
char *c;
char b;
};
</code></pre>
<p>What is sizeof(a)? </p>
| [
{
"answer_id": 143048,
"author": "Simon Buchan",
"author_id": 20135,
"author_profile": "https://Stackoverflow.com/users/20135",
"pm_score": 5,
"selected": false,
"text": "#include <stdio.h>\n\ntypedef struct { char* c; char b; } a;\n\nint main()\n{\n printf(\"sizeof(a) == %d\", sizeof... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143025",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
143,032 | <p>I am developing a TCP/IP client that has to deal with a proprietary binary protocol. I was considering using user-defined types to represent the protocol headers, and using CopyMemory to shuffle data to and from the UDT and a byte array. However, it appears that VB6 adds padding bytes to align user-defined types. Is... | [
{
"answer_id": 143055,
"author": "Uhall",
"author_id": 19129,
"author_profile": "https://Stackoverflow.com/users/19129",
"pm_score": 4,
"selected": true,
"text": "#pragma pack"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143032",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17862/"
] |
143,058 | <p>ToolStripItems show Active highlighting when you mouse over them, even if the form they are in is not in focus. They do not, however, show their tooltips, unless the form is focused. I have seen the <a href="http://blogs.msdn.com/rickbrew/archive/2006/01/09/511003.aspx" rel="noreferrer">ToolStrip 'click-though'... | [
{
"answer_id": 145483,
"author": "Matthew Scharley",
"author_id": 15537,
"author_profile": "https://Stackoverflow.com/users/15537",
"pm_score": 2,
"selected": false,
"text": "public Form1()\n{\n InitializeComponent();\n\n tooltip = new ToolTip();\n tooltip.ShowAlways = true;\n}\... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143058",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/22539/"
] |
143,063 | <p>I've recently seen the light of EventWaitHandle's powerful behavior in C# and decided to move some functionality in a sister application to do the same. The only problem is that the sister app is written in C.</p>
<p>No big deal, I'm using pthreads, which have a pthread_cond_t datatype that allows for signalling. M... | [
{
"answer_id": 143161,
"author": "C. K. Young",
"author_id": 13,
"author_profile": "https://Stackoverflow.com/users/13",
"pm_score": 3,
"selected": true,
"text": "lock(lockobj);\nwhile (!signalled) {\n wait(condvar);\n}\nsignalled = false;\nunlock(lockobj);\n lock(lockobj);\nsignalled... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143063",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8945/"
] |
143,072 | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="https://stackoverflow.com/questions/91071/emacs-switch-to-previous-window">Emacs, switch to previous window</a> </p>
</blockquote>
<p><code>other-window</code> advances me to the next window in the current frame, but I also want a way to move bac... | [
{
"answer_id": 143080,
"author": "Matt Curtis",
"author_id": 17221,
"author_profile": "https://Stackoverflow.com/users/17221",
"pm_score": 6,
"selected": true,
"text": "(other-window -1) (other-frame -1)"
},
{
"answer_id": 153941,
"author": "Florian Jenn",
"author_id": 23... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143072",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/8913/"
] |
143,073 | <p>Windbg fans claim that it is quite powerful and I tend to agree. But when it comes to debugging STL containers, I am always stuck. If the variable is on the stack, the <code>!stl</code> extension sometimes figures it out, but when a container with a complex type (e.g. <code>std::vector<TemplateField, std::allocat... | [
{
"answer_id": 143382,
"author": "Harald Scheirich",
"author_id": 22080,
"author_profile": "https://Stackoverflow.com/users/22080",
"pm_score": 0,
"selected": false,
"text": "toString()"
},
{
"answer_id": 4604630,
"author": "kizzx2",
"author_id": 111021,
"author_profi... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143073",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15071/"
] |
143,075 | <p>I'm trying to print out the date in a certain format:</p>
<pre><code>NSDate *today = [[NSDate alloc] init];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyyMMddHHmmss"];
NSString *dateStr = [dateFormatter stringFromDate:today];
</code></pre>
<p>If the iPhone is s... | [
{
"answer_id": 143114,
"author": "Mike McMaster",
"author_id": 544,
"author_profile": "https://Stackoverflow.com/users/544",
"pm_score": 5,
"selected": true,
"text": "NSLog(@\"%@\", dateStr);\n"
},
{
"answer_id": 3174866,
"author": "jbg",
"author_id": 91420,
"author_p... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143075",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6044/"
] |
143,084 | <p>Let's say I have one class <code>Foo</code> that has a bunch of logic in it and another class <code>Bar</code> which is essentially the same. However, as <code>Foo</code> and <code>Bar</code> are different (but related) entities I need the difference to be apparent from my code (i.e. I can tell whether an instance i... | [
{
"answer_id": 143091,
"author": "C. K. Young",
"author_id": 13,
"author_profile": "https://Stackoverflow.com/users/13",
"pm_score": 5,
"selected": true,
"text": "Foo Bar AbstractFoo Foo Bar AbstractFoo if if (foo instanceof Bar) {\n // Do Bar-specific things\n}\n class Bar extends Ab... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143084",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1666/"
] |
143,087 | <p>I was recently tasked to document a large JavaScript application I have been maintaining for some time. So I do have a good knowledge of the system.</p>
<p>But due the sheer size of the application, it will probably take a lot of time even with prior knowledge around the code and the source code itself in uncompres... | [
{
"answer_id": 143217,
"author": "Jonny Buchanan",
"author_id": 6760,
"author_profile": "https://Stackoverflow.com/users/6760",
"pm_score": 4,
"selected": true,
"text": "window inspect(whatever)"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143087",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3055/"
] |
143,108 | <p>Just as in title. Is suspect it is, but I couldn't find it anywhere explicitly stated. And for this property I wouldn't like to rely on speculations.</p>
| [
{
"answer_id": 143116,
"author": "mmcdole",
"author_id": 2635,
"author_profile": "https://Stackoverflow.com/users/2635",
"pm_score": 2,
"selected": false,
"text": "rand() rand_s() rand()"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143108",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9403/"
] |
143,122 | <p>Is it possible to use PHP's SimpleXML functions to create an XML object from scratch? Looking through the function list, there's ways to import an existing XML string into an object that you can then manipulate, but if I just want to generate an XML object programmatically from scratch, what's the best way to do th... | [
{
"answer_id": 143192,
"author": "DreamWerx",
"author_id": 15487,
"author_profile": "https://Stackoverflow.com/users/15487",
"pm_score": 8,
"selected": true,
"text": "<?php\n$newsXML = new SimpleXMLElement(\"<news></news>\");\n$newsXML->addAttribute('newsPagePrefix', 'value goes here');\... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143122",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20903/"
] |
143,123 | <p>Using C / C++ socket programming, and the "read(socket, buffer, BUFSIZE)" method. What exactly is the "buffer" I know that char and byte are the same thing, but does it matter how many elements the byte array has in it? Does the buffer need to be able to hold the entire message until the null character?</p>
| [
{
"answer_id": 143127,
"author": "Adam Pierce",
"author_id": 5324,
"author_profile": "https://Stackoverflow.com/users/5324",
"pm_score": 5,
"selected": true,
"text": "#define MY_BUFFER_SIZE 1024\n\nchar mybuffer[MY_BUFFER_SIZE];\nint nBytes = read(sck, mybuffer, MY_BUFFER_SIZE);\n"
},
... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143123",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3484/"
] |
143,130 | <p>My company has a subsidiary with a slow Internet connection. Our developers there suffer to interact with our central <a href="http://en.wikipedia.org/wiki/Subversion_%28software%29" rel="noreferrer">Subversion</a> server. Is it possible to configure a slave/mirror for them? They would interact locally with the ser... | [
{
"answer_id": 143163,
"author": "Jean",
"author_id": 7898,
"author_profile": "https://Stackoverflow.com/users/7898",
"pm_score": 6,
"selected": false,
"text": "svn mirror"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143130",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/10335/"
] |
143,140 | <p>Can anyone tell me, where on the web I can find an explanation for Bron-Kerbosch algorithm for clique finding or explain here how it works?</p>
<p>I know it was published in "Algorithm 457: finding all cliques of an undirected graph" book, but I can't find free source that will describe the algorithm.</p>
<p>I don... | [
{
"answer_id": 9047013,
"author": "Amol",
"author_id": 91966,
"author_profile": "https://Stackoverflow.com/users/91966",
"pm_score": 0,
"selected": false,
"text": "def bron(compsub, _not, candidates, graph, cliques):\n if len(candidates) == 0 and len(_not) == 0:\n cliques.appen... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143140",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/11525/"
] |
143,171 | <p>I'm trying to copy a bunch of files below a directory and a number of the files have spaces and single-quotes in their names. When I try to string together <code>find</code> and <code>grep</code> with <code>xargs</code>, I get the following error:</p>
<pre><code>find .|grep "FooBar"|xargs -I{} cp "{}" ~/foo/bar
xa... | [
{
"answer_id": 143172,
"author": "C. K. Young",
"author_id": 13,
"author_profile": "https://Stackoverflow.com/users/13",
"pm_score": 7,
"selected": false,
"text": "find . -print0 | grep --null 'FooBar' | xargs -0 ... grep --null xargs -0"
},
{
"answer_id": 143222,
"author": "... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143171",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17339/"
] |
143,174 | <p>Is there a platform-agnostic and filesystem-agnostic method to obtain the full path of the directory from where a program is running using C/C++? Not to be confused with the current working directory. (Please don't suggest libraries unless they're standard ones like clib or STL.)</p>
<p>(If there's no platform/file... | [
{
"answer_id": 143188,
"author": "Paige Ruten",
"author_id": 813,
"author_profile": "https://Stackoverflow.com/users/813",
"pm_score": 3,
"selected": false,
"text": "#include <stdio.h>\n#include <unistd.h>\n#include <string.h>\n\nint main(int argc, char **argv) {\n char the_path[256];... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143174",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1630/"
] |
143,181 | <p>If you have a project, that releases a library and an application, how you handle version-numbers between the two.</p>
<p>Example: Your project delivers a library, that convert different file-formats into each other. The library is released for inclusion into other applications. But you also release a command-line-... | [
{
"answer_id": 143452,
"author": "Steve Jessop",
"author_id": 13005,
"author_profile": "https://Stackoverflow.com/users/13005",
"pm_score": 2,
"selected": true,
"text": "$ xsltproc --version\nUsing libxml 20628, libxslt 10120 and libexslt 813\nxsltproc was compiled against libxml 20628, ... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143181",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21005/"
] |
143,194 | <p>I have a pretty complicated Linq query that I can't seem to get into a LinqDataSsource for use in a GridView:</p>
<pre><code>IEnumerable<ticket> tikPart = (
from p in db.comments where
p.submitter == me.id &&
p.ticket.closed == DateTime.Parse("1/1/2001") &&
p.tic... | [
{
"answer_id": 143195,
"author": "leppie",
"author_id": 15541,
"author_profile": "https://Stackoverflow.com/users/15541",
"pm_score": 2,
"selected": false,
"text": "gridview.DataSource = tikPart.ToList();\ngridview.DataBind();\n"
},
{
"answer_id": 143210,
"author": "Aaron Pow... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143194",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14777/"
] |
143,206 | <p>I want to obtain the current number of window handles and the system-wide window handle limit in C#. How do I go about this?</p>
| [
{
"answer_id": 534991,
"author": "Robert Rossney",
"author_id": 19403,
"author_profile": "https://Stackoverflow.com/users/19403",
"pm_score": 4,
"selected": false,
"text": "using System;\nusing System.Runtime.InteropServices;\n\nnamespace StreamWrite.Proceedings.Client\n{\n public cla... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143206",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
143,215 | <p>I've been trying to display text using a Quartz context, but no matter what I've tried I simply haven't had luck getting the text to display (I'm able to display all sorts of other Quartz objects though). Anybody knows what I might be doing wrong?</p>
<p>example:</p>
<pre><code>-(void)drawRect:(CGRect)rect
{
... | [
{
"answer_id": 143352,
"author": "Darron",
"author_id": 22704,
"author_profile": "https://Stackoverflow.com/users/22704",
"pm_score": 4,
"selected": true,
"text": "UIColor *mainTextColor = [UIColor whiteColor];\n[mainTextColor set];\ndrawTextLjust(@\"Sample Text\", 8, 50, 185, 18, 16);\n... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143215",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15124/"
] |
143,226 | <p>let's assume i have a self referencing hierarchical table build the classical way like this one:</p>
<pre><code>CREATE TABLE test
(name text,id serial primary key,parent_id integer
references test);
insert into test (name,id,parent_id) values
('root1',1,NULL),('root2',2,NULL),('root1sub1',3,1),('root1sub2',4,1),('... | [
{
"answer_id": 143313,
"author": "njr101",
"author_id": 9625,
"author_profile": "https://Stackoverflow.com/users/9625",
"pm_score": 3,
"selected": false,
"text": "name | id | parent_id | upchain\nroot1 | 1 | NULL | 1:\nroot2 | 2 | NULL | 2:\nroot1sub1 | 3 | 1 | 1:3:\nroot1sub2 | 4 | 1 | ... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143226",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
143,231 | <p>One of our next projects is supposed to be a MS Windows based game (written in C#, with a winform GUI and an integrated DirectX display-control) for a customer who wants to give away prizes to the best players. This project is meant to run for a couple of years, with championships, ladders, tournaments, player vs. p... | [
{
"answer_id": 143273,
"author": "Vinko Vrsalovic",
"author_id": 5190,
"author_profile": "https://Stackoverflow.com/users/5190",
"pm_score": 0,
"selected": false,
"text": "* how to detect if another application makes periodical screenshots?\n* how to detect if another application scans o... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143231",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17378/"
] |
143,233 | <p>I am using <a href="http://cxxtest.tigris.org/" rel="nofollow noreferrer">cxxtest</a> as the test framework for my C++ classes, and would like to figure out a way to simulate sending data to classes which would normally expect to receive it from standard input. I have several different files which I would like to s... | [
{
"answer_id": 143262,
"author": "Pat Notz",
"author_id": 825,
"author_profile": "https://Stackoverflow.com/users/825",
"pm_score": 2,
"selected": false,
"text": "std::cin stringstream \nstd::istringstream iss(\"1.0 2 3.1415\");\nsome_class.parse_nums(iss, one, two, pi);\n"
},
{
... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143233",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14302/"
] |
143,234 | <p>In Lua, using the = operator without an l-value seems to be equivalent to a print(r-value), here are a few examples run in the Lua standalone interpreter:</p>
<pre><code>> = a
nil
> a = 8
> = a
8
> = 'hello'
hello
> = print
function: 003657C8
</code></pre>
<p>And so on...</p>
<p>My question is : wh... | [
{
"answer_id": 143268,
"author": "Arle Nadja",
"author_id": 17774,
"author_profile": "https://Stackoverflow.com/users/17774",
"pm_score": 0,
"selected": false,
"text": "Lua C"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143234",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12291/"
] |
143,285 | <p>For example if I have an Enum with two cases, does it make take more memory than a boolean? Languages: Java, C++</p>
| [
{
"answer_id": 143298,
"author": "coobird",
"author_id": 17172,
"author_profile": "https://Stackoverflow.com/users/17172",
"pm_score": 7,
"selected": true,
"text": "enum enum enum class Constants public enum Constants {\n ONE,\n TWO,\n THREE;\n}\n enum class javap Compiled from \"Cons... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143285",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
143,296 | <p>I've got such a simple code:</p>
<pre><code><div class="div1">
<div class="div2">Foo</div>
<div class="div3">
<div class="div4">
<div class="div5">
Bar
</div>
</div>
</div>
</div>
</code></pre>
<p>and this CSS:</p... | [
{
"answer_id": 143309,
"author": "Ross",
"author_id": 2025,
"author_profile": "https://Stackoverflow.com/users/2025",
"pm_score": 0,
"selected": false,
"text": " <style type=\"text/css\">\n * {\n color: #fff;\n }\n .wrapper {\n\n }\n\n .tr... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143296",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/20403/"
] |
143,320 | <p>I am trying to write a cronjob controller, so I can call one website and have all modules cronjob.php executed. Now my problem is how do I do that?</p>
<p>Would curl be an option, so I also can count the errors and successes?</p>
<p>[Update]</p>
<p>I guess I have not explained it enough. </p>
<p>What I want to d... | [
{
"answer_id": 144235,
"author": "Stefan Gehrig",
"author_id": 11354,
"author_profile": "https://Stackoverflow.com/users/11354",
"pm_score": 0,
"selected": false,
"text": "Zend_Http_Client Zend_Test_PHPUnit"
},
{
"answer_id": 733148,
"author": "Community",
"author_id": -1... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143320",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/19929/"
] |
143,365 | <p>I have a flash application running Flash 9 (CS3). Application is able to control the Softkeys when this flash application is loaded in the supported mobile device. But, the application doesn't have control when the same is embedded in HTML page and browsed via supported mobile device. Any ideas how to make this w... | [
{
"answer_id": 144130,
"author": "fenomas",
"author_id": 10651,
"author_profile": "https://Stackoverflow.com/users/10651",
"pm_score": 1,
"selected": false,
"text": "var myListener = new Object();\nmyListener.onKeyDown = function() {\n var code = Key.getCode();\n if (code==Extended... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143365",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
143,390 | <p>I'm now in search for a Java Text to Speech (TTS) framework. During my investigations I've found several JSAPI1.0-(partially)-compatible frameworks listed on <a href="http://java.sun.com/products/java-media/speech/reference/codesamples/index.html" rel="noreferrer">JSAPI Implementations page</a>, as well as a pair of... | [
{
"answer_id": 148089,
"author": "DiaWorD",
"author_id": 17707,
"author_profile": "https://Stackoverflow.com/users/17707",
"pm_score": 1,
"selected": false,
"text": "java -jar freetts.jar some-more-args-here"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143390",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/17707/"
] |
143,405 | <p>What are the differences in implementing interfaces <strong>implicitly</strong> and <strong>explicitly</strong> in C#?</p>
<p>When should you use implicit and when should you use explicit?</p>
<p>Are there any pros and/or cons to one or the other?</p>
<hr>
<p>Microsoft's official guidelines (from first edition <... | [
{
"answer_id": 143423,
"author": "mattlant",
"author_id": 14642,
"author_profile": "https://Stackoverflow.com/users/14642",
"pm_score": 10,
"selected": true,
"text": "IList.CopyTo public void CopyTo(Array array, int index)\n{\n throw new NotImplementedException();\n}\n void ICollectio... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143405",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2429/"
] |
143,420 | <p>Does anyone know how to modify an existing import specification in Microsoft Access 2007 or 2010? In older versions there used to be an Advanced button presented during the import wizard that allowed you to select and edit an existing specification. I no longer see this feature but hope that it still exists and ha... | [
{
"answer_id": 14443025,
"author": "Mike Hansen",
"author_id": 1997691,
"author_profile": "https://Stackoverflow.com/users/1997691",
"pm_score": 3,
"selected": false,
"text": "Public Sub MyExcelTransfer(myTempTable As String, myPath As String)\nOn Error GoTo ERR_Handler:\n Dim mySpec ... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143420",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
143,429 | <p>We all know that commenting our code is an important part of coding style for making our code understandable to the next person who comes along, or even ourselves in 6 months or so.</p>
<p>However, sometimes a comment just doesn't cut the mustard. I'm not talking about obvious jokes or vented frustraton, I'm talki... | [
{
"answer_id": 143439,
"author": "Rich Bradshaw",
"author_id": 16511,
"author_profile": "https://Stackoverflow.com/users/16511",
"pm_score": 8,
"selected": true,
"text": "$i = 0; //set i to 0\n\n$i++; //use sneaky trick to add 1 to i!\n\nif ($i==$j) { // I made sure to use == rather than... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143429",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21632/"
] |
143,486 | <p>I've recently read the Yahoo manifesto <a href="http://developer.yahoo.com/performance/rules.html#postload" rel="noreferrer">Best Practices for Speeding Up Your Web Site</a>. They recommend to put the JavaScript inclusion at the bottom of the HTML code when we can.</p>
<p>But where exactly and when?</p>
<p>Should ... | [
{
"answer_id": 143496,
"author": "Rich Bradshaw",
"author_id": 16511,
"author_profile": "https://Stackoverflow.com/users/16511",
"pm_score": 2,
"selected": false,
"text": "</html>"
},
{
"answer_id": 143508,
"author": "Laurie Young",
"author_id": 7473,
"author_profile"... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143486",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/9951/"
] |
143,487 | <p>I'm using netbeans on ubuntu, I would like to add some fonts to it. Could anyone tell me how this is done ?</p>
| [
{
"answer_id": 143496,
"author": "Rich Bradshaw",
"author_id": 16511,
"author_profile": "https://Stackoverflow.com/users/16511",
"pm_score": 2,
"selected": false,
"text": "</html>"
},
{
"answer_id": 143508,
"author": "Laurie Young",
"author_id": 7473,
"author_profile"... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143487",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/11234/"
] |
143,523 | <p>Any recommended crypto libraries for Java. What I need is the ability to parse X.509 Certificates to extract the information contained in them.</p>
<p>Thanks</p>
| [
{
"answer_id": 144128,
"author": "erickson",
"author_id": 3474,
"author_profile": "https://Stackoverflow.com/users/3474",
"pm_score": 3,
"selected": false,
"text": "java.security.cert.X509Certificate"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143523",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12344/"
] |
143,530 | <p>I'm having a problem with my compiler telling me there is an 'undefined reference to' a function I want to use in a library. Let me share some info on the problem:</p>
<ul>
<li>I'm cross compiling with gcc for C.</li>
<li>I am calling a library function which is accessed through an included header which includes an... | [
{
"answer_id": 143537,
"author": "jk.",
"author_id": 21284,
"author_profile": "https://Stackoverflow.com/users/21284",
"pm_score": 0,
"selected": false,
"text": "gcc -c mylib.c -o mylib.o\nar rcs libmylib.a mylib.o\n"
},
{
"answer_id": 143541,
"author": "Diomidis Spinel... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143530",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/76121/"
] |
143,552 | <p>In MySQL, If I have a list of date ranges (range-start and range-end). e.g.</p>
<pre><code>10/06/1983 to 14/06/1983
15/07/1983 to 16/07/1983
18/07/1983 to 18/07/1983
</code></pre>
<p>And I want to check if another date range contains ANY of the ranges already in the list, how would I do that?</p>
<p>e.g.</p>
<pr... | [
{
"answer_id": 143568,
"author": "Lasse V. Karlsen",
"author_id": 267,
"author_profile": "https://Stackoverflow.com/users/267",
"pm_score": 10,
"selected": true,
"text": " |-------------------| compare to this one\n |---------| contained wi... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143552",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5777/"
] |
143,554 | <p>I have written a ruby script which opens up dlink admin page in firefox and does a ADSL connection or disconnection.</p>
<p>I could run this script in the terminal without any problem. But if I put it as cron job, it doesn't fire up firefox.</p>
<p>This is the entry I have in <em>crontab</em></p>
<pre><code># con... | [
{
"answer_id": 143596,
"author": "mana",
"author_id": 12016,
"author_profile": "https://Stackoverflow.com/users/12016",
"pm_score": 0,
"selected": false,
"text": "#min hour day month dow user command\n55 17 * * * ur_user_is_missing ruby /home/raguanu... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143554",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15139/"
] |
143,566 | <p>I've been thinking a lot lately about a music-oriented project I'd like to work on. Kind of like a game... kind of like a studio workstation (FL Studio, Reason).</p>
<p>I guess the best way to describe it would be: like "Guitar Hero", but with no canned tracks. All original music--composed by you, on the fly--but t... | [
{
"answer_id": 143634,
"author": "benjismith",
"author_id": 22979,
"author_profile": "https://Stackoverflow.com/users/22979",
"pm_score": 2,
"selected": false,
"text": "Synth s = new Synth();\nInstrument i = s.getInstrument(\"Robot Bass\");\ni.makeAwesome(true);\n"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143566",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/22979/"
] |
143,571 | <p>I'm building my first ASP.NET MVC application and I am having some troubles with Partial Views.</p>
<p>If I, as an example, want to put a "Footer" as a Partial I create an "MVC View User Control" in "/Views/Shared/Footer.ascx". (I leave it empty for now)</p>
<p>What is the correct way for adding it to my Layout? <... | [
{
"answer_id": 143594,
"author": "Ricky",
"author_id": 653,
"author_profile": "https://Stackoverflow.com/users/653",
"pm_score": 4,
"selected": false,
"text": "<% Html.RenderPartial(\"~/Views/Shared/Footer.ascx\"); %>\n"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143571",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
143,622 | <p>This may seem like a programming 101 question and I had thought I knew the answer but now find myself needing to double check. In this piece of code below, will the exception thrown in the first catch block then be caught by the general Exception catch block below?</p>
<pre><code>try {
// Do something
} catch(IOE... | [
{
"answer_id": 143628,
"author": "C. K. Young",
"author_id": 13,
"author_profile": "https://Stackoverflow.com/users/13",
"pm_score": 9,
"selected": true,
"text": "throw try"
},
{
"answer_id": 143671,
"author": "Tom Hawtin - tackline",
"author_id": 4725,
"author_profil... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143622",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/270/"
] |
143,632 | <p>Any recommended crypto libraries for Python. I know I've asked something similar in <a href="https://stackoverflow.com/questions/143523/">x509 certificate parsing libraries for Java</a>, but I should've split the question in two.</p>
<p>What I need is the ability to parse X.509 Certificates to extract the informati... | [
{
"answer_id": 70135187,
"author": "Saikat",
"author_id": 1594823,
"author_profile": "https://Stackoverflow.com/users/1594823",
"pm_score": 0,
"selected": false,
"text": "keyczar tink"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143632",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12344/"
] |
143,651 | <p>I have written an application which has a modal form. How can I ensure that this form does not lose the focus even when an other application is started?</p>
| [
{
"answer_id": 143698,
"author": "faulty",
"author_id": 20007,
"author_profile": "https://Stackoverflow.com/users/20007",
"pm_score": 0,
"selected": false,
"text": "SetForegroundWindow(Me.Handle)\n Declare Unicode Function SetForegroundWindow Lib \"user32.dll\" (ByVal hWnd As IntPtr) As ... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143651",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/-1/"
] |
143,680 | <p>It seems that most of the installers for Perl are centered around installing Perl modules, not applications. Things like ExtUtils::MakeMaker and Module::Build are very well suited for modules, but require some additional work for Web Apps.</p>
<p>Ideally it would be nice to be able to do the following after checki... | [
{
"answer_id": 144216,
"author": "brian d foy",
"author_id": 2766176,
"author_profile": "https://Stackoverflow.com/users/2766176",
"pm_score": 4,
"selected": true,
"text": "MakeMaker MakeMaker Module::Build Module::Build cpan $ cpan .\n Module::Build Module::Build Module::Build"
}
] | 2008/09/27 | [
"https://Stackoverflow.com/questions/143680",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21632/"
] |
143,712 | <p>Is there a way of comparing two bitmasks in Transact-SQL to see if any of the bits match? I've got a User table with a bitmask for all the roles the user belongs to, and I'd like to select all the users that have <em>any</em> of the roles in the supplied bitmask. So using the data below, a roles bitmask of 6 (design... | [
{
"answer_id": 143919,
"author": "Sklivvz",
"author_id": 7028,
"author_profile": "https://Stackoverflow.com/users/7028",
"pm_score": 0,
"selected": false,
"text": "SELECT * FROM UserTable WHERE Roles & 2 = 2\n"
},
{
"answer_id": 3561763,
"author": "ScottE",
"author_id": 1... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14072/"
] |
143,714 | <p>In PHP, a string enclosed in "double quotes" will be parsed for variables to replace whereas a string enclosed in 'single quotes' will not. In Python, does this also apply?</p>
| [
{
"answer_id": 143719,
"author": "Milen A. Radev",
"author_id": 15785,
"author_profile": "https://Stackoverflow.com/users/15785",
"pm_score": 8,
"selected": true,
"text": "' \" \\"
},
{
"answer_id": 143730,
"author": "Bryan Oakley",
"author_id": 7432,
"author_profile"... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143714",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2183/"
] |
143,736 | <p>I have a simple message box in a WPF application that is launched as below:</p>
<pre><code>private void Button_Click(object sender, RoutedEventArgs e)
{
MessageBox.Show("Howdy", "Howdy");
}
</code></pre>
<p>I can get <a href="http://www.codeplex.com/white" rel="nofollow noreferrer" title="white">white</a> to cl... | [
{
"answer_id": 143766,
"author": "Brownie",
"author_id": 6600,
"author_profile": "https://Stackoverflow.com/users/6600",
"pm_score": 3,
"selected": true,
"text": " var app = Application.Launch(@\"c:\\ApplicationPath.exe\");\n var window = app.GetWindow(\"Window1\");\n ... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143736",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6600/"
] |
143,739 | <p>How do you do your own fonts? I don't want a heavyweight algorithm (freetype, truetype, adobe, etc) and would be fine with pre-rendered bitmap fonts.</p>
<p>I do want anti-aliasing, and would like proportional fonts if possible.</p>
<p>I've heard I can use Gimp to do the rendering (with some post processing?)</p>... | [
{
"answer_id": 143810,
"author": "SteinNorheim",
"author_id": 19220,
"author_profile": "https://Stackoverflow.com/users/19220",
"pm_score": 3,
"selected": true,
"text": "LetterA db 01111100b\n db 11000110b\n db 11000110b\n db 11111110b\n db 11000110b\n ... | 2008/09/27 | [
"https://Stackoverflow.com/questions/143739",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2915/"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.