Jump to content

Wikipedia:Reference desk/Computing

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Davidbreina (talk | contribs) at 12:30, 10 February 2008 (→‎Wine / Ubuntu). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Welcome to the computing section
of the Wikipedia reference desk.
Select a section:
  • [[:|{{{1}}}]]
Want a faster answer?

Main page: Help searching Wikipedia

   

How can I get my question answered?

  • Select the section of the desk that best fits the general topic of your question (see the navigation column to the right).
  • Post your question to only one section, providing a short header that gives the topic of your question.
  • Type '~~~~' (that is, four tilde characters) at the end – this signs and dates your contribution so we know who wrote what and when.
  • Don't post personal contact information – it will be removed. Any answers will be provided here.
  • Please be as specific as possible, and include all relevant context – the usefulness of answers may depend on the context.
  • Note:
    • We don't answer (and may remove) questions that require medical diagnosis or legal advice.
    • We don't answer requests for opinions, predictions or debate.
    • We don't do your homework for you, though we'll help you past the stuck point.
    • We don't conduct original research or provide a free source of ideas, but we'll help you find information you need.



How do I answer a question?

Main page: Wikipedia:Reference desk/Guidelines

  • The best answers address the question directly, and back up facts with wikilinks and links to sources. Do not edit others' comments and do not give any medical or legal advice.
See also:


February 4

Code

What computer language would the most useful to learn? In other words, which code would be useful in the most situations? I don't have any specific application in mind, but if I'm going to learn a code, it should be the most useful one. Thanks, Zrs 12 (talk) 00:55, 4 February 2008 (UTC)[reply]

