Jump to content

Wikipedia:Reference desk/Computing

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Wonderley (talk | contribs) at 02:52, 17 November 2010 (→‎Wireless network for a Verizon phone: new section). 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:
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:


November 12

Gmail Offline: still https?

Hi all-- is Gmail offline still over https, as opposed to http? -- 99.228.64.60 (talk) 03:44, 12 November 2010 (UTC)[reply]

Gmail as webmail is accessed over a HTTPS connection. If you mean connecting to your Gmail account via IMAP in order to download/transmit messages, yes, that is also conducted (with Microsoft Outlook) over a HTTPS connection. However, I am a user of Outlook and Gmail, so I can only speak for Microsoft Outlook as the email-client. Other email-clients may or may not connect to Gmail over a secure connection. IDK. Rocketshiporion 08:34, 12 November 2010 (UTC)[reply]

I'm sure the OP means this, not just an IMAP connection. --Mr.98 (talk) 12:38, 12 November 2010 (UTC)[reply]
Sorry but what? If you're using IMAP, you're using IMAP. HTTPS (or HTTP) isn't involved. As our article mentions, there are 2 methods to use IMAP over Transport Layer Security and IIRC Gmail supports one of them. Outlook would use that if it's enabled/set up properly. However HTTPS would still not be involved. Also Gmail is not always accessed over HTTPS. The authentication should be but Gmail itself can be accessed over HTTP if you try to. There is an option to force HTTPS in the general account settings and it may or may not be enabled by default (can't remember). Nil Einne (talk) 15:00, 12 November 2010 (UTC)[reply]
Sorry, I should have mentioned at the start, I mean Gmail Labs' offline feature, via the now defunct Google Gears. -- Zanimum (talk) 16:58, 12 November 2010 (UTC)[reply]

Dual graphics cards

I am planning on buying a laptop which has an Intel Core i3 processor and an ATI MOBILITY RADEON HD5470 graphics card. The Intel i3 processor has good integrated graphics so I was wondering if that means that I will have dual graphic 'cards'. Games like Call of Duty 4 have the option in the video settings of 'Dual Video cards'. I never enabled it since i didnt have that, but could I do it with this laptop? Does both a dedicated graphics card and integrated graphics mean that my overall graphics performance will be really good? Thanks. --116.71.62.207 (talk) 09:42, 12 November 2010 (UTC)[reply]

For laptops, that means "the best of both worlds".
  • Integrated graphics = better battery life with mediocre performance
  • Discrete graphics = mediocre battery life with pretty decent performance

This is probably one reason why we don't see an argument about this on the desktop market. Being connected to a power supply all the time, these computers do not need to conserve power (well, it is not a top priority anyway).

It all depends on the computer you are getting. From a personal level, the advice I can give you is this -- if you play games on steam and need a computer now, do not get nvidia optimus. I have it (GeForce GT 325M) and it is stupid as far as steam is concerned. Kushal (talk) 03:54, 13 November 2010 (UTC)[reply]

Let me try to answer your question. My answer is "No". It is (in almost all cases) an either or scenario, meaning you are either using the integrated graphics or the discrete graphics. Newer monkeys like Optimus can do nice tricks (switch graphics card on the fly if it understands a change is needed, without rebooting) but overall, your graphics will not improve from having both. For that, you need something like SLI. See Scalable Link Interface. Kushal (talk) 03:58, 13 November 2010 (UTC)[reply]
ATI Hybrid Graphics actually does run both GPUs simultaneously to improve performance, and is available on some laptops. I think it's invisible to games, which just see the equivalent of a faster graphics chip. I get the impression that it doesn't work with Intel GPUs, but I'm not sure. -- BenRG (talk) 06:02, 13 November 2010 (UTC)[reply]

Master Proxy Server Setting

My school has a internet service for students with laptops, but to use it I have to change the proxy server settings of my browser and any other program I want to use. This is time consuming and annoying, and I have to change it all again when I get home. Also, some programs don't even have proxy server settings so I can't use them at all at school. So in Windows 7 is it at all possible to set a master proxy server setting that every program uses for the internet, rather than manually changing them all individually? Thanks for the help —Preceding unsigned comment added by 95.78.103.160 (talk) 11:42, 12 November 2010 (UTC)[reply]

I can't answer this, but I made this question into a new section for you. In future, please do not forget to add a title to your questions. --KägeTorä - (影虎) (TALK) 13:17, 12 November 2010 (UTC)[reply]

Time Machine restore won't accept my password

The wife got a new computer and I got her old one, a Mac Pro. It's an upgrade for me (old system is a PowerMac G4). I did a fresh install of OS X 10.5 and then used a TM back up to install all my personal files/settings. The old system was running 10.5 as well. Now that I've gone through the install and restore from TM, the system won't accept my password. It's not the caps lock. I've even tried things like 'Admin' and just entering a blank password. Any ideas what's going on here and how I can fix it? Dismas|(talk) 16:41, 12 November 2010 (UTC)[reply]

Got it worked out. The install disc allows you to reset the password. Dismas|(talk) 02:40, 13 November 2010 (UTC)[reply]

Ruby Programming Question

Hi:) Is it possible, in Ruby, to make a class whose objects will share data and methods with given object as if it were internal to each; or just to it? For example; suppose I have

class Bag

 def initialize(y)
  @value = y
 end

 def fivetimes
  return @value * 5
 end
end

class Item

 def initialize(x)
  @something = x * fivetimes
 end

 def blah
  return @value
 end
end

Would there be a simple way to set this up so that every time I make an Item object it would use the data and methods specific to some Bag object? I want to do this without having to redefine fivetimes or having to explicitly write attr_reader's etc; I am using this for something much more complicated and if I could share data/methods it would reduce the complexity greatly:) [Essentially, I want to make objects that are related to another object just like subclasses are related to classes] Thank you for any help:-) 71.61.7.220 (talk) 17:14, 12 November 2010 (UTC)[reply]

problem in using multiple ask transmitters

There are some interference while using more than one ask transmitters in same locality,even the datas are encoded for each transmitters.How to avoid this problem or what is the additional circuitry which should be used.are there any alternative way of transmitting of signals at nearer distances(10 metres). my mail address: Email-address removed - we will answer your question here. wikipedia logname:vinodhp —Preceding unsigned comment added by Vinodhp (talkcontribs) 17:44, 12 November 2010 (UTC)[reply]

These transmitters all are operating in the same frequency? -Yyy (talk) 09:24, 13 November 2010 (UTC)[reply]
In case it is not clear, the OP is asking about amplitude-shift keying transmitters. As with any shared communication channel, there is a possibility of a communication collision. Typically, this must be handled with a low-level protocol. This can take the form of either:
  1. Carrier sense multiple access with collision avoidance - in which the transmitters are hard-wired to never transmit at the same time (like a very simple TDMA scheme); or
  2. Carrier sense multiple access with collision detection, in which transmitters may transmit at any time, but must constantly monitor the signal and take note if another transmission starts simultaneously, interfering with the channel. If two (or more) transmitters are active, one or both (or all) must cease transmission and "take turns." This may require a complicated cooperative scheduling technique.
These systems have different best, worst, and average efficiency. In collision-avoidance schemes, the full channel capacity is not used unless all transmitters are active at the same time - so it suffers from worse average-case performance; but it has much better worst-case-performance (no bandwidth is ever wasted due to collision and retransmission). In collision detection schemes, the channel suffers worse worst-case performance; and if poorly implemented, communication can deadlock. But because the channel allocation is dynamic, it is possible to achieve far better peak-performance if only one transmitter is requesting access at a given instance. When interrupted by another transmitter, a collision is detected (and hopefully resolved). Many sophisticated algorithms exist for collision detection; exponentially-weighted random retransmit delay is the most straightforward and commonly-implemented system. Nimur (talk) 20:07, 13 November 2010 (UTC)[reply]

Most compact programming language

What programming language is the most compact, and can do the most with the least number of words? I know that at least one language uses single-characters rather than words, but I do *not* mean compact in that sense. Thanks 92.28.248.229 (talk) 17:55, 12 November 2010 (UTC)[reply]

The Lambda Calculus has only three forms: abstraction (creating an anonymous function), application (applying a function), and variable reference (using the argument of a function). The usual notation requires just lambdas, periods, parentheses, and identifiers. At first, it's not obvious how it's possible to represent all computation in it (all values are functions), but it is possible, and its simplicity makes it an ideal subject for programming languages research. There's also something really pleasing about it that I can't quite explain.
There's also itoa, which has only two symbols, but it's just an esoteric language.
If you're interested in programming languages that people write software in, then Smalltalk and C are both candidates. Paul (Stansifer) 18:11, 12 November 2010 (UTC)[reply]
I don't think it would be a contender in the sense that you asked, but BBC Basic, with its mixture of abbreviated commands and direct memory operators, could be amazingly compact in the sense of compressing an enormous amount of code into 32KB of RAM. I don't suppose anyone uses it these days, but I'm still intending to resurrect an old BBC (Acorn) when I have nothing else to do. Dbfirs 18:21, 12 November 2010 (UTC)[reply]

Are you sure the Lambda Calculus is a programming language? It does not have any entry here: http://99-bottles-of-beer.net/ Where would I get an interpretor or compiler for it from? Wouldnt the 99BOB task be very long-winded and un-compact? 92.28.248.229 (talk) 19:37, 12 November 2010 (UTC)[reply]

Perhaps my question has been misunderstood. I don't mean which programming language has the least number of words, I mean which language could you write a program for, for example, the "99 bottles of bear" task which would require the least number of words to be used. So for example "for n = 1 to 99" would be six words, and "& " £ ~ _ $" would be six words as well. A language which required you to write something like "Define an entity n Define number 1 Define number 99 Do for every n from number equals 1 to number equals 99 increment equals 1" would be far less compact.

