User lacqui - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:49:56Z http://stackoverflow.com/feeds/user/63722 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1653047/avoid-linking-to-libstdc/1653057#1653057 5 Answer by lacqui for Avoid linking to libstdc++ lacqui 2009-10-31T01:13:36Z 2009-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#1381707 1 Answer by lacqui for Why are SSL certs self-signed if they have no real signature lacqui 2009-09-04T21:45:26Z 2009-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#1285236 4 Answer by lacqui for How to share my jar utility with selected buddies only ? lacqui 2009-08-16T20:07:53Z 2009-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 &amp; 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#1225883 3 Answer by lacqui for When does Google re-crawl a site? lacqui 2009-08-04T06:02:31Z 2009-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>&lt;link rel="canonical" href="(standard URL)"&gt;</code>. </p> http://stackoverflow.com/questions/1219243/should-i-use-gvim-or-the-terminal/1219255#1219255 0 Answer by lacqui for Should i use gVim, or the terminal? lacqui 2009-08-02T16:53:22Z 2009-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#1181169 0 Answer by lacqui for SEO - noindex, nofollow and canonical tag lacqui 2009-07-25T04:08:05Z 2009-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#1181065 2 Answer by lacqui for Please help me understand a few things found in the SO page source lacqui 2009-07-25T02:54:00Z 2009-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-system 0 Using Lex tokenizers in an embedded system lacqui 2009-03-07T20:05:33Z 2009-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>&lt;stdio.h&gt;</code>.</p> <p>I'm looking to use Flex, but I need to use my own input structures rather than <code>&lt;stdio.h&gt;</code>'s FILE pointers.</p> http://stackoverflow.com/questions/1139087/possible-to-block-form-fillers/1139273#1139273 5 Answer by lacqui for Possible to block form fillers? lacqui 2009-07-16T18:02:45Z 2009-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#1139180 0 Answer by lacqui for Is there a difference between !== and != in PHP? lacqui 2009-07-16T17:44:32Z 2009-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#814225 0 Answer by lacqui for Java Generics Help lacqui 2009-05-02T05:41:28Z 2009-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#784430 1 Answer by lacqui for Why does gcov report 0% coverage on a header file for a well used class? lacqui 2009-04-24T03:45:21Z 2009-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#746176 0 Answer by lacqui for Where are displays other than ":0"? lacqui 2009-04-14T02:51:10Z 2009-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#692212 2 Answer by lacqui for How to run a php script in cron lacqui 2009-03-28T04:42:24Z 2009-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#609303 3 Answer by lacqui for Java exception handling idioms ... who's right and how to handle it? lacqui 2009-03-04T05:05:22Z 2009-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-programming 3 Remotely Programming lacqui 2009-03-02T07:36:06Z 2009-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#605239 1 Answer by lacqui for Boolean[] vs. BitSet: Which is more efficient? lacqui 2009-03-03T05:45:06Z 2009-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#604650 7 Answer by lacqui for How can I encrypt or hide passwords in a Perl script? lacqui 2009-03-03T00:28:44Z 2009-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#604451 4 Answer by lacqui for Forcing FileNotFoundException lacqui 2009-03-02T23:13:12Z 2009-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#601195 1 Answer by lacqui for why does printf show a 0 for vector size when cout shows the correct size? lacqui 2009-03-02T03:29:50Z 2009-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#600746 1 Answer by lacqui for Using Java to find substring of a bigger string using Regular Expression lacqui 2009-03-01T23:02:37Z 2009-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#600551 11 Answer by lacqui for Why does Google Search return HTTP Error 403? lacqui 2009-03-01T21:22:09Z 2009-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#600432 3 Answer by lacqui for Database Structure & Hard drive seek time confusion lacqui 2009-03-01T20:21:24Z 2009-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#599456 0 Answer by lacqui for How to display weather script update autometically in php? lacqui 2009-03-01T07:54:00Z 2009-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#599402 2 Answer by lacqui for Seminal Necessary and Sufficient Canonical Books lacqui 2009-03-01T06:49:20Z 2009-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#599399 0 Answer by lacqui for No http handler was found for request type 'POST' lacqui 2009-03-01T06:43:04Z 2009-03-01T06:43:04Z <p>Hmm...maybe <code>&lt;remove verb="*" path="*.asmx"/&gt;</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#599213 1 Answer by lacqui for Are some data structures more suitable for functional programming than others? lacqui 2009-03-01T03:49:33Z 2009-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#599206 1 Answer by lacqui for Why can't I access $args from inside a function? lacqui 2009-03-01T03:42:36Z 2009-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#598746 11 Answer by lacqui for Should I migrate from Ant to Maven? lacqui 2009-02-28T21:49:08Z 2009-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#598520 0 Answer by lacqui for How to redirect www to non-www? lacqui 2009-02-28T19:20:07Z 2009-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>&lt;redirect url="^(.+)$" to="http://example.com/$1" permanent="true" /&gt; </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#459631 Comment by lacqui on What was your first computer game that got you interested in computers? lacqui 2009-11-19T08:13:19Z 2009-11-19T08:13:19Z I'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-source Comment by lacqui on Why is MySQL said to be open source? lacqui 2009-11-05T03:50:08Z 2009-11-05T03:50:08Z Take 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#1656441 Comment by lacqui on Regex for escaping quotes in a string lacqui 2009-11-01T07:20:18Z 2009-11-01T07:20:18Z In 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#1653057 Comment by lacqui on Avoid linking to libstdc++ lacqui 2009-10-31T02:47:30Z 2009-10-31T02:47:30Z I 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#1653056 Comment by lacqui on Avoid linking to libstdc++ lacqui 2009-10-31T01:14:47Z 2009-10-31T01:14:47Z Not 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#814225 Comment by lacqui on Java Generics Help lacqui 2009-05-02T05:51:09Z 2009-05-02T05:51:09Z If you don't implement comparable, you don't fit the requirements for &lt;T extends Comparable&lt;T&gt;&gt;. Without comparison, a binary search is meaningless. http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/700017#700017 Comment by lacqui on Display the binary representation of a number in C? lacqui 2009-03-31T04:56:40Z 2009-03-31T04:56:40Z You 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#692212 Comment by lacqui on How to run a php script in cron lacqui 2009-03-28T04:59:16Z 2009-03-28T04:59:16Z Mine 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#692217 Comment by lacqui on How to run a php script in cron lacqui 2009-03-28T04:50:28Z 2009-03-28T04:50:28Z Good point about not making the script public. http://stackoverflow.com/questions/668642/is-it-a-good-idea-to-learn-javascript-before-learning-jquery/668648#668648 Comment by lacqui on Is it a good idea to learn JavaScript before learning jQuery? lacqui 2009-03-21T03:16:37Z 2009-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#622655 Comment by lacqui on Using Lex tokenizers in an embedded system lacqui 2009-03-08T06:13:39Z 2009-03-08T06:13:39Z Thanks, that looks like exactly what I'm looking for. http://stackoverflow.com/questions/620990/introducing-a-teenager-to-programming/621048#621048 Comment by lacqui on Introducing a teenager to programming lacqui 2009-03-08T04:49:46Z 2009-03-08T04:49:46Z Ah, 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#605003 Comment by lacqui on Programming exercises to learn a new language lacqui 2009-03-03T04:27:02Z 2009-03-03T04:27:02Z Not 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>&#42;</code> to represent live cells. http://stackoverflow.com/questions/600708/best-practices-for-custom-file-structures/600728#600728 Comment by lacqui on Best practices for custom file structures lacqui 2009-03-01T22:56:50Z 2009-03-01T22:56:50Z I 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#378124 Comment by lacqui on Free database of Google word frequencies? lacqui 2009-03-01T22:51:23Z 2009-03-01T22:51:23Z Um...Have you ever heard of the term &quot;DDOS&quot;? I don't think Google would be happy if they found out you were doing that.