Most major applications, including operating systems, tend to be written in C or C++. More useful for web use would be something like PHP or Ruby on Rails. If you're interested in just writing simple scripts for little things, try Perl or Ruby. --Evan Seeds (talk)(contrib.) 01:01, 4 February 2008 (UTC)[reply]
Not exactly code, but regular expressions are super useful. :) --Kjoonlee 02:41, 4 February 2008 (UTC)[reply]
Code doesn't mean "programming language", but rather a sequence of statements in some programming language. Java can be useful in many situations. -- Meni Rosenfeld (talk) 12:00, 4 February 2008 (UTC)[reply]
It depends on what you want to program. web pages or flash games or scientific calculations or database searches etc etc...
It is a good idea to learn a simple language if you're a beginner to make sure you understand the basics of programming
Also I recommend being aware of the features in LISP or something similar.
Being able to create pseudocode may be useful if you know someone who can program.87.102.90.249 (talk) 12:46, 4 February 2008 (UTC)[reply]
I think PHP is a pretty good language to start out with. You'll get good-looking, useful results very quickly (since you don't need to do anything other than HTML to build an interface), and its syntax is fairly straightforward. Additionally, you'll probably end up learning a good bit about how the web works (HTML, GET/POST file attachments, headers, cookies, CSS, etc.) in the process, so it's like getting two bits of knowledge for the price of one. It's not enough to call yourself a computer programmer, but really any language that will get your feet wet is fine when you are starting out. --24.147.69.31 (talk) 00:48, 5 February 2008 (UTC)[reply]
The problem with PHP is that, while it's indeed a good language for writing dynamic web pages, it's not very convenient for anything else. If you indeed want to learn a single, general purpose language, I'd go with Perl. It's easy to get started with, very convenient for simple one-off tasks while still scaling up reasonably well to larger applications, usable for most purposes (except heavy number-crunching) and quite popular and well-established with a large user base and a huge library of pre-existing code. Perl tends to be flexible and excels at odd jobs and as a "glue language" between other programs; it has variously been described as a "swiss army chainsaw" or "the duct tape of computing". Also, if you learn Perl you inevitably also end up learning regular expressions, which, as Kjoonlee notes, are useful by themselves. The main disadvantage of Perl, of course, is that it often tends to look like line noise. (Mind you, I have no wish to start a Perl/Python/Ruby holy war; all are good languages and fairly well suited to the requirements given. In fact, once you feel you know enough Perl to get by, I'd suggest finding a Python tutorial and browsing through it, just to see that things can be done differently.) —Ilmari Karonen (talk) 18:22, 5 February 2008 (UTC)[reply]
Machine code, skip the middleman. I started with C++, and that's what I work in now (well C mostly). You really need to have an application in mind in order to decide because every language has its quirks that make it better for one thing or another. Mad031683 (talk) 21:47, 5 February 2008 (UTC)[reply]

Putting clips together?

Is there a program that helps me put my camera's movie clips together if I have windows? Also it would help if it would be free. thnx!! (Superawesomgoat (talk) 02:05, 4 February 2008 (UTC))[reply]

Windows Movie Maker does this. --jh51681 (talk) 03:31, 4 February 2008 (UTC)[reply]
You could try virtualdub. Its free and has many more features than Movie Maker. Website Think outside the box 10:43, 4 February 2008 (UTC)[reply]
Though it is not free, I am very partial to Quicktime Pro. (It's not expensive, though.) It lets you do that sort of simple thing very easily, export it to any format you want, and is very reliable, very fast, very easy to use. If I recall, VirtualDub only works with AVI files, which can be a bit limiting. --24.147.69.31 (talk) 14:50, 4 February 2008 (UTC)[reply]

SONGS PROGRAM on C++

Design and implement a class to represent a song. Keep your design fairly simple for now -- you will be modifying this in future assignments. A song will be represented by a name (String), artist (String), and duration time (integer). Note that for now the time will be represented by the number of seconds needed to play the song. Your class should include at least one constructor as well as accessors for name, artist and time (no modifiers). You should also include operator== and operator!=. Two songs are "equal" (==) if both their names are equal and their performing artists are equal. In addition, include the comparison operator operator<. Song1 is < song2 if either the name of song1 < name of song2, or, if the names are the same, then if the artist of song1 < artist of song2. Similarly, include the operators: operator<=, operator>, operator>=.

In addition, include the operator<< as a friend to this class. When you display a song, print the name and artist in a reasonable format, and print the duration time in the format min:sec. For example, if a song is 97 seconds long, the time should be displayed as 01:37 (one minute and 37 seconds).

Write a separate test program that will do unit testing for your Song class. Plan how to thoroughly test this class (cf Chapter 2, section 2.3). Also, generate test runs that shows the results of your testing.

Challenge: Although this is not required, you could use a test framework, such as CppUnit, for your unit testing. Another possibility is to have your constructor throw an exception if the duration time of the song is not valid (e.g. a negative integer). —Preceding unsigned comment added by 74.71.215.140 (talk) 06:07, 4 February 2008 (UTC)[reply]

Do your own homework. Dlong (talk) 06:21, 4 February 2008 (UTC)[reply]
He/She could have taken some effort to make this not so blatently obvious. 206.252.74.48 (talk) 17:07, 4 February 2008 (UTC)[reply]
I agree. The minimum effort in copying your assignment verbatim is to take out all the bits that flat-out admit it's an assignment. Not that we couldn't guess it anyway, but admitting it is a blatant insult. JIP | Talk 20:09, 4 February 2008 (UTC)[reply]
I particularly like the references to the text. If you're having trouble this early in the semester it may be time to drop the class... and change majors because that should take about 10 minutes. Mad031683 (talk) 21:38, 5 February 2008 (UTC)[reply]
Yes, exactly. The references to the text could be of more help if we could actually get to read the text. JIP | Talk 22:50, 5 February 2008 (UTC)[reply]

About data storage

Hi,

I'm using Blog.i have 1 doubt where the messages are saved in the blog. If it contains any database. and where is it?

reply soon... —Preceding unsigned comment added by 58.68.67.162 (talk) 12:13, 4 February 2008 (UTC)[reply]

What blog? www.blog.com? Regardless, blog entries are saved in a database that is usually on the same server as the blog service. Sometimes the database is on a separate but nearby server. -- kainaw 13:39, 4 February 2008 (UTC)[reply]

set up "On Demand" DSL Connection

How do I Configure a software to use my DSL Connection

To use "On Demand" DSL connection , I will have to be set up in Windows(xp professional) for Dial Up Networking (DUN). —Preceding unsigned comment added by Thepainter2 (talkcontribs) 13:13, 4 February 2008 (UTC)[reply]

Bridging Networks....

Hi...I have a laptop with a wireless network card. I use this to connect to other laptops in ad-hoc mode. I also have a wired LAN which I use frequently. Is there any way to bridge both the networks?? I know that wireless and wired LAN can be somehow bridged in XP but I don't know how to do that. Also is there a special way for the same in Vista?? I want to bridge the network so that I would be able to play multiplayer games with users of both the LANs simultaneously. Please help... —Preceding unsigned comment added by Piyushbehera25 (talk • contribs) 16:54, 26 January 2008 (UTC)


The control panel thing was good but I was not able to connect to both the networks simultaneously.Please suggest another way...

I don't really understand what you're trying to do and how to help without more information about this game. Bridging is unlikely the answer you're looking for (Network Bridge for more details). Most games use a Client/Server system, whereby all the clients connect to a central server that hosts the game. So as long as you're the one hosting the game, and you can communicate with users in both networks, then there shouldn't be a problem, as the server app. should be able to communicate with all users (clients). The simplest solution to your woes is to put every user on the same subnet. By connecting to two networks, Window's routing table should be updated automatically to allow you to access both networks simultaneously (try testing with ping). It does not however allow users from one network to communicate with each other without a network bridge or router. Tetsuox (talk) 10:08, 5 February 2008 (UTC)[reply]


Ya I tried that but it does not work always(although the subnet of all users are equal) especially if there is a user running Vista i.e. if I host a game server users of any one network not both are able to see it...how to solve this problem. I also want that users of both the networks be able to connect to each other(I wanted to know about network bridge for that matter). Please suggest some method..

Wireless Networking

I have an ADSL wired router which connects up my desktop. Recently I purchased a laptop which I connected to the router with a cable. It would be very handy to have a wireless network now so I can move the laptop around. Simple, no? Get a wireless router I would think. But I am very confused as to why there are so many different ones! What are the differences? What is the difference between a router and an access point? —Preceding unsigned comment added by 83.147.138.67 (talk) 14:01, 4 February 2008 (UTC)[reply]

Package management on the Mac

Is there a good, web-based package manager for the Mac? I know about Fink and MacPorts only from their Wikipedia articles. How do these, and other such software (if it exists), compare to apt/Synaptic in Debian? Is there a list of available packages somewhere, and to they work as reliably as they do in Debian? Is using such a tool a one-way ticket to Dependency Hell? --NorwegianBlue talk 15:17, 4 February 2008 (UTC)[reply]

Just to clarify my own question, in case I wasn't making myself clear. I am talking about a package management system for the management of an open-source subset of the total collection of software on the machine. I assume that the OS itself will not be managed by the package management system, nor will commercial programs. I am asking because I currently use a dual boot PC with XP and Linux. I want to upgrade, and consider switching from the Windows environment. However, Linux-only is not an option, due to its limited hardware support. I was hoping that by using a Mac with a package manager for the open-source subset of the software, I would get the best of both worlds. --NorwegianBlue talk 12:12, 5 February 2008 (UTC)[reply]

Fortran

Does anyone here know Fortran? —Keenan Pepper 17:01, 4 February 2008 (UTC)[reply]

Those found in Category:User for, and probably many more. − Twas Now ( talkcontribse-mail ) 17:32, 4 February 2008 (UTC)[reply]
Those found in Category:User for, and probably many more. (above - decided not to edit your answer - missing colon.87.102.90.249 (talk) 17:42, 4 February 2008 (UTC)[reply]
I edited it because it was causing this page to be added to the category. -- BenRG (talk) 19:43, 4 February 2008 (UTC)[reply]
be brave and ask a fortran related question...87.102.90.249 (talk) 17:40, 4 February 2008 (UTC)[reply]
I did. No one answered. You'd have found it if you had searched this page for either Fortran or my name. —Keenan Pepper 05:43, 5 February 2008 (UTC)[reply]
Or if you'd linked to it like this Wikipedia:Reference desk/Computing#Fortran program copied from manual doesn't work correctly
Forgetting to read "How to ask a question" ... "Be Patient" ... "A complete answer to your question may be developed over a period of up to four days." .. —Preceding unsigned comment added by 87.102.114.230 (talk) 19:52, 5 February 2008 (UTC)[reply]

It might be a good idea to read recursion specifically the part around

Use of recursion in an algorithm has both advantages and disadvantages. The main advantage is usually simplicity. The main disadvantage is often that the algorithm may require large amounts of memory if the depth of the recursion is very large. It has been claimed that recursive algorithms are easier to understand because the code is shorter and is closer to a mathematical definition, as seen in these factorial examples. It is often possible to replace a recursive call with a simple loop, as the following example of factorial shows:"

in Recursion#Recursion_in_computer_science (refering to a different function) (emphasis mine)- your example is a case of a pointless recursive algorhthym - a loop would be better.87.102.114.230 (talk) 20:22, 5 February 2008 (UTC) That section also explains briefly when recursion is a good idea - in general it's a good idea when the proceedure can't be done easily in a simple loop - not the case here.87.102.114.230 (talk) 20:25, 5 February 2008 (UTC)[reply]

Okay... tell that to the ISO or ANSI committee who wrote the manual, because I had nothing to do with it. —Keenan Pepper 06:24, 6 February 2008 (UTC)[reply]
Why are you so stupid? —Preceding unsigned comment added by 87.102.116.134 (talk) 15:27, 6 February 2008 (UTC)[reply]
... Touché. —Keenan Pepper 01:08, 7 February 2008 (UTC)[reply]

Computer speed.

Hi guys i recently got a new Medion computer for christmas, and it runs Windows Vista Basic. However its not as fast as i would like it to be. It has a 3.46GHz Intel Celeron D processor (is this any good?) but only 512mb of RAM. I know that's not the best amount, but what would be the best way to make the computer run a bit faster? —Preceding unsigned comment added by 91.109.51.197 (talk) 17:38, 4 February 2008 (UTC) 91.109.51.197 (talk) 17:40, 4 February 2008 (UTC) sorry.[reply]

If you have too little RAM for your needs, the best way to make it faster is to add more RAM. And it's generally cheap, too. Friday (talk) 17:43, 4 February 2008 (UTC)[reply]
(edir conflict)512MB is the absolute minimum for Vista Home Basic. You would most likely get significant speed improvements by putting in at least another 512MB of memory. I'd recommend putting in as much memory as your system supports and your can afford. --LarryMac | Talk 17:44, 4 February 2008 (UTC)[reply]

thanks, so more RAM would be the best option? Can you recommend a specific product, and also, what makes the price of it differ so much? i've just been on Amazon and found 1GB for £11,98, and then anothe 1GB of RAM, by the same company, for £40. Plus, can you just plug it into a PCI slot on your motherboard or does it require more specialised installation?91.109.51.197 (talk) 17:58, 4 February 2008 (UTC)[reply]

RAM does not go into a PCI slot, there will be specific slots on the motherboard that are for memory. One of the reasons you would see a large range of prices is because there are many types of computer memory, and they are not interchangeable. While it is not generally considered a difficult task to add memory, perhaps you would be more comfortable in taking your system somewhere to have this done, so that you are sure to get the correct type and have it taken care of quickly. --LarryMac | Talk 18:13, 4 February 2008 (UTC)[reply]
Ahem. If you bought a Medion, you basically wasted every cent spent on it. --Ouro (blah blah) 19:31, 4 February 2008 (UTC)[reply]
It was a gift, remember. − Twas Now ( talkcontribse-mail ) 22:39, 4 February 2008 (UTC)[reply]
Oh, right. Sorry. --Ouro (blah blah) 08:26, 5 February 2008 (UTC)[reply]
Installing RAM is as easy as putting a card into a PCI slot, it's just that the slots aren't PCI but a different type. If it's a desktop computer it probably takes DDR2 DIMMs, which have names like PC2-xxxx. If it's a laptop computer it probably takes DDR2 SO-DIMMs, which also have names like PC2-xxxx, so you need to look for the presence or absence of the "SO". The -xxxx part doesn't matter; larger is "better", but not in any way you're likely to notice. The "2" in "PC2" does matter, though. -- BenRG (talk) 19:49, 4 February 2008 (UTC)[reply]

Can the OP downgrade to Windows XP (hopefully Pro) from Vista Basic for no additional cost? You can live with Windows XP on 512 MB RAM unless you do heavy computing stuff. Kushalt 04:37, 5 February 2008 (UTC)[reply]

You can also live without sandwiches, melted cheese, and computers, but is it worth it? :) Second on the downgrade, if you can, get xp. --Ouro (blah blah) 06:51, 5 February 2008 (UTC)[reply]

Even if you cannot get a free downgrade, you may not need to shell out a lot of money. If you are enrolled in an academic institution, you can get Microsoft Windows XP at a discount as Froth told me. Kushalt 15:19, 5 February 2008 (UTC)[reply]

Also remember that if all the slots are taken up, you might need to remove the existing RAM to install new ones. It is advisable to downgrade to Windows XP if you can do so with little or no monetary expense. Kushalt 15:20, 5 February 2008 (UTC)[reply]

If you plan to upgrade the RAM yourself, remember that you will need a method of preventing electrostatic damage as a motherboard is a sensitive device. A ground mat and an antistatic wrist strap should do the trick. Seraphim♥ Whipp 15:35, 5 February 2008 (UTC)[reply]

Or you could just find another way to ground yourself (touch something large and metal), and avoid doing it on carpet or anything like that. I see the wrist strap and ground mat as a good investment if you do that sort of thing all the time, but if it's a one-time installation, it's a bit overkill. --24.147.69.31 (talk) 15:45, 5 February 2008 (UTC)[reply]
Oh I don't know...an anti-static wristband will only cost a few quid and my boyfriend used a rubber doormat when he built his computer :). Another alternative is to keep touching the anti-static packaging that the RAM comes in. Seraphim♥ Whipp 16:07, 5 February 2008 (UTC)[reply]
No offense meant to the original questioner, but such things seemed outside his/her ken, which is why I recommended getting the memory installed by somebody. --LarryMac | Talk 15:50, 5 February 2008 (UTC)[reply]

After a bit of digging, I found [1]. Basically, if your Vista came with the computer (OEM software), then Microsoft will not allow you to downgrade Vista to XP unless it is Vista business or vista ultimate. Kushalt 09:37, 6 February 2008 (UTC)[reply]

Switching from vista to XP appears to be very unsupported by microsoft. on the other hand, one of the options it offers from the desktop or control panel or somewhere equally obvious (just farting around with it last night) is 'ten ways to speed up Vista' which includes instructions on how to disable all the fancy graphics. pretty amazing when the operating system comes with instructions to disable part of it to speed it up. Gzuckier (talk) 19:24, 6 February 2008 (UTC)[reply]

ASP.NET problem

I have a problem with ASP.NET validators. I need a client-side validator that reads two dates, each from a separate user-editable text field, and compares which is the older and which is the newer. Specifically, I have to let the user enter the validity period of an order, and the validator needs to check that the order's validity doesn't end before it starts. This has to be done entirely on the client side. How can this be done? JIP | Talk 19:17, 4 February 2008 (UTC)[reply]

CompareValidator can compare dates. — Matt Eason (Talk &#149; Contribs) 20:12, 4 February 2008 (UTC)[reply]
Cool! I knew it could, but I had always figured it could only compare a date against a constant, not against another user-entered date. Thanks! JIP | Talk 20:14, 4 February 2008 (UTC)[reply]

Aero-style look and feel for Linux?

One of the very few things I like about Windows Vista is the new Aero eye candy. Is there a similar flashy look and feel for Linux desktops (Gnome or KDE perhaps)? I think I have the necessary CPU and GPU power. All I want is the visual graphical goodness. The OS itself and the desktop environment can remain the same, thank you very much. Is there such a thing? JIP | Talk 19:19, 4 February 2008 (UTC)[reply]

Would Compiz do what you want? --LarryMac | Talk 20:18, 4 February 2008 (UTC)[reply]
OK, so how the bloody hell do I change my window manager on a Fedora 8 system running Gnome? After I installed Compiz, I tried "compiz --replace". This left me with Gnome running without any window manager. I rebooted, and this left gdm unable to start up. After Fedora 8 has loaded, the entire display turns off, not receiving any input. Now, if I boot into single-user mode and manually run gdm, I am able to manually launch any window manager I want, but the changes never stay. If I even log out (not reboot), the display turns off again. And I don't even need to tell you that if I boot Fedora 8 as normal (not single-user mode), gdm doesn't work. How can I even get my Metacity back? Assume I know how a basic Unix-like system works, but I know nothing whatsoever about X Windows, Gnome, or window managers. What files do I need to check and change to get the system to run gdm and Metacity again? As a last resort, I can always reinstall Fedora 8, destroying the root partition but keeping my home partition intact, but I'd rather avoid that. JIP | Talk 22:04, 4 February 2008 (UTC)[reply]
For matters like this, I'd suggest you take it to a Fedora forum (indeed, you'd have done well to take your original query there since you'd probably find instructions on how to deal with Compiz as well). Sorry if I've made false assumptions. ----Seans Potato Business 23:33, 4 February 2008 (UTC)[reply]
JIP, there just happens to be a version of Fedora that looks a lot like Vista, and I think it has the Aero look and feel from Vista as its default look, if I'm not mistaken. It's called Vixta (only one letter difference), and their homepage is at http://vixta.sourceforge.net. However, there is one major difference here in that it uses KDE instead of GNOME for its desktop, but I think this sounds like what you may very well be looking for -- and it's based on Fedora, no less! —Preceding unsigned comment added by Fredbird67 (talkcontribs) 00:04, 5 February 2008 (UTC)[reply]
PS -- I just found such a theme for GNOME, so it sounds like you should be able to install this from within GNOME. Try looking at http://www.gnome-look.org/content/show.php/Complete+Vista+Aero+theme+(automated)?content=72318 and tell me if that isn't what you've been looking for. —Preceding unsigned comment added by Fredbird67 (talkcontribs) 00:09, 5 February 2008 (UTC)[reply]
That looks all well and good as such, but it looks too much like Windows Vista. I want flashy colours and shiny buttons and translucency - I don't want an exact copy of the Vista UI. A theme with an original idea would have been better. JIP | Talk 17:39, 5 February 2008 (UTC)[reply]
Take a look at KDE 4. Good review with images here. --

Kesh (talk) 22:36, 5 February 2008 (UTC)[reply]

No don't try KDE! I'll be at work in a few minutes, I'll upload a slick screenshot of my murrine + compiz, and JIP will be wowed :O :D\=< (talk) 12:43, 6 February 2008 (UTC)[reply]
It's not "aero", it's better! http://img101.imageshack.us/img101/2079/screenshot2ws7.png :D\=< (talk) 13:16, 6 February 2008 (UTC)[reply]
Check out the Beryl (window manager). Perhaps the easiest way to try it out is with a Sabayon Linux LiveDVD.
--68.0.124.33 (talk) 01:33, 9 February 2008 (UTC)[reply]

wireless internet not connecting(1)

The question was moved further down the page by the OP, so I'm deleting it here. (Don't bite, she's new here). --NorwegianBlue talk 19:17, 10 February 2008 (UTC)[reply]

opening ports so that i can open programmes and download patches properly

I'm downloading a patch for the multiplayer online computer game, WORLD OF WARCRAFT, and ALWAYS it takes AAAAAAAGES doing so. Literally!

The downloader says the computer is behind a firewall, but i always try turning of my firewall and it doesnt change so i KNOW it is not behind a firewall. I am not at all any good at the technical bits about computers, but i know enough to know that it might just be the PORT (also called gateway???) to that programe that has not been opened. This time in particular, it has gone deeeeeaaad-slow, i have downloaded 30% at this point, and well, 2 hours at least must have passed by now.

So i just have to try do something, once and for all so that i can finally download properly. this has always been a problem you see...

The blizzard downloader is already open, but i thought I shud try open the port to the downloading programme itself, i dont know if thats right to do, but i thought i shud try. but now the problem is that i cannot find the portnumber to the downloading programme, in fact i dont know where to find ANY portnumbers at all to ANY programmes... i dont know where..

Maybe you could help me find this and tell me how to do it. i think i maybe know how to do it if i only knew the portnumber but i am not sure...

and if i am wrong, and if there are other, better and more correct ways to fix this problem, i would be most grateful to learn by someone who knows.

I fear it will take another 5 hours if i dont get any help... and just so it is said, i have a fast and strong computer so that is not an issue. and if it is of importance, i have windos VISTA, not XP. maybe good to know if you will tell me where to find things, as the menus are a little bit different maybe.

Thanks :)

85.164.184.170 (talk) 20:40, 4 February 2008 (UTC)[reply]

Messing with ports can be dangerous... they're closed for a reason a lot of the time. Another possible reason for your slow download is Blizzard's servers... if you have 1,000 people downloading all at once that's gonna strain their servers and thus make it slow. You just have to be patient I guess. What speeds are you getting atm? And how big is the file? Also, don't leave your firewall down too long! ScarianCall me Pat 22:24, 4 February 2008 (UTC)[reply]
Are you doing this over a wireless router? The odds are that the router is blocking the ports, not your personal firewall. Configuring a router to open select ports is not entirely easy (and varies depending on the type of router it is), and requires knowing exactly what ports to open. --24.147.69.31 (talk) 00:39, 5 February 2008 (UTC)[reply]
I've never used the Blizzard downloader, but I gather it's some kind of peer-to-peer thing. If so, enabling outside connections to the appropriate port(s) is quite likely to improve your download speed. It's also quite safe, provided you don't open any of the small number of dangerous ports. The dangerous ports all have numbers below 1024, and any sane peer-to-peer program will only use port numbers above 1024. You do need to know the right port number, and Blizzard should make that very clear (since a lot of people are going to have this problem). Once you know that, if you have a DSL/cable router, "port forwarding" is what you need to set up. -- BenRG (talk) 01:01, 5 February 2008 (UTC)[reply]
Here ya go mate- If you are behind a router go to portforwarding.com and find your model to get instructions to open ports 6112, 3274, and 6881-6999. If not, well, Blizzard downloader is just plain slow. The official story is here 71.59.214.87 (talk) 05:16, 5 February 2008 (UTC)[reply]

noname

Whenever my teachers at school email home a word document to my gmail account, its file name becomes "noname." It looks to be done by "Apple-mail" as thats what the top line of the document shows when opened in word or open office. Is there any way I can fix this on my end, or open it? Thanks --Omnipotence407 (talk) 20:59, 4 February 2008 (UTC)[reply]

The same thing happens to me when I send photos from my cell phone to my gmail account. I just download them and rename them to something with the correct extension and they work fine. —Scott5114 [EXACT CHANGE ONLY] 01:23, 11 February 2008 (UTC)[reply]

Multimedia keyboards

Is there a standard for the keycodes generated by the extra keys on a multimedia keyboard, or is it just chance that my Microsoft Natural and generic Compaq keyboards generate the same codes for the volume buttons? --Carnildo (talk) 21:26, 4 February 2008 (UTC)[reply]

At least in Windows there's a standard: winuser.h defines VK_BROWSER_BACK, VK_BROWSER_FORWARD, VK_BROWSER_REFRESH, VK_BROWSER_STOP, VK_BROWSER_SEARCH, VK_BROWSER_FAVORITES, VK_BROWSER_HOME, VK_VOLUME_MUTE, VK_VOLUME_DOWN, VK_VOLUME_UP, VK_MEDIA_NEXT_TRACK, VK_MEDIA_PREV_TRACK, VK_MEDIA_STOP, VK_MEDIA_PLAY_PAUSE, VK_LAUNCH_MAIL, VK_LAUNCH_MEDIA_SELECT, VK_LAUNCH_APP1, and VK_LAUNCH_APP2, and dinput.h defines DIK_MUTE, DIK_CALCULATOR, DIK_PLAYPAUSE, DIK_MEDIASTOP, DIK_VOLUMEDOWN, DIK_VOLUMEUP, DIK_WEBHOME, DIK_WEBSEARCH, DIK_WEBFAVORITES, DIK_WEBREFRESH, DIK_WEBSTOP, DIK_WEBFORWARD, DIK_WEBBACK, DIK_MYCOMPUTER, DIK_MAIL, and DIK_MEDIASELECT. -- BenRG (talk) 00:44, 5 February 2008 (UTC)[reply]
Those are virtual keycodes: what Windows translates the actual keypresses into. I want to know about the codes being transmitted from they keyboard to the computer. --Carnildo (talk) 21:33, 5 February 2008 (UTC)[reply]
Scancode is the concept you're referring to. Taking the first external link from that article (http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html) you'll find quite a long list of PC keyboards and their scancode peculiarities. The ones you mentioned are in section 6 of that document. If you look at the rest of the keyboards, you'll see that e030 for volume up and e02e for volume down are common, but there are some exceptions. This is probably neither a coincidence nor a formal standard, but just a case of manufacturers following the path of least resistance by imitating Microsoft. --tcsetattr (talk / contribs) 22:02, 5 February 2008 (UTC)[reply]

Bebo problems

hi,

i use Bebo social networking thingy but i have a problem....frequently when i try to get on it...via google search/favourties it either says: I Explorer cant display this web page bla bla bla or goes onto this : 'get free spyware/maleware/addware protection and refuses to go ont Bebo....(this is the only website that it happens on!)...if i try to get off this strange anti virus website a box appears asking me if i want to bookmark the page and when i decline puts me back to the strange page...so then i have to exit the internet

help me stop this mayhem!!!!!!!!!!

( i have the latest IE browser (7 i think))

thanks, --The world tour (talk) 21:34, 4 February 2008 (UTC)[reply]

It sounds like you have some type of spyware or adware infestation. Download and run the free utilities Spybot and AdAware. Run a full sweep using your antivirus software as well. Consider using Firefox instead of IE, as FF is less vulnerable to such infections in the first place. --LarryMac | Talk 21:43, 4 February 2008 (UTC)[reply]

939 processor

Has AMD stopped developing faster 939 processors? If not, will there be a quad-core 939 processor? ----Seans Potato Business 23:27, 4 February 2008 (UTC)[reply]

I believe the fastest socket 939 is the FX-60 (that's the one I have, so if there's a faster one, let me know). I think they've just moved on to socket AM2. Useight (talk) 04:12, 5 February 2008 (UTC)[reply]
AMD have now released a quad core -> The Phenom. It runs on a AM2 motherboard, but it runs better on an AM2+ board, themcman1 talk 12:42, 10 February 2008 (UTC)[reply]

Firefox file associations

Is there anyway to change every single file type to open with the default program I have set on my computer? Quicktime plugin likes override my settings every time I update, and I'm tired of manually changing each one. 67.188.81.158 (talk) 23:41, 4 February 2008 (UTC)[reply]

I'm thinking... if you're computer-savvy enough you could copy the portion of the Windows Registry with the correct file associations, and then after each update merge that copied portion back with the Registry, thus overriding any changes. --Ouro (blah blah) 08:32, 5 February 2008 (UTC)[reply]


February 5

Does the Wikimedia Foundation only use free sotfware like the Free Software Foundation?

Does Wikimedia only user free software? Does it run Windows. Does it run GNU/Linux? Jet (talk) 01:21, 5 February 2008 (UTC)[reply]

MediaWiki says the Wikipedia software is open-source. It's written in PHP, so my guess = Apache+PHP+MySQL. Because the website is huuuge, I think it's on Linux or BSD. —Preceding unsigned comment added by Grawity (talkcontribs) 10:00, 5 February 2008 (UTC)[reply]
"The popularity of the Wikimedia projects necessitates the use of many servers, all but two run the GNU/Linux operating system."[2] You can get a list of the exact OSes at the link. Many flavors of GNU/Linux. --24.147.69.31 (talk) 16:58, 5 February 2008 (UTC)[reply]
The list at meta:Wikimedia servers shows mostly various types of Linux, although some Solaris and FreeBSD servers are also listed. —Ilmari Karonen (talk) 17:04, 5 February 2008 (UTC)[reply]

standard TRS microphones unpowered, need solution

I just made a satisfying purchase lately, or so I thought until I tried to use it. I purchased an Olympus ME15 lavalier microphone, its omnidirectional, comes with a tie-clip, and a 1m cord. The reason why this microphone is so compact is that it relies on a power source through the plug. The TRS connector plug looks that of any old mono TRS microphone plug. Even though the device was built for Olympus' voice recorder products, I thought I could use it as a computer microphone. Why its not working is because the socket in my PC is not providing any power. Is that standard? Was any computer mics that I encountered powered by an internal battery? I hope not, because that would give them a limited lifespan.

My problem is that there are no lapel (lavalier) microphones for PCs or any other audio equipment in stock anywhere (they seem to be loosing favor), And that I'm going to have to make do with this thing. I'm thinking about building a battery "box" that will go between the mic socket and the microphne itself, is that a viable solution? What part of the plug (TRS mono) does the power supply go? How exactly do these microphones get powered? -ANONYMOUS 02:34, 5 February 2008 (UTC)

You'll want to see our phantom power article. Unfortunately, only the last few sentences are completely germane to your question. So please also see electret microphone and its external links.
Atlant (talk) 14:49, 5 February 2008 (UTC)[reply]

Im not sure exactly, but I assume alot of computer mics are dynamic to avoid the need for phantom power, or they use such a small charge to pass across the diaphragm, it is less than 48v. As far as I'm aware, phantom cannot be used with a TRS.86.139.90.67 (talk) 17:10, 7 February 2008 (UTC)[reply]

Essentially all modern microphones used with low-end electronics (such as computers, cell phones, speakerphones, etc.) are electret microphones; they're the cheapest to integrate into the rest of the electronics and cheap themselves. Dynamic microphones went out with cassette recorders.
Atlant (talk) 01:17, 8 February 2008 (UTC)[reply]

irc passwords

i can't remember the password i used when registering an account on irc/freenode. i've searched online for the last 20 minutes trying to figure out how to recover it, but i'm coming up empty handed. i set an email when i registered, and i thought there would be some easy way to have it sent to me. how can i recover my password? StickShaker (talk) 02:42, 5 February 2008 (UTC)[reply]

I'd join #support or #help on your IRC network and ask there. Chances are an IRCop will be able to help TheGreatZorko (talk) 12:48, 6 February 2008 (UTC)[reply]

Extrapolate a photo's missing piece

Can any existing program automatically paint the missing piece of this wall and continue the falloff of light intensity?

Do any programs exist that will detect lighting gradients and extrapolate them to fill a missing corner in a photo (such as that which occurs when the photo is rotated and cropped) in a more realistic way than could be done with rubber stamping, at least if the cut-off object is something smooth and flat like a wall? NeonMerlin 02:53, 5 February 2008 (UTC)[reply]

Personally I'd probably just draw a gradient in by hand (with Photoshop or the line) on a layer below and try to get it to match up fairly well. Then you can run some filters on it to roughen it up a little bit. As for a program that will do it automatically, and correctly, I suspect not. --24.147.69.31 (talk) 16:14, 5 February 2008 (UTC)[reply]
If you find some, let me know. It's one of the features I really wish Resynthesizer had. I suppose it might be possible to achieve something like it with a combination of Resynthesizer, manual gradient fitting and the grain extract/merge layer modes: first fit a gradient as closely as possible to the existing lighting, then extract the difference (which would hopefully be mostly high-frequency texture) and use Resynthesizer to fill in the missing area. —Ilmari Karonen (talk) 17:40, 5 February 2008 (UTC)[reply]

Batch red eye removal

What Linux apps can remove red eye from photos as a batch operation? NeonMerlin 05:34, 5 February 2008 (UTC)[reply]

GIMP has batch processing and a basic red-eye removal tool. The trick is that red-eye removal will remove a specific shade of red, turning it black. Since you won't manually be pointing out where the red is on the photo (in batch mode, you have to do the whole photo), any red of that particular shade will be turned black. That can cause problems. -- kainaw 13:38, 5 February 2008 (UTC)[reply]

How do you set up a task force on a different MediaWiki?

I'm trying to set up a task force at my own Wiki. Can some one click on this link and help me? --75.181.81.73 (talk) 11:05, 2 February 2008 (UTC)[reply]

I can see that 75.181.81.73 has been active on Wikipedia for only a few days, and certainly do not want to bite the newbies. To me however, the question as stated violates the guideline Wikipedia:Spam, please correct me if I'm wrong. Perhaps it would be better for the original questioner to reword the question: "How does one attract attention to a personal wiki project? The project in question deals with modern visual culture, the plots and their charactes." --NorwegianBlue talk 11:36, 2 February 2008 (UTC)[reply]
Try failing over at digg, someone might be interested :D\=< (talk) 12:29, 2 February 2008 (UTC)[reply]
I've been active longer than that, I was just not logged in. It's not spam. Did you not check out the link? I'm asking how do I set up a task force on my Wiki. I followed the steps on Wikipedia, but I'm missing something. --MahaPanta (talk) 18:00, 2 February 2008 (UTC)[reply]
My apologies. I did follow the link, as my paraphrasing of the introductory sentence of the main page should indicate. The link led to a page with the title "MVC:WikiProject San-X/Omusubiya-san task force", an image, and the text "{{subst:MVC:WikiProject San-X/Coordinators/Toolbox/Task force boilerplate|Omusubiya-san task force|OnigiriTF}}". I take it, then, that your question is why the template is not expanded. I have only limited experience in setting up my own wiki, but I suspect that the reason is that some required template is not defined. For example, when you type "Template:Task_force" in the search box of Wikipedia, you are taken to a template called "Task force". When you type "Template:Task_force" in the search box of your wiki, you are offered to create a new page. Hopefully, someone more knowledgeable in the inner workings of Wikipedia and MediaWiki software will come along and give you a better answer. Best of luck with your project. --NorwegianBlue talk 20:24, 2 February 2008 (UTC)[reply]
Thank you. Since we got that misunderstanding out of the way, you were able to at least point me in the right direction. I'm going to try coping that template over since I'm using the same MediaWiki code that Wikipedia uses. --MahaPanta (talk) 20:41, 2 February 2008 (UTC)[reply]

Does anyone know? --75.181.81.73 (talk) 07:15, 3 February 2008 (UTC)[reply]

The problem you are having is to do with namespaces on the wiki. You're naming stuff "MVC:...", while the project namespace is "MVC Wiki:...". There are two solutions I can think of: change the name of the project namespace to "MVC", or rename the files to start with "MVC Wiki".
  • If you have access to the server the wiki is hosted on, you can rename the "MVC Wiki:" namespace to "MVC:" by editing LocalSettings.php, adding the following on its own line to the bottom of the file:
$wgMetaNamespace = "MVC";
Note the semicolon (;) at the end of the line. You could also enable subpages at the same time:
$wgNamespacesWithSubpages[NS_PROJECT] = true;
See $wgMetaNamespace and $wgNamespacesWithSubpages
  • Otherwise, rename (move) the project from MVC:WikiProject_San-X/... to MVC Wiki:WikiProject_San-X/...
Then create the page MVC_Wiki:WikiProject_San-X/Coordinators/Toolbox/Task_force_boilerplate (or MVC:WikiProject_San-X/Coordinators/Toolbox/Task_force_boilerplate if you renamed the namespace). You can then {{subst:...}} this into any pages.
As an aside, there is a third, subtle trick you can use. When using templates, MediaWiki will look in the "Template:" namespace (eg using the {{X1}} template takes you to Template:X1). But you can force templates to look in the main (article) namespace by prefixing it with a colon (eg {{:Main Page}}). As the MVC: pages are currently in the main namespace (as they're not in the "MVC Wiki:" namespace), you can also access them by using {{:MVC:Whatever}}. For subst, this would be {{subst::MVC:Whatever}} (note the two colons). --h2g2bob (talk) 17:13, 3 February 2008 (UTC)[reply]
I added
$wgMetaNamespace = "MVC";
$wgNamespacesWithSubpages[NS_PROJECT] = true;
to the local settings, but it's sill not working. --75.181.81.73 (talk) 22:32, 3 February 2008 (UTC)[reply]

Graphics card heat

Using nTune I decided to check out the temperature of my video card today. It's a XFX GeForce 6800GS. It was idling at 72 degrees Celsius, which is pretty hot for just idling. I turned on Half-Life 2 for a few minutes and I got it to top out at 116 degrees Celsius (that's 239 degrees Fahrenheit!). The game was locking up every few seconds. Should I be looking into a new card, a new fan, or water cooling? Useight (talk) 07:02, 5 February 2008 (UTC)[reply]

I suggest you to check the specifications of your graphics card manual or in internet. Since that is the place where you get the results for benchmarks upon performance, quality, etc. In each card's reviews, they will mention the temperature of the card's idle state and at maximum usage. so check out that and you will know the thershold at which your card should fall in. Then think about replacing. Coz your fan could be a problem after-all —Preceding unsigned comment added byBalan rajan (talkcontribs) 09:01, 5 February 2008 (UTC)[reply]
[3] under the "Is the newborn hot?" section states that their XFX 6800GS card idles at around 40-45 deg. C, and peaks at 65 deg. C under full load. Some of the heat could also be attributed to case temperature, which is partly dependent upon ambient temperature and case cooling. My opinion is that your card is running at abnormally high temperatures. It's most likely that your Graphics card fan is malfunctioning and/or poor contact between GFX card heatsink and GPU. I'd suggest you take a look at your GPU Fan first, and check that it's actually working before trying anything drastic. Also, is your GPU overclocked? That is also another possible cause for high temps. Tetsuox (talk) 09:50, 5 February 2008 (UTC)[reply]
My 6600GT runs at 60 degrees idle with compiz, and goes up to nearly 100 while playing TF2, and it's still here after 3 years. Not overclocked, I think I need a bigger fan on there or something... But I think your case is too high, check that the heatsink is actually touching the chip (look at it sideways/top down, see if you can see any gaps between the chip and the heatsink) and your fan is on. Also try touching the heatsink to see if it's actually hot. --antilivedT | C | G 10:22, 5 February 2008 (UTC)[reply]
My card came factory overclocked a little by XFX, but I didn't overclock it at all. I'm going to get a can of compressed air and try to clean out my PC a little and move up in expenses from there. Useight (talk) 15:52, 5 February 2008 (UTC)[reply]
One more thing to try is running your computer for a while with the side of the case open. If that makes the temperature go down, your case has inadequate (or inappropriately installed) ventilation. —Ilmari Karonen (talk) 16:57, 5 February 2008 (UTC)[reply]

threads in computerscience

can we use assembly language or high level language in making a thread? also can we possibly write our own thread for kernel mode?Jasunand (talk) 07:30, 5 February 2008 (UTC)jasunand[reply]

If the Operating System supports threads, then assembly language will allow you to program threads (with extreme difficulty). Not all high level languages have syntax for programming threads, but I doubt you'll be using one that doesn't support it. If you are writing a kernel mod, it is possible (and common) to use threads. -- kainaw 16:02, 5 February 2008 (UTC)[reply]

threads (2nd question)

are user threads supported by operating ystem?Jasunand (talk) 07:41, 5 February 2008 (UTC)[reply]

If you mean multi-threading in user mode, then yes (on Windows, at least). --grawity talk / PGP 10:01, 5 February 2008 (UTC)[reply]
Check out our article Thread (computer science) to answer your general questions, and let us know if there's anything you don't understand. --Sean 17:37, 5 February 2008 (UTC)[reply]
Jasunand, do you really mean "user thread", rather than just "thread for userspace program"? If so, take a look at our fiber (computer science) and green threads articles. User threads aren't implemented using support from the OS - they instead perform basic cooperative multitasking using solely userspace code (that is, they don't make syscalls and aren't managed individually by the system scheduler). -- Finlay McWalter | Talk 21:39, 5 February 2008 (UTC)[reply]

As in, I want to avoid Click-frauds, and on the whole, have a good AdSense experience. Please help me out. Thank you so much! —Preceding unsigned comment added by 122.169.41.253 (talk) 08:20, 5 February 2008 (UTC)[reply]

See Google Adsense and clickfraud for more. Adsense is safe as long as you don't use it ;) --Ouro (blah blah) 08:27, 5 February 2008 (UTC)[reply]

how to check out timings for executing a function in VB

Hi everybody, I'm working in Visual Basic 6.0. In VB's inbuilt function, is there any way to calculate the time that each function for eg (INSTR, MID etc) may take so that my program can be executed as fast as could. Because of this, my program runs slower and I'm unaware of how much time that each function takes. Could you please suggest me any links that may explain about the timings in VB instructions?...Thanks —Preceding unsigned comment added by 122.164.48.124 (talk) 08:55, 5 February 2008 (UTC)[reply]

There's no in-built way that I know of to break down execution time by function, other than putting start and stop timers before and after everything and doing it manually. There's no automatic way to optimize code; you've got to go through and figure out what's cause the slowdown. INSTR and MID by themselves shouldn't be slowing things down in a major way. If you are running lots of loops, try to make sure that you aren't doing anything in a loop that you don't need to do right there, and aren't calculating anything on the fly that you couldn't calculate ahead of time (e.g. if you had a program that needed the value 2*PI a lot, just calculate it once and store it in a variable, don't force the processor to re-calculate it every loop). If you posted the troublesome code here I'm sure we could take a look at it. --24.147.69.31 (talk) 15:40, 5 February 2008 (UTC)[reply]
You want a piece of software called a profiler. Googling for Visual Basic profiler indicates that various ones are available. --Sean 17:34, 5 February 2008 (UTC)[reply]

Thanks for your suggestion . I am concat the string in loop and save in a variable. The length of string is going to large so time takes to handle the string. So what can I do Please help me —Preceding unsigned comment added by 122.164.48.124 (talk) 10:57, 6 February 2008 (UTC)[reply]

When I first saw this discussion, I suspected that string concatenation might be causing the slowdown. Two possible solutions:
  • use a fast string class - Google "VB6 string class" for lots of samples
  • allocate a large-enough array at the start of the loop, add each piece of the string to it, and use the join function to make it into the final string (this is effectively what the fast string class will be doing).
(It's no help to you here, but in VB.NET you could use a StringBuilder object.) AndrewWTaylor (talk) 12:31, 6 February 2008 (UTC)[reply]
Yeah, concatenation can be slow. I'd do what AndrewWTaylor says and put off the final concatenation until the end, give that a shot. You might also test out other ways to accomplish the same thing, like outputting it all directly to a temp file and then reading that back in (no clue if that would be faster, but might be worth a shot). --98.217.18.109 (talk) 03:23, 8 February 2008 (UTC)[reply]

How do you convert an EPS into an SVG?

Hi! How do you convert an Encapsulated PostScript (EPS) into an Scalable Vector Graphics (SVG)? --escondites 16:24, 5 February 2008 (UTC)[reply]

Try using OpenOffice.org Draw, I believe it can do that, though I wouldn't expect the results to be very pretty (I find that Draw's SVGs often don't work well at all in other SVG editing programs, like Inkscape). --24.147.69.31 (talk) 16:43, 5 February 2008 (UTC)[reply]
Inkscape can import EPS files, sometimes even successfully. I believe it uses pstoedit for the actual conversion. —Ilmari Karonen (talk) 16:50, 5 February 2008 (UTC)[reply]
I tried pstoedit yesterday and couldn't squeeze what I wanted out of it, but for a different conversion though. --Ouro (blah blah) 13:19, 6 February 2008 (UTC)[reply]
I just tried Ghostscript combined with GSview, it worked perfectly! --escondites 14:35, 6 February 2008 (UTC)[reply]
Since my first reply above, I've also found out that Scribus can do an excellent job of importing PostScript files and exporting them as SVG. Based on the few files I've tried it on so far, it's working much better than pstoedit ever did for me. —Ilmari Karonen (talk) 02:05, 11 February 2008 (UTC)[reply]

Good NNTP servers

Are there any good NNTP servers? ("good" includes being free of charge) --grawity talk / PGP 16:27, 5 February 2008 (UTC)[reply]

Who would give you a good service for free? Who is going to pay for terabytes of storage, servers, high-speed networks and support? Anyway, giganews (tier 1) is excellent for a decent cost IMO. Sandman30s (talk) 10:02, 6 February 2008 (UTC)[reply]
I'd recommend NewsHosting over Giganews, they are cheaper (from what I remember - neither site can be viewed on my current network) and have some other small things better than Giganews TheGreatZorko (talk) 12:47, 6 February 2008 (UTC)[reply]
Gee, I thought the answer was gonna be something like INN. --tcsetattr (talk / contribs) 21:32, 6 February 2008 (UTC)[reply]

Super Bowl Introduction Video

Right before the Super Bowl was an introduction video. It featured such scenes as The School of Athens and Martin Luther King Jr. in relief, and a television in an art gallery. I can't find the video to watch or save to my computer again, I'd like to have it. Any help? Mac Davis (talk) 18:20, 5 February 2008 (UTC)[reply]

Anything related to the Super Bowl is the property of the National Football League. And as they said during the game, "reproduction and distribution of any material (including the broadcast) is Illegal". I don't think you'll find help here, since most Wikipedia users are strict when it comes to what is free and what is not. — Kjammer   23:57, 5 February 2008 (UTC)[reply]
That's why I usually record the Superbowl while it's playing. Then I can get commercials, highlights, or whatever. This year, though, my TV tuner card for my computer was broken, so I didn't record it. Sorry. Try YouTube, Google Video, or something I do not endorse, a BitTorrent. Useight (talk) 01:46, 6 February 2008 (UTC)[reply]

MSN live messenger

hello,

iv asked this sort of question a few days ago but here we go again:

  • i have windows XP normal edition thingy
  • i had windows live messenger
  • i deleated it using add/remove programs (i cant remember why)
  • now i want to re-install it back onto my computer
  • BUT when ive been onto the MS live website, clicked download and stuff....when it comes to installing it and the special windows live bok comes up it:
  1. scanning/checking your computer for live products [there arent any!]
  2. windows cant install this product
  3. get help with this problem/try again later

This has been happening for about 2 weeks now and very annoying....

  1. how do i fix the problem?
  2. (are there similar messageing programs that will allow me to communicate with friends using windows live meaaenger?)

thanks, --The world tour (talk) 18:52, 5 February 2008 (UTC)[reply]

Pidgin (software) will do MSN IM. -- kainaw 19:02, 5 February 2008 (UTC)[reply]

I am about to (shame on me!) purchase this album, with these restrictions. I guess they come in MP3 format; if I were to convert them to WAVs and then back to MP3s using the above program, would the DRM protection be gone? Obviously I take full legal responsibility :D Porcupine (prickle me! · contribs · status) 19:19, 5 February 2008 (UTC)[reply]

Neither MP3 nor WAV format supports DRM. To be DRMed, they must be WMA (Windows Media) or M4A (iTunes).
"Obviously I take full legal responsibility" Yeah, sure you will.
Also, the "Usage rights" contains the line:
"CD Burning 10 The number of times this item may be burned to a CD"
So you can burn the song(s) to CD and rip them into a clean MP3 (or AAC or OGG or FLAC or WHATEVR).
--grawity talk / PGP 19:23, 5 February 2008 (UTC)[reply]
...but since the list says "Format: MP3", I have absolutely no idea how the restrictions will be enforced.
A tip: if the site requires some weird software to play your songs, don't install it until you r ead the license. --grawity talk / PGP 19:26, 5 February 2008 (UTC)[reply]

Right... I'll look into it. Would it really work to just burn and rip them, if they were DRMed? Would my original idea of converting to WAV/OGG or something and then back also work (being less CD-intensive :D)?Porcupine (prickle me! · contribs · status) 19:34, 5 February 2008 (UTC)[reply]

1. Once you burn a song into a CD (Audio CD, to be more exact), it's in pure plain CD-Audio format, and you can then rip the song back into any format you want. (And I don't think a CD-R would be that expensive.)
2. If you convert a song to a DRM-free format (WAV, MP3, OGG, FLAC), it loses any DRM. --grawity talk / PGP 19:40, 5 February 2008 (UTC)[reply]

OK, last queries here... first, when I download the music, will I get a license with it too, a "tangible" file, or is the protection in-built into the tracks (ignoring the MP3 issue, of course)? And secondly: why do people bother protecting files when they can easily be stripped of the DRM? It sounds silly! Porcupine (prickle me! · contribs · status) 19:43, 5 February 2008 (UTC)[reply]

1. If the file format supports DRM (examples are Windows Media WMV and iTunes M4A), then the file will be encrypted by the program and the key will be saved in your computer, and if the player finds the key + knows the algorithm, then the file is decrypted and played|burned. (You might want to read article on DRM.)
If the format doesn't support DRM, then it's just a file.
2. No idea why they do so. Maybe to make it harder? But even Sony (IIRC) suggests you to burn the song to CD and rip it if you want to use alternative players (Winamp, foobar2000, others). --grawity talk / PGP 20:02, 5 February 2008 (UTC)[reply]

Thanks for all your help - it's downloading now!! Porcupine (prickle me! · contribs · status) 20:09, 5 February 2008 (UTC)[reply]

Converting a file to WAV and then to MP3 does a lot more than "strip the DRM". You have a compressed version of the song to begin with, whether WMA or M4A. Whatever program you use to make a WAV file from that will necessarily have to "guess" at what the missing bits are. Then you will apply another round of compression to the WAV file, losing other bits. This is analogous to a document that has been photocopied several times; maybe you can still read the words, but it won't be the crisp clean text that was first produced. Depending on the type of music you are listening too and your own personal preferences, you might not hear or care about the results, but don't think you are getting an exact copy. --LarryMac | Talk 20:15, 5 February 2008 (UTC)[reply]
You're right - the difference was very noticeable! Would the CD-burning trick lose quality? Porcupine (prickle me! · contribs · status) 20:33, 5 February 2008 (UTC)[reply]
Yes, unfortunately, that is essentially the same process - compress/uncompress/compress. --LarryMac | Talk 20:38, 5 February 2008 (UTC)[reply]
Is there any lossless way to do it? And, having done these processes, is there any way I can check the DRM presence or not? --Porcupine (prickle me! · contribs · status) 20:41, 5 February 2008 (UTC)[reply]
Maybe I'm being terribly naive in this day and age, but are you sure these aren't simply legal restrictions without technological enforcement? I see nothing on the two pages you linked that directly suggests that they're using DRM. You haven't mentioned yet the file type of the songs you downloaded. If it's MP3, and you're using an ordinary MP3 player (not a special one they made you download), then as far as I can see there can't be any DRM involved. -- BenRG (talk) 21:10, 5 February 2008 (UTC)[reply]
They're MP3 files and I'm using WMP - is it true that MP3s cannot be DRMed? Porcupine (prickle me! · contribs · status) 21:27, 5 February 2008 (UTC)[reply]
That is correct. See Comparison of audio codecs. I can't access the site you first referenced, but I think BenRG may be correct. --LarryMac | Talk 21:41, 5 February 2008 (UTC)[reply]
Best part is, if it's unencrypted you can burn it to as many CDs as you want since there's no DMCA with its iron boot pressing down on your neck. IANAL but I seriously doubt they can just attach arbitrary conditions to mp3 files and expect them to be legally binding --:D\=< (talk) 23:50, 5 February 2008 (UTC)[reply]
The reality is that no files can be DRMed. MP3s just take out the middle man. --Sean 00:14, 6 February 2008 (UTC)[reply]
Ehhhhh what. Files can be DRMed (with varying degrees of effectiveness- microsoft's throwing hundreds of programmers at constantly changing the algorithm and pushing it with windows updates has made WMA digitally uncrackable iirc. And MP3 definitely don't plug the analog hole- why would you use analog if it's completely open anyway :D\=< (talk) 12:41, 6 February 2008 (UTC)[reply]
My point was that all DRM schemes fall down in the real world due to the analog hole, among other reasons. Throwing hundreds of programmers at that won't change it. --Sean 00:10, 7 February 2008 (UTC)[reply]


February 6

getting out of Picture mode -- Vista

I clicked on Pictures, and ever since Vista insists on displaying ALL my folders in Picture mode. How do I make it display ordinary folders, with file names, dates, sizes, etc., instead of all that stuff that only pertains to pictures? (Yes, there is Windows "help," but TMI.) Many thanks in advance. --Halcatalyst (talk) 01:30, 6 February 2008 (UTC)[reply]

Ending your question with doxtl;dr won't get it answered anywhere.. anyway as I recall the fix is obscure and involves deleting some cache file and some registry keys and disabling the folder autodetection, forcing every folder to All Items (unless you make exceptions specifically for the folders you want). I always have a hard time finding the fix after reformatting and a cursory look didn't turn anything up, try googling --:D\=< (talk) 04:06, 6 February 2008 (UTC)[reply]
Ye gods, I'm not going to descend into the bowels of the machine. Anybody got higher level ideas? --Halcatalyst (talk) 05:20, 6 February 2008 (UTC)[reply]
In Windows Explorer click "View" on the tool bar and choose the display style you want, Icons, Tiles, Details, etc. Now click "Organize" on the tool bar and select "Folder and Search Options," click the "View" tab, select "Apply to Folders." Click "Apply" and "OK." Alternatively, you can click "Reset Folders" on the "View" tab to restore default folder views. —Wayward Talk 09:03, 6 February 2008 (UTC)[reply]
No, that definitely doesn't work at all. For most people that option does absolutely nothing except flip the bit saying the box is checked :D\=< (talk) 14:03, 6 February 2008 (UTC)[reply]
So, is there no (realistic) way out of this annoying situation? --Halcatalyst (talk) 21:33, 6 February 2008 (UTC)[reply]

Firefox bug?

I noticed an interesting behavior in Firefox today. Clicking on a button (not a link) works fine the first time, however if you go back to the page, the page has to be reloaded. For example, a search on google: I enter some terms to search, click "google search." Once I'm on the results page, if I go back to the google front page, and enter new terms, the "google search" button does nothing (likewise the "I'm feeling lucky" button is useless). Reload the page and everything works again.

This is of course, not limited to google. The Wikipedia search does the same (in fact, every button I have tried thus far). Any ideas what might be the issue? Thanks, --TeaDrinker (talk) 04:21, 6 February 2008 (UTC)[reply]

I can't reproduce this. What platform and version of Firefox are you on? — Matt Eason (Talk &#149; Contribs) 15:24, 6 February 2008 (UTC)[reply]
No, this actually occurs, but I have always assumed I can change some option to stop it. The problem is that when you go back to a page and press the same button (or any button for that matter), it simply does not respond. To solve the problem, just refresh/ reload the page ,and every thing is fine. This problem occurs mainly with WP when viewed under Firefox, and an OS of XP and possibly Vista but I am not sure. I have never experienced this problem before with IE, so I am guessing there is something wrong with Firefox parameters. Cheers! Λua∫Wise (Operibus anteire) 15:57, 6 February 2008 (UTC)[reply]
The problem seems to occur only on Windows XP (haven't tried Vista). My home computer (OSX) does not have the same trouble. I know that refreshing works, although it is a bit of a pain. --TeaDrinker (talk) 16:51, 6 February 2008 (UTC)[reply]
I don't doubt that it occurs, but I really can't reproduce it. XP SP2, Firefox 2.0.0.11 (en-GB), with and without extensions. Does this happen if you start Firefox in safe mode to disable all extensions? It's in the start menu in the same group as Firefox - it'll be labelled 'Mozilla Firefox (Safe Mode)' — Matt Eason (Talk &#149; Contribs) 17:21, 6 February 2008 (UTC)[reply]
Rather unsual because I have XP SP2, Firefox 2.0.0.11 as well. You do not need to do anything to reproduce it, simply open Firefox and go to a certain page ,e.g. trying editing this converstion, press save and then go back and try and see if "save" actually works the second time, although I'd prefer you do that in the sandbox cause if you have no problems, this will involve sending postdata which will create duplicate entries. The problem is quite annoying but not at all serious, but I repeat: Very Annoying!. Cheers! Λua∫Wise (Operibus anteire) 19:05, 6 February 2008 (UTC)[reply]
I did try safe mode, which did not replicate the bug. After some experimentation with add ons, I found the real player add on to be at fault. When it is on, the bug crops up. Thanks for the help! --TeaDrinker (talk) 22:08, 6 February 2008 (UTC)[reply]
No problem. Looks like RealPlayer and another of their add-ons cause quite a few bugs in Firefox. — Matt Eason (Talk &#149; Contribs) 00:17, 7 February 2008 (UTC)[reply]

MacOS fonts to .ttf

Looking for a free utility for MacOS to translate some of my bazillions of fonts to .ttf format so Povray can use them. (Years ago I did a few with Fontographer, but that was when I had a computer that could run Fontographer.) —Tamfang (talk) 10:26, 6 February 2008 (UTC)[reply]

I've never used it, but apparently fondu does this. --24.147.69.31 (talk) 17:13, 6 February 2008 (UTC)[reply]
Thanks, that's useful. Something that actually converts PS fonts, say, to TT would be even usefuller, but I guess I'm not about to find that for free! —Tamfang (talk) 05:36, 7 February 2008 (UTC)[reply]
Usefuller?? ugh. --24.249.108.133 (talk) 17:10, 7 February 2008 (UTC)[reply]
No sensayuma! —Tamfang (talk) 06:53, 16 February 2008 (UTC)[reply]

Running a game in a Virtual Machine?

I have never used a virtual machine before, but I wish to play an old game called Interstate 76 and while it SORT OF runs under XP I lack sound, and was wondering if (seeing as the game has very low system requirements) I would be able to emulate a 3d accelerated machine under VMWare or whatever the Microsoft thing is. My machine is an AMD X2 4400+, with 2GB DDR400 memory, and an ATI x1950 Pro 512MB. What would be the best way of doing this? I have an old Windows 98 SE disk, and a bunch of free drive space but no idea which bit of software to use or if it is possible to emulate (is that how the machines work) a Direct3d card. Will I need drivers for my hardware but for Windows 98? TheGreatZorko (talk) 12:41, 6 February 2008 (UTC)[reply]

I'm sure it depends on the virtualizer you use, but in many cases, no, you don't need 98 drivers to run on your host hardware, as the guest OS is not actually accessing your hardware directly. The virtualizer will access your host hardware through normal calls to it and provide its own virtual drivers for the guest operation system. So when it thinks it is sending a sound to your speakers, it is actually sending the sound to your host OS's sound system (which can send it to the speaker or ignore it or whatever you want it to do). Either Parallels Workstation or VMware Workstation should be able to do what you want. I've used Parallels mostly myself (though emulating XP on OS X) and easily get 3D, DirectX games of that vintage to run (Deus Ex, Unreal Tournament, even a stuttering Half-Life 2!). --24.147.69.31 (talk) 16:56, 6 February 2008 (UTC)[reply]

How to RUN a program in Windows

I killed some Windows file associations. Mostly those useless right-click functions such as "Open with Stupid App" or "Send to Boring App". However, I killed open by Explorer or its equivalent by mistake. Now whenever I click an .exe file, it does not execute the program. I am with my already opened programs.

How do I solve this problem without reinstall the Windows? -- Toytoy (talk) 13:17, 6 February 2008 (UTC)[reply]

Hold down shift when you right-click and you'll get the elusive "Open with..." option that lets you choose any program. It also has a checkbox for remembering what you chose. -- kainaw 13:18, 6 February 2008 (UTC)[reply]
No, I cannot see it. I can open and execute .msi (setup program). Maybe I can get a Windows check program and install it and then let it run after installation. -- Toytoy (talk) 13:32, 6 February 2008 (UTC)[reply]

I can create a new file extension, such as .fvhjgvjghv . I then double click it and I can select a program to open it. Now I can run just about every program.

Can you recommend a Windows utility that can repair bad file association? -- Toytoy (talk) 13:39, 6 February 2008 (UTC)[reply]

Do an in-place upgrade if you're using XP :D\=< (talk) 14:02, 6 February 2008 (UTC)[reply]
I might be wrong but I seem to recall some sort of file association repair being part of Tweak UI? You might give that a try. --24.147.69.31 (talk) 16:59, 6 February 2008 (UTC)[reply]

I tried:

  1. Open a folder and select Tools -> Folder Options -> File Types
  2. All buttons are disabled (colored gray)

I ran Norton Windows Doctor, it fails to find this type of error. Incorrect .exe file association can't be a problem, can it? -- Toytoy (talk) 19:21, 6 February 2008 (UTC)[reply]

Finally, I restored the system. Now it's OK and I am the happiest man on Planet Earth. Long Live Bill Gates! Thank you for your wonderful computer system. -- Toytoy (talk) 20:13, 6 February 2008 (UTC)[reply]

DirectX 10

Hello, Does anyone know of a safe (preferably tested) method of running DirectX 10 under XP. Yes, I know it is only for Vista, but there seems to be sort of a hacked version that would change its restrictive parameters to allow XP OS's to run DirectX 10 (rather it is the opposite, DirectX to run on XP). Well, I am particularly interested in Direct3D which seems to have improved greatly from its DirectX 9c. Ideas anyone? :) Λua∫Wise (Operibus anteire) 16:06, 6 February 2008 (UTC)[reply]

I've yet to hear of a way to use DirectX 10 in XP, but I would love to find out, too. Useight (talk) 16:07, 6 February 2008 (UTC)[reply]
Ways exist, but it's easier to just find a version of the game that's been hacked to work with DX9 :D\=< (talk) 17:06, 6 February 2008 (UTC)[reply]
As far as I can tell, no, they don't. Not as of yet, at least. You can convince some games to enable their extra 'DX10-only' features when rendering in DX9, but that seems to be the extent of it. Care to share your 'ways'? -- Consumed Crustacean (talk) 22:30, 6 February 2008 (UTC)[reply]
It isn't actually possible. There was a studio that was supposedly creating a way of doing it called Falling Leaf studios, and they required donation money to test the software. Now they have closed the project after releasing one single version that doesn't really work well at all. It should be noted that there is a difference between running Direct X 10 under XP and running Vista exclusive games (none of which require direct x 10) under XP, which is possible but probably not legal. The reference to "DX10 only" is probably to do with Crysis' Very High settings. Yes, it is possible to enable them under XP but they are only aproximations of DX10 effects used when demoing the game, and don't look as nice as actual directX 10, once the 1.1 patch has been applied TheGreatZorko (talk) 08:57, 7 February 2008 (UTC)[reply]
Don't see what would be illegal there. EULA-voiding, sure, but good luck prosecuting anyone for a EULA violation in court. Just expanding a bit: the reason that those games are XP-playable with some effort is that they just use Vista's version of DX9, 9.0L. And that 'Falling Leaf Studios' thing was an obvious scam, I can't understand how some people actually donated money to it. -- Consumed Crustacean (talk) 00:41, 8 February 2008 (UTC)[reply]

windoz media player won't start and stop ripping, right?

Just checking to see if there is something I missed; I have a bunch of live recordings made on audio CDs, where there are like ten songs on each track, I'd like to transfer them to one song per track, (preferably something lossless like WMA). But I can't just let media player start ripping a track, then hit stop, can I? Need to rip the whole track and then need some kind of editing software just to break it into songs? <sarcasm>Gee, this is way more nifty than those old fashioned tape recorders with their start and stop buttons.</sarcasm> thanks. Gzuckier (talk) 19:18, 6 February 2008 (UTC)[reply]

I'd try ripping the whole CD as one track (in as high a quality as possible, preferably a lossless codec although this will require seperate software) then splitting it into individual tracks using Audacity, a piece of free audio editing software. TheGreatZorko (talk) 08:53, 7 February 2008 (UTC)[reply]

Sharing contacts in Outlook

I work for a helpdesk and I have several associates needing to share the same contact address book. One Associate updates and the two others need to access it. I know how to import/export but it seems to do that with ALL of their contacts and not just the one distribution list they need.

What i was thinking is having them save all the contacts in a shared folder on our network. It looks like it saves via a .rtf extension. However, I can not get this to work correctly. Any help is much appreciated.

Thanks, Kyle —Preceding unsigned comment added by 68.75.245.130 (talk) 20:36, 6 February 2008 (UTC)[reply]

Add a contacts Public Folder in Outlook; if you don't know how to do it, ask your friendly Exchange administrator for help —Preceding unsigned comment added by 66.92.130.188 (talk) 02:59, 7 February 2008 (UTC)[reply]

rope!

Video games with realistic rope in them post The Hobbit (2003 video game) and ico. 'next-gen' examples especially please. I assume there are some, thanks in advance. (to myself - why don't all games have rope in them?).87.102.74.24 (talk) 20:46, 6 February 2008 (UTC)[reply]

Most realistic rope? Garry's Mod :D\=< (talk) 21:29, 6 February 2008 (UTC)[reply]
Garry's Mod rope isn't realistic at all. It clips through everything including world geometry - which it gets stuck in. Sure it pulls fine, but if I lay it over a box it just falls through. 206.252.74.48 (talk) 16:01, 7 February 2008 (UTC)[reply]
Rope doesn't get stuck in world geometry, nor does it clip through it (the ground at least). But it clips through objects on purpose so it doesn't get stuck on anything- it's supposed to be a physics constraint :D\=< (talk) 14:44, 8 February 2008 (UTC)[reply]
Yes, rope is a wonderful thing, isn't it? But what exactly is your question on the subject of rope in video games? Do you want us to catalog all video games after 2003 that have ropes in them? Or do you want to know how they did it? — Kjammer   22:44, 6 February 2008 (UTC)[reply]
I was looking for examples of better simulations of rope than the examples I gave - also in terms of the use of rope in gameplay - eg how about rope ladders, rope bridges etc..77.86.9.181 (talk) 17:29, 7 February 2008 (UTC)[reply]
Anything that does something else with 'rope' other than (as the poster below points out) adding more links to the rope structure.77.86.9.181 (talk) 17:43, 7 February 2008 (UTC)[reply]

I can't name any specific new games with better rope than Prince of Persia: Sands of Time as there isn't really much you can improve over it other than increasing the "resolution" of the joints in the rope. You might be interested to look at cloth physics, which are made by linking a large amount of "rope" together. There is a free game with fairly impressive cloth physics (if your PC can handle it) called CellFactor. TheGreatZorko (talk) 08:49, 7 February 2008 (UTC)[reply]

mmh maybe cloth physics could be used to make trampolines. Point taken about number or joints in the rope. Actually I haven't seen any games with flexible- rope in since about 2003. Conspiracy perhaps!77.86.9.181 (talk) 17:33, 7 February 2008 (UTC)[reply]
Yes, Rope Simulation Technologies are being hidden and supressed by the governments of the world. Goodness knows what the terrorists can do with such technology. 206.252.74.48 (talk) 20:19, 7 February 2008 (UTC)[reply]
I thought so thanks.
Resolved

making a computer work

i just found a computer on the street (in a computer magazine) and i like the design a lot but it's not to scale. how can i make it to scale (kinko's?) and where would i take it to find the parts that are missing, like case, monitor, hard-drive, ram, motherboard, etc, etc.

Thanky ou! —Preceding unsigned comment added by 79.122.72.147 (talk) 22:58, 6 February 2008 (UTC)[reply]

Did you find a picture of a computer and you want to know where to buy it? Can we see the picture? —BradV 00:44, 7 February 2008 (UTC)[reply]

Videos not playing fullscreen?

How can I get videos to play fullscreen on my computer. All that comes up is a black screen when I click the full screen button. I can get fullscreen with DivX videos but not youtube. —Preceding unsigned comment added by 78.148.85.137 (talk) 23:01, 6 February 2008 (UTC)[reply]

I'm afraid this isn't enough information for us to help you. Perhaps we will be able to help if you tell us which operating system and browser you are using. —BradV 00:48, 7 February 2008 (UTC)[reply]
Do you have 2 displays connected? Look in you video card options e.g. Catalyst for ATI cards, and look for an option to swap display mapping. Once you find it, use it. I had a similar experience and that worked for me. 161.222.160.8 (talk) 21:19, 7 February 2008 (UTC)[reply]

February 7

Verizon Cell Phone accounts

My wife is having an affair with another man. I am able to watch her cell phone records and email including her work but cannot watch incoming calls to her work. I would like to be able to look at phone calls made from his cell phone that would tell me if he was still in contact with her. He has a Verizon acct. I would also like to check his email, to see if she may have another acct that I don't know about. He has AOL. Aside froom ethical or legal is either or possible? —Preceding unsigned comment added by 72.88.216.58 (talk) 00:58, 7 February 2008 (UTC)[reply]

Oh yes, ethics and legality... mere trifles! I'd have an affair too if I was married to a paranoid control freak. --24.249.108.133 (talk) 00:20, 8 February 2008 (UTC)[reply]

How to select marker bits for data communication?

Hi friends!, I have posted it under Science and computing section too. Since this type of question isn't common in this discussion room, I'm unaware of where to ask.ok I'm doing a master project in SDR using vlsi-fpga. Well, now the main issue is that I use some predefined values infront of the data stream. Data from codec is 32-bits(Lch&Rch). I place few bits as marker in front of this audio data to denote the reciver the starting point of my data since data has to be exactly placed in lch and rch of the codec. a single bit reversal or mis-match causes serious noise.Now what happens is that data bits sometimes happen to be the marker value and mimic the marker. So the reciver when tuned on, considers that data bits as marker and starts processing from that point.so next to this action, all info becomes useless. No matter it helps if i increase the marker bits!. Simply it adds overhead only!...Is there anyway tat using a special marker can help in receiving the data without these problems?...Any other new ideas if you think, please suggest me...Thanks —Preceding unsigned comment added by Balan rajan (talkcontribs) 06:54, 7 February 2008 (UTC)[reply]

You need a framing protocol, for instance HDLC. See Bit stuffing for the basic solution to the "data as marker" problem. Morana (talk) 07:45, 7 February 2008 (UTC)[reply]

Looking for Team Fortress 2 sprays

Does anyone know where I can download the animated goatse and meatspin sprays for TF2? --90.242.167.38 (talk) 11:14, 7 February 2008 (UTC)[reply]

No, because we'd rather you not do so. I normally do not judge, but in the case of people like you I do. Considered yourself judged somewhat. Not that it changes anything. Have fun! (Hate to say it, but there is a way to download a tag by looking at it in game and entering a console command). 206.252.74.48 (talk) 15:21, 7 February 2008 (UTC)[reply]
That sounds like a good way to get yourself banned from a TF2 servers. APL (talk) 03:59, 8 February 2008 (UTC)[reply]
Depends on which servers you play on.. a 25-minute-long ear-piercing shriek played over the voice chat would be unremarkable at a 4chan TF2 server. Try looking at fpsbanana for your sprays :D\=< (talk) 12:36, 8 February 2008 (UTC)[reply]

I want to visit Windows XP land

So I can roll down the hills. Where?

BTW, why did someone almost instantly delete my question the first time I tried posting it? http://en.wikipedia.org/w/index.php?title=Wikipedia:Reference_desk/Computing&diff=189507204&oldid=189507089

66.91.224.203 (talk) 11:23, 7 February 2008 (UTC)[reply]

Bliss (image) tells us that it's in Napa County, California, east of Sonoma Valley. Also your question probably got deleted due to an edit conflict or something. TheGreatZorko (talk) 11:27, 7 February 2008 (UTC)[reply]

No I deleted it because I thought it was a pisstake - I now realise that the editor meant the hills you can see on the windows XP desktop.... --Fredrick day (talk) 12:07, 7 February 2008 (UTC)[reply]

PCMCIA card ?

What is another name for a pmcia card? —Preceding unsigned comment added by 86.159.128.45 (talk) 13:42, 7 February 2008 (UTC)[reply]

Do you mean pcmcia? -- kainaw 13:45, 7 February 2008 (UTC)[reply]
Cardbus card. Slightly different, upwards-compatible technical standards. See our article. Atlant (talk) 18:23, 7 February 2008 (UTC)[reply]
PC Card, according to the article. —BradV 21:33, 7 February 2008 (UTC)[reply]

Scheduled Task

As a scheduled task, how do i change the time that a (Windows XP SP2) computer waits to bring up the screensaver? --Shanedidona (talk) 13:55, 7 February 2008 (UTC)[reply]

Right click on the desktop -> choose Properties from the pop-up menu, and select the screen saver tab. 's there. --Ouro (blah blah) 14:13, 7 February 2008 (UTC)[reply]
i know how to do that, but i want the waiting time for the screensaver to automatuically change at night and in the morning, every day --Shanedidona (talk) 21:19, 7 February 2008 (UTC)[reply]
Write a program to change the value HKEY_CURRENT_USER\Control Panel\Desktop\ScreenSaveTimeOut in the registry. The value is in seconds. —BradV 21:36, 7 February 2008 (UTC)[reply]
You can do that with a .reg file, find one for something else and use it as an example :D\=< (talk) 16:12, 8 February 2008 (UTC)[reply]

I am not trying to demean you but please make sure you back up your documents and stuff before messing with the registry. Kushalt 16:44, 8 February 2008 (UTC)[reply]

Thanks :-) registry backup is always a good policy. --Shanedidona (talk) 13:59, 9 February 2008 (UTC)[reply]

Second NIC card for Mac G5 Tower?

Anyone know of a Mac compatible PCI NIC card for a G5 Tower? I tried buying a cheapie NIC from a big box retailer, but Leopard Server's System Profiler couldn't see it and it didn't have any Mac drivers. The only one Apple offers is PCI Express based, which this G5 doesn't have. --24.249.108.133 (talk) 16:17, 7 February 2008 (UTC)[reply]

Audio effects plugins

I'm just getting into audio editing and recording (specifically for a theatre production), and was wondering if someone could help me out. I need to create an effect in which it seems as if sound is traveling from the two back channels to the two front channels (right and left stay even throughout). I want to create the illusion that a train is coming from the right and left channel on stage and is moving into the audience via the back channels, with the train coming to a stop seemingly in front of the audience. I've already recorded the train approaching and stopping, but I'd really like to find a plugin or guide to create this effect. I have Audacity, ACID 6 and WaveLab 5. Thanks in advance, -Mysekurity 19:41, 7 February 2008 (UTC)[reply]


Ok, well the essential effect is using the pan control. This will make the sound 'move' from left to right or via versa by shifting its perception in the stereo field. However, you are trying to achieve a surround sound effect from the back of the auditorium to the front. This can be achieved depending on your Speaker management software/hardware at the theatre and the way the speakers are set up. I would recommend speaking to the venue technician about how to shift the audio from the rear up to the front fills.
For a simple solution, have some left wired speakers at the rear of the auditorium, some right wired near the front. Bounce your sound effect into a mono mix but still as a stereo file, then pan it from your left speakers ( rear ) to your right speakers ( front ) —Preceding unsigned comment added by 86.139.90.67 (talk) 15:18, 8 February 2008 (UTC)[reply]
Thanks for the reply. The hardware logistics are being carried out by the venue; I just have to worry about the audio files (there are four channels on this particular stage--two on stage, two in the audience.) I found out how to do this in ACID: by using an FX Automation envelope for the pan, I was able to constrain the movement to the vertical direction, and drag to suit my needs. I just have one more big project that's bugging me. I need to create the effect of being pulled out of a dreamlike state, and want to feature a voice that is distorted and warped (much like in many films or Stewie in Petergeist) with a good deal of background noise. Can you recommend a plugin or settings effect to apply to the voice to create this effect? I'm thinking something along the lines of a slow flange or time distortion, though I could of course combine several to create the intended effect. -Mysekurity 08:17, 9 February 2008 (UTC)[reply]

A great classic effect is the backwards reverb. Record your vocals, then reverse them. Apply a reverb/delay ( not too long or it will sound muddy ) and then reverse the sound again. This will provide you with a scary 'wooshing' up to the words, like a ghost. You could then apply more normal reverb, subtle chorus effects can make it sound weird, and yes, a flange will help distort 'reality' 86.139.90.67 (talk) 12:43, 9 February 2008 (UTC)[reply]

Do you have a favorite reverb or flanging plugin? I'm working with WaveLab, ACID, and SoundForge, and have access to Nuendo, Soundtrack Pro, and Soundbooth/Audition, so the program shouldn't be an issue. Anything I've missed? Thanks again, Mysekurity 20:53, 9 February 2008 (UTC)[reply]

• Hmmmm, i just use my outboard fx unit and the plugins available within Pro Tools ( dverb ) but any should do the job. Some can alter the tone quite dramtically, but nothing a bit of EQ cant fix :) 86.139.90.67 (talk) 23:36, 9 February 2008 (UTC)[reply]

Ipod to Itunes

How do i get the songs on my ipod on my mac??? can anyone recommend a free software? pleeeeeease? i'm going crazy trying to find a good one.--Yamanbaiia(free hugs!) 21:38, 7 February 2008 (UTC)[reply]

Look up online how to use terminal to show hidden files. the music files are hidden in invisible system files on your iPod. Ilikefood (talk) 21:59, 7 February 2008 (UTC)[reply]
Once you find the directory the iPod is mounted under, the command ls -al will show you the hidden files in that directory. —BradV 22:32, 7 February 2008 (UTC)[reply]

Thanks a lot! --Yamanbaiia(free hugs!) 01:10, 8 February 2008 (UTC)[reply]

Wikipedia and my unfortunate IP exchange

I’ve got a bit of a problem. When I opened Wikipedia this morning (I was not logged in) there was a message alert. I have used my IP address a few times, but only when I forget to log in so I was surprised that I would have a message. As it happens the message was a warning for this disgusting bit of vandalism that was committed way back in October. None of my other IP edits were listed in user contributions. User talk:71.112.82.245 is evidently a different IP address than I had a day ago. It also appears that I’ve inherited the IP address of someone else. Looking back over the accidental IP edits I’ve made to User:S.dedalus/About me it appears that my IP has changed at other times as well. Anyway, I’m going to ask the person who helps me maintain this computer if he changed anything lately, but how could this have happened? I use a DSL modem if that helps. --S.dedalus (talk) 22:16, 7 February 2008 (UTC)[reply]

It seems that you do not have a static IP address. There might be some cons on having a static IP address.

I know the system draws a lot of criticism for collateral damage; however, in your case, you have been able to log in. I am pretty sure that you are not limited in any way by which IP address you use, once you log in.

Your IP address is not visible to users or administrators without proper clearance. This is one of the advantages of creating an account in the first place. Kushalt 22:23, 7 February 2008 (UTC)[reply]

Indeed, if you don't pay Verizon for a static IP, they won't give you one - you'll get a new IP every N days (where N varies by ISP and sometimes by how the ISP feels about the traffic you do). It's an inevitable corollary of that dynamism that no-one (well, no-one who knows what they're talking about) will assume that, just because your IP was once used by a miscreant that you must therefor be that same miscreant. That's why we rarely block IPs for more than 24 hours. So you have nothing to worry about. -- Finlay McWalter | Talk 22:30, 7 February 2008 (UTC)[reply]
You are not the only one. Recently someone complained about this in my talk page for a warning I did back in 2006. We used to have a bot that cleaned old ip talk pages after some time, but apparently it was disabled. That would be a good solution for this, but I cannot remember why it is not done anymore. Not deleting the talk page, just cleaning it up is enough. -- ReyBrujo (talk) 22:46, 7 February 2008 (UTC)[reply]
Ahh, I see. So that’s why we still have so many IP vandals on the loose. Thanks, that’s a relief. I was afraid I’d become a zombie computer or something. :) --S.dedalus (talk) 23:02, 7 February 2008 (UTC)[reply]

RPC server time sync thingy

hello

ive tried to sync my computer time with the online one (control panel > date and time > internet time) by clicking on the 'update now' button.....but it says it cant as it cant connect to the RPC server....i need to get my computer time right as MSN messenger wont work if its wrong......help!

  • windows XP normal edition
  • in eastern England (if that makes any difference with regards the server thingy)

thanks,--The world tour (talk) 22:24, 7 February 2008 (UTC)[reply]

I don't understand why MSN Messenger will not work if your clock is set wrongly. Try editing it manually to a reasonable current date and time. Kushalt 02:51, 8 February 2008 (UTC)[reply]

Alternatively In the mean time, you can use Pidgin (software) as other Wikipedians toll away to answer your question. Kushalt 02:52, 8 February 2008 (UTC)[reply]

There are few different servers you can use if time.windows.com isn't working. You can use the NTP pool at pool.ntp.org, or one of the NIST servers [4]. If all else fails, try Googling UK time, or use this: 10:30, 15 September 2024 UTC [refresh], which is when you last reloaded the page. --Phirazo 04:56, 8 February 2008 (UTC)[reply]
I suspect that the original poster was really talking about the RPC service. You can see the list of available services by going to Control Panel, Administrative Tools, Services. You might try looking at the Remote Procedure Call (RPC) item there and trying to start it. (However, on my computer those options are disabled, so I don't know if that's normally possible.) Various search results suggest the RPC service gets disabled as a result of a virus infection. So my best guess is to get help investigating your computer for viruses. --Bavi H (talk) 06:27, 9 February 2008 (UTC)[reply]

what is YTIMG?

What is YTIMG.com? It seems that YouTube recently started using YTIMG. Does anyone know about it? Kushalt 22:29, 7 February 2008 (UTC)[reply]

Sounds like some sort of hosting server address. It is owned by Google according to its Whois entry, which makes sense (since Google owns YouTube). The name looks to me like an acronym for YouTube IMG or something like that—I wouldn't be surprised if it makes something easier for them to split up various functions done by YouTube into different servers with different DNS entries. Though it is a little odd. --98.217.18.109 (talk) 23:25, 7 February 2008 (UTC)[reply]
Well, I think Yahoo! uses yimg.com (blasted Geocities advertisements!), so it might be more common than originally thought. x42bn6 Talk Mess 23:34, 7 February 2008 (UTC)[reply]
Yeah, I remember they did something like that. Not the same server, but probably the same idea. --98.217.18.109 (talk) 00:51, 8 February 2008 (UTC)[reply]

Thank you very much. Regards, Kushalt 01:38, 8 February 2008 (UTC)[reply]

I would still like to know why Google did this ... there is only one Google.com (well, there are addresses like gmodules.com and so on) I am not sure why Google or anyone else does that. Kushalt 01:42, 8 February 2008 (UTC)[reply]

Don't forget (ugh) iGoogle :D\=< (talk) 12:33, 8 February 2008 (UTC)[reply]

I don't have anything against iGoogle as long as I can have the traditional google page (I don't really mind the ribbon.) Kushalt 16:46, 8 February 2008 (UTC)[reply]

VGA to Component hooked up to a 1080p television

I bought a VGA-to-component cable recently and hooked it up to my laptop. I was able to get a (not very good) picture from it at 1280x1024x32. I took a photo and uploaded it. The background (I had my laptop temporarily set at 800x600 I think) should be a black to blue gradient from the top to middle, and the bottom half is white/grey clouds. Obviously the color is off, and the picture is shifted. The green area you see on the right is inaccessible to the mouse pointer, an equivalent piece on the left is not visible, and the whole thing is shifted up by a few dozen pixels with junk in its place at the bottom. Is it possible to get an image (even if it's not 1920x1080) using this cable, or am I trying to fit a square peg in a round hole? My display drivers (nvidia) on my laptop have additional frequency settings like "front porch" and "back porch", but I have neither as I live in an apartment. Any ideas? --Silvaran (talk) 23:54, 7 February 2008 (UTC)[reply]

Well, be aware from the beginning that VGA has a max resolution of something like 720x480 so you're not going to get anything close to maximum resolution there. Front and back porch don't refer to things in your apartment—see Front porch, Back porch. No clue if adjusting those will help. The color shifting is weird, though I've seen similar things with VGA converters that had something wrong with them (in my case it was clearly an analog problem—the LCD projector was outputting everything in hot pink except its own menu—and finally we realized it was the converter that was doing it). --98.217.18.109 (talk) 01:39, 8 February 2008 (UTC)[reply]
VGA connector is the appropriate article there, not VGA. Graphics cards using the VGA connector with resolutions like 800x600, 1024x768, and above have been around for a long time. --tcsetattr (talk / contribs) 07:23, 8 February 2008 (UTC)[reply]
You can't just get a VGA to component cable and expect it to work. You will need to find out what component refresh rate your tv will accept. Most likly your PC will need to output 24 or 25Hz on the VGA, which it probably can't do anyway.--Dacium (talk) 06:24, 9 February 2008 (UTC)[reply]

February 8

Web activity monitoring software

I'm looking for recommendations for software that allows me to monitor the web browsing activity of people on my network. Here are my preferences:

1) I would prefer to run this software from my Windows NT server and have it look at all the computers on the network. However I don't mind installing a program on every computer (Windows XP) in the office if it works and can send out a single report to me (email, e.t.c)

2) Logs both Firefox and Internet Explorer.

3) The reporting doesn't have to be complicated, I just want to be able to see a list of the most 50 popular sites or something similar to identify where people are going. Obviously time spent browsing and other statistics are a godsend.