In effect I'm asking something like: which of the programs in the 99 bottles of beer website is the shortest (disregarding the length of the words used). Thanks 92.28.248.229 (talk) 19:46, 12 November 2010 (UTC)[reply]

A lot of the programs on that site are written in a non-minimal way. I would still say something like APL can be the most terse, even leaving aside its single-character keywords. As for languages in widespread use I would put Perl up against most contenders. Perl programmers have even made a game out of it in Perl golf. --Sean 20:48, 12 November 2010 (UTC)[reply]
The problem with this question is that most programming languages are "functional" - meaning that they are designed to allow users to expand on the language by writing their own functions. As such, many people write libraries of functions to expand on the functionality of the language. So, this question is basically asking which language has the most functions written such that anything you want to do can be done in one function. Well, tell me what you want to do and I can write a function to do it in just about any language. Then, in your program, you include my library and write a single function call. That is pretty compact for you. If you try to argue that the function I wrote is not very compact, then I can argue back that any function you try to use in any programming language is eventually going to become machine language - which is not compact at all. In the end, this just becomes a matter of rationalizing what functions are considered part of the language and which are not. -- kainaw 21:35, 12 November 2010 (UTC)[reply]
(That's not what functional language means. Every practical language supports software libraries, even imperative languages. Paul (Stansifer) 22:28, 12 November 2010 (UTC))[reply]
That is the reason "functional" was put in quotes. It is not being used to define functional languages. It is being used to define languages with allow functions - pretty much every programming language. -- kainaw 15:42, 13 November 2010 (UTC)[reply]
I think you're still talking about libraries, not functions, though. Consider FP, an impractical programming language that has functions, but not libraries, and then consider the scene description language for POV-Ray, which lacks functions (as we ordinarily understand them), but has a Turing-complete macro system, whose macros you can import via libraries. And they're not called "macros" for nothing; they are really a textual abstraction instead of an abstraction over values. It's wonky, but it works. Paul (Stansifer) 16:56, 14 November 2010 (UTC)[reply]

The solution to your problem is to include the writing of the function within the total program size. 92.28.248.229 (talk) 22:22, 12 November 2010 (UTC)[reply]

Simplicity of language is a totally different goal from compactness of programs. It's also quite hard to define, except for specific problems. So, for your example, HQ9+ is the obvious winner, since the program that prints the lyrics is just one character long. The language accomplishes this by sacrificing other problems; most languages choose to use the character 9 for something more generally useful.
That said, compactness in general is something quite desirable. Languages renowned for compactness include Lisp, Perl, and (although this is one that I'm more skeptical of) Forth, and all their relatives.
The reason that the Lambda Calculus doesn't show up on that list is that it's a theoretical language. There's no such thing as output, just computation (though it's not hard to imagine tacking output on). (Actually one of my professors would kill me if I didn't mention that, technically, it's not a language until you choose an evaluation strategy for it. But this is a minor detail from the perspective of this discussion, since many programs behave the same regardless of evaluation strategy.) Paul (Stansifer) 22:28, 12 November 2010 (UTC)[reply]
I would disagree. From reading the comments [1] which doesn't require any character is surely the real winner. Nil Einne (talk) 13:08, 15 November 2010 (UTC)[reply]

Did you overlook the second word in the question? 92.28.248.229 (talk) 22:32, 12 November 2010 (UTC)[reply]

Sorry, I have a tendency to just say "language" when I mean "programming language". I actually managed to make the reverse mistake today, too, when I made a comment about the language Lojban without saying that it was a human language, not a programming language. Paul (Stansifer) 01:08, 13 November 2010 (UTC)[reply]
Would you consider the 4GL and 5GL languages in your equation? If so, they can be remarkably compact, as they don't need to focus on control flow and the higher level of abstraction can be a major advantage. The question is also a tad dependent on the task. For example, if I wanted to do text manipulation, then Perl's regular expressions allow very complex tasks in very few lines. Languages tend to be good at particular tasks, so to some extent the task determines the compactness. (For example, you could do a GUI in BASIC, and I have, but it is much more compact to do it in Java. But Java is pretty complex for simple console output, while BASIC is quite good at that). Is there a specific type of task you have in mind? - Bilby (talk) 22:53, 12 November 2010 (UTC)[reply]

Yes, what languages did you have in mind? 92.24.191.57 (talk) 12:39, 13 November 2010 (UTC)[reply]

Microsoft's contract with purchasers/users

When Microsoft says things like "We are not going to support Windows 99 any more" or "We're closing down the online games server for WinXP" (GrrrRRRH!!!) isnt this breaking their contract with the people who bought their software/OSsystems? If not, why not? Thanks. 92.28.248.229 (talk) 18:01, 12 November 2010 (UTC)[reply]

It's impossible to answer this without actually reading the license agreement for the particular software you're asking about. (Technically it's not a contract.) Microsoft's attorneys are smart enough to craft the license agreement to say things like "Microsoft only guarantees until December 31, 2005 that such-and-such online features will be operational." The license from any software publisher is generally crafted in order to maximize the publisher's "wiggle room" to do things like cancel online services. As far as support goes, Microsoft is more explicit about this than any other company I can think of: this page mentions their "lifecycle information", so you can find out things like: Windows 98 support started 6/30/1998; the "mainstream support" ended 6/30/2002; and the "Extended support" (paid incident support) ended 7/11/2006. What I find interesting, and a legally untested area, is what happens if Microsoft finally ends Windows XP support, including security updates, once and for all, while a very large base of Windows XP machines remains out there, and Microsoft will be seen as doing nothing to stop botnets when it finally stops issuing security patches. Comet Tuttle (talk) 18:27, 12 November 2010 (UTC)[reply]
PS: Laws override license agreements and contracts, so if Microsoft had claimed on the Windows XP box that Microsoft will run some Windows XP online games server forever, then if Microsoft were to shut it down, consumers could sue Microsoft in their state's courts for things like false advertising. The strongest remedy in that case would probably be a refund of the purchase price. But, again, the lawyers of most any large software publisher are canny enough to avoid making unbounded promises on their product packaging. Comet Tuttle (talk) 18:32, 12 November 2010 (UTC)[reply]

How do I force a window (e.g. Notepad) to float on top in Microsoft WindowsXP

Resolved

(I am using Microsoft WindowsXP,Home Edition, Version 2002,Service Pack3).
Sometimes I would like to "pin down" another window (Notepad or an open folder etc.) such that it stays floating on top of the other open windows – especially my active web-browser window.
How do I do this?
--Seren-dipper (talk) 18:33, 12 November 2010 (UTC)[reply]

I do not remember any sort of functionality like that in WinXP. I do remember a program called "Nail It" that provided that functionality. I Googled and there are many hits for a program called "Nail It" that claim to keep windows floating on top of all other windows. -- kainaw 18:53, 12 November 2010 (UTC)[reply]
Google search for "always on top" in quotes returns a lot of programs that claim to do what you want, many of them free. I tested this one and it works as advertised 82.44.55.25 (talk) 22:16, 12 November 2010 (UTC)[reply]
Thank you both! :-)
--Seren-dipper (talk) 04:25, 15 November 2010 (UTC)[reply]

Strange infection/virus/bot?

I have a potentially long question but will try to be brief. Without me even being at my desk, my computer seems to be typing things, or making random keystrokes, or even worse, clicking my mouse. I`ve found my mail open, control Panel open, My Computer open, and at least twice, my WEBCAM ON!!!! I`ve changed hard-drives several times. I have even changed computers. Not one of my anti-virus programs seems to be able to find anything wrong. I have "AVG-FREE", "AVAST", Windows Firewall, whatever AOL has running, etc... This problems is not with AOL, as the problem was occuring before I installed AOL on a 'new' hard-drive. I`d really love to rid myself of this problem, as you can probably imagine how disconcerting it is to find one`s WEBCAM on, for no reason. Thank you for any help you might be able to deliver. If more information is required, please don`t hesitate to ask: I`ll be watching. TY, DAVE 24.138.176.63 (talk) 20:05, 12 November 2010 (UTC)[reply]

Could you explain what exactly you mean by saying your webcam is on? My Webcam has a green light that's turned on whenever the Webcam is plugged into the machine; that just means it's powered on, but doesn't mean it's capturing any frames of video and sending them to the bad guys. Comet Tuttle (talk) 21:37, 12 November 2010 (UTC)[reply]
What operating system are you using? --Belchman (talk) 22:12, 12 November 2010 (UTC)[reply]
I`ve reverted to Windows XP sp2, but HAD sp3. No change. ty, Dave24.138.176.63 (talk) 22:14, 12 November 2010 (UTC)[reply]
I'm sorry, but I did not know how to add to your question, and, as such, had to reply as another question.
What I meant by 'webcam on' was my built-in webcam, in my Dell SP2008WFP monitor. The tiny blue light is only on when I`m capturing. I tried to keep my original post brief, but many other strange things have happened. ONE good example is my sound being muted. Another is being shutdown, as though one went through the process of doing that by clicking on <Start> <Turn Off Computer> <Turn Off>, with the associated loss of color on the screen. VERY weird. TY again, DAVE24.138.176.63 (talk) 21:59, 12 November 2010 (UTC)[reply]
You would hit the "Edit" link to the right of their question and put your response at the bottom. You can use colons : to indent your response. I have done this for you. Dismas|(talk) 22:16, 12 November 2010 (UTC)[reply]
You might have very strong electrical interference which creates false results. I had this problem when a central heating system would send out "spark" interference (from the thermostat?) when it heated. 92.28.248.229 (talk) 22:28, 12 November 2010 (UTC)[reply]
I`ve been at the same station for about 5 years. I very much doubt that ONE "spark" could perform a proper shutdown procedure? Said "spark" also seems to like opening my calculator and Windows Media Player. Sorry,,,,I ju8st don`t think it`s a "spark". Please pardon the sarcasm. Thank you just the same, 92.28. DAVE 24.138.176.63 (talk) 22:49, 12 November 2010 (UTC)[reply]
Further, I have decent surge/electrical protection. This problem started about six weeks ago, on multiple drives, and on two separate computers. I`m no longer using my Dell monitor until this is solved. I sure hope this helps someone to diagnose this pesky malware. TY, DAVE 24.138.176.63 (talk) 22:53, 12 November 2010 (UTC)[reply]
The sparking I had would continue for several seconds and sends out strong radio random interference on all frequencies, not a sudden "snap", some of which your computer would interperate as commands. Six weeks ago - did your heating come on then? If you are using a wireless mouse and keyboard its even more likely. 92.15.7.155 (talk) 15:35, 14 November 2010 (UTC)[reply]
Does anyone else have physical access to your pc? this could be some sort of VNC or possibly a rootkit. Try using MS Rootkit Revealer and also check your startup programs for anything suspicious (start -> run -> msconfig or maybe go into the registry \\hklm\software\microsoft\windows\currentversion\run) PrinzPH (talk) 01:03, 13 November 2010 (UTC)[reply]
Noone has physical access. I`ll try your suggestions. Tyvm, Dave 24.138.176.63 (talk) 01:14, 13 November 2010 (UTC)u[reply]
RootkitRevealer, umm, revealed these two 'things':

HKLM\SECURITY\policy\secrets\SAC and HKLM\SECURITY\policy\secrets\SAI. Should I be concerned? If so, what should I do next? I didn`t quite understand what a read about the 'revealer' on its page. TY, Dave 24.138.176.63 (talk) 01:49, 13 November 2010 (UTC)[reply]

I should have probably added this additional information about above:

Timestamp: 11/9/2010 10:47 AM for both. Size: 0 bytes for both. Description: Key name contains embedded nulls [*] for both. Sorry for failing to recognize my omition in previous. Dave 24.138.176.63 (talk) 01:55, 13 November 2010 (UTC)[reply]

As far as I know those two keys (with the embedded nulls) are normal and not a sign of malware. This sounds to me like a dodgy keyboard (or possibly a dodgy mouse or other hardware). All of the effects you've seen could be triggered by keypresses. For example, some keyboards have a key that's dedicated to opening your email program, and even if yours doesn't it might be mistakenly sending that key code to the OS. Pressing Alt+F4 with the desktop selected will open the shutdown dialog, there's probably a key combo to enable/disable the webcam, and so on. Do the two computers with this problem have any hardware in common? -- BenRG (talk) 05:42, 13 November 2010 (UTC)[reply]
It's a longshot, but are you using wireless keyboard/mouse? If so, try switching to wired ones. APL (talk) 08:46, 13 November 2010 (UTC)[reply]
if u are using internet someone could be controlling your desktop remotely i dont have much information on this but if you want you could read about it searching on Google. a site as i was told helps you to do it ie logmein.com this piece of information i got from Youtube take ur comp to some bot completion n u will get Ist prize, really awesome if its happening all by itself--Myownid420 (talk) 17:23, 13 November 2010 (UTC)[reply]
Thank you all. A couple of more clues: First, I AM using a wireless mouse (will change, as per instruction) and further, the receiver 'accepts' keyboard commands also. (Keyboard went kaput after a beer accident!) Second, all suggestions regarding remote-controlling are inapplicable as this problem occurs even when removing my Ethernet line, and completely offline. Third, and last for now, my keyboard DOES have a few Special Keys. I`ll change k/boards. Both computers shared said mouse and keyboard. Thank you all for your help. I`ll keep you apprised. Ohh,,,The webcam was built-into the monitor. I`m no longer using it, and therefore no more webcam until this problem is solved. I swear Myownid, all by itself! It shutdown on me overnight, while scanning with SpyBot. Thank you again, Dave. 24.138.176.63 (talk) 17:41, 13 November 2010 (UTC)[reply]
Could this be one of those well-known office pranks? Someone has probably plugged a wireless receiver into one of your rear USB ports and is controlling your PC from their wireless mouse/keyboard. Is your PC in an office environment? Check who's sitting behind you and trying very hard to contain their laughter. They could also have installed AutoHotkey or some scripting program or even just messed around with Task Scheduler to run applications at certain times of the day or based on certain triggers. Zunaid 13:43, 15 November 2010 (UTC)[reply]
Now THAT would be absolutely hilarious, Zunaid, but I`m not in an office, I`m at home. Follow-up though: I have isolated the 'malware' to my receiver. Having un-plugged it, no more 'hits'. The only problem left now is to find what is, since about 6 weeks ago, sending the 'commands' that my receiver is picking up. I suspected a remote thermometer, but I was still getting 'hits' after removing its batteries. I suspected that these cheap radios do not have the best selectivity and thought maybe installing batteries into the broken keyboard might 'lock it in', and stop spurious hits. (The keyboard still transmits, in case someone was wondering. Just a few keys no longer work. "ZXCV" specifically.) I still continued to get 'hits'. Knowing the frequency this wireless set operates on would certainly help me find the culperate. Does anyone know where I might find that out? It is not printed on any of the pieces, and I bought used, so, as such, no written information. I know 6 weeks sounds coincidental with heat being turned-on, and a thermostat could be causing the problem, but I`ve been here for over 7 years, and it never happened before. Unless my neighbor installed a new thermostat, or the thermostat has gotten 'dirty', or whatever, I have to think it must be something else. I`ll check. Thank you ALL for your input. I`m very happy to know this is NOT some sort of virus. Maybe my receiver has begun 'accepting' too much. Apologies for being so wordy. Sincerely, Dave 24.138.176.63 (talk) 21:02, 16 November 2010 (UTC)[reply]

Want MORE browser history

Searched the archives and the browser history wikipedia page, no answer there. Unlike most folks, interested in cleaning out their browser history, I'd like the history to be 'more complete; maybe you've noticed that a lot of times when you open the history, many pages you've accessed are not listed. Not just that it's one page with a bunch of frames that change or some sort of JS that changes the contents, but the whole site does not get saved in history. Makes it harder when I want to look back at something particular I saw that morning on somebody's blog, etc. that doesn't really popup on top of a Google search among a zillion pages on the topic that don't address what I was looking for. This seems to be true in IE and Chrome, anyway. What's the deal?

Gzuckier (talk) 22:36, 12 November 2010 (UTC)[reply]

Me too. I would also like the history to be saved categorised by date, so that you can go back to something you saw five weeks ago on a Tuesday. And I'd like History to be back-upable and reloadable. And I'd like it no longer revealed to websites either. Can any Firefox extensions do this? 92.24.191.57 (talk) 12:46, 13 November 2010 (UTC)[reply]


November 13

FTP running on CentOs, allow upload but disallow delete

Hi All,

I was wondering what I could do to allow specific (non-anonymous) users to upload files but not delete them.

TIA PrinzPH (talk) 00:48, 13 November 2010 (UTC)[reply]

Program memory size

if i have written a code to load a given program on to the specified size of memory. but the specified size of memory not available in a single stretch to load the program. this problem has to be solved. to solve this problem what input and output will i have to get. 117.204.3.99 (talk) 01:33, 13 November 2010 (UTC)[reply]

It appears that you are learning about fragmentation. Have you read this article and do you understand the concept? -- kainaw 15:39, 13 November 2010 (UTC)[reply]

Illustrator's equivalent of Photoshop's Twirl Filter

In Adobe Photoshop, there is a filter called Twirl where I can adjust by how many degrees I want to twist a an image. I was wondering if there was something close to this effect in Adobe Illustrator CS5 because its Twist effect does kind of the same thing but it comes out jagged and I want a smooth twirl effect for image. The image kind I want to work with is vector so I can't use the filter in Photoshop. --Melab±1 02:32, 13 November 2010 (UTC)[reply]

"Himem.sys", a 'software driver' for use in personal computers.

This is a request for help. The subject of memory management using such drivers as Himem.sys is covered well by other pages accessable by the search engine of Wikipedia. However, some versions of Hymem.sys allow the use of a 'switch' which obviously modifies it's operation in some way. When the command: Himem.sys is set as the first command in the Config.sys file, then at boot time for the computer the operating system is loaded into upper memory and run from there. This is a necessary prerequisite for such operating systems as Windows 95 and 98, although it is not mandatory for using the early versions of Dos. The 'switch' is: ... "/ testmem on|off" ignoring the quote marks. Thus the command is either - Hymem.sys /testmem off or Himem.sys /testmem on. What Himem.sys does is obvious, what the other does is not.


My question is this. Since nowhere in Wikipedia can I find the function of this switch defined, nor can I find it defined in any Dos book either, would someone who knows please reply and attempt to explain. I have two dos books that clearly list the switch with Himem.sys without explaination.

Thank you. —Preceding unsigned comment added by Old Radio Searcher (talkcontribs) 03:27, 13 November 2010 (UTC)[reply]

I can't seem to find any reference for himem.sys on any of microsoft's sites, which is irritating, but if I recall correctly, the /testmem switch controlls a memory test that occurs during boot-up. If you have a lot of ram, and you're certain that there's no problem with it, it's worth turning that off to shave a couple of seconds off your boot time.
That's my recollection, but I could be completely wrong, I can't find a reference to back me up on this. APL (talk) 03:45, 13 November 2010 (UTC)[reply]
Google search for "himem.sys command line switches" finds several references, including [2] [3][4]. Mitch Ames (talk) 09:52, 13 November 2010 (UTC)[reply]
Search for a file called MSDOSDRV.TXT. The file, which is included with Windows 9x, describes the functions and switches of various MS-DOS device drivers (including HIMEM.SYS) under Windows 9x. An excerpt from the file relevant to the switch in question:
    /TESTMEM:ON|OFF
       Determines whether HIMEM performs a memory test when your 
       computer starts. By default, HIMEM tests the reliability 
       of your computer's extended memory each time your computer 
       starts. This test can identify memory that is no longer 
       reliable, and unreliable memory can cause system instability 
       or loss of data. HIMEM's memory test is more thorough than
       the standard power-up memory test performed by most computers. 
       To prevent HIMEM from performing the memory test, specify 
       /TESTMEM:OFF. Disabling the memory test will shorten the 
       startup process. The default setting is /TESTMEM:ON.
118.96.167.169 (talk) 01:56, 15 November 2010 (UTC)[reply]

Saving short texts online

Is there a free service that provides me with the possibility of saving short texts online for later access? When I need to do this I use drafts in my email account, but is there another way? —Preceding unsigned comment added by Jib-boom (talkcontribs) 09:05, 13 November 2010 (UTC)[reply]

I am using google docs. -Yyy (talk) 09:25, 13 November 2010 (UTC)[reply]

Pastebin 82.44.55.25 (talk) 12:08, 13 November 2010 (UTC)[reply]

delete program from the list of programs for spec. file types (and generally: delete!!)

How do I delete a program from the list of programs to be used with certain file types? (Where is that list anyways?)

After deleting a computer program (a test version of Microsoft Office 2003), it still appears in the list of programs with which to open some file extensions (e.g., docx): When right-clicking on a docx document & then clicking on "Open with," the first list item is the deleted Office version, even before the [older] working Word version is listed. 1.) How do I delete it from that list?

