User theman_on_vista - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T03:41:53Zhttp://stackoverflow.com/feeds/user/67864http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1576/what-should-a-longtime-windows-user-know-when-starting-to-use-linux/509055#5090551Answer by theman_on_vista for What should a longtime Windows user know when starting to use Linux?theman_on_vista2009-02-03T21:49:34Z2009-11-25T18:23:02Z<p>In a pathname, the separators go like this "/" and not like this "\". Also, spaces and/or capitalization sucks in a pathname.</p>
http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books125What are some good free programming books?theman_on_vista2008-12-24T14:24:53Z2009-11-22T14:30:15Z
<p>I know of a couple, but I would like to build a list up for some nice holiday reading.</p>
<p>(If there is a book on here you read for free, and really liked, make sure to support the author and buy a hard copy!)</p>
http://stackoverflow.com/questions/360887/using-version-control-for-home-development/361019#3610190Answer by theman_on_vista for Using Version Control for Home Development?theman_on_vista2008-12-11T21:27:01Z2009-09-28T19:14:38Z<p>If you don't use it, you will fail the <a href="http://en.wikipedia.org/wiki/The%5FJoel%5FTest" rel="nofollow">Joel test</a>.</p>
http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424429#4244295Answer by theman_on_vista for What's your favorite "programmer ignorance" pet peeve?theman_on_vista2009-01-08T14:33:21Z2009-09-24T00:43:55Z<ol>
<li>copy and pasting code </li>
<li>copy and pasting PHP code that prints static HTML</li>
</ol>
<p>and the infamous:</p>
<pre><code>
total++; // Increment the total.
</code></pre>
http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/546217#5462173Answer by theman_on_vista for Biggest performance improvement you've had with the smallest change?theman_on_vista2009-02-13T14:50:42Z2009-09-02T22:43:43Z<p>Switched from PHP to Python for pet projects.</p>
http://stackoverflow.com/questions/387447/the-youre-doing-it-wrong-feeling8The "You're Doing It Wrong!!" feelingtheman_on_vista2008-12-22T21:43:34Z2009-06-18T16:38:51Z
<p><b>NB</b> - This question is not a stab at RoR or at Redmine's plugin system</p>
<p><hr /></p>
<p>I have been working on a custom plugin for <a href="http://redmine.org" rel="nofollow">Redmine</a>, a project manager platform built with Ruby on Rails (RoR). Now I am not <em>really</em> a RoR or for that matter, a Ruby guy. I have managed to write the plugin and everything works, despite being a mess behind the scenes. The "You're Doing It Wrong!!" feeling is coming from the fact that I know RoR is a highly-regarded framework, so there must be simple, better, elegant, [insert best-practice term here], ways of doing what I have done. I am not too concerned with making this code as perfect as possible, for the sole reason that this is only used internally, and really, people only care that it "works" (I am the only one who will look at the code). </p>
<p>What words of wisdom can be passed on to suppress the "You're Doing It Wrong!!" feeling? I am pretty sure if this feeling is present, then it is probably true that the task at hand is being done wrong.</p>
http://stackoverflow.com/questions/407184/how-to-determine-file-type-in-bash-script2How to determine file type in bash script?theman_on_vista2009-01-02T15:46:04Z2009-06-11T08:03:33Z
<p>I am writing a nightly build script in bash.<br />
Everything is fine and dandy except for one little snag:</p>
<pre><code>
#!/bin/bash
for file in "$PATH_TO_SOMEWHERE"; do
if [ -d $file ]
then
# do something directory-ish
else
if [ "$file" == "*.txt" ] # this is the snag
then
# do something txt-ish
fi
fi
done;
</code></pre>
<p>My problem is determining the file extension and then acting accordingly. I know the issue is in the if-statement, testing for a txt file. </p>
<p>How can I determine if a file has a .txt suffix?</p>
http://stackoverflow.com/questions/580339/most-simple-sound-format3Most simple sound format?theman_on_vista2009-02-24T03:19:05Z2009-06-07T02:52:58Z
<p>I was reading about bitmap images. They are one of the more simple image formats (especially 1 bit bitmaps). I am interested to see what a sound file looks like. May someone refer me to the most simple sound file format?</p>
<p>thanks </p>
<p>Actually, I found this <a href="http://technology.niagarac.on.ca/courses/ctec1631/WavFileFormat.html" rel="nofollow">wav file link</a>. If someone else has any other links/words of wisdom they'd like to post I'd appreciate it.</p>
http://stackoverflow.com/questions/398237/how-to-use-the-csv-mime-type3How to use the CSV MIME-type ?theman_on_vista2008-12-29T18:08:38Z2009-05-01T06:57:27Z
<p>In a web application I am working on, the user can click on a link to a csv file. There is no header set for the mime-type, so the browser just renders it as text. I would like for this file to be sent as a .csv file, so the user can directly open it with calc, excel, gnumeric, etc. </p>
<pre><code>
header('Content-Type: text/csv');
echo "cell 1, cell 2";
</code></pre>
<p>This code works as expected on my computer (Isnt that how it always is?) but does not work on another computer.</p>
<p>My browser is a nightly build of FF 3.0.1 (on linux)
The browsers it did not work in were IE 7 and FF 3.0 (on windows)</p>
<p>Are there any quirks I am unaware of ? Thanks </p>
http://stackoverflow.com/questions/526196/graceful-css-degradation1graceful css degradationtheman_on_vista2009-02-08T18:44:25Z2009-04-15T21:03:00Z
<p>I am working on a personal website. On the front page, I have a listing of all the articles, and their date published. This data would be a perfect use for a table tag. The table would only be used to display this tabular data. </p>
<p>I worked on it again, and was able to achieve the same layout using unordered lists and a little bit of css. </p>
<p>So now I got two versions, both look the same (ie and ff), so whats the problem? I want the page to degrade as gracefully as possible. </p>
<p>I view the tabled page without the stylesheets, and everything degrades nice. When I degrade the table-less page, it looks ok.. but clearly the tabled page degrades more nicely. </p>
<p>also, in lynx, the tabled version looks a lot better then the table-less version.</p>
<p>The question is - Are tables justified in this case? (I believe so).
Should I go with the table-less layout now that I have one? or is the table better for degradation purposes?</p>
<p><strong>Edit - Ive been brainwashed to think tables are the anti-christ</strong></p>
http://stackoverflow.com/questions/615181/what-is-a-serial-version-id2what is a serial version id? [closed]theman_on_vista2009-03-05T15:09:46Z2009-03-05T15:17:46Z
<p>Duplicate <a href="http://stackoverflow.com/questions/285793/why-should-i-bother-about-serialversionuid">http://stackoverflow.com/questions/285793/why-should-i-bother-about-serialversionuid</a></p>
<p>Using Eclipse for some java work right now. My class name is underlined in yellow. I can either suppress the warning or just add the frickin serial id.</p>
<p>I dont care either way (or should i?), but what exactly IS this serial id?</p>
<p>thanks</p>
http://stackoverflow.com/questions/611095/writing-bmp-data-getting-garbage/611176#6111760Answer by theman_on_vista for Writing BMP data getting garbagetheman_on_vista2009-03-04T15:51:00Z2009-03-04T15:51:00Z<p>I actually just did a similar thing in java (printing bmp data to a thermal receipt printer). There are a couple of things i want to share with you:</p>
<ol>
<li><p>bmp image data != an image format from microsoft. the MS bitmap has about 54 bytes of header information before any image data. (i spent a day or two working on this before I realized the difference)</p></li>
<li><p>bmp image data reads left to right, top to bottom, with the most significant bit on the left. </p></li>
<li><p>make sure the barcode image has a bitdepth of 1. this means 1 bit = 1 pixel. hexidecimal "ab" is 10101011 in binary, those 8 pixels will be filled in accordingly.</p></li>
<li><p>if you have a barcode 36 bytes wide, the barcode resolution is 288 x 12, not 273 x 12. (36 * 8 = 288).</p></li>
<li><p>the image data should be 432 bytes in size (12 rows of 36 bytes).</p></li>
<li><p>i dont know what this means:</p>
<blockquote>
<p>Anyhow, the actual drawing of the file is perfect, and in correct boundaries of 32 bits (as monochrome result).</p>
</blockquote></li>
</ol>
<p>monochrome means its either 1 color or another. the pixel (think bit) is either filled in or it isnt. </p>
<p>Hope this helps</p>
http://stackoverflow.com/questions/610918/gui-creation-code-layout-theory2GUI creation code layout theory?theman_on_vista2009-03-04T14:54:45Z2009-03-04T15:02:23Z
<p>This question is not so much a "How to create a gui", but more of a "where to create the gui".</p>
<p>I have some java code that checks to make sure the drivers needed are in place:</p>
<pre><code>public boolean confirmDrivers() {
/* some logic */
return someDriver.exists();
}
</code></pre>
<p>it gets called as:</p>
<pre><code>if (confirmDrivers()) {
createGUI();
}
</code></pre>
<p>Is it a bad idea to have the actionlisteners defined for some buttons in createGUI() ? it seems out of place because that function is mostly just assignment (ie - myButton.setToolTipText("hay guyz click here!"); ), and the listeners contains minor logic (mostly to call other functions that DO contain the logic.</p>
<p>Just curious as to what others do in this situation.</p>
http://stackoverflow.com/questions/590963/java-databufferbyte-returning-data-with-1s-1Java DataBufferByte returning data with -1's?theman_on_vista2009-02-26T15:17:13Z2009-02-26T15:41:13Z
<p>Hi.
I am writing an applet that interfaces with signature capture tablet. The API that comes with the signature pad can create a BufferedImage object of the signature. cool.</p>
<p>The second part is printing the signature from an Epson thermal receipt printer. In order to do this, you must send commands to the printer defining the height and width of the image, so on and so forth. When you are ready to send the data to the printer, you must send it in a hexidecimal format. </p>
<p>I created a Raster object from my signature, and from that, created a DataBufferByte object (The final step is to write each byte as hex to the printer). Just out of curiosity, I decided to look at the bytes returned from myDataBufferByte.getData(), and some of the values are negative numbers. I have declared the data type to be <a href="http://java.sun.com/j2se/1.4.2/docs/api/constant-values.html#java.awt.image.DataBuffer.TYPE%5FBYTE" rel="nofollow">TYPE_BYTE</a>, which should be unsigned.</p>
<p>Are there any reasons why this is happening or am I not understanding something correctly? thanks</p>
<p><strong>More Info</strong>
The printer can only print bitmaps (lower case b, not Bitmap from MS). If the image is X pixels by Y pixels, the size of the bitmap can be found as follows:</p>
<blockquote>
<p>size = X * Y * n / 8</p>
</blockquote>
<p>where n = bitdepth. Because This is a signature that is going to be printed from a thermal receipt printer, I only need a bit depth of 1 (black or white - the bit is either on or off). When there is a bitdepth of one, this means that 1 bit translates to exactly one pixel in the image. So the first byte in the array as hex is say.. 6F, this is equal to 01101111 in binary, and is reflected in the first 8 pixels.</p>
<p>Also, java is not my main language, I was unaware of them being signed especially when the Databuffer javadoc (as linked above) states the TYPE_BYTE as :</p>
<blockquote>
<p>Tag for unsigned byte data. </p>
</blockquote>
<p>and mydatabuffer.getDataType() returns 0 (0 == TYPE_BYTE constant)</p>
http://stackoverflow.com/questions/565458/java-event-handlers0Java event handlerstheman_on_vista2009-02-19T14:09:26Z2009-02-19T15:01:52Z
<p>Hi, I am writing a small Java app (on Windows, hence the _on_vista appended to my name).</p>
<p>I got 3 buttons, all of which will react to a click event, but do different things.</p>
<p>Is the following code the accepted way or is there a cleaner way I do not know about?
On one half, it works, on the other half, something doesn't seem right...</p>
<p>Thanks</p>
<pre><code>cool_button_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
coolfunction1();
}
});
cool_button_2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
coolfunction2();
}
});
// etc ...
</code></pre>
<p>The functions that get called will spawn off threads as needed, so on and so forth.</p>
<p><strong>UPDATE</strong> - Both were good (pretty much the same) answers. I accepted the one with the lower rep to share the wealth. Thanks again guys. </p>
http://stackoverflow.com/questions/400929/applet-user-agent/561322#5613221Answer by theman_on_vista for Applet User-agenttheman_on_vista2009-02-18T14:43:11Z2009-02-18T14:43:11Z<p>I think you can set the user-agent in an http header... so whats the point?</p>
http://stackoverflow.com/questions/558134/is-using-a-web-server-like-lighttpd-and-nginx-in-most-cases-just-premature-optimi/558498#5584980Answer by theman_on_vista for Is using a Web Server like Lighttpd and nginx in most cases just Premature Optimization?theman_on_vista2009-02-17T20:04:51Z2009-02-17T20:04:51Z<p>No not at all. Http servers, like women, are better when you use a couple first, before committing to one. Wait.. that came out wrong. </p>
<p>If you are on a deadline, go with what you know. If this is something for fun, do whatever feels right. </p>
http://stackoverflow.com/questions/558440/solution-structure-best-practices/558489#5584895Answer by theman_on_vista for solution structure / best practicestheman_on_vista2009-02-17T20:01:23Z2009-02-17T20:01:23Z<p>Here is the best advice anyone can ever give you at this point in time:</p>
<blockquote>
<p>The crappy first version is infinitly better then the perfect version that doesnt exist.</p>
</blockquote>
<p>I forget where I got that from, Ive seen that advice many places. It is 100% true.</p>
http://stackoverflow.com/questions/547691/is-there-a-way-to-query-the-current-brightness-level-of-a-the-macbook-lcd/547733#5477330Answer by theman_on_vista for Is there a way to query the current brightness level of a the MacBook LCD?theman_on_vista2009-02-13T21:18:23Z2009-02-13T21:18:23Z<p>Uhm.. I am not a mac guy .. but does /proc exist in the filesystem? You might want to look in that virtual file directory if it exists.</p>
http://stackoverflow.com/questions/547476/how-do-i-build-a-great-game-development-team/547484#5474840Answer by theman_on_vista for How do I build a great game development team?theman_on_vista2009-02-13T20:12:33Z2009-02-13T20:12:33Z<p>Listen to <a href="http://itc.conversationsnetwork.org/series/stackoverflow.html?series=&channel=&offset=11#" rel="nofollow">Stackoverflow podcast</a> #23 around minute 20 +</p>
<p>no serious person would disagree</p>
http://stackoverflow.com/questions/544430/how-to-psyche-yourself-to-just-program-the-damn-thing/547213#5472130Answer by theman_on_vista for How to psyche yourself to just program the damn thingtheman_on_vista2009-02-13T18:58:34Z2009-02-13T18:58:34Z<ol>
<li>close the door to my office and cry</li>
<li>open door back up</li>
<li>tell myself its better to have a poopy final product then the perfect product that doesnt exist</li>
</ol>
<p>and repeat</p>
http://stackoverflow.com/questions/547032/how-to-write-an-x11-app-that-follows-the-cursor/547142#5471420Answer by theman_on_vista for How to write an X11 app that follows the cursortheman_on_vista2009-02-13T18:35:35Z2009-02-13T18:35:35Z<p>I am unsure if this can run as its own app or would have to be integrated into your window manager. Either way, you would need libx11 (might have a different name from distro to distro). Also, I would suggest taking a look at <a href="http://www.suckless.org/programs/swarp.html" rel="nofollow">swarp</a>. I know this is not even close to what you are talking about, but the source code is only 35 lines and it shows what can be done with libx11.</p>
http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers/546170#546170-1Answer by theman_on_vista for Why is good UI design so hard for some Developers?theman_on_vista2009-02-13T14:40:31Z2009-02-13T14:40:31Z<p>ui design and software development work on two different sides of the brain. it isnt that a designer sucks at developing and vice versa, its just that they are trying to do it with the wrong side of the brain. no serious person would disagree.</p>
http://stackoverflow.com/questions/546010/firefox-div-problem/546127#5461270Answer by theman_on_vista for Firefox Div Problemtheman_on_vista2009-02-13T14:29:30Z2009-02-13T14:29:30Z<p>Also, if there is not enough width on a specified "line", it will drop down to the next line. Try making the window as wide as possible (click n drag) and see if this is the issue.</p>
http://stackoverflow.com/questions/537170/default-windows-languages0Default Windows Languages?theman_on_vista2009-02-11T14:57:10Z2009-02-11T15:04:52Z
<p>Hi. Is there some default Windows scripting language that comes pre-installed on XP and Vista (Similar to how OS X comes with Python and/or Linux comes with Perl)? </p>
<p>I am aware of Batch scripting but I am hoping for something a little more robust. Thanks</p>
<p><strong>note -</strong> I am on a Linux box so if you guys could give your 2 cents on the Windows scripting languages, it would be appreciated, thanks.</p>
<p><strong>part deux -</strong> even though ebgreen hates me i accepted his answer because he gave me his 2 cents. </p>
http://stackoverflow.com/questions/516305/bash-completion-for-make-with-generic-targets-in-a-makefile/516751#516751-2Answer by theman_on_vista for Bash completion for make with generic targets in a Makefiletheman_on_vista2009-02-05T16:48:50Z2009-02-10T18:09:11Z<p>$ make -qp | grep '^[^.#].<em>: '
all: bin1 bin2 bin3
bin1: obj1.o obj2.o obj3.o
obj1.o: obj1.c obj1.h
...
$ make -qp | sed -n -e 's/^([^.#[:space:]][^:[:space:]]</em>): .*/\1/p'
all
bin1
obj1.o
...</p>
<p>The -q prevents Make from actually running anything, and the -p asks it to dump its database.</p>
<p>Then all you need to do is write and register a completion function (example).</p>
http://stackoverflow.com/questions/533057/php-instead-of/533119#5331191Answer by theman_on_vista for <?php instead of <?theman_on_vista2009-02-10T16:40:50Z2009-02-10T16:55:25Z<p>I believe <code><?</code> is going to become deprecated in newer versions of php.
<p>.. How do I type that with no space in between?</p>
<p>EDIT - thanks</p>
http://stackoverflow.com/questions/528399/what-should-linux-unix-make-install-consist-of/528412#5284121Answer by theman_on_vista for What should Linux/Unix 'make install' consist of?theman_on_vista2009-02-09T14:46:26Z2009-02-09T14:46:26Z<p>make install is usually the step that "installs" the binary into the correct place.</p>
<p>For example, when compiling Vim, make install may place it in /usr/local/bin</p>
<p>Not all Makefiles have a make install</p>
http://stackoverflow.com/questions/525589/future-of-fusebox-framework/528305#5283051Answer by theman_on_vista for Future of Fusebox frameworktheman_on_vista2009-02-09T14:21:14Z2009-02-09T14:21:14Z<p>At work we use Fusebox (php)... IT SUCKS!!</p>
<p>If at all possible, I would definately suggest migrating a more "hip" framework.</p>
<p>Although..
What I do, and this seems to aleviate most of my beef with the framework, is to write template files, include that from the switch, and also calculate any "run time" parameters inside that same case statement as well. That promotes good code reuse.</p>
<p>But I mean..
having 1 huge switch statement? Isnt that a code smell for "this should be an object?".
It reminds me of a procedural version of a RoR controller class. (I am not a RoR guy..just saying)</p>
http://stackoverflow.com/questions/526125/why-is-python-ordering-my-dictionary-like-so/526207#5262078Answer by theman_on_vista for Why is python ordering my dictionary like so?theman_on_vista2009-02-08T18:50:35Z2009-02-08T18:50:35Z<blockquote>
<p>The definition of insanity is doing the same thing over and over again and expecting different results</p>
</blockquote>
<p>-Einstein</p>
http://stackoverflow.com/questions/4943/is-it-a-good-idea-to-put-easter-eggs-in-applications/131829#131829Comment by theman_on_vista on Is it a good idea to put Easter Eggs in applications?theman_on_vista2009-03-05T17:53:36Z2009-03-05T17:53:36Zgreg, go take your self-righteousness else wherehttp://stackoverflow.com/questions/615181/what-is-a-serial-version-id/615200#615200Comment by theman_on_vista on what is a serial version id?theman_on_vista2009-03-05T15:15:19Z2009-03-05T15:15:19Zthanks for your responsehttp://stackoverflow.com/questions/610728/how-to-handle-duplicate-questions/610813#610813Comment by theman_on_vista on How to handle duplicate questions?theman_on_vista2009-03-04T15:52:00Z2009-03-04T15:52:00Zto be honest, i didnt even read this questionhttp://stackoverflow.com/questions/590963/java-databufferbyte-returning-data-with-1s/590996#590996Comment by theman_on_vista on Java DataBufferByte returning data with -1's?theman_on_vista2009-02-26T15:44:08Z2009-02-26T15:44:08ZThanks. This is a very interesting project I am working on, I havent really ever dealt with data in terms of bits before.http://stackoverflow.com/questions/580339/most-simple-sound-format/580345#580345Comment by theman_on_vista on Most simple sound format?theman_on_vista2009-02-24T03:26:50Z2009-02-24T03:26:50Zerr... in reference to the header and larger byte sizehttp://stackoverflow.com/questions/580339/most-simple-sound-format/580345#580345Comment by theman_on_vista on Most simple sound format?theman_on_vista2009-02-24T03:25:07Z2009-02-24T03:25:07Zyea, bitmap images work the same way. thankshttp://stackoverflow.com/questions/565458/java-event-handlers/565466#565466Comment by theman_on_vista on Java event handlerstheman_on_vista2009-02-20T14:27:36Z2009-02-20T14:27:36Zlol ... seriously though, i think i love javahttp://stackoverflow.com/questions/565458/java-event-handlers/565495#565495Comment by theman_on_vista on Java event handlerstheman_on_vista2009-02-19T14:20:42Z2009-02-19T14:20:42ZThanks for the input, I will keep this in mind should I run into a similar problemhttp://stackoverflow.com/questions/565458/java-event-handlers/565469#565469Comment by theman_on_vista on Java event handlerstheman_on_vista2009-02-19T14:17:29Z2009-02-19T14:17:29ZI havent used closures because i didnt understand them, but your comment is starting to connect some dots for me, thankshttp://stackoverflow.com/questions/565458/java-event-handlers/565466#565466Comment by theman_on_vista on Java event handlerstheman_on_vista2009-02-19T14:15:38Z2009-02-19T14:15:38Zhaha, after about a year of php, working on this project in java is an absolute delight! a real language api is something i took for granted.http://stackoverflow.com/questions/558829/when-did-so-allow-questions-and-answers-from-non-openid-users/558832#558832Comment by theman_on_vista on When did SO allow questions and answers from non-OpenID users ?theman_on_vista2009-02-17T21:37:14Z2009-02-17T21:37:14Zand AMEN to that !!!!http://stackoverflow.com/questions/558440/solution-structure-best-practices/558489#558489Comment by theman_on_vista on solution structure / best practicestheman_on_vista2009-02-17T20:06:29Z2009-02-17T20:06:29ZI sense a bit of "analysis paralysis" in his question.http://stackoverflow.com/questions/558134/is-using-a-web-server-like-lighttpd-and-nginx-in-most-cases-just-premature-optimi/558159#558159Comment by theman_on_vista on Is using a Web Server like Lighttpd and nginx in most cases just Premature Optimization?theman_on_vista2009-02-17T20:02:15Z2009-02-17T20:02:15ZI agree. It never dawned on me there are other http daemons out there besides apache. I tried lighttpd and found its configuration file an absolute delite to work with (in comparison to that archaic httpd.conf mess)http://stackoverflow.com/questions/558134/is-using-a-web-server-like-lighttpd-and-nginx-in-most-cases-just-premature-optimi/558436#558436Comment by theman_on_vista on Is using a Web Server like Lighttpd and nginx in most cases just Premature Optimization?theman_on_vista2009-02-17T19:58:16Z2009-02-17T19:58:16Za female?? a/s/l plzhttp://stackoverflow.com/questions/557306/get-php-assoc-array-key-in-loopComment by theman_on_vista on Get PHP assoc array key in looptheman_on_vista2009-02-17T17:06:04Z2009-02-17T17:06:04Zaccept crescentfresh 's answer