Any suggestions? 91.84.143.81 (talk) 11:59, 8 February 2008 (UTC)[reply]

Certainly not, I'm not going to help you spy on people... though I will tell you that it's a terrible idea to install something on each machine if you control the network. If your NT server (blech) is their network gateway then install your monitoring there :D\=< (talk) 12:32, 8 February 2008 (UTC)[reply]
I didn't ask for your opinions on NT and I don't give a damn about your "anti-spying" agenda. I need to identify what sites my employees are visiting so I can stop them from going there during working hours. What people choose to do / say or what websites they visit in their own time is none of my business, but if they are being paid to do a job and instead of doing that job are reading personal email or posting on bulletin boards I want to know about it. 91.84.143.81 (talk) 13:18, 8 February 2008 (UTC)[reply]
If you wan't computer advice without some 'asswipe' telling you what they think then the way forward is to pay someone for that service. There's a slim possibility that someone here will actually resolve your question. Good luck.87.102.118.73 (talk) 13:52, 8 February 2008 (UTC)[reply]
lol internet rage. I'm certainly not being paid to do a job for you, so "what [I] choose to do / say ... is none of [your] business". Also what's your problem? Nobody's going to work for you if you're so strict about "checking personal emails" etc. And I still consider it spying even if they're being paid to work, though legally the owner of the local network can look in :D\=< (talk) 14:37, 8 February 2008 (UTC)[reply]