When I click to open the docx document with this (deleted!) program, I get two error messages, but then the basic Word (-> Office 2003) layout opens. 2.) Why is that still on the computer at all? How can I delete it?

Thanks for answering, Thanks for answering (talk) 12:40, 13 November 2010 (UTC)[reply]

You could try Revo Uninstaller http://download.cnet.com/Revo-Uninstaller/3000-2096_4-10687648.html Before using that, see if Ccleaner can fix it. If Revo does not fix it as-is, you could get Revo running, re-instal MO2003 (with Revo monitoring what was being installed), the get Revo to uninstall MO2003. Edit: there is also ZSoft Unistaller to try. 92.15.30.196 (talk) 16:29, 13 November 2010 (UTC)[reply]

Better algorithm?

I've just been given some code written in fortran that does something like this:

IF (x > 1 .and. x < 2)
A=1
GOTO 10
IF (x > 2 .and. x < 3)
A=2
GOTO 10

..repeated many times...


Now clearly the guy who wrote didnt seem of heard of a switch statement so he could of used break rather rather GOTO. Now after profiling the code (this bit plus the rest of the code) the program does seem to spend alot of time in this function, so it does seem sensible to do some optermisation here if possible. Would switching the code to a switch statement have much of an effect? or turning into IF..ELSE IF..ELSE? The code seems to be effectively a search over 3 planes (x,y,z) so would a search algorithms (some sort of tree i think?) work better? I'm not really an expert in these things so most of what i know i've picked up in its and pieces of the web, Thanks--81.147.110.238 (talk) 12:47, 13 November 2010 (UTC)[reply]

