User lacqui - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T10:49:56Zhttp://stackoverflow.com/feeds/user/63722http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1653047/avoid-linking-to-libstdc/1653057#16530575Answer by lacqui for Avoid linking to libstdc++lacqui2009-10-31T01:13:36Z2009-10-31T01:13:36Z<p>When you compile, use <code>g++ -c</code> to compile only. Then for linking, use <code>ld</code> instead of <code>g++</code>. This invokes the linker directly, which requires you to name all your libraries on the command line (including libc and libcrt), however.</p>
<p>Alternatively, if you're using g++ as a "better c", you may be able to use <code>gcc</code> for your final link step (which will include libc automatically)</p>
http://stackoverflow.com/questions/871388/why-are-ssl-certs-self-signed-if-they-have-no-real-signature/1381707#13817071Answer by lacqui for Why are SSL certs self-signed if they have no real signature lacqui2009-09-04T21:45:26Z2009-09-04T21:45:26Z<p>If you self-sign the certificate, it proves to someone that you actually control the secret key to that signature - ie, it is your certificate.</p>
<p>Otherwise, you could just create a public key that is random numbers and conforms to the format of a certificate, but isn't a real certificate.</p>
http://stackoverflow.com/questions/1285216/how-to-share-my-jar-utility-with-selected-buddies-only/1285236#12852364Answer by lacqui for How to share my jar utility with selected buddies only ?lacqui2009-08-16T20:07:53Z2009-08-16T20:07:53Z<p>If they're your friends, trust them. Ask them to not distribute your code.</p>
<p>The other alternative is to look into copy-protection schemes, with your friends' email addresses & a hashcode of some sort. But seriously, if you don't trust them not to forward the files, why do you consider them "friends" and "buddies"?</p>
http://stackoverflow.com/questions/1225850/when-does-google-re-crawl-a-site/1225883#12258833Answer by lacqui for When does Google re-crawl a site?lacqui2009-08-04T06:02:31Z2009-08-04T06:02:31Z<p>There's alot of discussion regarding Google's crawling policy. The best you can do is check your logs and determine what their schedule is for your site.</p>
<p>As for the multiple entries in the cache, Google has no way of knowing that they aren't the same page; they have different URLs and possibly different data. If you want a specific page to be used, try using <code><link rel="canonical" href="(standard URL)"></code>. </p>
http://stackoverflow.com/questions/1219243/should-i-use-gvim-or-the-terminal/1219255#12192550Answer by lacqui for Should i use gVim, or the terminal?lacqui2009-08-02T16:53:22Z2009-08-02T16:53:22Z<p>Use whichever you're more comfortable with. The main difference, as far as I know, is that if you use 'vim' from a terminal, that terminal becomes dedicated to editing that file; if ou use 'gvim', then a gVim window opens, and the terminal is released for you to continue working with other files or tasks.</p>
http://stackoverflow.com/questions/1181158/seo-noindex-nofollow-and-canonical-tag/1181169#11811690Answer by lacqui for SEO - noindex, nofollow and canonical taglacqui2009-07-25T04:08:05Z2009-07-25T04:08:05Z<p>You only need the 'canonical' tag if there is more than one way to address a page. For example, if '<a href="http://www.example.com/products/big-fish" rel="nofollow">http://www.example.com/products/big-fish</a>' and '<a href="http://www.example.com/product.php?item=big-fish" rel="nofollow">http://www.example.com/product.php?item=big-fish</a>' both point to the same page (ie. one is an alias for the other), use 'canonical'.</p>
http://stackoverflow.com/questions/1181034/please-help-me-understand-a-few-things-found-in-the-so-page-source/1181065#11810652Answer by lacqui for Please help me understand a few things found in the SO page sourcelacqui2009-07-25T02:54:00Z2009-07-25T02:54:00Z<ol>
<li>Allows for browsers such as FireFox (possibly others) to use Stack Overflow as a built-in search. If you're using FireFox, look to the right of the address bar, there's a search bar. 'opensearchdescription' lets the SO search be automagically added to that.</li>
<li>?v=#### means "version", allowing your browser to cache the current version and automatically update when the SO version of the javascript changes.</li>
<li>'rel="canonical"' is used by search engines, if there's more than one way to address a page. One becomes the official, or canonical, URL, which allows search engines to ignore what appears to be duplicate pages.</li>
<li>This allows RSS readers to find the feed for a given website, basically making it easier to add to your RSS reader.</li>
</ol>
http://stackoverflow.com/questions/622389/using-lex-tokenizers-in-an-embedded-system0Using Lex tokenizers in an embedded systemlacqui2009-03-07T20:05:33Z2009-07-23T06:28:34Z
<p>I'm trying to write a config-file parser for use in a non-standard C environment. Specifically, I can't rely on the utilities provided by <code><stdio.h></code>.</p>
<p>I'm looking to use Flex, but I need to use my own input structures rather than <code><stdio.h></code>'s FILE pointers.</p>
http://stackoverflow.com/questions/1139087/possible-to-block-form-fillers/1139273#11392735Answer by lacqui for Possible to block form fillers?lacqui2009-07-16T18:02:45Z2009-07-16T18:02:45Z<p>Users will always find a way to exert control on their own systems. You can just as easily prevent an automatic form filler from working as you can prevent the user from sticking a Post-It note to their monitor.</p>
<p>Deal with the fact that, as long as you trust the user to maintain security, you must handle weaknesses in your users. You can always mitigate this by restricting the abilities of individual users, but in the long run all you can do is hope your users care enough about their own personal information to secure it properly.</p>
<p>On the other hand, if this application is only used from the office, why do the users have password management apps in a secure environment?</p>
http://stackoverflow.com/questions/1139154/is-there-a-difference-between-and-in-php/1139180#11391800Answer by lacqui for Is there a difference between !== and != in PHP?lacqui2009-07-16T17:44:32Z2009-07-16T17:44:32Z<p><code>!=</code> is for "not equal", while <code>!==</code> is for "not identical". For example:</p>
<pre><code>'1' != 1 # evaluates to false, because '1' equals 1
'1' !== 1 # evaluates to true, because '1' is of a different type than 1
</code></pre>
http://stackoverflow.com/questions/814212/java-generics-help/814225#8142250Answer by lacqui for Java Generics Helplacqui2009-05-02T05:41:28Z2009-05-02T05:41:28Z<p>Does the class Student implement Comparable?</p>
http://stackoverflow.com/questions/784379/why-does-gcov-report-0-coverage-on-a-header-file-for-a-well-used-class/784430#7844301Answer by lacqui for Why does gcov report 0% coverage on a header file for a well used class?lacqui2009-04-24T03:45:21Z2009-04-24T03:45:21Z<p>Your header file doesn't contain executed code. Since nothing is executed (there's no executed code in a class declaration), there's nothing to measure, and nothing to cover.</p>
http://stackoverflow.com/questions/746162/where-are-displays-other-than-0/746176#7461760Answer by lacqui for Where are displays other than ":0"?lacqui2009-04-14T02:51:10Z2009-04-14T02:51:10Z<p>Don't worry about using other displays at first. Probably the only time you'll have to worry about displays is when you connect to a remote computer and connect your remote applications to the display.</p>
<p>Your applications that you write won't have to directly worry about the display; the X library will take care of it for you.</p>
http://stackoverflow.com/questions/692208/how-to-run-a-php-script-in-cron/692212#6922122Answer by lacqui for How to run a php script in cronlacqui2009-03-28T04:42:24Z2009-03-28T04:42:24Z<p>Try:</p>
<pre><code>wget http://domain.com/cron/script.php
</code></pre>
<p>and see if you get a better result.</p>
http://stackoverflow.com/questions/609293/java-exception-handling-idioms-whos-right-and-how-to-handle-it/609303#6093033Answer by lacqui for Java exception handling idioms ... who's right and how to handle it?lacqui2009-03-04T05:05:22Z2009-03-04T05:05:22Z<p>With option 1, the caller has the option of selecting exactly which exception to catch, and to ignore all others. With option 2, the caller has to remember to re-throw any exceptions not explicitly caught.</p>
<p>Additionally, there's better self-documentation with option 1, as the method signature needs to specify exactly which exceptions are thrown, rather than a single over-riding exception.</p>
<p>If there's a need to have an all-encompassing AppException, the other exception types can always inherit from it.</p>
http://stackoverflow.com/questions/601532/remotely-programming3Remotely Programminglacqui2009-03-02T07:36:06Z2009-03-03T15:40:29Z
<p>I'm doing my development work on my Windows machine, but my compiling on a remote Linux machine. What I currently do is start an X server on Windows, ssh into the Linux machine, then do the development remotely.</p>
<p>What I'd like to do is edit my source on the Windows machine, and have it automatically copy files over to the Linux system when I save. I'd also like for my built-in compilation commands to perform a build on the remote system.</p>
<p>If it makes a difference, the source is all in C, using GCC. In descending order of preference, I have Emacs, Vi, and Netbeans on my desktop, and am willing to install another IDE for a last resort.</p>
http://stackoverflow.com/questions/605226/boolean-vs-bitset-which-is-more-efficient/605239#6052391Answer by lacqui for Boolean[] vs. BitSet: Which is more efficient?lacqui2009-03-03T05:45:06Z2009-03-03T05:45:06Z<p>I believe that a BitSet is more memory- and CPU-efficient, is it can internally pack the bits into int, longs, or native data types, whereas a boolean[] requires a byte for each bit of data. Additionally, if you were to use the other methods (and, or, etc), you would find that the BitSet is more efficient, as there is no need to iterate through every element of an array; bitwise math is used instead.</p>
http://stackoverflow.com/questions/604634/how-can-i-encrypt-or-hide-passwords-in-a-perl-script/604650#6046507Answer by lacqui for How can I encrypt or hide passwords in a Perl script?lacqui2009-03-03T00:28:44Z2009-03-03T00:28:44Z<p>Probably your best way is to put the passwords in a separate file, and lock the security for that file down so only you have read access. Unfortunately, if you store an encrypted password in your script, you'll also have to store the decryption method, so an attacker can run the decryption and recover your password.</p>
http://stackoverflow.com/questions/604449/forcing-filenotfoundexception/604451#6044514Answer by lacqui for Forcing FileNotFoundExceptionlacqui2009-03-02T23:13:12Z2009-03-02T23:13:12Z<p>You could set <code>cacheFileName</code> to an invalid name or to one you know doesn't exist. </p>
http://stackoverflow.com/questions/601180/why-does-printf-show-a-0-for-vector-size-when-cout-shows-the-correct-size/601195#6011951Answer by lacqui for why does printf show a 0 for vector size when cout shows the correct size?lacqui2009-03-02T03:29:50Z2009-03-02T03:29:50Z<p>The <code>size()</code> method returns <code>size_t</code>, which depends on your c++ implementation. When you try to <code>printf("%d")</code>, you're telling the library to expect an <code>int</code>, which isn't necessarily the case; it then takes an <code>int</code> from the call stack, which is taking only the high-order bytes of the <code>size_t</code>.</p>
<p>What you'll need to do is force the return value <code>size()</code> to a known data type with casting:
<code>printf("%d", (int) size)</code></p>
http://stackoverflow.com/questions/600733/using-java-to-find-substring-of-a-bigger-string-using-regular-expression/600746#6007461Answer by lacqui for Using Java to find substring of a bigger string using Regular Expressionlacqui2009-03-01T23:02:37Z2009-03-01T23:02:37Z<p>I think your regular expression would look like:</p>
<pre><code>/FOO\[(.+)\]/
</code></pre>
<p>Assuming that FOO going to be constant.</p>
<p>So, to put this in Java:</p>
<pre><code>Pattern p = Pattern.compile("FOO\\[(.+)\\]");
Matcher m = p.matcher(inputLine);
</code></pre>
http://stackoverflow.com/questions/600536/why-does-google-search-return-http-error-403/600551#60055111Answer by lacqui for Why does Google Search return HTTP Error 403?lacqui2009-03-01T21:22:09Z2009-03-01T21:22:09Z<p>If you want to do Google searches "properly" through a programming interface, take a look at <a href="http://code.google.com/more/" rel="nofollow">Google APIs</a>. Not only are these the official way of searching Google, they are also not likely to change if Google changes their result page layout.</p>
http://stackoverflow.com/questions/600400/database-structure-hard-drive-seek-time-confusion/600432#6004323Answer by lacqui for Database Structure & Hard drive seek time confusionlacqui2009-03-01T20:21:24Z2009-03-01T20:21:24Z<p>How "absolutely essential" is seek access? Have you tested your application with a non-optimal solution yet? During that testing, did you benchmark to determine where the <strong>real</strong> bottlenecks are? If you haven't, you'll be surprised by the results.</p>
<p>Next, try different methods and compare the running times. Test under different system loads (ie, when the system is idle except for your application, and when it is busy).</p>
<p>Consider that your optimizations based on your current hard drive may become incorrect when a new, faster hard drive has different internal optimizations that throw your work out the window.</p>
http://stackoverflow.com/questions/599446/how-to-display-weather-script-update-autometically-in-php/599456#5994560Answer by lacqui for How to display weather script update autometically in php?lacqui2009-03-01T07:54:00Z2009-03-01T07:54:00Z<p>If you want data automatically updated on a schedule, look into <code>cron</code> (on Unix systems) or its equivalent. If you're using a commercial web host, they should have a way to schedule programs; otherwise, look into your own system's documentation for scheduling scripts.</p>
<p>Next, you want to write a script that downloads the weather information <em>at that moment</em>. Allow this script to translate from the "source" format to your own format.</p>
<p>Have the scheduler run your script once a day.</p>
http://stackoverflow.com/questions/599352/seminal-necessary-and-sufficient-canonical-books/599402#5994022Answer by lacqui for Seminal Necessary and Sufficient Canonical Bookslacqui2009-03-01T06:49:20Z2009-03-01T06:49:20Z<p>Knuth's Art of Computer Programming comes to mind. Still the authority on algorithms after all these years.</p>
http://stackoverflow.com/questions/599382/no-http-handler-was-found-for-request-type-post/599399#5993990Answer by lacqui for No http handler was found for request type 'POST'lacqui2009-03-01T06:43:04Z2009-03-01T06:43:04Z<p>Hmm...maybe <code><remove verb="*" path="*.asmx"/></code> makes your server no longer respond to POST requests? Try commenting that out, and see if it's overriding the <code>add</code> lines.</p>
http://stackoverflow.com/questions/599153/are-some-data-structures-more-suitable-for-functional-programming-than-others/599213#5992131Answer by lacqui for Are some data structures more suitable for functional programming than others?lacqui2009-03-01T03:49:33Z2009-03-01T03:49:33Z<p>Functional programs tend to put more emphasis on recursion. This, in turn, suggests the use of recursive algorithms and recursive data structures. Both lists and trees are recursive structures (the "next" link on a list is another list, and the children of a tree node are both trees).</p>
<p>You may want to reconsider if you're looking at extra expense on an algorithm. Why does the hash table (which is O(1) for a non-recursive algorithm) incur an extra expense? What advantage are you gaining by using it, as opposed to a tree or list?</p>
http://stackoverflow.com/questions/599203/why-cant-i-access-args-from-inside-a-function/599206#5992061Answer by lacqui for Why can't I access $args from inside a function?lacqui2009-03-01T03:42:36Z2009-03-01T03:42:36Z<p>From my understanding of powershell, $args refers to the the arguments to the current function. The first time you call Write-Host, $args refers to the top-level arguments. Inside fun, you're referring to the arguments to fun, which are not given.</p>
<p>See <a href="http://computerperformance.co.uk/powershell/powershell%5Fvariables.htm" rel="nofollow">PowerShell Variables</a> for more information on variables.</p>
http://stackoverflow.com/questions/598735/should-i-migrate-from-ant-to-maven/598746#59874611Answer by lacqui for Should I migrate from Ant to Maven?lacqui2009-02-28T21:49:08Z2009-02-28T21:49:08Z<p>Before changing your build system, ask yourself (and the group) why you're changing? If you're changing just because Maven is the "new thing", don't. If you actually see a technical reason to migrate, do it.</p>
<p>In general, unless there's a major compelling reason to do so (new capabilities or much simpler management), I'd say stay with what you have for the current project, but consider Maven for future projects.</p>
http://stackoverflow.com/questions/598514/how-to-redirect-www-to-non-www/598520#5985200Answer by lacqui for How to redirect www to non-www?lacqui2009-02-28T19:20:07Z2009-02-28T19:20:07Z<p>I've never used urlrewriter, but it looks like you'd use the following (or something similar:</p>
<pre><code><redirect url="^(.+)$" to="http://example.com/$1" permanent="true" />
</code></pre>
<p>on the www.example.com site.</p>
http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/459631#459631Comment by lacqui on What was your first computer game that got you interested in computers?lacqui2009-11-19T08:13:19Z2009-11-19T08:13:19ZI've been playing Crazy Machines, its spiritual successor <a href="http://www.crazymachinesgame.com/" rel="nofollow">crazymachinesgame.com</a>http://stackoverflow.com/questions/1678220/why-is-mysql-said-to-be-open-sourceComment by lacqui on Why is MySQL said to be open source?lacqui2009-11-05T03:50:08Z2009-11-05T03:50:08ZTake a look at <a href="http://mysql.org" rel="nofollow">mysql.org</a>, where you can get the source code for MySQL, as well as licensing information which will explain why it's considered open source.http://stackoverflow.com/questions/1656423/regex-for-escaping-quotes-in-a-string/1656441#1656441Comment by lacqui on Regex for escaping quotes in a stringlacqui2009-11-01T07:20:18Z2009-11-01T07:20:18ZIn this case, however, the shell has taken care of the first and last quotes for you. This would not be the case if the input was taken from a file.http://stackoverflow.com/questions/1653047/avoid-linking-to-libstdc/1653057#1653057Comment by lacqui on Avoid linking to libstdc++lacqui2009-10-31T02:47:30Z2009-10-31T02:47:30ZI think that means you're using some C++ specific feature. As to which feature it is, I'm not sure.http://stackoverflow.com/questions/1653047/avoid-linking-to-libstdc/1653056#1653056Comment by lacqui on Avoid linking to libstdc++lacqui2009-10-31T01:14:47Z2009-10-31T01:14:47ZNot true, if <code>g++</code> is used for compiling and linking it includes the C++ runtime (libstdc++). If you just use <code>gcc</code>, it will only include the C runtime.http://stackoverflow.com/questions/814212/java-generics-help/814225#814225Comment by lacqui on Java Generics Helplacqui2009-05-02T05:51:09Z2009-05-02T05:51:09ZIf you don't implement comparable, you don't fit the requirements for <T extends Comparable<T>>. Without comparison, a binary search is meaningless.http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/700017#700017Comment by lacqui on Display the binary representation of a number in C?lacqui2009-03-31T04:56:40Z2009-03-31T04:56:40ZYou missed the case where the input is 0, which will print nothing in this case.http://stackoverflow.com/questions/692208/how-to-run-a-php-script-in-cron/692212#692212Comment by lacqui on How to run a php script in cronlacqui2009-03-28T04:59:16Z2009-03-28T04:59:16ZMine may work, but you may want to look at chaos's better-reasoned answer.http://stackoverflow.com/questions/692208/how-to-run-a-php-script-in-cron/692217#692217Comment by lacqui on How to run a php script in cronlacqui2009-03-28T04:50:28Z2009-03-28T04:50:28ZGood point about not making the script public.http://stackoverflow.com/questions/668642/is-it-a-good-idea-to-learn-javascript-before-learning-jquery/668648#668648Comment by lacqui on Is it a good idea to learn JavaScript before learning jQuery?lacqui2009-03-21T03:16:37Z2009-03-21T03:16:37Z@Dinah C# isn't a framework built on C or C++, it's a completely different language with roots in its predecessors. It's the same as saying you don't need to know BCPL before learning C.http://stackoverflow.com/questions/622389/using-lex-tokenizers-in-an-embedded-system/622655#622655Comment by lacqui on Using Lex tokenizers in an embedded systemlacqui2009-03-08T06:13:39Z2009-03-08T06:13:39ZThanks, that looks like exactly what I'm looking for.http://stackoverflow.com/questions/620990/introducing-a-teenager-to-programming/621048#621048Comment by lacqui on Introducing a teenager to programminglacqui2009-03-08T04:49:46Z2009-03-08T04:49:46ZAh, the C=64. My first intro to programming, when I was 10. Definitely don't underestimate the 15-year-old.http://stackoverflow.com/questions/605000/programming-exercises-to-learn-a-new-language/605003#605003Comment by lacqui on Programming exercises to learn a new language lacqui2009-03-03T04:27:02Z2009-03-03T04:27:02ZNot necessarily. You could write a single pass of Life that takes in an array representing the current state, and outputs an array representing the new state. For example, a file using <code>*</code> to represent live cells.http://stackoverflow.com/questions/600708/best-practices-for-custom-file-structures/600728#600728Comment by lacqui on Best practices for custom file structureslacqui2009-03-01T22:56:50Z2009-03-01T22:56:50ZI agree. I also say, think of what the future might entail for your data structure. Make sure that your file format can be easily extended if, for example, a new field is added to your data.http://stackoverflow.com/questions/340001/free-database-of-google-word-frequencies/378124#378124Comment by lacqui on Free database of Google word frequencies?lacqui2009-03-01T22:51:23Z2009-03-01T22:51:23ZUm...Have you ever heard of the term "DDOS"? I don't think Google would be happy if they found out you were doing that.