Can I gently remind everyone that Wikipedia's no personal attacks, civility, and assume good faith policies are still in effect here? "Don't give a damn" and "asswipe" are not conformant to the spirit of those policies.

Atlant (talk) 14:54, 8 February 2008 (UTC)[reply]

When someone goes to a free help forum and asks for help on a particular subject, and the first answer is "You shouldn't do that, and even if you do it you are doing it wrong", and the OP responds with "I don't want your opinion", then, well, given human nature the OP isn't likely to get very much useful help on THAT forum from other readers, either. I have done what he wants for my clients, but then I was being paid, and after pointing out that there were moral issues I helped them with their need. This guy doesn't want to hear my free advice, either, which would be "Grow up, learn how to work with people instead of threatening them constantly. Hire someone to do things you can't do yourself. That way, you can threaten them if they don't do what you want. Free help only happens to people who are nice to the helpers. :) -SandyJax (talk) 15:14, 8 February 2008 (UTC)[reply]
who wants to bet that one of the most popular sites they look at will be wikipedia? Gzuckier (talk) 16:04, 8 February 2008 (UTC)[reply]
I wish my workplace would seriously block it (*hint hint*). 206.252.74.48 (talk) 16:09, 8 February 2008 (UTC)[reply]

Dear OP, Would you ban iPhones as well? Kushalt 16:19, 8 February 2008 (UTC)[reply]