To me that seems just like an extremely awkward way to convert a float to an integer. Mind any special cases like x = 2.0, though. A binary search would be a lot better than what you have now but by no means the proper solution when INT(x) works just as well. --85.77.180.190 (talk) 15:02, 13 November 2010 (UTC)[reply]
Throwing it all out and replacing with INT is the correct solution according to what is shown here:
A=INT(x)
GOTO 10
However, that is not identical to the code shown here. According to what you have typed, functionality is undefined for x=1 and x=2. It needs to check if x "is greater than or equal to" 1. Further, using IF-ELSE would be better than just a lot of IF statements. As such, a switch wouldn't necessarily be any better once compiled. -- kainaw 15:33, 13 November 2010 (UTC)[reply]
Sorry should of been clearer, the numbers i used where just randomly picked from my head when i wrote it into wikipedia, I'll have a look at binary search though, thanks--81.147.110.238 (talk) 15:49, 14 November 2010 (UTC)[reply]

Random Numbers

I'm looking for a simple program which can generate random numbers between 1 and 100 and list the frequency which each number comes up. I searched with google and found plenty of random number gen erators, but couldn't find anything specific to this, ie the listing of frequency. The computer operating system is Windows 7. Thanks. —Preceding unsigned comment added by 82.44.55.25 (talk) 14:45, 13 November 2010 (UTC)[reply]

Use an array. The program will look like this in PHP (since it is pretty much a prototyping language):
$a = array();
for($i=1; $i<=100; $i++) $a[$i]=0; // Preset all values to zero.
for($i=0; $i<999999; $i++) // Generate 999999 random numbers.
{
  $r = rand(1,100); // Generate a random number 1 to 100
  $a[$r]++; // Increment the count for $r
}
for($i=1; $i<=100; $i++) print $i.": ".$a[$i]."\n"; // Print the frequency of each index.
It is rather simple to rewrite this in any common programming language. -- kainaw 15:27, 13 November 2010 (UTC)[reply]
Note that the frequency distribution can hypothetically vary a lot depending on how good the pseudorandom algorithm is. --Mr.98 (talk) 21:29, 13 November 2010 (UTC)[reply]

C++ header file problem

hi all,
i had been writing programms in C++ that was kept in C drive of my computer (it contains files of window), later i had to re install the windows,after doing so i putthe folder ie TC in c drive again. Now whenever i am making a programm and compling it a error shows up { actually every function is flashed as undefined or nut having a prototype but i know root error}
      Unable to open include file 'IOSTREAM.H '
this error shows up with name of every header file. When i press F1(help), under Possible Causes it shows :
The named file does not exit ---i know it exist i checked it out
An #include file included itself ---- i didane understood what it means please explain.
You donot have files set in CONFIG.SYS on your root directory. --- this i suspect most
Under solutions it shows:
Verify that the named file exists -- that i checked
set FILES = 20 in CONFIG.SYS --- could you please tell me how to do this

TAnx :) very much good night --Myownid420 (talk) 17:13, 13 November 2010 (UTC)[reply]

  • Unable to open include file 'IOSTREAM.H' - note that C++ syntax has changed somewhat from the early days. Modern convention is that C++ standard library headers are specified without the ".h" e.g. #include <iostream> (new way) vs. #include <iostream.h> (old way) - I don't know what your compiler is expecting.
  • The named file does not exi[s]t - even if the file exists, the compiler may not be looking for it in the correct location. You may need to update the search paths where your compiler is looking for header files (how to do this varies based on the compiler).
  • An #include file included itself - Circular includes (a circular dependency) occur when you, e.g. have the line #include "example.h" in example.h itself, or in another header file which is itself included in example.h. This is the main reason for "include guards", the #ifndef/#define/#endif constructs that most C/C++ programs use in their header files.
  • set FILES = 20 in CONFIG.SYS - CONFIG.SYS is a DOS configuration file, usually located in the root directory of the boot drive (i.e. C:\). For recent versions of Windows, it is completely superfluous, and may not even exist. The only reason for it to exist is for legacy support of DOS applications.
My impression is that you are either using a very old version of DOS/Windows, or you are using a very old C++ compiler. Unless you absolutely need the legacy support that an old compiler provides, I would highly recommend getting a modern C++ compiler. GCC is a well-regarded, free compiler available for multiple operating systems. Cygwin and mingw are Windows versions of GCC. -- 174.21.243.119 (talk) 19:39, 13 November 2010 (UTC)[reply]
the problem is that we are being tought C++ in school, i can use new versions of compiler but that will not be the as in our school, so i may feel incompatible .i am using version 3.0 and using windows XP service pack 3. i am open to all suggestions thanx--Myownid420 (talk) 02:45, 14 November 2010 (UTC)[reply]
Version 3 of which compiler? Also, how are you running the compiler (GUI/command line/etc.)? -- 174.21.243.119 (talk) 19:35, 14 November 2010 (UTC)[reply]
It looks like the compiler is Borland Turbo C (the OP says "after doing so i putthe folder ie TC in c drive again"). I think this might be the problem. If the folder containing Turbo C was simply copied into the C drive, anything set up during a full installation won't have happened, and so things like PATH statements may be in error. My suggestion would be to reinstall Turbo C. --Phil Holmes (talk) 18:34, 15 November 2010 (UTC)[reply]

Did Google have first data-center cooling towers?

I've heard that Google's data centers were the first ones to use cooling towers. Is that right? 209.42.105.74 (talk) 18:17, 13 November 2010 (UTC)[reply]

Nope. Water-cooling has existed for a very very long time in the computer industry. Cray-2 is famous for its unique shape, designed to facilitate water-cooling. Even before this, chilled water systems have been used to cool mainframes; and water coolant was commonly used even for pre-digital electronics (like RADARs and power stations). So, if anybody wants to claim that Google was the first to use a cooling-tower, they'll have to come up with some pedantic definitions of "first", "water", "cooling", and "tower." They might be able to make a claim for "biggest" towers specifically for cooling computers, but even that is a bit hard to back up; this New York Times article Google's not-so-very-secret weapon describes their cooling towers in an Oregon data center, but it isn't clear from the article how large they are. Nonetheless, massive chilled water plants are a common part of any large building or infrastructure, especially one that uses massive quantities of industrial equipment or electronics. IBM Poughkeepsie just installed 1700 tons of water-cooling capacity. And, the City of Toronto's cooling system will blow Google's towers out of the figurative water: they use deep lake water cooling, with all of Lake Ontario as a cold reservoir, to provide 270 megawatts of thermal relief for most of their downtown. Nimur (talk) 20:25, 13 November 2010 (UTC)[reply]
To be precise, the CRAY-2 was not directly water-cooled. The processors, memory, and power supplies were immersed in Fluorinert. IIRC, the Fluorinert was also circulated at low speeds from the bottom of the chassis to the top to ensure that it flowed between the densely packed circuit boards. The Fluorinert was then pumped to chilled water heat exchangers, where the heat was ultimately removed by radiators.
To answer the OP, Google was not the first to have data centers cooled by air conditioners. These have been around for a very long time, and I would imagine that these large air conditioners would have cooling towers (according to our article on cooling towers) so the claim that Google was the first to use this equipment in a data center is unlikely. Rilak (talk) 00:19, 14 November 2010 (UTC)[reply]

