Computing desk | ||
---|---|---|
< March 17 | << Feb | March | Apr >> | March 19 > |
Welcome to the Wikipedia Computing Reference Desk Archives |
---|
The page you are currently viewing is an archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages. |
Hi,
I've recently created an animation in Terragen and it's given me a hole heap of bmp's - what is some good software free/shareware which I can use to make it into a movie file (eg avi or mpeg)? --203.54.74.247 11:02, 18 March 2007 (UTC)
Question:
What can you recommend in the way of mouses or pointing devices that are effective and would not contribute to Carpal Tunnel Syndrome - would you recommend gloves, drawing tablets or any other ideas?
Context and Explanation:
Having read the Carpal Tunnel Syndrome article I don't think I'm getting it (because you have to have some forms of numbness or paralysis) - but I am growing rather concerned.
My right wrist cricks a great deal especially if I push my wrist down and then rotate or wiggle my thumb -- and I think the cause is more my mouse than my keyboard (I only get stiffness in my right hand and a lot of stiffness in my right shoulder which gets raised a lot when I use the mouse). Rfwoolf 11:26, 18 March 2007 (UTC)
I have a suggestion, swap the mouse to the other side half the time, to allow the other fingers, wrist, and shoulder to take the strain. Hopefully, you can reverse the button mapping on the mouse when you swap it. It might take a bit of practice to become mouse-ambidextrous, but it will be worth the effort. StuRat 15:28, 19 March 2007 (UTC)
The problem with your mouse is that your arm is not in its natural rest position while holding the mouse. The wrist is bent backwards and the lower arm is rotated by 90° from ellbow to wrist. There are special mice that are held from the side (like you would grab a glass) that are supposed to alleviate this problem.
While I'm at it, I'd like constructive recommendations about ergonomic chairs - such as kneeling chairs and the like.
There's a lot bunch of nonsense on the net and it's actually hard to make sense of it all - right now I have my eye on a kneeling chair on ebay and the price is within my range, but I don't know just how effective these chairs are. Any advice or recommendations would be appreciated? Rfwoolf 13:02, 18 March 2007 (UTC)
Hi, I had one of these once, and it was actually pretty good. You can get a slightly sore lower back at first, but it seems to get better. I would strongly recommend you don't see them as "the" ergonomic chair, because if they were that good, government departments would have thrown out their old chairs long ago. I would see it as an alternative to prevent a fixed bad posture from setting in, and would rotate between your normal chair and your new one. 203.221.126.212 15:58, 18 March 2007 (UTC)
I am writing some code that translates English calculations such as '3 over 2' into machine readable and calculable format such as '3/2' and then give the input back to the user. For example: User input '3 over 2', program converts input to '3/2', program calculates result and print it to the user '1.5'. Unfortunately, the program insists on returning the answer as an int, as both 3 and 2 are ints, giving a result of 1. Obviously, this is not correct. Does anyone know how to force the evaluation of an expression such as this to be given as a float? I do not want to have to change the input to be '3.0/2'. Thanks --80.229.152.246 13:06, 18 March 2007 (UTC)
from __future__ import division
. Future versions of Python will give the behaviour you want; that import allows you to already write code depending on that future behaviour, easing forward-porting. --cesarb 15:29, 18 March 2007 (UTC)Changing the input is the easiest thing to do, but you could also do: "'%f / %f' % (3, 2)
" --TotoBaggins 13:34, 19 March 2007 (UTC)
I am using Red Hat Fedora Core 3, and cannot copy to CD. What do I need to do to make Fedora write to CD? It's fine for reading CDs, just not writing to them. Also, does anyone know if clip drives work with Fedora 3? The Mad Echidna 13:47, 18 March 2007 (UTC)
Is "Verizon FiOS" the fastest internet in the US? —68.193.147.179 (talk) 15:07, 18 March 2007 (UTC).
That depends on the area and country you're in. Most Japanese have access to much faster Internet connections than FiOS provides. Droud 17:09, 18 March 2007 (UTC)
Hello, I have seen many websites where they have a google search on the page. I cant figure out how to put one on my site. Anyone know how?
Thanks!! --Zach 15:19, 18 March 2007 (UTC)
Is it illegal to use a "chiptune" site (such as http://www.ocremix.org/ or http://snesmusic.org/) to obtain music from old video games (such as Super Metroid from the SNES)? I'm not sure that it would be legal, considering that the music exists within a copyrighted video game, but I am surprised to see that there are so many of these sites with such huge archives. Furthermore, would remixes of original songs also be illegal? Dlempa 15:42, 18 March 2007 (UTC)
Hi, I have a few questions concerning laptops. 1) How does a top-of-the-line MacBook Pro compare with a top of the line PC computer in terms of speed and relibability for everyday usage such as graphics design, web browsing and mild gaming 2) How well does a Windows parallel run on a MacBook Pro? Is it about as fast as Windows on a equivalent PC laptop? 3) Can you upgrade the MacBook Pro with more RAM?
Thanks. Jamesino 17:20, 18 March 2007 (UTC)
I have a 2Ghz MAcbook pro with Parellels, and Windows runs very fast. Everything, except gaming, works perfectly. You can even drag files back and forth, and drag the windows programs along your mac ones. I think it works very well.--Ryan 03:52, 20 March 2007 (UTC)
The first question: I don't really know what you are talking about. As in, if you are asking about the laptop specs, or the OS. Just because it is a mac doesnt mean the specs mean different things, no. Just look at the specs as if it is a normal laptop. You can dual boot, so reliability comes down to the OS, and windows will be the same as on any pc. Vespine is a bit of an idiot, you don't need "leet programming skills" to run parrelels. It should be about the same as running it native, but perhaps a bit slower, as you are also running os x at the same time, and it still emulates some things. --91.108.193.62 00:23, 24 March 2007 (UTC)
I'm wanting to produce some clear, simple time-domain and frequency domain plots of audio signals for a audio processing assignment I'm working on. Audacity does both, but I want to produce more "generic" plots where the particular GUI of the audio editor is not visible. For instance, if I want to display the time-axis information in Audacity, I have to show other parts of the program which is most undesirable.
http://img.waffleimages.com/2125764ae49011cfd7de2c41f1d106b708c6cb7e/img24.png
The picture above is an example of what I'm looking for. In particular, there are horizontal and vertical lines at the marked values for the axes. Naturally, I'll want control over how "zoomed in" I am to a specific plot, vertically and horizontally, and make it simple to load in any wave file.
My assumption is that more customisable, generic plots can be produced using some kind of maths package , but if there's a nice GUI program for outputting custom generic plots that would be preferred. Thanks. 164.11.204.51 18:33, 18 March 2007 (UTC)
How are the ATI Mobility Fire GL V5250 256MB graphic chip found inside Lenovo ThinkPad T60p's? Can they be used for gaming and intensive photoshop graphics design and web design? Where in the performance spectrum of graphic chips do they stand? Thanks. Jamesino 20:15, 18 March 2007 (UTC)
I just installed Vista a few days ago, and most things are working correctly, though I am having trouble with the default programs. I have Vista business, and when I go to "Default Programs", I click on "Set program access and computer defaults", and then I change my browser to Firefox and my media player to iTunes, and then I save settings. However, next time I open Firefox, it says it is not the default browser, and when I look at the default programs again they are back as before. No matter how many times I do it, my settings are not saved. What can I do about this? —Akrabbimtalk 21:02, 18 March 2007 (UTC)
How do you set the default applications to open certain files in Mac OS X. For example, how do you set Pages as the default file to open Word documents, rather than Word? I'd greatly appreciate any help! Thanks, --Fadders 21:59, 18 March 2007 (UTC)
I'm posting this in computing because, while it could apply to Wikipedia, it could easily apply to any other wiki-format...
I know very little about the SVG format at this time. As I understand it, SVG is a text-based format, possibly even ASCII-based. Therefore, it is more of a markup language than a binary image format. Assuming it is human-readable, is it reasonable to make wiki-SVGs? My idea is that the SVG file will be a wiki-page (like this). People can go into the text and improve the SVG. Also, if that were to work, I would be interested in expanding one SVG from another. For example, have an SVG map of Hawaii. Then, instead of copying the whole SVG for a map with a big red dot on Honolulu, I can tell the Honolul SVG to use the Hawaii SVG and add the red dot. In fact, it should be possible to include multiple SVGs into one - such as comparing the size of two states. You can include one on the left and one on the right in a new SVG and then draw some milage ruler between them. Hopefully this idea makes sense. I just wanted to know if it was feasible before spending much time investigating the possibilities of SVGs. --Kainaw (talk) 22:51, 18 March 2007 (UTC)
I recently bought an MP3 player. It's supposed to connect to my computer via USB and start working right away. However, it keeps registering as "Unknown device" on my computer. It didn't come with a device driver on the installation CD. I've contacted the producer's customer support line several times, and they ended up telling me to contact Microsoft. They told me to search for the device driver on the Windows XP installation CD, but that didn't work. I've been having a lot of trouble with hardware that's supposed to work right out of the box, but it always registers on my computer as "unknown device." If it means anything, I have an authentic version of Window XP Home edition. I would greatly appreciate any advice on fixing this problem. Thank you!--El aprendelenguas 23:07, 18 March 2007 (UTC)
It's an e200 Sansa MP3 player with 2GB storage, made by Sandisk. It is not listed under My Computer at all. The only listing of it I can find is under Device Manager under "Universal Serial Bus controllers" as an "unknown device." I've looked at the Sandisk website, but I've only found "firmware"—no driver—for the MP3 player, and I didn't think that would help me with this issue. Like I said, this isn't the first time I've gotten the "Unknown device" message after plugging in hardware to the USB, but then again I have successful connected other devices in the past.--El aprendelenguas 01:35, 19 March 2007 (UTC)