Try an experiment. Print out in simple English in big letters, your computer usage policy. Also print out, in an A4 paper, a big sketch of an eye. Does not have to be fancy. Just plain black and white stuff. Put it in a conspicuous place near each computer. You will be surprised to see what a large proportion of the people will conform. After all, unless you are a really weird company with a really weird HR, chances are that your company is full of conformists. Kushalt 16:33, 8 February 2008 (UTC)[reply]

Here's a free one. Don't know if it's any good. To get a better Internet usage monitor, you'd probably have to pay for one. I've seen some ads for some, but I can't remember their particular names (they're in a PC World magazine that is sitting as reading material in my bathroom, but someone is in there right now). Useight (talk) 17:02, 8 February 2008 (UTC)[reply]
If you're still reading, Mr or Mrs 91.84, I would suggest doing a Google search for "web activity monitoring software". I got lots of results. As far as researching your specific additional parameters (runs on NT, etc), I'm going to leave that to you. I will mention that NT is probably not supported by Microsoft anymore, and current software may require something newer, like Windows 2003. --LarryMac | Talk 17:08, 8 February 2008 (UTC)[reply]
Transparent squid can log all the HTTP requests, so a pfSense box from some junker PC, plus squid and lightsquid packages would do what you want, plus local cache. --antilivedT | C | G 04:53, 9 February 2008 (UTC)[reply]

C# escape characters?

why do some escape characters in c# 2005 (i.e \f \v \r \b \0) respond incorrectly displaying strange symbols instead of performing their assigned tasks? —Preceding unsigned comment added by Supersonic8 (talkcontribs) 15:47, 8 February 2008 (UTC)[reply]

Because PCs were too stupid to reserve the C0 control characters for control characters and instead used them for graphic glyphs.
Atlant (talk) 17:32, 8 February 2008 (UTC)[reply]
What's the context? Are you talking about the Windows console ("DOS prompt")? What are their assigned tasks? If you mean form feed, etc., then what's the assigned task of \0? What do the symbols look like? Do you get male and female symbols (♂♀) for vertical tab and form feed? -- BenRG (talk) 21:19, 8 February 2008 (UTC)[reply]

itunes7.6 my arse

hi all, whats the lowest form of itunes i can use with my shuffle? thanks Perry-mankster (talk) 16:02, 8 February 2008 (UTC)[reply]

I know that 7.5 still worked a week or so ago since I used it with QTFairUse6 :D\=< (talk) 16:11, 8 February 2008 (UTC)[reply]
ITunes_version_history#Device_compatibility - 4.7 for the original shuffle, 7.0.2, for the new iPod Shuffle. Mac Davis (talk) 18:02, 8 February 2008 (UTC)[reply]

u is a geniuees, ta very muckle Perry-mankster (talk) 19:59, 8 February 2008 (UTC)[reply]

ISP upload speed percentage too low?

Hi wikipeoples. First of all, you should know I'm talking from a developing country where IT infrastructure is, well, developing. I recently upgraded to a 500k Internet plan (I know it doesn't sound like a lot to you, but I had a 150k until now), and I'm getting 50-60kB/s speeds on download, and 10-15 kB/s on upload. I called my ISP to ask what percentage of upload should I be getting for my account, and they told me they provide 80% of the "bandwidth speed" for download, and 30% for upload. Is this normal? Or does it sound like a rip-off to you? What are the percentage standards for speeds like this? (I hope it doesn't vary terribly from country to country...) Kreachure (talk) 16:08, 8 February 2008 (UTC)[reply]