ipv6 and ipv4 question

hello

i need to view ipv6 website by mein isp not work with only ipv4. how to convert ipv6 to ipv4? —Preceding unsigned comment added by 188.72.107.117 (talk) 21:51, 13 November 2010 (UTC)[reply]

Section header added for the above question. Comet Tuttle (talk) 23:58, 13 November 2010 (UTC)[reply]
As I understand it, and as I understand your question, it's probably beyond your control. Assuming your operating system and browser are IPv6 compatible (and if they're relatively recent they probably are), it's probably either your hardware or possibly your ISP that isn't compatible with IPv6. If it's your hardware you can upgrade, but if it's your ISP, then there's not much you can do other than change ISPs or access the site via one that has upgraded. Maybe the site you are trying to view has an IPv4 version though? --jjron (talk) 05:22, 14 November 2010 (UTC)[reply]
Not really true. There are various ways to get IPv6 working even if your ISP doesn't have native IPv6. 6to4, Teredo, tunnel provider. There will depend on your OS, internet config, router/firewall if any and ISP (although I don't think it's often the ISP itself will be a hinderance unless youre behind a NAT or something). In some cases they may automatically work, but not all or always (and that's of course assuming they are enabled, simply enabling IPv6 may not be enough in some cases). Nil Einne (talk) 11:09, 14 November 2010 (UTC)[reply]

MP3 Download

I was looking at this website which allows one to generate a Morse code translation and then turn that into an MP3 file on this subpage. Has anyone any idea how I might download that MP3 file from the site to my computer? Fly by Night (talk) 23:08, 13 November 2010 (UTC)[reply]

Where is says "Click here for the mp3 file", that's the link. To download it, right click and select "Save link as..." in Firefox, "Save Target as..." in Internet Explorer, or "Save linked content as..." in Opera. Then a dialog box should appear, selected where you want to save the file, and click save. 82.44.55.25 (talk) 23:48, 13 November 2010 (UTC)[reply]


November 14

internet homepages and tabs

I have currently Internet Explorer 8, and was wondering, is there any way of setting it such that, without changing my current homepage, when I open a new tab it comes up with Wikipedia straight away, rather than the usual page of options? The only way I can see from a quick look around the toolbars is having the site open as a second tab every time I start the internet, which I do not particularly want.

148.197.121.205 (talk) 11:28, 14 November 2010 (UTC)[reply]

Set Wikipedia as a shortcut in your Favorites Bar. Then to open it in a new tab middle-click it, or right-click and chose Open in New Tab (assuming you're on a PC). --jjron (talk) 12:08, 14 November 2010 (UTC)[reply]

Desparately needed drivers for the ethernet contoller

Hola..! I have searched for the needed drivers but couldnt find any link to download for free. Anyone if help me , it'll really be appreciated. Some of its specifications are: Ethernet Controller .... Unknown device from Dell Computer Corp .... Chip: Intel Corporation 82544XT PRO/1000 MT Gigabit Ethernet Controller Full Details PNP ID VEN_8086&DEV_100E&SUBSYS_01511028&REV_02 Windows Detective Device .. Ethernet Controller Detected Chip Vender ...Intel Corporation Detected Chip ... 82544XT PRO/1000 MT Gigabit Ethernet Controller Detected OEM Vender ....Dell Computer Corp Detected OEM Device ...82544XT PRO/1000 MT Desktop Adapter

I also have PCI Simple Communications Controller drivers missing... It's specifications are: ..Unknown Device from Intel Corporation ..Chip: Intel Corporation 536EP V.92 PCI Modem Full Details PNP ID VEN_8086&DEV_1040&SUBSYS_10008086&REV_00 Windows Detected Device PCI Simple Communications Controller Detected Chip Vender Intel Corporation Detected Chip 536EP V.92 PCI Modem Detected OEM Vender Intel Corporation Detected OEM Device PRO/Wireless LAN 2100 3B Mini PCI Adapter I'll be really greatful..--119.153.56.37 (talk) 13:11, 14 November 2010 (UTC)[reply]

Assuming the PC has not been radically changed from the time it was purchased from Dell, the Dell website should be able to provide all the drivers used in their computers. Go to their website for your country (maybe this page) and enter the Service Tag (it should be on a small sticker somewhere on the computer's casing). That should give you access to the available support information including driver downloads, user manuals, memory upgrade options, etc. Astronaut (talk) 01:51, 15 November 2010 (UTC)[reply]

Ping Localhost

I asked a question a while ago about why pinging localhost on my own Windows 7 computer suddenly stopped working (old question). The answer seemed to be that Microsoft doesn't like ping and disabled it, and that there's some arduous and undocumented method you have to go though to enable the "echo server". However I discovered today that pinging my ip address from this site works as expected so my computers echo server must be online and working. But I still can't ping localhost from my own computer. Does anyone have any idea how to fix this? 82.44.55.25 (talk) 16:07, 14 November 2010 (UTC)[reply]

Are you sure it's your computer responding to the ping, and not a modem/router ? Unilynx (talk) 16:44, 14 November 2010 (UTC)[reply]
Yes, I followed the instructions from the last thread on blocking ICMP packets with the firewall. When I do, pinging from that site fails. 82.44.55.25 (talk) 17:28, 14 November 2010 (UTC)[reply]
You mean with the Windows firewall? Also I can't recall and am lazy to check but are you pinging localhost or 127.0.0.1? Nil Einne (talk) 12:51, 15 November 2010 (UTC)[reply]
localhost should point to 127.0.0.1, so it should not matter. However, it is perfectly possible (in theory and in other OSs, at least; I do not know anything about Windows) that the echo server is disabled on 127.0.0.1, but listens on the interface assigned to the external IP address. 82.*, can you ping your real IP address (not localhost) from your computer?—Emil J. 14:49, 15 November 2010 (UTC)[reply]
I've tried pinging "localhost", "127.0.0.1", "::1", and my ip address from my computer. All fail with "request timed out". I looked in the host file too in case something had gone wrong there, but localhost is still set to 127.0.0.1 82.44.55.25 (talk) 14:54, 15 November 2010 (UTC)[reply]
Thanks for the clarification but are you referring to the Windows firewall of the computer that doesn't respond (with which you blocked ICMP packets and pinging from the remote site fail)? (I'm trying to understand why you believe it was your computer not the modem responding.) Also have you tried pinging the IP address of the computer as Emil suggested? BTW, have you ever on the current OS installation, installed any other firewall or other network software likely to screw around with the network stack like any sort of virtual machine software, Hamachi, bandwidth monitoring software, blocking software, AFS clients, Cisco clients etc? Some searches finds these as common culprits for problems and they can become reenabled unexpectedly (and can sometimes still cause problems when disabled I know this from personal experience too) and even if uninstalled could potentially have left something unwanted. Nil Einne (talk) 15:38, 15 November 2010 (UTC)[reply]
Yes, I blocked ICMP with the Windows firewall on my computer. When I did, pinging from the remote site stopped working. But when I removed the block in the Windows firewall, pinging from the remote site works again. I assume if it was the cable modem responding to the ping that pinging from the remote site would work regardless of what I set in the Windows firewall. Yes, I've tried pinging "82.44.55.25" from my computer but it doesn't work. I had not installed anything recently when the problem began back in September, since then I've only updated Firefox a few times. 82.44.55.25 (talk) 15:59, 15 November 2010 (UTC)[reply]
In that case I agree it does seem to be your computer responding to the remote computer. Does your computer actually see 82.44 as belonging to itself? I think it may from memory of the problems you had trying to share your connection, but it always pays to be sure. To find out, try ipconfig /all and see (it should show 82.44 somewhere). You will probably need to run this with an admin account with UAC permissions if relevant. You can also post the while result here or somewhere else with a link here, it may help although I admit your question is somewhat outside what I've much experience with and I've never been good at remote diagnostics so not promosing much. Nil Einne (talk) 17:36, 16 November 2010 (UTC)[reply]
I appreciate the help. This is the output from ipconfig /all;
Extended content

Windows IP Configuration

  Host Name . . . . . . . . . . . . : Unknown-PC
  Primary Dns Suffix  . . . . . . . :
  Node Type . . . . . . . . . . . . : Hybrid
  IP Routing Enabled. . . . . . . . : No
  WINS Proxy Enabled. . . . . . . . : No
  DNS Suffix Search List. . . . . . : cable.virginmedia.net

Ethernet adapter Local Area Connection:

  Media State . . . . . . . . . . . : Media disconnected
  Connection-specific DNS Suffix  . :
  Description . . . . . . . . . . . : Realtek PCIe FE Family Controller
  Physical Address. . . . . . . . . : 00-24-21-1A-8E-CB
  DHCP Enabled. . . . . . . . . . . : No
  Autoconfiguration Enabled . . . . : Yes

Ethernet adapter Local Area Connection 2:

  Connection-specific DNS Suffix  . : cable.virginmedia.net
  Description . . . . . . . . . . . : Realtek RTL8139/810x Family Fast Ethernet
NIC
  Physical Address. . . . . . . . . : 00-40-E1-22-19-18
  DHCP Enabled. . . . . . . . . . . : Yes
  Autoconfiguration Enabled . . . . : Yes
  Link-local IPv6 Address . . . . . : fe80::9553:47f2:a891:b37e%24(Preferred)
  IPv4 Address. . . . . . . . . . . : 82.44.55.25(Preferred)
  Subnet Mask . . . . . . . . . . . : 255.255.254.0
  Lease Obtained. . . . . . . . . . : 16 November 2010 05:34:23 PM
  Lease Expires . . . . . . . . . . : 21 November 2010 03:44:11 PM
  Default Gateway . . . . . . . . . : 82.44.54.1
  DHCP Server . . . . . . . . . . . : 62.30.112.122
  DHCPv6 IAID . . . . . . . . . . . : 402669793
  DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-12-87-29-C8-00-24-21-1A-8E-CB
  DNS Servers . . . . . . . . . . . : 194.168.4.100
                                      194.168.8.100
  NetBIOS over Tcpip. . . . . . . . : Enabled

Tunnel adapter isatap.{435811AD-783E-453D-8997-F1544F3D38D2}:

  Media State . . . . . . . . . . . : Media disconnected
  Connection-specific DNS Suffix  . :
  Description . . . . . . . . . . . : Microsoft ISATAP Adapter
  Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
  DHCP Enabled. . . . . . . . . . . : No
  Autoconfiguration Enabled . . . . : Yes

Tunnel adapter Local Area Connection* 12:

  Connection-specific DNS Suffix  . :
  Description . . . . . . . . . . . : Microsoft Teredo Tunneling Adapter
  Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
  DHCP Enabled. . . . . . . . . . . : No
  Autoconfiguration Enabled . . . . : Yes
  IPv6 Address. . . . . . . . . . . : 2001:0:5ef5:79fd:202c:1b28:add3:c8e6(Pref

erred)

  Link-local IPv6 Address . . . . . : fe80::202c:1b28:add3:c8e6%11(Preferred)
  Default Gateway . . . . . . . . . :
  NetBIOS over Tcpip. . . . . . . . : Disabled

Tunnel adapter isatap.cable.virginmedia.net:

  Media State . . . . . . . . . . . : Media disconnected
  Connection-specific DNS Suffix  . : cable.virginmedia.net
  Description . . . . . . . . . . . : Microsoft ISATAP Adapter #2
  Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
  DHCP Enabled. . . . . . . . . . . : No
  Autoconfiguration Enabled . . . . : Yes

Tunnel adapter 6TO4 Adapter:

  Media State . . . . . . . . . . . : Media disconnected
  Connection-specific DNS Suffix  . :
  Description . . . . . . . . . . . : Microsoft 6to4 Adapter
  Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
  DHCP Enabled. . . . . . . . . . . : No
  Autoconfiguration Enabled . . . . : Yes

Tunnel adapter Reusable Microsoft 6To4 Adapter:

  Connection-specific DNS Suffix  . : cable.virginmedia.net
  Description . . . . . . . . . . . : Microsoft 6to4 Adapter #2
  Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
  DHCP Enabled. . . . . . . . . . . : No
  Autoconfiguration Enabled . . . . : Yes
  IPv6 Address. . . . . . . . . . . : 2002:522c:3719::522c:3719(Preferred)
  Default Gateway . . . . . . . . . : 2002:c058:6301::c058:6301
  DNS Servers . . . . . . . . . . . : 194.168.4.100
                                      194.168.8.100
  NetBIOS over Tcpip. . . . . . . . : Disabled
82.44.55.25 (talk) 18:12, 16 November 2010 (UTC)[reply]
Actually on Windows 7 it's not uncommon localhsot will point to ::1 AFAIK. (And yes this was significant given the info at the time since most likely the external site was pinging the IPv4 address so if the OP had not tried 127.0.0.1 but only ::1 it could indicate the echo server was disabled for IPv6 or something of that sort.) Nil Einne (talk) 15:18, 15 November 2010 (UTC)[reply]

RAmos T9 and Android

Does the RAmos T9 portable media player run Android? If not are there any good portable media players out there running android with a screen that is at least the size of that of the iPod Touch? --Melab±1 19:10, 14 November 2010 (UTC)[reply]

just get an iPod touch. It's obviously what you really want, and you'll go through 2-3 media players of different kinds which you won't really be satisfied with and which, in total, you'll spend like twice the money on as just buying one iPod touch. Owner satsifaction is really high, so I am sure you will like it, and you can have it for years. also, you will not be seen as nerdy. 91.183.62.45 (talk) 10:24, 15 November 2010 (UTC)[reply]
You might consider the upcoming T11pro: see here or other in the T11 series. 212.123.243.220 (talk) 12:54, 15 November 2010 (UTC)[reply]

html

In html, I know how to specify alternative text. But how can you specify an alternative image? 82.44.55.25 (talk) 22:43, 14 November 2010 (UTC)[reply]

Why don't you tell us what you think an alternative image would do? Alternative text is there for people with text-only browsers. It's not clear to me what an alternative image would be for then, if that's the analogy. (In Netscape Navigator, there was an IMG attribute called LOWSRC that let you designate low-res versions of images. But it's not standard and probably no modern browsers support it, as far as I know.) Depending on what you want, there might be a Javascript work-around. But there's no standard "alternative image" option. --Mr.98 (talk) 23:01, 14 November 2010 (UTC)[reply]
I was thinking that if an image displayed on a page became unavailable, for example the site it's hosted on being down or the image being deleted, a different image could be displayed in its place. Perhaps the same image hosted on a different server, or a "this image is gone" image placeholder. 82.44.55.25 (talk) 00:42, 15 November 2010 (UTC)[reply]
(What if the alternative image is not available?) You could do this with Javascript, but it isn't standard HTML at all. Here's one such implementation. It could be modified to be more general (e.g. to have every image have its own unique fallback), pretty easily, if you wanted.--Mr.98 (talk) 01:08, 15 November 2010 (UTC)[reply]
<object data="sourceone">
	<object data="sourcetwo"></object>
</object>

…or…

<object data="sourceone">
	<img src="sourcetwo" alt="">
</object>

…as desired; http://w3.org/TR/html401/struct/objects.html#idx-accessibility-1 ¦ Reisio (talk) 08:24, 16 November 2010 (UTC)[reply]

November 15

What ever happened to German Murder Case against Wikipedia?

What ever happened to German Murder Case against Wikipedia? Wired. Did the lawsuit ever happen? The Resident Anthropologist (talk) 00:19, 15 November 2010 (UTC)[reply]

Not really a Computing question and probably better asked on the Miscellaneous desk. However, we have articles on Walter Sedlmayr (the victim) and Wolfgang Werlé and Manfred Lauber (his murderers). The latter article contains a section about the cases against Wikipedia. Astronaut (talk) 01:42, 15 November 2010 (UTC)[reply]

External SATA + operating system

About 8 months ago, I bought a used computer which came installed with Windows XP or Vista (I can't remember which; probably the latter). You can actually read about it here (although I ended up buying a d620 not d520). As such I have two SATA hard drives:

  • One 250MB, which I use primarily and run Ubuntu on
  • One ~80GB, which is collecting dust in storage

I have a few questions about this setup:

  1. If I place my secondary hard drive into an external USB like this[5], will it work?
  2. Is it possible to run Windows from a USB while I have the first hard disk still attached? Windows is pretty pissy about sharing a computer with another OS. And is it wise to run Windows from a USB? I'm only doing it because there are games that can't play on Linux (Wine is utterly resistant to fixing the bug plugging up Sims 2 [6], and I don't have enough knowledge of remote programming - let alone modern 3D graphics - to fix the bug for Wine).
  3. Will I run into any sort of issues with the Software Protection Platform locking me out because the hardware configuration has changed (the product key was activated by the vendor before they shipped me the laptop)?

Magog the Ogre (talk) 05:28, 15 November 2010 (UTC)[reply]

For Question 1 : While yes it seems to work (All SATA drives) Are you sure it's two drives or is it just 2 separate partitions? Just check if you are not sure (Seems you don't have XP. If you do, go to Disk Management)
For Question 2 : Yes, but it may be laggy. It depends on the disk speed (most likely 7200 rpm) of the hard drive, but I don't think there would be any problems. Just make sure the hard drive is not one of those eco ones that just go to standby and takes a few seconds to spin again, or you may see lag. But that's unlikely.
No idea for Question 3, sorry. Good Luck! General Rommel (talk) 06:01, 15 November 2010 (UTC)[reply]

Well, considering that the other disk is collecting dust in the basement, yes, I'm quite sure it's not a virtual drive. ;) Magog the Ogre (talk) 06:05, 15 November 2010 (UTC)[reply]

Also some searching finally turned up [7], but I don't think I have the CD. Magog the Ogre (talk) 06:34, 15 November 2010 (UTC)[reply]

Here at work, I use Ubuntu as my primary desktop environment. The machine also came with a separate partition with Windows XP installed, and GRUB gives me the choice to boot into Ubuntu or Windows. That's fine, but I have need of more regular access to Windows XP without leaving Ubuntu (mainly because the company's Exchange server works so much better with the Microsoft Outlook mail client than, say, Thunderbird), so I have switched from the dual-boot setup to running XP in a virtual machine, and I must say it is pretty seamless. I would recommend you give it a go, and you can always delete the virtual machine if you find it's not for you.
As for potential problems with SPP, I think you would encounter some problems but you should be able to simply re-activate it (though you might have to call the activation helpdesk and explain you have shifted it to a virtual machine). 212.123.243.220 (talk) 12:30, 15 November 2010 (UTC)[reply]
Come to think of it, if you don't have an XP/Vista installation CD and you don't have the Microsoft Certificate of Authenticity still attached to the machine, you might not be able to install Windows in a virtual machine. 212.123.243.220 (talk) 12:41, 15 November 2010 (UTC)[reply]

No, I use VirtualBox, but it has no support for DirectX. Virtual OS's are not good for gaming. Magog the Ogre (talk) 12:42, 15 November 2010 (UTC)[reply]

List of College/University IP Allocations