I know that ADSL does that. I am not sure why a cable company would do that. By the way, what are you on? ISDN? DSL? Cable? Please let us know. Kushalt 16:26, 8 February 2008 (UTC)[reply]
Cable does that because the "upload" channel is much narrower than the download channel.
Atlant (talk) 17:31, 8 February 2008 (UTC)[reply]

Oh, sorry. I'm on Cable, and the ISP also provides Cable television through the same cables, BUT they didn't mention that as a reason for the percentage when I asked. Even so, is having a percentage in Cable normal? Is having a percentage normal at all? Kreachure (talk) 16:49, 8 February 2008 (UTC)[reply]

This is typical. No matter what technology is used, there will be a limit to how many bits can be transferred per second. Your ISP will group users by either "home/personal", where you mostly download web stuff, and occasionally send back "gimme another page" messages, and download 100 emails, discard the 93 spam messages and read and delete 4 and reply to 3, or as "commercial" where the traffic is more balanced - there are surfers who mostly get traffic, but there are also servers providing content to the web. Your ISP/provider is giving you what they have found is best for home users. They have taken the available bandwidth, and told their routers to limit your incoming traffic to 70-80% of what's possible, and limit your outgoing to 20-30% of what's possible. You can ask for true 2-way access, or you can ask for higher bandwidth, but either will cost you more, because it costs THEM more to provide it. -SandyJax (talk) 17:41, 8 February 2008 (UTC)[reply]