In thinking about this year's fundraiser I thought it would be an interesting exercise to attempt to target colleges and university students by the IP blocks assigned to colleges and universities. For example, The University of Tulsa has 129.244.0.0/16 and MIT has 18.0.0.0/8. However, I was unable to find such a list online or through any of the registries. Does anyone know if such a list exists? Thanks, In2thats12

Block/blacklists used by P2P users tend to include educational institutions in their ranges you may block. E.g. I just checked [8] and it does have. Bear in mind you're talking massive lists, the list for educational institutions I just downloaded is 600k 7zip compressed or nearly 3mb uncompressed (this includes the ranges in range format i.e. 4.0.32.62-4.0.33.4 and the name of who they think is using that range). Note that educational institutions will usually include schools and kindergartens Nil Einne (talk) 12:33, 15 November 2010 (UTC)[reply]
Thanks for the response. That's certainly a place to start and see if such a list is easily compilable and verifiable. Yeah, the campaigns I had in mind wouldn't go over too well at an elementary school. In2thats12 (talk) 17:05, 15 November 2010 (UTC)[reply]
Might it be easier just to run a DNS resolver on the IP and see if .EDU is at the end? I guess that probably would be slower than a big look-up table. --Mr.98 (talk) 14:02, 15 November 2010 (UTC)[reply]

Airlines fare search; full URL

When I search an airline's website for fares, with places and dates selected, is it possible to get the full URL of the search result? I mean the unique URL that will reproduce this search result. Usually I see only the URL of the airlines in the address bar even when the search results are displayed. 180.149.48.245 (talk) 06:44, 15 November 2010 (UTC)[reply]

That depends entirely on how they've got their site set up. Which airline? APL (talk) 07:35, 15 November 2010 (UTC)[reply]
Batavia Air, TransNusa, Sriwijaya Air or Merpati.180.149.48.245 (talk) 10:16, 15 November 2010 (UTC)[reply]
There are two standard, basic ways to send a request for a response to a website: GET and POST. GET requests you can see in the URL. POST requests, you cannot. If you can't see the information in the URL header, they are usually using POST. There is not usually any way to easily view that information. You could, in theory, have a Firefox add-on, I'm sure, that would save the POST data to a file and later let you re-POST it, though that might not work depending on how they have it set up on the site. --Mr.98 (talk) 14:26, 15 November 2010 (UTC)[reply]
Thanks for the reply. If there is a unique URL, I can import that data into a spreadsheet application. Is there any way to retrieve data ( fares for various dates) into a spreadsheet by sending multiple POST requests. 180.149.48.245 (talk) 15:58, 15 November 2010 (UTC)[reply]
Not that I know of. --Mr.98 (talk) 16:23, 15 November 2010 (UTC)[reply]
One thing that often works but is not guaranteed to work: Even on websites that use POST you can usually do exactly the same things with GET instead. So you can figure out the parameters of a POST request and then put them into a GET request, or vice versa. Figuring out the parameters of the POST request is the hardest part. There should be a Firefox extension that allows you to look at that, and then you have to reformat it slightly for GET. However, there is an upper limit on the length of a URL, so if there is too much information in a POST request it may not fit into a GET request even if the server would otherwise support that. Hans Adler 16:48, 15 November 2010 (UTC)[reply]
I'm not sure "usually" is correct here. It's either caused by (somewhat dangerous) loose assignment of system variables (which used to be common in PHP about 5 years ago, but has long since been switched off) or requires the programmer to deliberately have the script recognize them as interchangeable. --Mr.98 (talk) 00:20, 16 November 2010 (UTC)[reply]
If you are (or have access to) a programmer you can code POSTs in (for example) Visual Basic for Applications, using the Microsoft XMLHTTP object. However, even this may not work in some cases: some web sites try to prevent this sort of automated access by various tricks (e.g. use of cookies). These tricks may be surmountable but in practice it can be hard to know how. AndrewWTaylor (talk) 17:19, 15 November 2010 (UTC)[reply]
But airline websites are a classic example of a session-based website. The server stores state about your actions (often, even if you have not logged in), so this violates the conventional wisdom that the same URL will point to the same specific content. This is a design choice by the website architects, who may want to discourage deep linking, bot indexing, and search-engines. Depending on the website, it may be entirely impossible to deep-link to a specific result set. Nimur (talk) 17:21, 15 November 2010 (UTC)[reply]
(ec) Even if you get the GET/POST queries set up correctly, it may not work. Many apps use server-side sessions. Instead of storing data in a cookie on your computer (or even temporarily in a query string), the data is stored on the server in a session. After a while, the session expires and the data is lost. By rebuilding the URL, you attempt to get back to the old session. Since it expired, there is nothing there and you may get nothing more than a "Session Expired" page. -- kainaw 17:22, 15 November 2010 (UTC)[reply]
How do websites like tiket2.com manage to search within these sites. They give only the fare for a single day; but if they are able to get it, they will be able to get the fares for multiple days. 180.149.48.245 (talk) 03:21, 16 November 2010 (UTC)[reply]

Subject

Which is better; organizing files by date or by category? —Preceding unsigned comment added by 79.90.180.252 (talk) 15:36, 15 November 2010 (UTC)[reply]

Sorry, neither is clearly better than the other; it depends on what sorts of files you're talking about, and your personal taste. For me, I keep business files sorted by category, but I sort my personal photos by date. Comet Tuttle (talk) 16:10, 15 November 2010 (UTC)[reply]
"Better" here is relevant to the task at hand. Photos, for example, might be better by category ("Fun times with Jim," "The Lost Pants Incident"), or might be better by date ("July 2010 photos", "September 2010 photos") depending on what you are trying to do with them (finding photos of a person, or finding photos of a day). This is why photo organizing programs that allow you to sort by both thrive, and why there are file organizing programs that let you sort by arbitrary factors as well. --Mr.98 (talk) 17:30, 15 November 2010 (UTC)[reply]

IPv6

Resolved

My isp (virgin media) claims they don't offer any ipv6 support at all, "have no plans scheduled in to use ipv6", and "will be sticking with IPv4 as we have more than enough IP addresses in reserve". However, when I visit http://[2620::860:2:21d:9ff:fe33:f235]/ it works. Is the isp clueless about their own service, or is what I'm seeing not actually true ipv6 and some sort of alternative? 82.44.55.25 (talk) 20:19, 15 November 2010 (UTC)[reply]

Your OS may have set up a IPv6 tunnel. Unilynx (talk) 22:31, 15 November 2010 (UTC)[reply]
Would that be on by default in Windows 7? I've never manually set anything to do with ipv6 82.44.55.25 (talk) 22:43, 15 November 2010 (UTC)[reply]
I can't recall for certain but I think Windows 7 enables teredo tunneling by default and this is used when IPv6 is not provided by the connection. I know various programs like uTorrent try to enable it in any case. Nil Einne (talk) 08:02, 16 November 2010 (UTC)[reply]
Ok thanks 82.44.55.25 (talk) 09:53, 16 November 2010 (UTC)[reply]
Actually on further consideration and looking at a Windows XP config when answering your other question my answer may be incomplete. I believe Windows 7 also provides 6to4 tunneling and this is probably tried first (if IPv6 is not provided by the connection). That won't usually work behind a NAT router though so Windows will probably next try teredo. Given your config, 6to4 would probably work so you may be using that. ipconfig /all should tell you how you're getting the IPv6 I think. (Your IPv6 address would help too.) Oh and from searching I now remember there's also ISATAP which I think will fit in somewhere, probably either before or after 6to4. (This answer is probably still incomplete, my IPv6 knowledge is primarily around setting it up for myself plus some extra.)
BTW if I'm right about your config your config, if you want to have a static (but considering it's free with no guarantees) IPv6 address you could likely set up a tunnel from a tunnel broker relatively easily (setting up behind a NAT is often possible but more difficult and likely to limit your POPs). This may or may not provide better IPv6 performance. Both Hurricane Electric [9] and SixXS [10] have POPs in the UK. see also List of IPv6 tunnel brokers.
Nil Einne (talk) 17:53, 16 November 2010 (UTC)[reply]

List of all the "about:<name>" that are recognized by FireFox and MS InternetExplorer

In the web-browsers Firefox and IE one may type in certain combinations of "about:<name>" in the address field, to get to special pages. (For instance: "About:Blank").
Is there one "about:<name>" that gives you a list of all the other "about:<name>"s?
If not: are they listed on a web page somewhere? --178.232.169.222 (talk) 21:38, 15 November 2010 (UTC)[reply]

about: URI scheme has a pretty comprehensive list. Regarding IE, only about:blank and about:home still work (the other about: pages just allow access to error pages). Xenon54 (talk) 21:53, 15 November 2010 (UTC)[reply]
http://kb.mozillazine.org/About:config_entries ¦ Reisio (talk) 08:15, 16 November 2010 (UTC)[reply]

November 16

windwl32.rom

Hello Everyone,

   Upon booting up (or restarting), my computer now displays the message "There was a problem starting windwl32.rom The specified module could not be found." This missing module does not seem to cause any problems thereafter. What is this module, does its absence adversely affect the operating-system, and what is the appropriate remedy?

   Thank you - any insight is appreciated.