Oh boy. I guess I'll be doing either of those, otherwise my share ratio will go south and I'll get banned from trackers. Thanks. Kreachure (talk) 18:06, 8 February 2008 (UTC)[reply]

Resolved

What's that element?

What is the page element that does the scrolling on http://www.volll.com/#section_main ? Mac Davis (talk) 17:55, 8 February 2008 (UTC)[reply]

The page is using anchor tags to scroll to the sections. Each of the four sections uses an anchor tag to define its location. For example, the one you linked to has a tag <a name="section_main">. This allows navigating directly to that section by using the url you posted, specifically that part after the # sign. If you look through the source for the different tag names it should be pretty straightforward. —BradV 20:26, 8 February 2008 (UTC)[reply]
Well, yes and no. They have standard anchor tags there but they also use custom javascript to make it flow so smoothly. It's the function smoothto() in http://www.volll.com/js/volll.js. Basically it uses javascript to more slowly (and smoothly) move the position on the page by controlling exactly how fast and how far it scrolls in any given interval of time. --98.217.18.109 (talk) 22:27, 8 February 2008 (UTC)[reply]
Thanks! That's the answer I wanted. 72.188.156.142 (talk) 23:35, 8 February 2008 (UTC)[reply]

Nokia 7610 Memory Card Question

Hello I have a problem i format the momory card of Nokia 7610 because it was curropted.but it have many important msgs and i cant make backup.I want to recover the masgs from it which free software is good on doing so,and can i recover it back,ir if it is not suitable place plz direct me mobile forem.thankx usman khan —Preceding unsigned comment added by Usmanzia1 (talkcontribs) 18:27, 8 February 2008 (UTC)[reply]

Lyrics websites

What website can I go to to search for a song by the lyrics? For instance, if I type in the word "addicted", it will give me "Aedicted to Love", "Hooked on a Feeling", "Her Eyes", etc.? The site http://www.lyrics.ch used to do this, but then the intellectual property police took it down and when it was reincarnated it became this German site that doesn't have this lyrics search feature. I need help with this. 67.188.22.239 (talk) 23:30, 8 February 2008 (UTC)[reply]

I usually just google, however it would only work for sentences, not words. Suppose I know the author and a phrase, just googling for "phrase author lyrics" (for instance, a search for "within temptation" lyrics "come on" returns Ice Queen, the song I was talking about. If you don't know the band article, you may use a Google search on a lyrics site. For example, I know the song says "come on" but I don't know the group, so I could use site:somelyricsite.com "come on" lyrics. If you know the band name, though, it is a question of googling it. -- ReyBrujo (talk) 00:26, 9 February 2008 (UTC)[reply]
Have you tried http://lyricswiki.com -- kainaw 01:22, 9 February 2008 (UTC)[reply]

Coding Theory

I have recently been introduced to coding theory with an interesting application but I have a question regarding a concept I learned. Let's say that I am trying to transmit a small message, like 10011 but it gets corrupted along the way. So I decide to replace all ones with 11 and all zeros with 00. So my message becomes 1100001111. This is an error detection algorithm but not error correction. So in order to discover AND correct an error, I decide to replace 0 with 000 and 1 with 111 so now my message becomes 111000000111111. Now, this procedure can detect and correct errors (assuming that there is one error per block of three). I also read somewhere that this procedure can be used to detect TWO errors also instead of detecting one error and then correcting it. My question is, how is this possible? For example, I understand how the detection and correction of one error works, but how can this detect two errors? What if I send the original message as 111000000111111 and receive 11100011011? How can I tell that there are two errors in it (in the middle zero, going from 000 to 011)? For all the recipient knows, the original byte was 1 (going from 111 to 011) with only one error. Secondly, this algorithm triples the size of a message. The message will take longer to upload and download. Is this worth it? Thirdly, does this algorithm rely heavily on the fact that it is statistically impossible that you can't have two errors in the same triplet? Because if I send the message 111000000111111 and then receive 111011000111111, I can just fix the message to 11011. Just to let you know, I consider myself a above average computer user. I have some background in programming and I am a graduate student in Math so feel free to throw in as much math as required to explain this. Thanks! A Real Kaiser (talk) 03:46, 9 February 2008 (UTC)[reply]

It does detect two errors. If 000 becomes 011 (two errors), then you detect it as an error, do you not? It is not two-error correcting because of the reason you stated. --Spoon! (talk) 03:52, 9 February 2008 (UTC)[reply]
In case the above isn't clear: to say a code detects n errors means that if (at most) n errors occur, then you can tell that there has been an error. It doesn't mean that you can tell exactly how many errors occur. The code 1 -> 11 0 -> 00 is not two-error-detecting, because it's possible for two errors to turn 00 to 11 in which case you don't know there's been an error at all.
In answer to your other questions, the codes you're considering here are laughably bad. They make your messages three times longer, and as the length of your message increases, the probability of an undetected error occurring somewhere tends to 1. The cornerstone of coding theory is Shannon's theorem, which says that there is always a code which multiples the length of messages by some constant k (depending on how bad the communication channel is), and such that the probability of an uncorrected error occurring tends to 0 as the message length increases. Algebraist 12:11, 9 February 2008 (UTC)[reply]
I think you've made a mistake here. With more repetitions the chance of an uncorrected error goes to 0, not 1. It's a very inefficient use of the channel, but it's fine if you have bandwidth to spare. -- BenRG (talk) 17:31, 9 February 2008 (UTC)[reply]
I didn't mean 'as the number of repetitions increases', I meant what I said: 'as the length of the message increases' (for a fixed number of repetitions). Algebraist 19:03, 9 February 2008 (UTC)[reply]
Codes with that level of redundancy can be useful in practice. NASA used a (32,6) Reed-Muller code for Mariner 9, which has an expansion factor of more than 5. This is a much more sophisticated code with much better error resiliency than the repeat-five-times code. Even massive repetition is sometimes used, though. An example is the P subchannel on CD-Audio discs, which indicates a track change by a burst of no less than 14,400 one bits. CDs are designed to tolerate a fairly high raw error rate, but even so this seems a bit excessive. Most players ignore the P channel and use the Q channel instead, which encodes much more information in a more sophisticated format but still relies on massive redundancy. The audio data uses cross-interleaved Reed-Solomon coding. -- BenRG (talk) 16:16, 9 February 2008 (UTC)[reply]

February 9

Wine / Ubuntu

hey..I am usig Ubuntu Linux...its fantastic!! i wanted to know, how to use Wine on it, I have not been able to download and install wine on it..pl help! —Preceding unsigned comment added by Davidbreina (talkcontribs) 05:10, 9 February 2008 (UTC)[reply]

You can install wine using Add/Remove Software or using Synaptic under System | Administration. Or, if you need the cutting-edge releases that may not be fully tested for Ubuntu, follow the directions at http://www.winehq.org/site/download-deb.
Once you have installed wine, you can install programs by downloading the .exe installer file and opening with wine. —BradV 05:52, 9 February 2008 (UTC)[reply]
how to run the application using wine?? please help!! —Preceding unsigned comment added by Davidbreina (talkcontribs) 09:23, 9 February 2008 (UTC)[reply]
hey can u plzz temme how to uninstall the things that are installed using Wine?? thanks.. —Preceding unsigned comment added by Davidbreina (talkcontribs) 09:47, 9 February 2008 (UTC)[reply]
Under the main program meny in ubuntu, there should be a wine section where you can find an entry called "Wine Software Uninstaller". You can also launch it from the command line by typing "wine uninstaller". I'm very glad that you like Ubuntu! It's really neat, ain't it :D 83.250.205.56 (talk) 18:48, 9 February 2008 (UTC)[reply]
Thank you very much..It is really good..I wanted to Know how to play a VCD on the unbuntu OS, i tried playing using VLC..even that was not possible! Please tell me what to do, i installed totem player, and the error on it is "there is no input plugin, to handle the location of this movie". How can i play VCDs directly from the CD? please help!
Enable Medibuntu by following these instructions, do sudo apt-get update && sudo apt-get install w32codecs in terminal and it should work. Otherwise open it with totem and it should be able to find the correct codec now. --antilivedT | C | G 10:15, 10 February 2008 (UTC)[reply]
I did all that you have asked me to do..but still i cannot play (*.dat) video format on TOTEM and also on VLC. I want to know how to play that format. Pl.instruct me on the steps how to make the format ditected directly from the CD media.

Visual Boy Advance.

if it is loading in a sort of loop, like, first 1% then (insert random number from 2-99)% then 100% and then sometimes 101%, is there something wrong with it? and in that case how should i solve it?Then, when i try to close it and then open it up again, it says "loaded battery". i'm using version 1.7.2. (it's been loading for at least 1/2 an hour) —Preceding unsigned comment added by 202.156.88.207 (talk) 07:03, 9 February 2008 (UTC)[reply]

The "Loaded Battery" message is normal after the first time you use a rom. It refers to the fact that many GameBoy cartridges have a battery that save information from one play to the next. "Loaded battery" indicates that the emulator has loaded this information from the disk (from a seperate file from the rom, but with a similar filename.) to simulate the battery functionality of the emulated cartridge. This process should be essentially instantaneous but the message should stick around long enough for you to read it.
As for the first part of your question, it is completely normal for emulators to fluctuate a little around 100% speed. I'm afraid I'm not familiar with how VBA reports this to the user, but is there a way to make it give you an average emulation speed? That would be much more valuable.
Also, be aware that if you're playing pirated commercial games, some of them may have copy protection that completely flummoxes the emulator. APL (talk) 17:12, 9 February 2008 (UTC)[reply]

SATA to PATA adapter?

Hi, I got an old pc with Intel Glly Board (details here)and P4 processor. I need a new hdd. The board doesn't' support SATA and Parallel ATA hard disks are hard to come by. Is there some sort a cheap adapter to fit a SATA hdd on to it?--Sagitter (talk) 11:58, 9 February 2008 (UTC)--Sagitter (talk) 11:58, 9 February 2008 (UTC)[reply]

You may be able to find a PCI card with some SATA ports on it. Useight (talk) 19:48, 9 February 2008 (UTC)[reply]

Google Earth

If I put a geotag into a Wikipedia, how long before it appear on Google Earth? —Preceding unsigned comment added by Swithlander (talkcontribs) 12:41, 9 February 2008 (UTC)[reply]

Google Earth / Google Maps comparison

I'm currently not using Google Earth because I'm quite happy with Google Maps. This question is about the "sattelite images" of Google Maps (which really are aerial photos, at least in populated regions), vs Google Earth. Has anyone here checked the two against each other, with regards to resolution at various locations, currentness of imagery etc.? I Did some googling and checked the articles Google Earth and Google Maps, but didn't really find an answer. --NorwegianBlue talk 13:30, 9 February 2008 (UTC)[reply]

virtual keyword in programming

There is a keyword called virtual in programming such as in Virtual function or in Virtual method table. Usually, programming keywords are straightforward for me to understand, as they are self-explanatory (such as const, goto, private...). But I don't see why someone came up with the keyword virtual for the actions this keyword implements. Has anyone an idea? Thanks, --Abdull (talk) 13:24, 9 February 2008 (UTC)[reply]