That file is not a necessary part of the standard Windows system. A web search indicates that the file "windwl32.rom" is associated with a malware infection. You may want to completely reinstall your operating system. At the very least, consider running some malware-removal software. Nimur (talk) 01:06, 16 November 2010 (UTC)[reply]
I'd stab that it's Vundo. A strong rinse in antivirals could fix it. ResMar 03:56, 16 November 2010 (UTC)[reply]
I have performed a full scan (which took three hours) of my computer with McAfee Security Center, and it reported "No Issues Detected: During your scan, McAfee did not detect viruses, spyware, or other threats. Remember, you can run a full scan any time to thoroughly check your PC for threats." Nonetheless, the message "There was a problem starting windwl32.rom The specified module could not be found." is still displayed upon booting up. How do I get rid of this malware without wiping my C: partition and reinstalling my operating-system; this is not possible because I do not have the reinstallation disc(s). Rocketshiporion 11:52, 16 November 2010 (UTC)[reply]
In the past, I've had issues where the virus is removed, but the registry entries that started it at boot-time are still there. Virus detectors tend not to pick that up, presumably because they look for the virus itself, not its lingering side-effects.
That sounds like what you're describing. If the virus itself was still there, you wouldn't get the 'module not found' error, it would find the module, start it, and do nefarious things to your computer.
If you're comfortable poking around in your computer, you might use the registry editor tp search for all references to "windwl32.rom" and get rid of them. You do that at your own risk, though. You can seriously break your computer with the registry editor. APL (talk) 15:26, 16 November 2010 (UTC)[reply]
Perhaps running MalwareBytes Anti Malware will help? Maybe changing the executable name may work (if the malware is still present, that is) General Rommel (talk) 21:24, 16 November 2010 (UTC)[reply]

PPP connection with Ubuntu

I am trying to connect to the Internet through a PPP connection.

I thought I had everything right and gnome-ppp appears to establish a connection, but no browser seems to recognize the connection. I have tried changing the proxy preferences of the browsers but no luck so far.

I am using a cell-phone as USB modem and I have connected with this same cell-phone before (but under Windows).

My firewall recognizes the PPP connection. (The problem is not the firewall, even if I turn it off, the problem is not solved).

Thanks in advance for any help.

This is what I get from gnome-ppp's log:

Extended content
WVCONF: /root/.wvdial.conf
GNOME PPP: Connecting...
GNOME PPP: STDERR: --> Ignoring malformed input line: ";Do NOT edit this file by hand!"
GNOME PPP: STDERR: --> WvDial: Internet dialer version 1.60
GNOME PPP: STDERR: --> Cannot get information for serial port.
GNOME PPP: STDERR: --> Initializing modem.
GNOME PPP: STDERR: --> Sending: ATZ
GNOME PPP: STDERR: ATZ
GNOME PPP: STDERR: OK
GNOME PPP: STDERR: --> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
GNOME PPP: STDERR: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
GNOME PPP: STDERR: OK
GNOME PPP: STDERR: --> Modem initialized.
GNOME PPP: STDERR: --> Sending: ATM1L3DP*99#
GNOME PPP: STDERR: --> Waiting for carrier.
GNOME PPP: STDERR: ATM1L3DP*99#
GNOME PPP: STDERR: CONNECT
GNOME PPP: STDERR: --> Carrier detected. Starting PPP immediately.
GNOME PPP: STDERR: --> Starting pppd at Tue Nov 16 00:04:30 2010
GNOME PPP: STDERR: --> Pid of pppd: 6981
GNOME PPP: STDERR: --> Using interface ppp0
GNOME PPP: STDERR: --> Authentication (CHAP) started
GNOME PPP: STDERR: --> Authentication (CHAP) successful
GNOME PPP: STDERR: --> Terminate Request (Message: "No network protocols running" )
GNOME PPP: STDERR: --> Terminate Request (Message: "No network protocols running" )
GNOME PPP: STDERR: --> Disconnecting at Tue Nov 16 00:05:08 2010
GNOME PPP: STDERR: --> The PPP daemon has died: A modem hung up the phone (exit code = 16)
GNOME PPP: STDERR: --> man pppd explains pppd error codes in more detail.
GNOME PPP: STDERR: --> Try again and look into /var/log/messages and the wvdial and pppd man pages for more information.

Mr.K. (talk) 12:29, 16 November 2010 (UTC)[reply]

for enquiry

dear madam/sir:

my question is if i want to get any information from wikipidia , what procedure will follow to the required information,

eg: how can i get the list of I.T parks in U.A.E from wikipidia —Preceding unsigned comment added by 122.166.12.77 (talk) 16:20, 16 November 2010 (UTC)[reply]


Hi. We have a list of technology centers worldwide; but the only one listed in UAE is Dubai Internet City. That article mentions a few others, including Ras Al Khaimah IT Park. We may have information on other technology centers in UAE, but it doesn't look like they're organized in a single list yet. Nimur (talk) 17:08, 16 November 2010 (UTC)[reply]

Creating a wireless network using an aircard

I have an aircard from Verizon Wireless. I also have a wireless printer and a Wii. I was under the impression that I could get a router to plug my aircard in to, to create a wireless network that I can connect my computer, printer and Wii to. The two options I have come up with are the Verizon MiFi and a Cradlepoint. I have read that the MiFi is not worth the charges when going over your minutes, which apparently happens very frequently. But I do not know anything about the Cradlepoint, which has been a very popular suggestion. Can anyone help me find out about the Cradlepoint, which one I should get, or something else that can give me a wirless network without breaking my wallet? Thanks in advance!Amstokes1 (talk) 18:31, 16 November 2010 (UTC)[reply]

making "sed" match only once

Resolved

I'm trying to make a single change in a text stream using sed; that is, I want one change for the whole stream, not one change per line. So I've been running:

printf "hello jello\nsmello\n" | sed "s/ll/y/1"

and getting

heyo jello
smeyo

whereas I want

heyo jello
smello

Is there a way to make sed make a substitution exactly once, or alternatively to make it stop treating each line as an independent thing? 87.112.174.140 (talk) 18:34, 16 November 2010 (UTC)[reply]

Add "0,/pattern" to the beginning of the sed command, as in: printf "hello jello\nsmello\n" | sed "0,/ll/s/ll/y/1" -- kainaw 19:31, 16 November 2010 (UTC)[reply]
That's just the ticket. Thanks for your help. 87.112.174.140 (talk) 19:46, 16 November 2010 (UTC)[reply]

When did "I think I have I a virus/malware/spyware etc" = OMFG REINSTALL YOUR ENTIRE OPERATING SYSTEM FROM SCRATCH BEFORE YOUR PC EXPLODES!

I've noticed at least a couple of answers recently where the poster has reported a possible infection with some kind of rogue program and the first or an early answer is to advise them to reinstall their operating system. Unless you are pretty tech savvy, this is NOT a trivial procedure - it's time consuming, not everyone has the original installation discs and they then have to download every security fix and patch and probably reinstall all their software. Surely this should only be considered as a LAST resort when all other attempts to remove the infection have failed? Most normal computer users will never install or reinstall an operating system EVER - they are liable to simply replace the computer with a new one with the same or a later version of Windows. Why would anyone advise this as an initial response to the problem? Exxolon (talk) 22:40, 16 November 2010 (UTC)[reply]

Some of the viruses nowadays are pretty damn tenacious. Getting rid of them can almost literally be as much trouble as reinstalling. HalfShadow 22:42, 16 November 2010 (UTC)[reply]
I think its because of one or two fanatics here. I disagreed with that approach. I'm tempted to delete the viruses article - the one with a nuclear plume - and start again, but I bet it would get reverted by its 'owner'. 92.15.16.149 (talk) 23:28, 16 November 2010 (UTC)[reply]
Because it's a cure all way (99.999% of the time). Also it gives them a chance to make sure the computer won't die another time. And also makes sure that the virus is fully cured, some programs may not fully remove the virus and traces may remain. General Rommel (talk) 23:51, 16 November 2010 (UTC)[reply]

Why is my system so slow with 2D DirectX graphics?

I recently updated/rebuilt my computer, here are the basic system specs of the new system:

  • Asus M4A87TD board (upgraded from a crappy Elitegroup MCP78M)
  • AMD Phenom II X2 545 (upgraded from AMD Athlon II X2 240)
  • 4GB RAM, DDR3 @1333 (upgraded from 2GB DDR2, 256MB of which was used by the onboard graphics card)
  • Geforce 250 GTS, using Nvidia's 260.99 driver (upgraded from the crappy onboard Geforce 8100)
  • WinXP SP3 (fresh install, no change otherwise)

I know it's still not exactly a high-powered gaming rig, but it's enough for my needs. As expected, I experienced huge performance increases in 3D games (tested with Portal, GTA4 and Mafia 2, all of which run much smoother now than with the old system). What I don't get is that 2D DirectX graphics are markedly slower than on the old system; it's especially noticeable with my screensaver (I use JWZ's Matrix screensaver, a simple 2D display scrolling down letters in various shades of green) and with RPGmaker XP games - I'm toying around with making games with RPGmaker, the engine is pretty crappy and starts lagging heavily as soon as there is a bit going on on the map so a good part of making games in RPGmaker consists in coming up with clever anti-lag measures anyway, but the lag issues have become really unbearable on the new system. I've even noticed some lag when scrolling large maps in the editor. So...does anybody have an idea what's going on here? I'm aware 2D graphics do not benefit from the Geforce's 3D acceleration, but with twice the memory and a slightly faster processor I would have expected 2D performance to increase at least slightly, or at the very least stay the same. -- Ferkelparade π 23:13, 16 November 2010 (UTC)[reply]

November 17

Autorun problem in Windows 7

The following is saved under autorun.inf in my flash drive's root directory. It successfully changes the flash drive's name, but the READ ME option doesn't show up on the autorun menu when I insert the flash drive. What's the problem?


[autorun]

Open=READ ME.bat

Action=READ ME

Label=[my name]


--75.33.217.61 (talk) 02:38, 17 November 2010 (UTC)[reply]

Wireless network for a Verizon phone

A friend of mine asked me:

I have a Verizon Wireless Aircard, I have a wireless printer but apparently it does not connect to aircards... I have read about something called a Cradlepoint that you plug the aircard into and it creates a wireless network that I could connect my computer, printer and Wii to... Know anything about it.

What we mainly are interested in is the best way to create a wireless network by buying hardware and not paying a monthly fee. What's the best way? Thanks --Wonderley (talk) 02:52, 17 November 2010 (UTC)[reply]