The American Heritage Dictionary says it well - "virtual ... Existing or resulting in essence or effect though not in actual fact, form". The virtual keyboard isn't a real keyboard - it works like one, but doesn't exist in actual fact. -- Finlay McWalter | Talk 13:30, 9 February 2008 (UTC)[reply]
The question was about virtual functions, not virtual keyboards etc. Virtual functions are functions which may or may not be defined in the class in which they appear, and they may be redefined in child classes, i.e. they are polymorphic. I agree that "virtual" is not a good choice of name for these functions. "Polymorphic" would have been better. --NorwegianBlue talk 13:41, 9 February 2008 (UTC)[reply]
Wait until you get to static. :( --Sean 16:04, 9 February 2008 (UTC)[reply]
const is not as sensible a name as you think. C++ allows an implementation to treat a const int as really constant for optimization purposes (that is, the value can be cached), but it forbids an implementation from assuming that a const int * points to a constant int. That is, in code like
   extern void bar();
   
   void foo(const int * p) {
       printf("%d\n", *p);
       bar();
       printf("%d\n", *p);
   }
the implementation must reload *p after the call to bar, because it might have changed. If const really meant const, the conversion from int * to const int * wouldn't be type safe. Stroustrup, who introduced the const keyword, was originally going to call it readonly but changed his mind, I believe because const was shorter. It would make more sense if const int * was a pointer to a truly constant int, mutable int * was a pointer to a mutable int (like C++'s int *), and int * was a pointer to an int of unknown mutability (like C++'s const int *).
Regarding virtual, I wasn't able to find any official explanation from Stroustrup on the web, but I assume it came from the idea that virtual things "aren't really there". When p is a B*, it looks like p->foo() is invoking B::foo(), but if B::foo is virtual then it might really be calling something else. -- BenRG (talk) 17:06, 9 February 2008 (UTC)[reply]
Thank you all for your comments until now, especially for BenRG's Bjarne research.
BenRG, wouldn't it make even more sense if const int * always pointed to the same int (therefore, fixing the pointer), with this pointed to int being of unknown mutability?
I think your explanation for virtual could be what the inventors of the virtual keyword had in mind when they introduced it! --Abdull (talk) 11:09, 10 February 2008 (UTC)[reply]

PDF to HTML/DOC

Hello please tell me a free PDF to HTML or DOC convertor ,yes i know there are many but please tell me which i use for best output,I mean output has the same formating as the PDF.If some one has used.thanks....usman khan —Preceding unsigned comment added by Usmanzia1 (talkcontribs) 13:44, 9 February 2008 (UTC)[reply]

Zamzar is a site that produces fairly accurate conversions. Unfortunately, the site seems to have developed pop-ups since the last time I visited, and it tends to spam your inbox something awful, so you may want to use a disposable email. I'm sure others will be able to name similar services without the disadvantages.--Kateshortforbob 15:28, 9 February 2008 (UTC)[reply]
I don't care if you can toss 12 naked Scotsman off the Eiffel Tower - converting PDF to HTML is a BAD idea. Weasly (talk) 16:15, 9 February 2008 (UTC)[reply]

Yes, PDF is not meant to be converted back to editable format. If you know the author, you could try to ask them for a source file. It works much better. Kushalt 19:55, 9 February 2008 (UTC)[reply]

Network bridging...........

Hi...I have a laptop with a wireless network card. I use this to connect to other laptops in ad-hoc mode. I also have a wired LAN which I use frequently. Is there any way to bridge both the networks?? I know that wireless and wired LAN can be somehow bridged in XP but I don't know how to do that. Also is there a special way for the same in Vista?? I want to bridge the network so that I would be able to play multiplayer games with users of both the LANs simultaneously. Please help... —Preceding unsigned comment added by Piyushbehera25 (talk • contribs) 16:54, 26 January 2008 (UTC)


The control panel thing was good but I was not able to connect to both the networks simultaneously.Please suggest another way... I don't really understand what you're trying to do and how to help without more information about this game. Bridging is unlikely the answer you're looking for (Network Bridge for more details). Most games use a Client/Server system, whereby all the clients connect to a central server that hosts the game. So as long as you're the one hosting the game, and you can communicate with users in both networks, then there shouldn't be a problem, as the server app. should be able to communicate with all users (clients). The simplest solution to your woes is to put every user on the same subnet. By connecting to two networks, Window's routing table should be updated automatically to allow you to access both networks simultaneously (try testing with ping). It does not however allow users from one network to communicate with each other without a network bridge or router. Tetsuox (talk) 10:08, 5 February 2008 (UTC)


Ya I tried that but it does not work always(although the subnet of all users are equal) especially if there is a user running Vista i.e. if I host a game server users of any one network not both are able to see it...how to solve this problem. I also want that users of both the networks be able to connect to each other(I wanted to know about network bridge for that matter). Please suggest some method..

I have an unorthodox way of listening to mp3-files in my web-browser: I open them using a little script that starts downloading them (using wget) and then opens the partially downloaded file in VLC (which starts playing instantly, while the file is downloading). I'm using xubuntu, btw. I do this for several reasons: I have a slow connection and intermittent connection to the internet so I can't just stream them, because then the audio-file would be choppy (the sound would go out when there is too much traffic, and it would tie up my connection for the length of the sound-file, not the length of the download). If the connection shuts down, it continues playing for as long as it has downloaded, so I can fix it without the file stopping playback. And as a plus, I have all my clips I've listened to in a neat directory, if I ever want to listen to them again. This solution isn't for everyone, but it works very well for me, and I really like it.

However, it has one drawback. When you click on a link to an mp3-file in firefox, it downloads it and then opens the program you've assigned to deal with mp3s. This is obviously not what I want, I would like it to just send the URL to my script so it can download the thing (and start playing immediately). Right now, what I do is that I right click the link, press "Copy link location", and use the command line to launch the script. It's not a huge hassle, but it would be fantastic if I could tell firefox just to do that on its own. Any ideas about how to accomplish that? 83.250.205.56 (talk) 18:42, 9 February 2008 (UTC)[reply]

I think it is possible to write a small program that will start the download in wget and open the downloading file in VLC once the percentage count reaches a certain number. However, you could also try to set Firefox to open .mp3 with the external application wget and then manually open the file with VLC. What do you think? Kushalt 19:52, 9 February 2008 (UTC)[reply]

Maybe I wasn't entirely clear about what I want. This is the script I use (it's called "mp3player", due to my total lack of originality):
#!/bin/sh
wget -c -O ~/mp3s/`expr match "$1" '.*/\(.*\)'` $1 &
sleep 7
vlc -q ~/mp3s/`expr match "$1" '.*/\(.*\)'`
(the regexes simply strips away everything before (and including) the last slash)
So if i want to play an mp3 with the url "http://example.com/somemp3.mp3", I type in "mp3player http://example.com/somemp3.mp3", which launches wget, starts downloading it (or continues downloading it, if it was interrupted, hence the "-c"), sleeps for a few seconds (so that wget has time to resolve and download a small chunk), and then starts up VLC. My download speed is poor, but it's still higher than the mp3s bitrate, so it can start directly, pretty much. However, if I set firefox to open mp3-files using it, firefox will download the entire thing to a temporary location and then opens it with my script. I use this mostly for podcasts, so that can easily take up to 20 minutes. What I would like firefox to do instead is to not download the file, but instead send the url directly to "mp3player", without downloading it. As I said, right now I copy the links location and open it using the script, but I would like that to be automatic.
I was toying with the idea of making a custom protocol handler (like "mp3://example.com/somemp3.mp3") that launched the file and then writing a greasemonkey script that converted all the links in a page that ended in "mp3" to that way, but I couldn't get the protocol to register, even though that should be pretty easy. So I'm wondering if someone else has a suggestion 83.250.205.56 (talk) 20:25, 9 February 2008 (UTC)[reply]
Check out Template:Websearch, which lets you configure an external download manager. Also, "basename" does the same thing as the "expr" you're doing. --Sean 22:36, 9 February 2008 (UTC)[reply]

PDF Files

Does anyone know how to do this ... or even if it can be done at all? Say that I have 10 pages in a report ... Pages 1 through 9 are in a single PDF file ... and Page 10 is a single page in M.S. Word. Can I somehow bring that lone Page 10 from M.S. Word into the PDF file ... so that all 10 pages are all included in one single document? If so, how do I do that? Or is this something that can't even be done? The long story short is ... the first 9 pages are coming from one source ... and they (all 9) can be converted into a PDF file as a whole unit. And that last page (page 10) is coming from a different source ... and it can also (separately) be converted into a PDF file. But, the ten pages as a whole unit cannot be converted into a PDF file as a whole --- since they are coming from different sources before PDF conversion. So is there a way to join together somehow the two separate PDF files into one file, with all ten pages together? Thanks. (Joseph A. Spadaro (talk) 20:19, 9 February 2008 (UTC))[reply]

There's [Pdftk] which is free software, and of course the commercial Adobe Acrobat if you want a user-friendly interface. 84.239.133.86 (talk) 20:34, 9 February 2008 (UTC)[reply]
What about printing off the pdf and the word, and then shoving the 10 pages back through the scanner. Or is that just way too analogue? Joesydney (talk) 02:11, 10 February 2008 (UTC)[reply]

Thinking of switching to an Imac computer

Good afternoon,

I presently do home office work (MS Office) and some image manipulation on a pair of home based PC's...a laptop and a desktop. Netwoked wirelessly. The desktop is 7+ years old. The newer laptop recently died and was resuscitated.

Seeing as how the desktop PC will need to be replaced, and a history of occasional PC related difficulties (yes it IS still running after 7 year) what advise can one give about switching out both computers to MAc's? I'm told they are more reliable.... —Preceding unsigned comment added by 71.206.194.206 (talk) 21:12, 9 February 2008 (UTC)[reply]

Hardware is a commodity these days. There's no reason to think a Mac would be more or less reliable than some other brand if you're talking about hardware. The OS is another story- many people think OS X is more stable than Windows, but even Windows is getting better all the time. I've had a Mac for a couple years now and I can't say it's perfectly stable- it has crashed on me a couple times that I remember. The best reason to switch to a Mac would be if you prefer them. Have you tried one lately? If you like it, go for it. If not, you already know Windows can do the job you need done. Friday (talk) 21:17, 9 February 2008 (UTC)[reply]
Also try out a more user-friendly Linux distribution like Ubuntu (Linux distribution) in addition to the two, you might end up liking Ubuntu more than either of the two proprietary systems. --antilivedT | C | G 22:54, 9 February 2008 (UTC)[reply]
Macs are decent hardware, in a solid, well-built, and (usually) attractive package. OS X itself is also far closer to idiot-proof than Windows as few malware applications target it; from what I've seen that's almost the only reason people have less malware issues with it these days, as the vast majority of that crap seems to actually be executed by the user. In any case, if all you're doing is light computer usage, a new Apple computer is going to be overkill. Just get a used one, or a cheap non-apple PC. -- Consumed Crustacean (talk) 09:41, 10 February 2008 (UTC)[reply]

I would say the only reason for getting a Mac is preference. If you would prefer to get a Mac, by all means, please go ahead. The operating system is well packaged. Even though there are some kinks that need to be ironed (such as running applications natively on Intel chips), there are workarounds to them. However, before getting a Mac, please look at other alternatives, most notably, Ubuntu. Kushalt 23:28, 9 February 20 08 (UTC)

• Ignore anyone who says 'Macs are more media friendly/better spec/better machines' etc. They are very similar to PCs these days. The BEST reason for switching to mac is if you like the way it is organised/ the way the OS works. I use macs and I like the way the folders work, the way it does operations and the logic behind OSX. Please use a mac, try some stuff out, and if you find yourself more at ease, more productive, etc, then make the switch. —Preceding unsigned comment added by 86.139.90.67 (talk) 23:40, 9 February 2008 (UTC)[reply]

recording music on a dvd blank disc

i want to place some music on a cd. i don't have any blank audio cds but i have some blank dvd-r (16x). can i put misic on these and use them in my cd player?68.11.133.123 (talk) 21:31, 9 February 2008 (UTC)[reply]

Not likely, a CD player has a CD reader, not a DVD reader. The machine would not know how to read from it, and would just spin it at different speeds (just like when putting a DVD in a CD reader). -- ReyBrujo (talk) 21:35, 9 February 2008 (UTC)[reply]
If your player supports DVD-Audio then you can probably burn a DVD-Audio disc. If it supports something like MP3 then there's a chance it might be able to read files off DVDs. But CD audio definitely not. The CD format was designed at a low level for audio, and computer data (CD-ROM) was layered on top of that years later. The DVD format was designed at a low level for computer data. So CD audio is a kind of "unformat" which has no DVD equivalent even in principle. -- BenRG (talk) 22:53, 9 February 2008 (UTC)[reply]

Linux

I am look at putting "distribution" of the Linux OS on a Dell '98 or '95 with a Pentium III processor. There are a long list of "distributions" and I have no idea how to choose which one I should use. Maybe some of you will have some knowledge in this area and could recommend which I should get? Thanks, Zrs 12 (talk) 22:33, 9 February 2008 (UTC)[reply]

Xubuntu. --antilivedT | C | G 22:52, 9 February 2008 (UTC)[reply]
Do you have the link at which I could obtain it? Zrs 12 (talk) 23:08, 9 February 2008 (UTC)[reply]

Antilived gave you the Wikilink to Xubuntu. However, let me give you the link to the selection page at the xubuntu website. Just choose which mirror you are closest to and download it. Hope that helps,

Regards

Kushalt 23:22, 9 February 2008 (UTC)[reply]

Yep, got it. Downloading it right now. Thanks, Zrs 12 (talk) 23:29, 9 February 2008 (UTC)[reply]

Great! Kushalt 02:52, 10 February 2008 (UTC)  Done[reply]

Unreal Engine 2, 2.5 and 3 system requirements

What are the system requirements to Unreal Engine 2, 2.5 and 3 respectively? I can't find them online...

Also: any simple stripped-down version I can level-edit and walk around in just to see what it looks like? I'm thinking a couple of megabytes... —Preceding unsigned comment added by 79.122.91.85 (talk) 23:50, 9 February 2008 (UTC)[reply]

sound direction software

Hi. I remember stuff for macs that sends any sound to anywhere. For example, itunes could go out the built in speakers, and a skype can go through a wireless headset. Anyone remember?81.150.247.152 (talk) 23:59, 9 February 2008 (UTC)[reply]

AirPort? —BradV 03:29, 10 February 2008 (UTC)[reply]

Its more likely that it is a third party application. Kushalt 06:54, 10 February 2008 (UTC)[reply]


• I dont know about Skype, but Apple released airtunes http://www.apple.com/airportexpress/ which will wireless beam your iTunes to any jack input connector. —Preceding unsigned comment added by 86.139.90.67 (talk) 12:10, 10 February 2008 (UTC)[reply]

February 10

sharing

i recently installed a friends hard disk as a slave to compliment my 80 gb.am on xp.anytime i try to access media file from the new hard disk i get an error messag "1072867d in module 'gen_ml.dll' read off adress 00000028" but it eventually plays the file.could it be a sharing violation or what? 2.is a serial bus type of connection faster than a parallell bus?i thot serial ought to be faster coz nowadays hard disks are usually using sata coz its faster that pata?but our teacher explained that parallel is faster coz there more chanells in pata so more workload passes through unlike sata where its one data character at a tyme thus taking more time, 3.i usually use the gpedit.msc route when my task manger is disabled but now when i type gpedit.msc>admin templates>win components...... i cant see the options to eneble my task manager and other stuff especially incase of a virus threat which disables my task manager or folder options? 4.incase i want to see my password from sam in my pc when is it located or from the registry? 5.i recently saw an ad on my local paper where a guy claims he can actually by pass a nokia security code in a minute.and he wont need any tools just type a sequence of buttons on the keypad.is it a hack or a hoax?is it legal or is it just a flaw in nokia phones? —Preceding unsigned comment added by 212.49.89.177 (talk) 09:28, 10 February 2008 (UTC)[reply]

RuneScape

When doing the quest Dragon Slayer, after you defeat Melzar the Mad, what's the best way of killing the Lesser Demon? 124.181.26.71 (talk) 09:51, 10 February 2008 (UTC)[reply]