Jump to content

Wikipedia:Reference desk/Computing: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Line 20: Line 20:
With KbdEdit can you assign a string of letters to a chord of keys? Eg. By keying "TH" together, the word "the" might be displayed. <small><span class="autosigned">—Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[User:My name is anetta|My name is anetta]] ([[User talk:My name is anetta|talk]] • [[Special:Contributions/My name is anetta|contribs]]) 18:16, 27 September 2008 (UTC)</span></small><!-- Template:Unsigned --> <!--Autosigned by SineBot-->
With KbdEdit can you assign a string of letters to a chord of keys? Eg. By keying "TH" together, the word "the" might be displayed. <small><span class="autosigned">—Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[User:My name is anetta|My name is anetta]] ([[User talk:My name is anetta|talk]] • [[Special:Contributions/My name is anetta|contribs]]) 18:16, 27 September 2008 (UTC)</span></small><!-- Template:Unsigned --> <!--Autosigned by SineBot-->
:Try [[AutoHotkey]] if KbdEdit doesn't work.[[Special:Contributions/118.90.31.41|118.90.31.41]] ([[User talk:118.90.31.41|talk]]) 04:48, 30 September 2008 (UTC)
:Try [[AutoHotkey]] if KbdEdit doesn't work.[[Special:Contributions/118.90.31.41|118.90.31.41]] ([[User talk:118.90.31.41|talk]]) 04:48, 30 September 2008 (UTC)

You mean [http://www.autohotkey.com/forum/viewtopic.php?t=7013] this?[[User:My name is anetta|My name is anetta]] ([[User talk:My name is anetta|talk]]) 16:45, 30 September 2008 (UTC)


== Saving downloadings ==
== Saving downloadings ==

Revision as of 16:45, 30 September 2008

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:


September 24

Abuse contact

Does anybody know the abuse contact for uni-pr.edu? Tracert is showing that it resolves to ThePlanet.com, but something tells me there's a better contact to report abuse even if they do use ThePlanet.com. GO-PCHS-NJROTC (Messages) 01:46, 24 September 2008 (UTC)[reply]

The common practice is to email abuse@whatever.the.domain.name.who.sent.the.offending.email.is. Don't expect much of a reply. There is no guarantee anyone will read your complaint. Youth in Asia (talk) 03:43, 24 September 2008 (UTC)[reply]
Here's what I found. Can't verify the authenticity of the information though. AreJay (talk) 04:29, 24 September 2008 (UTC)[reply]
I thought you have to be an educational institution to get .edu domain. Apparently not. Probably because it was grandfathered as explained in the link. Kushal (talk) 10:09, 24 September 2008 (UTC)[reply]
Don't expect much of a reply. There is no guarentee anyone will read your complaint. This is true, but to assume that because a small percentage of networks ignore all abuse reports that all networks are like this is like assuming that because a small percentage of vandalism survives Wikipedia's vandal fighters that Wikipedia cannot be trusted. There are many responsive abuse departments around. An example of a responsive abuse department would be Embarq ANS (I say that because blacklisted Embarq spammers who show up at trustedsource.org almost never show further activity after abuse reports are submitted). An example of one that does NOT repsond would probably be Comcast Network Security, but they do respond in some cases (an example would be a few of the fraud websites I've gotten Comcast to take down). GO-PCHS-NJROTC (Messages) 03:48, 25 September 2008 (UTC)[reply]
I imagine they'd be pretty upset when they find out that you're not a admin. or spokeman for Wikimedia. That's assuming they read your e-mail, though. Some major American ISPs don't even go after hackers. Those aren't 16-year-olds who added the word balls to an article anyone can edit. They're people running networks of hundreds of infected computers that take down entire web sites. They ignore them, or sometimes, send them warnings. Even if you get a response from a live person, I doubt the banned user will hear anything about it from the ISP.--Tree 'uns 5 (talk) 04:12, 25 September 2008 (UTC) —Preceding unsigned comment added by Tree 'uns 5 (talkcontribs) [reply]

Find and replace multiple files, but only between <title> tags (Mac OS X)

Hi -- thanks in advance if anyone can help me with this.

I have a folder full of HTML files, and I'd like to do a "Find and replace" on the text inside them, but only on the text inside the <title></title> tags. I'm using Mac OS X. What would be the easiest way for me to do this?

My ideas so far: I don't know regular expressions, but I was thinking along the lines of using grep to get the text I want, and then what? piping it into another program that'd actually do the find/replace/save? Alternatively, I have TextMate on here, which I use for other things, but it has a very complicated interface, I have a feeling perhaps the feature I want is buried in there somewhere?

As you can probably tell, I know very very little about UNIX things, I just know there should be a way for me to do this, I just don't know how.

If anyone can help, I really appreciate it. Thanks again. —Preceding unsigned comment added by 87.113.90.126 (talk) 03:19, 24 September 2008 (UTC)[reply]

Sed is used for that. You will want to use regular expressions, such as s/(<title>[^<]*)dog([^<]*</title>)/$1cat$2/. Hmm... haven't used placeholders in sed in a while. I don't think they are $1, $2, $3... Anyone remember? -- kainaw 03:23, 24 September 2008 (UTC)[reply]
Just remembered... I believe you use \1, \2, \3... -- kainaw 03:24, 24 September 2008 (UTC)[reply]
Thanks!! I now have something to work off, I'm reading a guide to sed as I type this, so I should be able to figure it out from here. Thanks again for the help. :) —Preceding unsigned comment added by 87.113.90.126 (talk) 03:36, 24 September 2008 (UTC)[reply]

data management

I'm working on an API that requires some basic databasing, and in trying to design my database I realized something that made me feel...well, ignorant: I'm not really sure what the difference is between a table and an array. Is the information in an array stored in a table, or does it need to be coded? Is an array a table that can only sustain one data type? What merits using one and not the other? I have a feeling that permanent storage requires use of a table and displaying information often merits use of an array, but I'm really not sure what the funcitonal difference is. Maybe more functions can be performed on a table than an array. Specifically, I'm thinking of a table in a MySQL database, and an array in PHP. Thanks. --Shaggorama (talk) 06:10, 24 September 2008 (UTC)[reply]

Different beasts really, both an "array" and a "table" are ultimately collections of data (but then so are lists, trees, etc), but "array" is (usually) used in the context of a programming language to refer to contiguous data where individual elements can be accessed (directly) through a numerical index, while "table" is used in the context of a database, tables are sets of structured data with relatively complex underlying mechanisms to store and retrieve individual entries. Equendil Talk 06:55, 24 September 2008 (UTC)[reply]
Note that my answer is not specific to PHP, the PHP manual says about arrays : "an array in PHP is actually an ordered map" (ie associative array). I'm not really familiar with PHP and its level of technical obfuscation, so it's probably best someone else answers specific questions. Equendil Talk 07:09, 24 September 2008 (UTC)[reply]
They have different dimensions, for one thing. A table is more like a Microsoft Excel worksheet—each individual row can contain multiple fields each of which have values. An array is something different—each item in an array can contain only one value, but you can make arrays multi-dimensional.
You can store the same data in either but you'd store it differently. If you were storing pixel information in a table you'd have each row contain fields like "x" and "y" and "color", and you'd say, "get me the data for row whatever" and it'd let you manipulate those values. For an array though what you'd probably do is have a multi-dimensional array like pixel_color[x,y] = your value.
You see the difference? You can store the same data but you'd do it differently. Of course if you wanted to save an array permanently you'd have to output it somehow, usually into a table but not necessarily. There are also very different ways to manipulate arrays and tables. With something like SQL you can very quickly sort huge amounts of data in a table by very complicated criteria, whereas with an array usually the best you can do is use regular expressions or just cycle through the data manually one piece at a time. --98.217.8.46 (talk) 13:23, 24 September 2008 (UTC)[reply]
I disagree with most of what comes before. Programmers universally use the term "array" for a very specific language feature - a contiguous block of data - accessed with a simple integer "index" - there can be one, two and three-dimensional and even N-dimensional arrays...same deal - contiguous data, N integer indices. Some languages (like PHP) might implement arrays some other way "under the hood" - but they are essentially simulating that same thing. There is really no other meaning for the word.
On the other hand, the term "table" is a pretty vague term - it's used much less formally for all sorts of different things. It doesn't have the solid connotations of words like "list", "array", "stack" or "tree". I might talk about speeding up the 'cosine' function by making a "lookup table" - this table is likely to be a simple array of floating point values. On the other hand, I might talk about a table of some kind of data that's stored associatively - or in a linked list or in almost any other kind of physical structure. So a table MIGHT be stored as an array - and an array MIGHT be used to implement a table - a table MIGHT NOT be implemented with an array and an array MIGHT be used for something that's not a table at all. SteveBaker (talk) 01:59, 26 September 2008 (UTC)[reply]

Microsoft office word - Text-type

Hey, i wondered if it is possible to somewhere get more various types of text-types.

You know, "times new roman" is the most standard one and then there comes many other types with it to choose from, but I still don't have some types that I had on my previous computer which I liked to use. So I was hoping it might be possible to somehwere find and install/download new types or something

And i want to say thank you beforehand for any answers :) —Preceding unsigned comment added by 85.164.177.171 (talk) 15:27, 24 September 2008 (UTC)[reply]

They are named fonts. Most fonts can be bought, some are available freely. Microsoft Windows stores available fonts in C:\Windows\Fonts directory, they can be installed by copying their files there. The Wikipedia article has some useful data on this topic. MTM (talk) 16:29, 24 September 2008 (UTC)[reply]
This page [1] tells you how to install them once you download them -- Mad031683 (talk) 16:31, 24 September 2008 (UTC)[reply]

Extreme content control

Hello, is it feasible to establish a www content control system on a computer by

1) stopping the computer talking to any name servers whatsoever 2) hard coding (20 or so) permitted hosts' addresses into the hosts file

How often would I need to edit the hosts file? Also can someone remind me how to achieve the first point on a Windows XP box? Thanks. —Preceding unsigned comment added by 62.49.27.114 (talk) 18:24, 24 September 2008 (UTC)[reply]

  • Well, filtering network traffic is what a firewall does, so I would use that. Requires control on outbound connections though, which the Windows firewall doesn't really offer. A pretty good firewall on Windows is "Look'n'Stop" (20€). Does anything you expect from a firewall and hasn't grown into a bloated piece of software that checks your mail, scans your files for viruses, takes a memory stick for itself and goes into 100% CPU mode now and then like ZoneAlarm.
  • If you want to try your method here though, you can disable your ISP's DNS by setting up the connection manually (no DHCP) and not giving it any DNS server. Won't have anything to talk to then. Edit the LMHOSTS file and make sure LMHOSTS lookup is activated (WINS tab in TCP/IP properties/advanced). Equendil Talk 18:58, 24 September 2008 (UTC)[reply]
  • Oh and how often you would have to edit the hosts file depends on how often the hosts change their IP address, so can't really answer that one. Equendil Talk 19:02, 24 September 2008 (UTC)[reply]
Did you mean hosts or lmhosts? If I remember correctly, lmhosts is more for computers inside your network, whereas hosts works more for non-local addresses (i.e. - Internet) Washii (talk) 18:40, 25 September 2008 (UTC)[reply]

Can't get scroll wheel to work

I just bought a Microsoft Bluetooth Notebook Mouse 5000 and I can't get its scroll wheel or back button to work. The wheel button however, does work. There should be a simple solution to this, but I can't figure it out :/--SquareOuroboros (talk) 18:29, 24 September 2008 (UTC)[reply]

Which operating system are you using? It's quite ironic, but I've had quite a bit of problem trying to get my Microsoft keyboard and mouse combo working under Windows (only works in certain USB ports), so it's not unusual. Did you install intelliMouse (or whatever it's called) that came with your mouse? --antilivedT | C | G 06:17, 25 September 2008 (UTC)[reply]
History: The laptop I am using (a Gateway) is supposed to support Bluetooth naturally, but it doesn't act like it does. So instead, I stuck the Bluetooth USB radio receiver from my Logitech keyboard (which is not being used). That seemed to work, except for the scroll wheel and back button.
I am running Vista (32-bit). I've installed the program "Microsoft Mouse" and this specific mouse is oddly not in its drop-down list for devices. Also, message states "Some mouse settings might not work until you connect a Microsoft mouse to a USB port on your computer or set up a Microsoft mouse that uses Bluetooth technology." on startup. How, nowhere in my control panel is there anywhere to set Bluetooth settings.
So, help?--SquareOuroboros (talk) 07:33, 25 September 2008 (UTC)[reply]

Monitor clock/phase reset

Why hello. I changed out my graphics card the other day, and it all has worked fine, except when I turn my PC on my monitor's clock/phase settings have reset and the picture is blurred and vanishing off the screen, requiring me to manually fix it.

Anyone know how to fix this?

Thanks. 80.229.160.127 (talk) 18:45, 24 September 2008 (UTC)[reply]

Probably can't really answer that one, but you might want to indicate what graphic card and what monitor you have. Best always state what's your hardware and system (or any relevant info) when you require technical help. Equendil Talk 19:14, 24 September 2008 (UTC)[reply]
The new card is an ATI x1950, the monitor is an Ilyama. I didn't really see it as a fault in the hardware, more of a software issue. I do have the latest drivers for the card, too. 09:29, 25 September 2008 (UTC) talk)
The settings you are after are likely in the graphics driver, you may be driving the monitor at an inappropriate refresh rate for the given resolution. Try adjusting the settings in windows to the specifics of what the monitor is supposed to support. Also, if the monitor has an onboard "auto adjust" feature, give that a whirl. --66.195.232.121 (talk) 15:35, 25 September 2008 (UTC)[reply]

Dealing with a dead laptop

Hello, I am a graduate student whose HP Pavilion DV1000 laptop recently died. I turned it off a couple of days ago, and I was not able to turn it back in an hour or two later. No lights appear anywhere on the machine. The disk drive does not open. To my recollection, the battery was fully charged before I turned off the laptop (I had it plugged in). I've tried different techniques to bring it back to life -- ejecting the battery for a while, being plugged in with the battery inserted, being plugged in with the battery ejected, holding down the power button at all these different points, removing and reseating the memory, etc. Someone said it may be a "fried motherboard", though I'm not clear what this means.

With the laptop being a few years old, the warranty has expired. The laptop, running on Windows XP, had been holding up fairly well, though Office 2007 (necessary for my classes) was a little sluggish on it. I was wondering if there were any other fixes possible. If not, is it more fiscally reasonable to get this laptop fixed by HP or another place, or to get a new laptop altogether? Thanks, 140.182.135.28 (talk) 19:56, 24 September 2008 (UTC)[reply]

Do you feel comfortable removing the hard disk and placing it [as a slave, if needed] in another computer and then recovering your data? Kushal (talk) 21:24, 25 September 2008 (UTC)[reply]
It's not likely that it's the hard drive that's faulty - I doubt that it's the RAM of the graphics or the display - the machine would at least boot to the BIOS layer - lights would come on. It's possible you just have a dead battery. If you know someone with a similar machine - borrow the battery and see. Failing that - you have to take a chance and buy a battery...sadly, you might do that and find it's really something else. A "fried motherboard" is certainly possible - a totally dead machine could indeed have a faulty motherboard - or a dead battery - and there is really no easy way to know which. I guess I'm a little surprised that not a single LED anywhere would come on - even with a faulty motherboard - so again, the battery seems the most likely thing. But a new battery is (presumably) cheaper than getting the motherboard replaced - and replacing the cheapest thing first is really the only sane way to proceed. I'd try a computer repair place first...have them give you a cost estimate - only you can know whether the cost to repair is more cost-effective than cost to replace. When you do replace it - how much important data do you lose? Swapping the hard drive into a new laptop probably won't work...fixing this one does. Dunno - get as much information as you can and make an informed decision. SteveBaker (talk) 01:24, 26 September 2008 (UTC)[reply]
Steve, I did not mean hid hard disk was faulty. Actually, I was hoping that his hard disk was not faulty. I just wanted the OP to not lose data in case he proceeds to more exquisite steps. Kushal (talk) 20:06, 26 September 2008 (UTC)[reply]

Computer TV appliances on Linux?

As my TV recently broke down, my mother's husband suggested I get a USB appliance for my computer to receive TV signals and watch TV on my computer instead. The only problem is, unlike 99.999999% of Finland's population, I use Linux and not Windows. Will these appliances work on Linux just as well or would I be forced to finally succumb to Bill? JIP | Talk 20:01, 24 September 2008 (UTC)[reply]

I'm pretty sure the MythTV folks could point you in the right direction. --LarryMac | Talk 20:13, 24 September 2008 (UTC)[reply]
Look at the list of supported hardware at the Video4Linux-wiki 90.235.30.211 (talk) 15:05, 25 September 2008 (UTC)[reply]
MythTV works great - but I strongly recommend buying hardware that's well supported by them - search Linux user groups to find someone who has a really nicely working system - and copy it exactly! Once you get "off the beaten track" you can run into horrible installation problems. SteveBaker (talk) 01:02, 26 September 2008 (UTC)[reply]

Wikipedia template help on Template:User BRUIN ALUM

This template appears to transclude itself, revealed by the template's "What links here" special page. I am having trouble determining how the <include> and </noinclude> tags are allowing this. I would appreciate assistance! Newportm (talk) 20:49, 24 September 2008 (UTC)[reply]

The <noinclude>d parts of the template page transclude the template a few times, to illustrate the template's function. This is done on many template pages. What's the problem? Algebraist 20:57, 24 September 2008 (UTC)[reply]
Thanks for the reply. I guess there's no problem. That is my first experiment with <noinclude> tags. Newportm (talk) 02:43, 25 September 2008 (UTC)[reply]

Fedora - Keyboard - Noob

Hi,

I am using Fedora 9(KDE). Some keys on my keyboard don't work with Fedora, to be specific the Volume +/- keys, calculator key, the "Email" key (supposed to open the email client when pressed) and the key with MS Windows logo on it (I want to open kMenu with it). How do I get these keys to work? My keyboard is Compaq 5185 if that helps. Thanks for reading-AbhishekTalk 23:26, 24 September 2008 (UTC)[reply]

Those keys are not magic. Compaq installed a program (that they didn't tell you about) in Windows when they shipped the computer. That program listened to those keys. You need to map them in Fedora. Click on the "f", then System Settings. In the settings, select Keyboard and Mouse. Choose Keyboard Shortcuts. You'll see KDE Components and the actions that you can map to a key. Select the component and action. Click on the > and press a key to map it to that action. I just noticed that I have shutdown without confirmation mapped to Ctrl+Shift+Alt+PgDown. I better make sure I don't accidentally press that. -- kainaw 01:53, 25 September 2008 (UTC)[reply]
It would also help that you got the right keyboard in System/Preferences/Keyboard (I thought Fedora uses GNOME?). You should have a few options under Compaq, try them all and see if they magically work. --antilivedT | C | G 06:14, 25 September 2008 (UTC)[reply]

Thanks for the response. I got the Volume +/- keys working following kainaw's advice, but I can't figure out how to map the other keys. The configuration utility provides a very few options to configure; and doesn't allow me to create custom shortcuts either. Someone pointed me to this wiki, but when I tried to open the file I was supposed to edit it said the file didn't exist!-AbhishekTalk 15:29, 25 September 2008 (UTC)[reply]

Connecting to the Internet

I recently installed a modded version of Windows XP on one of my partitions, made specifically for gaming (it takes out most of the crap like movie maker, etc) and the full iso is only 92 mb for example. It says it came with most drivers removed EXCEPT networking drivers and drivers necessary to connect to the internet are supposedly with the setup. My problem is that I absolutely cannot connect to the internet! =[ and I fear it is because it didn't install the necessary drivers (the OS works flawlessly excepting that). What can I do? I don't even know where to start. Thanks for the help. --71.98.3.250 (talk) 23:30, 24 September 2008 (UTC)[reply]

You should probably get the full version on XP, and then disable all the stuff you don't need. Or, make your own version using NLite Mile92 (talk) 05:21, 27 September 2008 (UTC)[reply]


September 25

Temporarily disabling Spotlight

I use OS X 10.4. I've found that when I use some (actually very memory intensive) applications, specifically FinalCut Pro, my Mac decides that I'm not doing anything of consequence and starts to index things with Spotlight, sometimes hogging +90% of the CPU resources. Of course this drive me bananas since what I'm actually doing (watching video and figuring out where to cut it into little pieces) is quite intensive and having it occasionally be jerky on account of Spotlight is a little ridiculous.

Is there any way that I can selectively disable Spotlight? On Google most of the results I've found are about totally disabling it all the time and often about deleting your Spotlight cache. That's not what I want -- I just want to be able to turn it off for an hour here or there while I am doing something that I don't want disturbed by its little "mdimport" process.

Any thoughts? --98.217.8.46 (talk) 00:22, 25 September 2008 (UTC)[reply]

temporarily disable spotlight gave me this website. Does it help any? Kushal (talk) 19:59, 26 September 2008 (UTC)[reply]

Cat5 to fiber optic to cat5

Hello. I have difficult residential internet installation I’m struggling with. My wireless service provider only has cat5 cable installs and needs to have “line of sight” to get a signal. Well, in order for me to get “line of sight” I have to run the cat5 cable about 340 feet. I’m not only too far for cat5 to work but I have to run through woods full of wildlife that like to chew on it. Is it possible to start with cat5 at the antenna, switch to fiber optic for the long distance and the back to cat5 into the computer? Wiini (talk) 00:31, 25 September 2008 (UTC)[reply]

It appears you are mixing things up in your description. "Line of sight" is used in wireless connections. Cat5 is a cable. So, it sounds like you have a wireless connection about 340 feet from your house and there is a Cat5 cable running from the wireless tower to your house. If so, this is a terrible design. Cat5 begins to lose dependability beyond 300 feet. However, that are solutions. You can get a Cat5-to-fiber converter. They are common (and not extremely cheap). The catch is that fiber cable is prone to cracking if twisted, bend, stepped on, driven over, etc... It isn't as bad as it was back in the early 90s (when it would crack just because it didn't like the way you looked at it). But, it is still more fragile than a wire. Another solution is to use a repeater at the tower. Repeat the signal, wirelessly, to your house. At your house, begin the cat5. You will be using a short-range wireless signal, which can be blocked, but isn't truly line-of-sight. Best of all, the animals can't chew on the wireless signal. -- kainaw 01:48, 25 September 2008 (UTC)[reply]
To use fibre optic fibre, you need a pair of fiber optic transceivers. These will cost about $300 each, but at 100 meg you can have a range of 2000 meters. And of course you will need power to operate them. For the one out in the woods, this could cost more than the pricey transceiver. Graeme Bartlett (talk) 02:49, 25 September 2008 (UTC)[reply]
Why bother with such a complicated set up? Unless I'm mistaken (and supported by wikipedia articles) properly constructed ethernet cabling should work up to 100 metres total (given that you will usually add patch cables, the distance of the permanent cabling is often limited to 90 metres according to Category 5 but the total distance allowed should still be 100 metres). 340 feet is slightly over that but according to ethernet over twisted pair with high quality cabling you can generally get away with 150 metres particularly for 10BASE-T. So you could probably get away with keeping it completely passive particularly as I doubt your wireless internet connection is going to be faster then 10BASE-T so you can just limit it to that (although I suspect 100BASE-TX should be fine). Since this is a residential connection, I would say it doesn't really matter if you're breaking the spec if it works. If it doesn't work or you don't want to go this route, you could just install a ethernet repeater (or a switch) somewhere along the loop to ensure neither segment is longer then 100 metres (remember it could be something like 70+35). You will need to find a way to protect and power the repeater (which shouldn't be that hard, I'm sure I've heard of people putting switches [and APs] on rooftops and stuff before) but I personally suspect it'll be cheaper then adding fibre to the mix. If we were talking about over 200 metres say, looking at fibre may start to make sense. Nil Einne (talk) 09:51, 26 September 2008 (UTC)[reply]
One very good reason you might want to go optical is for lightning protection. In my area, if I were to run a copper cable 340 feet through my woods, I'd be just begging for a lightning strike to fry my equipment sometime over the course of maybe ten years or so. (Remember, the strike doesn't have to be close; lightning discharges can induce current over a wide area and also travel in the ground in rather willy-nilly, unpredictable ways.) But if I ran optical cable, I'd be relatively safe from that hazard. Outside, over that sort of distance, I'd definitely go optical or wireless.
Atlant (talk) 12:00, 28 September 2008 (UTC)[reply]

problem in running a software

whenever I try to run a software(newton) a message appear "msvcp71.dll is not found".also when I try to run an other software (springcharts) a message appear" msvcr71.dll is not found .please install java 1.5" .plz tell me what is java 1.5 and how i can istall it from internet. —Preceding unsigned comment added by Khubab (talkcontribs) 01:34, 25 September 2008 (UTC)[reply]

You need the Java Runtime Environment. You can download it from http://www.java.com . — QuantumEleven 09:01, 26 September 2008 (UTC)[reply]

Replacing long string of if/thens in VB.Net?

There's certainly a more elegant way to convert named-months to numbered-months than the following:

       Dim Number As String
       If Month.Text = "January" Then
           Number = "01"
       End If
       If Month.Text = "February" Then
           Number = "02"
       End If
       If Month.Text = "March" Then
           Number = "03"
       End If
       If Month.Text = "April" Then
           Number = "04"
       End If
       If Month.Text = "May" Then
           Number = "05"
       End If

(etc) What exactly would this more elegant manner be? ("Month" is a ComboBox control in DropDownList style) Badger Drink (talk) 05:11, 25 September 2008 (UTC)[reply]

Have you tried a DateTimePicker control? Drag one of those onto the form and try this code:
Dim monthName As Date = DateTimePicker1.Text
Dim monthNumber As String = monthName.ToString("MM")

--Tree 'uns 5 (talk) 06:01, 25 September 2008 (UTC) —Preceding unsigned comment added by Tree 'uns 5 (talkcontribs) [reply]

This would be perfect, but as far as I know, the DateTimePicker pops up that horrible shitty little calendar selector. Since most of the dates I'd require would be from the 1970s, the calendar selector would be a horrid mess of obnoxious clicking - and even setting the starting date wouldn't help too much, since the dates I'd need would fluctuate within a twenty-year period or so. =( Badger Drink (talk) 06:15, 25 September 2008 (UTC)[reply]
Doesnt' VB.Net have some kind of switch/case statement? --LarryMac | Talk 12:15, 25 September 2008 (UTC)[reply]
Select Case. --98.217.8.46 (talk) 01:19, 26 September 2008 (UTC)[reply]
You could replace it in numerous ways. For one, an using elseif statements for all but the first would make the Block more efficient. A "Select Case" statement would look prettier. The best way of course would be to use an associative array though, with the months being the Identifiers of their Values. - Jimmi Hugh (talk) 12:27, 25 September 2008 (UTC)[reply]
Check out the DateTime object, specifically the various Parse methods (probably TryParse is best for what you want). It lets you parse strings into DateTimes which can then have the month extracted as a string. --98.217.8.46 (talk) 12:31, 25 September 2008 (UTC)[reply]
I don't know how to do this specifically in VB, but to solve this problem generally (mapping a string to another string, or really mapping anything to anything else), you'd use a hashtable (see associative array for the general data-structure). In many languages hashtables are built in (like PHP or Python), but in many languages this is part of the standard library. I googled it, and found this nice article that helps you do this in Visual Basic 2005. There might be specific solutions that work better in this case (like using specialized Date-objects), but for the general problem, this is how you do it. 90.235.30.211 (talk) 14:46, 25 September 2008 (UTC)[reply]
That sounds way overkill. If there wasn't a specialized function to do this, I'd just use a SELECT CASE or something like that. It's a lot easier and a lot less overhead. I'm not sure I see the advantage of using a hashtable for something this simple. --98.217.8.46 (talk) 01:19, 26 September 2008 (UTC)[reply]
Here, incidentally, is how you'd do it with Select Case:
 Dim MonthText as String
 Dim MonthNumber as Integer
 MonthNumber = 0
 MonthText = Month.Text
 Select Case Ucase(Mid(MonthText,1,3)) 'make it case insensitive and only get the first three letters, to make it easy on the user
 Case "JAN": MonthNumber = 1
 Case "FEB": MonthNumber = 2
 Case "MAR": MonthNumber = 3
 (repeat)
 Case "DEC": MonthNumber = 12
 End Select
 If MonthNumber = 0 Then
     Msgbox("Your month name was not accurate, try again")
     Exit Sub
 End Select

Or something like that. It's still a little over a dozen lines of code but it's pretty straightforward. --98.217.8.46 (talk) 01:26, 26 September 2008 (UTC)[reply]


I'm not terribly familiar with VB, but there should be a "getSelectedIndex" or something similar for the combobox control. Also, why have a varible called number of type string. That's incredibly counter-intuitive... My guess would be it should be something like this:
 Dim monthNumberAsString as String
 If Month.getSelectedIndex() <= 9 and Month.getSelectedIndex() > 0 Then
   monthNumberAsString = "0" + Month.getSelectedIndex().toString()
 Else If Month.getSelectedIndex() > 0 'Implied >= 10 and <= 12
   monthNumberAsString = Month.getSelectedIndex().toString()
 Else
   MsgBox("Please select a valid Month value")
 End If
Note that it's been years since I've programmed in VB, I'm not sure the toStrings exist or are even necessary. Also, If I remember correctly, getSelectedIndex() returns a 1 based value, so the code above should be correct once you find the correct method to call, whether it be getSelectedIndex() or some other method. If you have to have the leading zero there, this is about as small as I can think of making the code. If you have a leftpad function that can pad your string, even better. It would reduce your code to the below, obviously switching out the left pad function with your own with it's own parameters
 Dim monthNumberAsString as String
 If Month.getSelectedIndex() > 0 Then
   monthNumberAsString = LeftPadToLengthOfTwoWithZeroes(Month.getSelectedIndex().toString())
 Else
   MsgBox("Please select a valid Month value")
 End If
As far as readability and clarity goes, the other solutions would be better. As far as number of lines, this is nearly optimal I think 98.209.96.165 (talk) 14:37, 27 September 2008 (UTC)[reply]
Well, I don't know about that specific implementation, but you are right that if possible, a ComboBox would be a better choice for something like this where there is a limited allowed vocabulary. --98.217.8.46 (talk) 19:58, 27 September 2008 (UTC)[reply]

xbox 360

will a normal xbox 360 hard drive work on a 360 elite? —Preceding unsigned comment added by Jwking (talkcontribs) 05:56, 25 September 2008 (UTC)[reply]

Sure. The Elite drive is just larger, but the interface is the same. -- Captain Disdain (talk) 07:14, 25 September 2008 (UTC)[reply]
I thought Microsoft discourages swapping hard disks. ?? Kushal (talk) 12:39, 25 September 2008 (UTC)[reply]
That may be, but that doesn't mean it doesn't work. I mean, am I offering a guarantee that absolutely nothing can go wrong? Nope. But have I ever experienced a problem when swapping Xbox 360 hard disks? Nope. -- Captain Disdain (talk) 20:37, 25 September 2008 (UTC)[reply]

Encryption on Windows XP

Is there any way of decrypting files with a signature algorithm of sha1RSA? I won't go into details but an encrypted file's certificate became deleted from on my Windows XP. -- penubag  (talk) 06:24, 25 September 2008 (UTC)[reply]

Uh what did you encrypt it with in the first place? --antilivedT | C | G 07:49, 25 September 2008 (UTC)[reply]
I just used MS's default encryption option. The right-click, file properties, encrypt contents. I hate Microsoft, they can't get anything right. -- penubag  (talk) 07:55, 25 September 2008 (UTC)[reply]
So you marked it as encrypted, then reinstalled your computer or otherwise lost your original profile/keys? This seems like a nice article on this subject. --antilivedT | C | G 08:35, 25 September 2008 (UTC)[reply]

Um... They seem to have got this right. You don't have the key to the files, therefor you can't get at them. I'd be more worried if you COULD get at your encrypted files without the key. Anyway unless you want to spend a few months brute forcing the key chances are your SOL 88.211.96.3 (talk) 09:12, 25 September 2008 (UTC)[reply]

Quoting from the article: "The Recovery Agent is a mechanism that allows the administrator to recover encrypted files when the user’s keys are lost." So depending on his situation, he might well be able to decrypt his files. --antilivedT | C | G 06:08, 26 September 2008 (UTC)[reply]

Laptop Issues

I am having problems with my laptop (A ThinkPad T23). Recently, it's taken to actually booting up at a time I'd prefer to call "two seconds left in the game" and BSoD'ing about 60-80% of the time it *does* boot, and this past weekend two curious things happened, a day apart:

  • The laptop lost track of both date and time (Saturday)
  • The laptop couldn't find a necessary file to boot up, but booted normally when I rolled the system back a few weeks (Sunday)

For clarity, I'm using Windows XP, the laptop (and its parts) is secondhand, and I have not added or removed any hardware (except for a mouse in order to play Diablo II without getting frustrated at the trackpoint; the mouse's addition or removal does not affect booting as far as I have observed). Any ideas as to the nature of the gremlins haunting the system? -Jéské (v^_^v Kacheek!) 09:00, 25 September 2008 (UTC)[reply]

Loss of ability to keep track of date and time suggests a failure of the motherboard battery. You mentioned that the laptop is second hand. Unless you never let your ThinkPad run out of batteries (the regular ones), you might want to replace the small button cell in your motherboard. But wait, lets see what others have to say on this issue.
It could be malicious code infecting your computer that is causing the problems. I do not have much faith in the system rollback feature in Windows XP. You might need to reinstall your operating system. Lets wait and see what other wikipedians have to say. Kushal (talk) 12:37, 25 September 2008 (UTC)[reply]
My first reaction was also "dead motherboard battery". For those who don't know - even when you disconnect your laptop from the charger AND pull out the battery pack, there is a teeny-tiny rechargable "lithium cell" on the motherboard that holds just enough charge to allow the on-board clock to keep good time until you replace/recharge the main battery. If that goes kaputt, your computer loses track of time when you turn it off. The battery usually lasts longer than the computer - but when it fails, this is exactly the kind of thing that happens. That certainly explains the first symptom - and could possibly explain the second. It's a general rule with computers that you should always "fix the bug you can find" before you worry too much about the others...very often, fixing the obvious problem also fixes the not-so-obvious ones. Sadly, this may mean dismantling your laptop - which is always a tricky and stressful thing. If you were born lucky, your computer may have a little plastic flap underneath somewhere - held down with a tiny screw or snap-connection - that's specifically designed to let you get at the battery. If so then PLEASE make a sketch or take a close-up photo of the battery BEFORE you take it out - so you'll be 100% sure how to put the replacement back into the machine! Then you can remove the old battery - and find a replacement (most decent computer stores will have them) and you'll be good-to-go. If you can't get at the battery easily - you might want to take the machine to a professional...it's really easy to yank off a flimsy ribbon cable or lose a screw inside or something. SteveBaker (talk) 00:53, 26 September 2008 (UTC)[reply]

IBM has always made the Thinkpad maintenance manuals freely available. The manuals contain step-by-step instructions for common maintenance procedures, with clear pictures. Searching for the exact model number (found on the bottom of the machine, it looks something like 2647 or 2628-FX1) should produce the most accurate information, but apparently Lenovo keeps a generic T-series maintenance manual available [here]. It is quite possible that Lenovo still sells all the replacement parts - you just need the FRU number which you can find the maintenance manual. 130.188.8.13 (talk) 13:06, 26 September 2008 (UTC)[reply]

Thanks, Steve. I've also been getting BSoDs from "Page Fault in Nonpaged Area" and "Memory Management"; could those also be related to a dead motherboard cell? Also, when I try and report the former BSoD's, I get corrupted error reports as a result. It's currently keeping track of the time and date; What I stated above was a one-off incident (i.e. it lost track once, and has not since). The manual I have here also suggests motherboard issues (a lot of beep errors: -, .., -., ..)-Jéské (v^_^v Kacheek!) 07:25, 27 September 2008 (UTC)[reply]

Using print screen to create screenshots

I've been practising using the print screen button to crop screenshots from online videos on Microsoft Word, but when I cut and paste these into My Pictures it comes up as "scrap". It will not allow me to just paste the screenshot of a webpage directly there either to enable me to crop it in paint. Any way to work around this? Alientraveller (talk) 10:30, 25 September 2008 (UTC)[reply]

Print Screen (copy) and then paste into a photo editor (even MS Paint will work) and save the screenshot as a standard jpg or gif. You can easily edit a standard jpg or gif in any photo editor (even MS Paint will work). -- kainaw 12:08, 25 September 2008 (UTC)[reply]
When you use print screen you are copying the image to the clipboard as an image. If you paste it into a folder, it will come up as a "scrap" because that's how Windows recognizes raw clipboard data. Rather, as suggested above, you will need to paste it into an intermediary image program (MS Paint, Paint.NET, GIMP, whatever) and then save it as the image file you want it to be. --98.217.8.46 (talk) 12:39, 25 September 2008 (UTC)[reply]
If you only need to crop and resize it, you could just as easily paste it straight into MS Word and do the editing there. In the picture properties under the Size tab there will be a Compress button which allows you to delete the cropped portions of images to keep teh size of the document manageable. Of course with this method you don't have the picture available to use in other programs. Zunaid 16:05, 25 September 2008 (UTC)[reply]

Firefox: Inheriting history in new tabs?

An example: Using the same tab, I browse to sites A, B and C in that order. On site C, I open a few links in new tabs, and later close the original tab with site C. Now there is no way for me to go "back" to sites B or A without creating a new tab and navigating there myself. Is there some way (extension/setting or such) that makes new tabs inherit the history of their parent tab, so that I can go back to sites visited in the previous tabs? -- Aeluwas (talk) 12:06, 25 September 2008 (UTC)[reply]

This isn't quite what you want, but you could just re-open the closed C tab, and all of its history should be there, allowing you to go back to B and A. --LarryMac | Talk 12:11, 25 September 2008 (UTC)[reply]
LarryMac is right. Go to History > Recently closed tab >> ... . Alternatively, if you just closed it, you can press Shift + Command (Control on non-Macs) + T to get to it. Cheers, Kushal (talk) 12:54, 25 September 2008 (UTC)[reply]
Hmm yes, thanks; unfortunately I already knew that (but hadn't really thought about it to be honest). Well, it's surely better than nothing. :) -- Aeluwas (talk) 18:04, 25 September 2008 (UTC)[reply]
Duplicate Tab JessicaThunderbolt 19:11, 25 September 2008 (UTC)[reply]
Perfect!! Thanks a lot! :) -- Aeluwas (talk) 12:05, 26 September 2008 (UTC)[reply]

MATLAB: Solving system with unknowns in multiple matrices

Hello,

I was wondering if anyone knows a clever way to solve a system Ax=b (using MATLAB) where:

A = some nxn matrix
x = some nx1 matrix where some amount (<= n) of the entries are unknown
b = some nx1 matrix where some amount (<= n) of the entries are unknown

Also, x and b are subject to the following condition:

If the entry in row i of x is unknown, the entry in row i of b must be known, and vice versa.

An example of this sort of system could be:

A = [1 2 3; 4 5 6; 7 8 9]
x = [2 y 5]'
b = [a 6 c]'

where y, a, and c are unknowns (this particular example may not actually have a solution, and I'm pretty sure this particular A is singular, but it demonstrates the general form of the problem).

For a normal case where all the entries in x are unknown and A and b contain only known elements, it's easy to just execute

x = A\b (or x = inv(A)*b, if you like)

but I'm not sure how to solve the type of system described above due to unknowns being in both x and b. I'm sure there's probably a way to solve it using the MATLAB symbolic toolkit, but I'd prefer not to use that since not all versions of MATLAB have it.

Any suggestions, ideas, or code would be much appreciated.

H. J. Hackenbacker (talk) 12:43, 25 September 2008 (UTC)[reply]

Partition A, x & y so that the known x's are in one partition and the unknowns in the other. It will be easier to tell what to do next and the partitions of A will probably no longer be singular. Saintrain (talk) 14:38, 25 September 2008 (UTC)[reply]


Download to Pdf

I noticed that on wikieducator.org in their toolbox, they have a "Download as Pdf" option which downloads the current wiki page to a pdf.

I have a wiki and wanted to see if I could perhaps add a tool similar to this. What I want to accomplish is for the user of the wiki based site to be able to download a pdf of any page they please. I don't necessarily want to "print to pdf" all my current pages one by one and post the link up since the page will be edited constantly. A tool such as the one wikieducator has, either in the toolbox or elsewhere, to download to pdf would be extremely useful.

How would I do this?

18:12, 25 September 2008 (UTC)18:12, 25 September 2008 (UTC)

It'll involve adding some custom PHP. This page seems to describe one MediaWiki plugin that can accomplish something very similar. There may be others as well—if you google "wiki2pdf" you'll find a lot of little code snippets. --98.217.8.46 (talk) 22:41, 25 September 2008 (UTC)[reply]

Wikipedia icon

How can I put a Wikipedia icon on my computer screen for faster access to search the files of Wikipedia? I though there was one on another computer I used some time ago, but I have been searching Wikipedia for over an hour and I cannot find anything about this.

If there is an icon available for download, Wikipedia should make this feature easier to find. —Preceding unsigned comment added by 4.245.15.66 (talk) 19:09, 25 September 2008 (UTC)[reply]

On Windows, you can simply drag the favicon (the one near the addressbar) onto your desktop.
If you use Firefox or Opera, you can use the integrated Search feature.
--grawity 19:20, 25 September 2008 (UTC)[reply]
You can also use the inegrated Search Function with Internet Explorer... in exactly the same way. But, you don't sound biased, at all. - Jimmi Hugh (talk) 10:48, 27 September 2008 (UTC)[reply]
I don't think he's referring to search toolbars, but rather the feature of searching using keywords in the address field. Wikipedia doesn't specify what Opera calls it, but Mozilla calls this feature smart keywords. If Internet Explorer has this feature, wikipedia fails to mention it... -- Reep (talk) 23:43, 27 September 2008 (UTC)[reply]
Oh, well that's not integrated search, so he's wrong, as well as biased. Integrated Search, is search, integrated into the browser, exactly as all Major browsers allow. Hey, I even had to use less words to be unbiased, it doesn't even take effort to not be childish and ignorant on a matter. - Jimmi Hugh (talk) 14:11, 28 September 2008 (UTC)[reply]

A site I can't remember

Hi Wikipedians:

I came across a site a while ago that let's you use this Java Applet, which turns out to be a Java-based Windows Server 2003 terminal software that gives you a complete Windows Server 2003 desktop (including a full Office 2003 suite) right inside the browser (I was using Firefox at the time) for free. A lot of other people used it and left some signature files behind. With this site, I can use Office 2003 on any platform provided it has a browser that can run Java.

I find the site to be sooooo cool. But now I can't find it any more. I think I stumbled across it while searching for "online office". But the site no longer seems to show up in Google.

Any ideas?

Thanks,

128.100.122.154 (talk) 20:17, 25 September 2008 (UTC)[reply]

There are a few web desktops listed here. Was it one of those? JessicaThunderbolt 20:41, 25 September 2008 (UTC)[reply]
No, I think .154 was talking about some kind of Java applet-based remote access on a public server - like Remote Desktop. --grawity 15:27, 26 September 2008 (UTC) —Preceding unsigned comment added by Grawity (talkcontribs) [reply]

Pro cons of java, c++ og assembly language

The question is simple. What is the pro and cons of java, c++ og assembly programming language? —Preceding unsigned comment added by 62.199.32.168 (talk) 21:09, 25 September 2008 (UTC)[reply]

Which language can you program in? This gives a great advantage to you! Does your platform have a compiler or interpreter for the language? gcc gives you c++ plus some more languages. Is this a homework question? Graeme Bartlett (talk) 22:01, 25 September 2008 (UTC)[reply]
If this a homework question, I should note, we do not answer such questions unless you have shown you have tried and need Help not Answers :P--Xp54321 (Hello!Contribs) 22:54, 25 September 2008 (UTC)[reply]
og is the name of an object-relational database mapping library used in Nitro and written in Ruby. Ogg is a free, open standard container format. And or is Logical disjunction - do you mean any of these? Also see c++ assembly language or Java (programming language). Graeme Bartlett (talk) 03:27, 26 September 2008 (UTC)[reply]
Perhaps 62.199. mis-translated... "og" is Danish for "and". Astronaut (talk) 04:57, 27 September 2008 (UTC)[reply]

Fingerprint Reader

Hey y'all! The laptop I'm using has a fingerprint reader but there doesn't appear to be any software on it to make use of it...Is there any freely available software out there I can use? Thanks.--Xp54321 (Hello!Contribs) 23:26, 25 September 2008 (UTC)[reply]

How about the UBEK driver: [2]. Worth a try. Fribbler (talk) 23:31, 25 September 2008 (UTC)[reply]
I'll see if it's any good.:)--Xp54321 (Hello!Contribs) 23:51, 25 September 2008 (UTC)[reply]
Wait, I'm on Windows, the requirements say GNU/Linux...?--Xp54321 (Hello!Contribs) 23:52, 25 September 2008 (UTC)[reply]
So it does. The same for "fprint" (another one I found). Back to the googleboard! Fribbler (talk) 11:43, 26 September 2008 (UTC)[reply]
Heh, for some reason I can no longer boot up Ubuntu as well! It gave me a system error message!:(--Xp54321 (Hello!Contribs) 01:14, 27 September 2008 (UTC)[reply]

How to download FreeBSD?

I want to install and use FreeBSD because it is genetic Unix and it's BSD too. I'm currently using Ubuntu GNU/Linux but I want to dual-boot Ubuntu and FreeBSD. I'm having trouble downloading FreeBSD. The downloads on ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/7.0/ state this: 7.0-RELEASE-i386-bootonly.iso, 7.0-RELEASE-i386-disc1.iso, 7.0-RELEASE-i386-disc2.iso, 7.0-RELEASE-i386-disc3.iso, 7.0-RELEASE-i386-docs.iso, and 7.0-RELEASE-i386-livefs.iso. I'm so confuse what .iso should I download. Should I download all, 7.0-RELEASE-i386-disc2.iso, or the 7.0-RELEASE-i386-bootonly.iso? What is 7.0-RELEASE-i386-bootonly.iso? What .iso(s) of FreeBSD should I download? Jet (talk) 23:32, 25 September 2008 (UTC)[reply]

It certainly looks like you need to download them all and burn each one onto a separate disk. Then you should reboot your computer with the "bootonly" disk in the drive. Hopefully, it'll prompt you to insert the other disks as needed. SteveBaker (talk) 00:34, 26 September 2008 (UTC)[reply]
Actually, you don't need the livefs or the bootonly. LiveFS is mainly intended to be used as a rescue disc. Bootonly is if you only want a disc to bootup with and plan to install from e.g. the internet. And depending on what you plan to install, you may only need disc1. Docs may be useful, but of course you can also access documentation directly from the internet (I don't believe you need it for an install even a full install). There is some brief description of the various discs at [3]. And yes, you will be prompted to insert the discs as needed although at least last time I made a full install there was some extra disc swapping (putting CD1 back in and then CD2). You could of course combine the various discs into a single DVD, there are various guides for this available online and I did it myself without much problem or you could potentially I think only burn disc1 (to CD/DVD R/RW) and then mount the images stored on your computer (never tried this although I think it's possible). Nil Einne (talk) 09:02, 26 September 2008 (UTC)[reply]


September 26

Qbasic Programming Question

Alright, I suck at programing tests and quizzes, and the equation/math part of the programming, and flowcharts (this is Qbasic), so I need some help with this problem.


2. Reserved words are words that are used by Qbasic and we can not use them for variable names (True/False)____. Now give an example of a reserved word ____________

3. You are given an allowance of 20.00 dollars a week. Last week you spent it as follows : $3.50---Fast food, $8.00---Movies, $14.00---CD. You also won a wager with a friend for $5.00, and found another $5.00 in the parking lot of the Mall. Write a Qbasic program which displays your fund Balance on Sunday night (when you get your allowance), all of your transactions, and the amount you have left on next Sunday morning. DO A FLOWCHART!!!!!

Use this space for your work: —Preceding —Preceding unsigned comment added by 151.203.57.167 (talk) 00:19, 26 September 2008 (UTC)[reply]

Fixed this [4].) APL (talk) 01:20, 26 September 2008 (UTC) [reply]
Sadly, the Wikipedia reference desk has a rule - we aren't allowed to do people's homework. Sorry. SteveBaker (talk) 00:32, 26 September 2008 (UTC)[reply]
(fixed this [5].) APL (talk) 01:17, 26 September 2008 (UTC)[reply]
Use this space for your snarky refusal to do homework: --98.217.8.46 (talk) 01:11, 26 September 2008 (UTC)[reply]

16:9 monitor

I've recently switched to a 16:9 1920×1080 monitor. While I am really happy about this at first since now I don't have to watch my videos with letterbox anymore, I find it kind of annoying also, because when viewing certain websites, Wikipedia included, the text is just stretched across the whole screen, making the shorter paragraphs (Four or five lines when viewed in 1024×768) feels like proseline. I am wondering if there's a way to force my web browser (Firefox), or just the Monobook skin (That'll help editing greatly), to adjust the resolution to perhaps something with a lower horizontal resolution. As for some reason it really does makes me feel frustrated to see proseline. -- クラウド668 04:16, 26 September 2008 (UTC)[reply]

One thing about using a widescreen monitor is that you really need to stop your habit of maximising windows. Just un-maximise your window and adjust it to a comfortable width, because even if such plugin exist it'd only fill up your page with blank space: why put your desktop space to waste? --antilivedT | C | G 06:04, 26 September 2008 (UTC)[reply]
I agree with Antilived. With my wide-screen monitor I simply have my browser set up taking up the normal width of a monitor then the spare desktop space is ideal for dragging/dropping files or getting fast access to my HD. Certainly that's the best policy - it does take a bit of getting used to but once you do you'll find switching between your screen and others more 'normal'. 194.221.133.226 (talk) 12:40, 26 September 2008 (UTC)[reply]

Telephones ringing

For the purposes of a theatrical production I need to have several normal telephones ringing on demand. Does anyone know of a method to send a signal to the phones to cause them to ring. My initial idea was to get a laptop and plug them in but I would have no idea what kind of software to use to send the signal. MHDIV ɪŋglɪʃnɜː(r)d(Suggestion?|wanna chat?) 11:31, 26 September 2008 (UTC)[reply]

Here's a rather technical discussion on doing just that. If it's too technical (it is for me) why not just use a sound effect? Fribbler (talk) 11:47, 26 September 2008 (UTC)[reply]
That page is essentially how to make a program that creates a WAV file that sounds like a phone ringing, which you'd then burn onto a CD and play using a (person operated) cd player. -- 84.45.132.96 (talk) 12:19, 26 September 2008 (UTC)[reply]
Are you sure? It seems to involve hooking up the phone to the cd player. I'll admit I don't understand all of it. Fribbler (talk) 12:27, 26 September 2008 (UTC)[reply]
You're indeed correct. The software creates a CD that produces the correct Voltages, so that when hooked up to a telephone a ringing sound is formed. It also provides information on hooking up the phone. - Jimmi Hugh (talk) 12:49, 26 September 2008 (UTC)[reply]
Ringing isn't really a "signal" so much as a "blooming great AC voltage" - the phone exchange sets enough juice to waggle a little iron hammer in a solenoid at a distance of several miles. So this is proper electricity, rather than wimpy-dimpy computer type electricity. Other than Fribbler's excellent sound effect suggestion (which is what most theatres seem to do, in my limited experience) you can have someone electrically competent build a ringer circuit (this has more info: http://www.tkk.fi/Misc/Electronics/circuits/telephone_ringer.html) - but as the voltages required are nontrivial, it should be someone skilled in the electrical arts. Alternatively you can buy (for cheap) a used analog PBX (aka PABX), the little analog phone exchanges small offices had a decade or two ago before they switched to digital. You can get these on eBay (and probably car boot sales and the like). Then you can plug in a coupleof regular BT phones and you just dial one to make it ring. The trouble with using a real phone (rather than a sound effect) is projection - in a large theatre that phone might seem quiet (the sound radiates in all directions, whereas the actors project into the audience). -- Finlay McWalter | Talk 12:08, 26 September 2008 (UTC)[reply]
Does your cell phone have a "old phone" ringtone? Play that through an off-stage mic to a speaker hidden on stage. Astronaut (talk) 05:05, 27 September 2008 (UTC)[reply]

Music metadata

Is there a free and easy way to update metadata on downloaded music files from P2P programs (ie not iTunes etc which already come with the correct metadata)? --RMFan1 (talk) 12:21, 26 September 2008 (UTC)[reply]

How about this? Fribbler (talk) 12:23, 26 September 2008 (UTC)[reply]

Thanks Ill try that. If anyone knows of anything that actually updates the metadata automatically please let me know. Also I have a question about metadata: Why is it that on WMP there are so many different types of metadata (for example, theres an "album artist", "artist", "composed by" etc) but the files themselves seem to have less (usually just "title", "artist" and other basic tags)? --RMFan1 (talk) 12:32, 26 September 2008 (UTC)[reply]

In MP3 files, the metadata is stored in ID3 tags. The current version, ID3v2, allows for 84 standard tags, plus an application can add its own tags. Windows media files such as WMA, have their own metadata format but can support ID3 tags, so WMP probably shows all the tags that Microsoft has defined. As far as automatic updates, it depends on what you want to happen. If your files have a very strict naming convention, e.g. (artist)-(tracknumber)-(album)-(trackname).mp3, then a program can determine which portions of that name to put into the tags. If you have a bunch of randomly named files, then it becomes a much more manual process. I've used MediaMonkey to assist in the process. --LarryMac | Talk 13:42, 26 September 2008 (UTC)[reply]
MusicBrainz Picard. --antilivedT | C | G 03:01, 28 September 2008 (UTC)[reply]

Can you block email via iGoogle

The iGoogle personalised homepage used to give a summary of the last half a dozen gmail emails (who sent it and start of title). Today it has been upgraded so that it gives full access to gmail. Our company has a strict policy of blocking webmail. This means that we will have to block google if there is no way to disable email access.

I know that google provided a [mechanism for disabling chat] on a network by blocking access to http://chatenabled.mail.google.com. Is there a similar way of disabling the access of gmail through iGoogle and the [google mail gadget]? I really hope so because we all find google search, etc. very useful -- Q Chris (talk) 13:53, 26 September 2008 (UTC)[reply]

Blocking access to mail.google.com should prevent access to their email service, though it may not prevent the previews from displaying, depending on how you choose to block it. Ale_Jrbtalk 16:15, 26 September 2008 (UTC)[reply]
It used to block google mail but now it is accessible from http://www.google.co.uk/ig and http://www.google.com/ig that won't work any more. Unless there is some way of disabling it we will have to block the whole of google. -- Q Chris (talk) 17:33, 26 September 2008 (UTC)[reply]
Question - even with the gadget, it is not possible to view, read, compose or send emails/attachments. It is only possible to view the first few words of the message. Is blocking access in the other way insufficient? If so, I think you would have to block iGoogle entirely (e.g. the google.com/ig folder). The ability to do that depends on your proxy/blocking software. Ale_Jrbtalk 17:38, 26 September 2008 (UTC)[reply]
Until this morning you were right, it only displayed the sender and beginning of the subject. Today that has changed (though possibly only for Firefox users, I have had conflicting reports), as Google has updated the iGoogle pages. You can read whole messages, send messages and generally do all the things that we want to prevent people doing from in work. -- Q Chris (talk) 18:11, 26 September 2008 (UTC)[reply]
Well, if you figure out how to let it do that, tell me. Sounds like a great feature that I can't find anywhere! I'd suggest blocking iGoogle, then - at l;east normal search would still be available. Ale_Jrbtalk 19:46, 26 September 2008 (UTC)[reply]
QChris, if you're still reading this question, I'll give you some advice that might help you out. Generally speaking, you fall into the category of enforcing policy via technical means. This is, unfortunately, a losing battle. Let's say in your example, you've blocked "gmail.com", and that works. The problem is that there are many many other webmail sites out there. Do you know all of them? What about yahoo.com in other countries? Someone could sign up for say, yahoo in new zealand and access it via yahoo.co.nz and your filters would not find it. So URL blocking is a no-win situation. And unfortunately this ends up being an "arms race". People banned IM at work, and then web sites like meebo became available. The answer is to *enforce* your policy via administrative means. If you make it your policy that people can't use gmail at your location, then you take administrative action (suspend them, etc) when they violate the policy. I refer you to the spirit of #1 and #2 at [6] . Blocking "that which is bad" will never work. People will always try to work the technical side of the system. Aaronw (talk) 19:57, 26 September 2008 (UTC)[reply]
Using webmail certainly is a serious offence at our company, all email has to be stored monitored and have an appropriate disclaimer. It is our legal department's interpretation of the relevant legislation that we should also make best efforts to avoid this possibility technically. If customer data loss was caused by someone making a deliberate search for an unblocked mail gateway, proxy, etc. then the company would of course still be responsible for the loss, but it is unlikely that the company would e found to have acted negligently. Also if a person had to make efforts to find an great unblocked email system we would have much stronger grounds for their dismissal - as it would obviously be blatant and deliberate infringement of the rules. This means that we will almost certainly have to block google entirely, which is a shame because the search is very useful in our day to day work. -- Q Chris (talk) 10:21, 27 September 2008 (UTC)[reply]
Holy crap. I'm in IT in a company that is fairly strict on webmail access and customer info. However, what you are proposing is utter madness going into the insane. If you do this there is going to be a total shitstorm and your IT department is going to have to take a bite. Security is NOT about closing all the holes. It is about closing all the holes that are most easily filled. There are a billion websites that offer webmail. By the same reasoning you should just block the entire internet. Talk to Google and your filtering company about this. All you need to do is find the string that iGoogle says when you have the gmail gadget loaded and block pages with that phrase. Blacklist it and you are done. --mboverload@ 20:17, 28 September 2008 (UTC)[reply]

Q Chris, I have a solution. ALL you need to do is block *mail.google*. That should block all languages. The gadget just displays a few words from your most recent emails - practically no information at all. You can not compose or read email in it without going to the *mail.google* domain. Solved. * --mboverload@ 20:19, 28 September 2008 (UTC)[reply]

I'm afraid not, the upgraded gmail gadget gives full email access from http://www.google.co.uk/ig. This means you have to block the whole of google. If you just see a summary of a few words you are still seeing the old gadget, not the upgraded one. -- Q Chris (talk) 21:15, 28 September 2008 (UTC)[reply]
Thank you for the additional information Chris. So we can better help you, are you at liberty to say what filtering products your company uses? As we do not know what company you work for it should be a fairly innocuous question but I understand if you are hesitant to answer.--mboverload@ 22:30, 28 September 2008 (UTC)[reply]
Couldn't you just block iGoogle? e.g. block google.com/ig but not google.com? Or does the blocking only take place on a domain/subdomain level? --98.217.8.46 (talk) 22:00, 28 September 2008 (UTC)[reply]
We have put in a request to our blocking software supplier, it appears that the current version blocks whole domains only. -- Q Chris (talk) 06:46, 29 September 2008 (UTC)[reply]
Bad supplier, my company has managed to block google.co.uk/ig without blocking the main google.co.uk page. Not sure which supplier they use, though.--Lgriot (talk) 03:34, 30 September 2008 (UTC)[reply]

Ripping data off unfinalized disks

I have a CD that was not finalized. I want to rip the current data off it. I don't have the means of returning to the computer where it was made and finalizing the disk - or even figuring out what burner program was used to create it. Any suggestions? -- kainaw 15:04, 26 September 2008 (UTC)[reply]

What have you tried so far, and what happened? —Ilmari Karonen (talk) 15:45, 26 September 2008 (UTC)[reply]
Isobuster worked. Being a Linux user, I would prefer that there was a free non-Windows solution. -- kainaw 16:57, 26 September 2008 (UTC)[reply]
The first thing I would try is the dd command (which you'll find on virtually any unix system) to make an image of the CD. Don't know how it handles unfinalized CDs though, but in case you haven't tried.
dd if=/dev/cdrom of=cdimage.iso
-- Reep (talk) 23:55, 27 September 2008 (UTC)[reply]

I don't get it. Can't discs be read without finalizing them? I mean, I used to leave my discs unfinalized all the time. (Never burned additional data though. Hah.) --Kjoonlee 03:29, 28 September 2008 (UTC)[reply]

When unfinalized, the program that is creating the disk can read it. I don't know what version of Windows or what program the disk was created with. I don't want to hunt down a Windows box with various CD burning programs on it to figure out which I should use. Without finalizing, the disk comes up as 840MB of 720MB used - no files. Since the files I wanted were text files, I suppose I could cat the device - but I used isobuster and already got the data. -- kainaw 03:32, 28 September 2008 (UTC)[reply]
In my experience Nero usually asks if you want to finalize something: if you do finalize it, adding more data to the disc is impossible. If you don't, you can add another session. In either case, all my drives have supported reading from all the discs in all programs. If that's not what you're talking about, then sorry... --Kjoonlee 06:33, 28 September 2008 (UTC)[reply]
I suspect there may have been something else wrong with the disk other than just lack of finalization. Anyway, I'm glad you got the data off. —Ilmari Karonen (talk) 16:16, 28 September 2008 (UTC)[reply]

Using OpenID to post comments on WordPress blogs

Hi. I have a Blogger account but want to post comments on WordPress blogs. Both are supposed to allow OpenID but I can't seem to log on WordPress using the OpenID. I can do it easily on LiveJournal though. Anyone knows how to log on WordPress with an Open ID? Thanks. 132.216.22.140 (talk) 17:24, 26 September 2008 (UTC)[reply]

Adding text via css

Hi all,

I often see very cool things done through CSS, and it seems to me like it's possible to add html/text around text through CSS alone. Is that right?

I'm trying to create a CSS tag that would automatically wrap a word in a table with the words "Important notice!" at the top. Is that possible? So if you type in

<div class="notice">Here's a big warning</div>

You would get something like

Important notice!
Here's a big warning

Any suggestions on how to do this?

Thanks! — Sam 17:30, 26 September 2008 (UTC)

My bad, I didn't look quite far enough. I guess I was looking for Generated Content (:before and :after tags), which is part of CSS 2. Unfortunately, I'm using a java program that only supports CSS 1. I don't suppose there is any way to do the same thing in CSS 1, is there? Thanks! — Sam 17:39, 26 September 2008 (UTC)
Only with Javascript. With javascript you can grab the CSS elements (by tag or by id) and then modify the HTML code directly. --98.217.8.46 (talk) 18:23, 27 September 2008 (UTC)[reply]

Linux GUI -- Fragile? Anyway to uninstall updates?

Last night I saw some available updates in my fedora update manager. I said sweet, bug fixes, and installed all of them. Unfortunately there was an Xorg driver update that broke my system. The guys at Linux Forums tried to help but ultimately I gave up and reinstalled Fedora. So I want to know about safe updating. I have decided not to install kernel updates or X11 updates anymore because I don't want this to happen again.

Is there anyway to "rollback" or uninstall updates? I know in windows I can just go to control panel and remove updates there but in Fedora's (or any other Linux distribution's) update manager I didn't see any such option to downgrade. If there is a manual way of doing this from the terminal please tell me. When I used Ubuntu about an year ago, the GUI screwed itself often and took me into a command prompt, even without any updates -- this makes me wonder is the Linux GUI too fragile? How to avoid this? How do I know an update is safe or not? -AbhishekTalk 17:57, 26 September 2008 (UTC)[reply]

Usually such bugs are corrected in later updates. It is a good idea to check if the bug was reported to the project and report if not. Some package managers support downgrading to a previous version which should help in most cases. MTM (talk) 19:41, 26 September 2008 (UTC)[reply]
Yes, they fix it later, but I don't see any option in my package manager to uninstall updates. Even if my update manager had such an option I wouldn't be able to use it anyway because broken updates just throw you into the command line..I guess I'll just turn off updates. -AbhishekTalk 03:03, 27 September 2008 (UTC)[reply]
Many distribution (e.g. Debian, Gentoo, Ubuntu) support installing only updates which have been tested for some time (one month without bug reports in Gentoo). When I used Fedora several years ago, there were separate package repositories for less tested updates. They are designed for people who want and have enough free time to report bugs and use command line interface to fix them. MTM (talk) 11:45, 27 September 2008 (UTC)[reply]
You can remove packages, not updates. However, you can uninstall a package and reinstall it up to a specific version. The problem is dependency. If you try to remove xorg, you'll lose all your graphics and have to reinstall everything. Basically, Fedora is designed to move forwards, not backwards. -- kainaw 14:04, 27 September 2008 (UTC)[reply]
The rpm program supports removing packages without removing packages depending on it, so it can be done. In Gentoo and Debian-based distributions packages can be "updated" to any compatible version easily. MTM (talk) 15:44, 27 September 2008 (UTC)[reply]
You can download the old package and force dpkg to downgrade (this also skips dependency checks): dpkg --force-downgrade -i xorg_oldversion.deb --wj32 t/c 20:58, 30 September 2008 (UTC)[reply]

google blogger

Hi, I am on the talktalk isp in the uk and constantly (50% of the time) cannot get access to my google blogger to update my posts....is there a quick fix I can do? 89.241.84.64 (talk) 18:08, 26 September 2008 (UTC)andy[reply]

Are you getting an error message? Did you check the google blogger help? Have you tried your ISP's tech support? Failing that, get a new ISP or blog site. Astronaut (talk) 05:26, 27 September 2008 (UTC)[reply]


thx....going down those lines now. —Preceding unsigned comment added by 78.148.73.105 (talk) 23:11, 27 September 2008 (UTC)[reply]

keep getting "Acquiring network access" on my laptop

I have a Dell Inspiron 6000 laptop and a Comp USA wireless router. Whenever I am accessing internet on my wireless, after every now and then I loose my connection and everytime I loose connection, I get a message "Acquiring network access" on bottom right corner of my laptop. Please note that it shows full strength of the wireless signal. Sometimes it is very frequent like every 5 mins or so and sometimes it goes on for 1-2 hours without this problem. Is this some internet connection or security settings issue? Please help.

Namit —Preceding unsigned comment added by 162.136.192.1 (talk) 21:32, 26 September 2008 (UTC)[reply]

Is it always with the same wireless router or does it happen on multiple, different connections? Are there any other computers using the same wireless router, do they have similar issues at all? Knowing this can determine whether it is an issue with your machine or the router. --98.217.8.46 (talk) 22:05, 26 September 2008 (UTC)[reply]

September 27

Windows XP: Keywords Column in Windows Explorer

While in Windows explorer I set the keywords in properties for a file. But when I look in the Keywords column, the keywords do not appear. What's going on? When I was searching the internet I noticed that these guys seem to be having the same problem http://forums.cnet.com/5208-7813_102-0.html?forumID=5&threadID=207046&messageID=2734156 124.171.206.126 (talk) 10:05, 27 September 2008 (UTC)[reply]

You are ahead of me, I can't even select the keywords metadata to add as a column in Explorer. I don't use Explorer though, seems to work fine in Directory Opus. Couldn't find anything on the knowledge base @ Microsoft. I doubt you can fix that. Equendil Talk 14:43, 27 September 2008 (UTC)[reply]

KbdEdit

With KbdEdit can you assign a string of letters to a chord of keys? Eg. By keying "TH" together, the word "the" might be displayed. —Preceding unsigned comment added by My name is anetta (talkcontribs) 18:16, 27 September 2008 (UTC)[reply]

Try AutoHotkey if KbdEdit doesn't work.118.90.31.41 (talk) 04:48, 30 September 2008 (UTC)[reply]

You mean [7] this?My name is anetta (talk) 16:45, 30 September 2008 (UTC)[reply]

Saving downloadings

Hi, everyone. I'm sure this is a stupid question but being an older man it's not easy for me to learn some computing issues.

Where or how do I have to save software downloaded? example: want to download a free antivirus. Thanks in advance for your help. --189.135.143.31 (talk) 19:45, 27 September 2008 (UTC)Mannix[reply]

Hello, sir! It does not matter where you download it. Some people prefer to download it to their desktop. Then, when they are done installing, they can just trash the installation file easily. Kushal (talk) 20:42, 27 September 2008 (UTC)[reply]
As Kushal says, it doesn't matter where you save it as long as you remember where you put it. For simplicity's sake, I created a directory (a folder) called Downloads, and that's where I put all the files I download. If you use an operating system like Windows XP, you could create a folder called something like My Downloads inside the My Documents or My Computer folders... wherever would be easiest for you. --- OtherDave (talk) 10:37, 28 September 2008 (UTC)[reply]
One thing that's important to learn is to only install software (especially the free anti-virus kind) that's from a trusted source. If you've gotten the software "offered" to you, say from a website's "banner ad", that can be very risky. There's lots of great free software (wikipedia for example) but it's extremely important where you get it. An example: if you call Sears to order something it's (relatively) safe to give them your credit card number. But if you get an unexpected call from "Sears", it's a safe bet you're being conned.
See Witchata Public Library's Guide to Defensive Computing and List of antivirus software. Good luck. Saintrain (talk) 00:04, 29 September 2008 (UTC)[reply]

How do I compile Live USB system creator?

I am trying to compile Live USB system creator, with a modification posted here, so it would run on Super Ubuntu, does anyone knows how to compile it into a .deb file? (I tried some methods on the internet, but they did not worked) Thanks. SF007 (talk) 20:26, 27 September 2008 (UTC)[reply]

1. Making debian packages isn't the easiest thing in the world. There's a packaging guide at the ubuntu wiki, but it's a lot of reading.
2. You can simply do that change directly at the installed location
gksudo gedit /usr/share/python-support/liveusb/liveusb.py
The change will be reverted if you reinstall the package.
3. Regardless of whether "Remastered Super Ubuntu" is supported at launchpad or not, the patch proposed by Carles González Silva is valid. Parsing the output of du -sm is better than parsing the human readable output of du -sh. In my opinion, it should be considered a bug in the software as it will break things eventually.
-- Reep (talk) 00:48, 28 September 2008 (UTC)[reply]
Thanks for the tip, good idea, the only problem was that the workaround did not seem to work... :( Thanks anyway. SF007 (talk) 15:48, 28 September 2008 (UTC)[reply]

<embed>

Is there any way to change the default color of an <embed> (for an mp3) ? It looks a little weird on my webpage in its normal color.

or... is there a cooler alternative that looks great for a basic html/css page? 78.148.73.105 (talk) 23:14, 27 September 2008 (UTC)andy[reply]

My understanding of it, which might not be right, is that the EMBED tag can result in a number of different types of applications playing the embedded file depending on the setup of the individual machine (for me it might be QuickTime, for you Windows Media Player, for someone else Real Player). Whether the colors are customizable in such an approach would depend on the player but the answer is generally "no". If you want to have control over things you embed you need to use formats that give you that control, e.g. embedding the MP3 in a Flash movie and then embedding the Flash movie into your page (which will only play with the Flash player and lets you customize everything), for example. --98.217.8.46 (talk) 19:52, 28 September 2008 (UTC)[reply]

September 28

U3 Password Enable

Hello. How can I enable password protection on a U3 Launchpad? The Enable Security button is not on the Launchpad nor in the U3 Launchpad Settings. I unsuccessfully searched in the Help files. Thanks in advance. --Mayfare (talk) 02:18, 28 September 2008 (UTC)[reply]

Rails question

Somehow I am unable to create a database. Every time I do rake create:db the console gives me rake aborted!/uninitialized constant ActiveRecord. ActiveRecord and rubygems both seem to be fine. I have the latest version of Rails. --hello, i'm a member | talk to me! 02:56, 28 September 2008 (UTC)[reply]

PDF to HTML

Hello daer Wikipedians!i want to know about a free software which convert PDF files into HTML.i use it for the Ubuntu Full Circle Magzine ,Please help me.Thank You —Preceding unsigned comment added by 119.154.37.84 (talk) 04:44, 28 September 2008 (UTC)[reply]

You should elaborate a bit on what you want out of this. Do you want it to just grab the text out of the PDF, and put it into a text file and then you can stylize it into HTML? This is not hard (but not much better than just copy-paste of the text itself). Do you want to replicate the layout of the PDF as HTML? This is not only very very hard, but unwise -- PDF and HTML use very different graphical devices to render them and different types of layout elements. An exact-translation of a PDF to HTML would not be very good HTML, if it were even possible. HTML is a very different type of layout paradigm than desktop publishing. --98.217.8.46 (talk) 05:22, 28 September 2008 (UTC)[reply]
There are many ways. Adobe has an e-mail service for this: http://www.adobe.com/products/acrobat/access_onlinetools.html. You can also use GMail: http://labnol.blogspot.com/2005/12/convert-doc-xls-ppt-rtf-pdf-to-html.html. You could also download a free trial of Acrobat Professional and save the PDF as HTML. None of these methods work very well, though. You'll get the best results if you code the HTML yourself. You could also use pdftk to uncompress the PDF and do a find-and-replace in Notepad to generate the code (e.g., replacing \n with <br/>).--Tree 'uns 5 (talk) 06:52, 28 September 2008 (UTC)[reply]
The Gmail option will, most likely, strip your result of all images, which is bad news. However, your formatting [most likely] stays, which is good. Kushal (talk) 10:08, 28 September 2008 (UTC)[reply]
It depends on the complexity of the document. If it is just a Word file with a single column then yeah, that works fine, though really no better than just copying and pasting the text with Reader. But if it is a real layout (and has images and columns and variable fonts and sizes and etc) then usually it comes out a real muddle. --98.217.8.46 (talk) 21:55, 28 September 2008 (UTC)[reply]

where is winamp's media library database ?

Hi, my winamp's been crashing for sometime due to gen_ml.dll, and I believe that its due to corrupted media library databases. Deleting them might solve the problem as that would force the databases to be reconstructed. But can anybody please tell me where they are located? It used to be main.dat but the latest's version is using some other path. —Preceding unsigned comment added by 117.201.113.34 (talk) 08:24, 28 September 2008 (UTC)[reply]

Under WinXP, if you have per-user save enabled, it'll probably be under %appdata%\Winamp, or 'Documents and Settings\user\Local Settings\Application Data\Winamp'
If you're just saving one list, it may be under 'Documents and Settings\All Users\Application Data' or '\Documents and Settings\All Users\Local Settings\Application Data\Winamp'
I'll try to post back the exact location when I get to my home desktop. Washii (talk) 23:07, 29 September 2008 (UTC)[reply]
Had to Google it (assuming XP again). Winamp forums says '%appdata%\Winamp\Plugins\ml' (minus single quotes) if you're using per-user stuff. Probably 'Documents and Settings\All Users\Application Data\Winamp\Plugins\ml' for system-wide. Could probably just rename the 'ml' to 'ml.BAD' or something and see what it does. Washii (talk) 03:10, 30 September 2008 (UTC)[reply]

two thrones

where can i get a picture or wallpaper that depicts both the princes sitting on two thrones?? —Preceding unsigned comment added by 122.50.128.79 (talk) 09:28, 28 September 2008 (UTC)[reply]

Which princes do you have in mind? --- OtherDave (talk) 10:38, 28 September 2008 (UTC)[reply]
My guess is that he means William and Harry. --Russoc4 (talk) 17:24, 28 September 2008 (UTC)[reply]
In which case the answer would be: you can't. Humanities would be better for this kind of question, hehe. --Cameron* 19:00, 28 September 2008 (UTC)[reply]
Why would William and Harry be sitting on thrones? —Tamfang (talk) 20:33, 28 September 2008 (UTC)[reply]

You need a country ruled by princes, not kings. Like Monaco. They probably have thrones.81.143.61.181 (talk) 09:20, 30 September 2008 (UTC)[reply]

Upgrading Laptop RAM

Hello ref desk. I have a 4 year old Dell Inspiron 9300 and recently bought a new hard drive, upgrading my 40GB to 80GB. I did this because I thought it was going bad, but apparently one of my RAM sticks was bad. I started 4 years ago with 512MB of RAM and upgraded to 1GB of DDR2 533 (PC2 4200) CAS latency 4. This was about 3 years ago. About 1 year ago, I purchased a second 1GB stick, exactly the same item (and 1/3 the price). This stick I purchased a year ago is the one that failed. Now I am concerned that my older stick is going to go at some point, so here's my situation. Should I spend:

  1. $17.49 for 1x G.SKILL 1GB 200-Pin DDR2 SO-DIMM DDR2 533 (PC2 4200) with a Cas Latency of 4
  2. $36.99 for 2x G.SKILL 1GB 200-Pin DDR2 SO-DIMM DDR2 533 (PC2 4200) with a Cas Latency of 4
  3. $34.99 for 2x G.SKILL 1GB 200-Pin DDR2 SO-DIMM DDR2 667 (PC2 5300) with a Cas Latency of 5
  4. $44.99 for 2x G.SKILL 1GB 200-Pin DDR2 SO-DIMM DDR2 667 (PC2 5300) with a Cas Latency of 4

Option 1 would just replace my broken RAM with the exact same stick. Option 2 would replace both of them with the exact same sticks. Option 3 would replace both of them and upgrade the speed, but downgrade the Cas latency (whatever that is). Option 4 would upgrade the speed and keep the same Cas latency.

Now, will I really benefit from an upgrade in RAM speed if my processor is rated at 533MHz FSB, with apparently an actual Bus Speed of 133MHz.

Here is my CPU-Z report.

It says the memory frequency is actually 266MHz and the Bus Speed is 133MHz, giving me a RAM ratio of 1:2. Why is my bus speed only 133MHz and why is my RAM ratio not 1:1, as in, 533:533? And what is Cas Latency?

--Russoc4 (talk) 15:07, 28 September 2008 (UTC)[reply]

Personally, I would go with option 3, just because it is cheaper and faster (also the top speed supported by your laptop). I'd also go with option 3 because working in equal pairs is generally a good thing. If you want to spend the extra cash, you could go with Option 4, though I highly doubt it would be worth it (though it is just ten bucks).
The Memory frequency is 266MHz because DDR means Double Data Rate. Multiply 266*2 and you get..? 532. You can ignore the bus speed for the most part. That's what most of your other devices run across.
CAS_latency
I've heard G.SKILL is a somewhat good brand. You should probably take a look at warranty they offer with your old stick, as well. If your original stick has lasted this long, it's possible it will last until you ditch that laptop, too. I personally prefer PQi for the lesser brand-names, and they offer a lifetime warranty, though probably slightly more expensive than the G.SKILL. All of PQi's RAM has done extremely well for me, too (I've had 8 sticks of DDR and 2x 15$ 4GB flash drives). Washii (talk) 02:53, 30 September 2008 (UTC)[reply]
Also, I just noticed: Crucial says your laptop supports dual-channel memory, which means it will be effectively faster by having matched pairs. Washii (talk) 02:56, 30 September 2008 (UTC)[reply]

wifi turns itself off

I am not sure of the terminology so please bear with me. I have a quite battered but newish to me Acer Aspire 3680 laptop, with Windows XP and FireFox. It used to be fine with wifi. Now whenever I reboot, it refuses to recognise any networks. This caused no end of grief and a long wikibreak. Fortunately a nice passing techie (no longer around) showed me a lengthy trick to turn it on again -- I say lengthy, in that I have to remember my way through half a dozen menus. (Start --> My Computer --> Right click --> Manage --> Services and Applications --> Services --> Wireless Zero Configuration --> Start the service.) Is there a way to make the wifi stay on? Thank you. BrainyBabe (talk) 20:36, 28 September 2008 (UTC)[reply]

Instead of selecting "Start the service" at the last step, try selecting "Properties," then in the list box marked "Startup type" select "Automatic"—I assume it's currently set to "Manual." Then click okay. You may have to start the service one last time, but hopefully it will start automatically the next time you reboot. By the way, instead of Start --> My Computer --> Right click --> Manage --> Services and Applications --> Services, you can press Win+R, then type services.msc, then press Enter. -- BenRG (talk) 22:22, 28 September 2008 (UTC)[reply]
I use a set of batch scripts on my Desktop to turn off Wireless Zero Config, since it gripes at me when I use the hardware off switch for the radios.
To turn off, use the line 'net stop "wireless zero configuration"' (minus the single quotes)
To turn on, use the line 'net start "wireless zero configuration"'
(For anybody that cares, I set '@echo off' at the beginning of both scripts)
And sorry to whomever I just wiki-conflicted with! Washii (talk) 23:14, 29 September 2008 (UTC)[reply]

cookbook curve fit

I need something from a Numerical Methods book that I gave away twenty years ago! Given a set of points , what's a compact expression for the polynomial (of minimal degree) that fits exactly? —Tamfang (talk) 20:36, 28 September 2008 (UTC)[reply]

? -- BenRG (talk) 21:23, 28 September 2008 (UTC)[reply]
That's the one, thanks. —Tamfang (talk) 21:49, 28 September 2008 (UTC)[reply]
Here's how to remember it so you'll never have to look it up again: by linearity the polynomial you want is the sum of times a polynomial that's 1 at and zero at the other points. To be zero at the other points it must have factors of for every , i.e. it must be a multiple of . To make that equal one at you divide by the result of plugging into it, that is, . -- BenRG (talk) 22:33, 28 September 2008 (UTC)[reply]

firefox/php/require statment

i've got a problem at the moment that i'm developing a web page and recently played around with the include/require statments loading up class documents, i decieded to go back to what i and before (not a backup just what i rememebred i had before)now all i get when i load the page is firefox saying

Redirect Loop Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked. The browser has stopped trying to retrieve the requested item. The site is redirecting the request in a way that will never complete. * Have you disabled or blocked cookies required by this site?


* NOTE: If accepting the site's cookies does not resolve the problem, it is probably a server configuration

issue and not your computer.

i cleared my cookies and cache with no effect, and hadnt done anythign with my cookies for ages

now when i comment out the require_once statment on my index page it works (untill it has problems with the class's no longer existing but thats a different problem)

a little about my code: index.php loads up session.php (my primary class document, session page handles all user log in/mangment stuff) which session then loads up other classes (database/process/error handling), all pages have require_once and it worked fine before i started tinkering with it

any suggestions to whats happening?--82.16.140.152 (talk) 20:42, 28 September 2008 (UTC)[reply]

Search your code for a header command that is redirecting the page. Wherever you find it, that is being called over and over. Why? It is not possible to say without seeing the code. -- kainaw 20:48, 28 September 2008 (UTC)[reply]
Somewhere you've got your client side stuff putting out HTTP headers in a way that has started a constant loop. Where? Can't say—you've got to find out by looking very closely at your code. Most likely one of your files is then for some reason calling another which calls the first one again. --98.217.8.46 (talk) 21:47, 28 September 2008 (UTC)[reply]
doesnt require_once handle that problem?--82.16.140.152 (talk) 22:38, 28 September 2008 (UTC)[reply]
guess not just fixed it--82.16.140.152 (talk) 22:39, 28 September 2008 (UTC)[reply]
Maybe maybe not. But relying on something like that for this purpose is very, very bad form. This is a serious problem in programming logic. --98.217.8.46 (talk) 22:43, 28 September 2008 (UTC)[reply]
Require_once will only include a script once, but it will not keep you from calling a function in that script many times. A very common mistake is the logic: "Redirect to a cookie setter page to set cookie FOO. Then, if cookie FOO is not set, redirect to the cookie setter page." If cookies are turned off, this will repeatedly redirect. I personally don't get why so many people do this. If you failed to set the cookie the first time, why try it again? -- kainaw 11:08, 29 September 2008 (UTC)[reply]

Hardware Java

Would be possible to build a hardware emulator of a Java VM? —Preceding unsigned comment added by 62.49.27.114 (talk) 23:16, 28 September 2008 (UTC)[reply]

Yes. The Java VM is a computer program. Any and every computer program can be implemented with just hardware - but it will usually be much (MUCH) larger than a standard computer. For example, I worked on Litton Industry radars that implemented a simple vector graphics display using hardware. It was, from memory, about 200 4 foot by 3 foot circuit boards packed full of components. An equivalent program would probably be a couple thousand lines of code and fit nicely on a floppy disk. -- kainaw 03:24, 29 September 2008 (UTC)[reply]
It's been done many times, from quite early on; see Java processor. --Sean 12:32, 29 September 2008 (UTC)[reply]
Kinda. Those implement only a subset of the bytecodes in hardware (logic, flow, arithmetic, fp, redir, sync) and a further subset in microcode (stack management, some support for gc), with a few of the most complex things written in software (ref:picoJava I datasheet, 1997). Quite a lot of what you'd formally call a "Java VM" (heap, gc, classloader, verifier) all has to be written in software. Kainaw is correct that someone could implement all that in gates, but it'd be bonkers to do so (and I'd pity anyone who had to implement a verifier in verilog). -- Finlay McWalter | Talk 12:55, 29 September 2008 (UTC)[reply]

September 29

Presentation Maps

I have an Excel spreadsheet full of names and addresses. About 70-75 of them. I'd like to print out large-ish copies of a map of the state of Vermont with "pins" on the map according to all the addresses so that I can find a central location for monthly meetings in the coming year. The reason I need presentation size is for a meeting that's coming up in October for the same people. I've found a number of places on the net that will import a spreadsheet and put markers on a map using Google Maps or Yahoo Maps but I don't know of a way to get a large file suitable for printing and posting on an easel or whatever. I don't see a way to do it with either map site. Does anyone have any idea where I can do this?

I don't want to just project this with a laptop and a projector since I'd like hard copies for people, like the president of the club, to be able to take home and maybe make notes on.

Thanks, Dismas|(talk) 01:45, 29 September 2008 (UTC)[reply]

You need a geocoding program that produces SVG images. I've written my own geocoding software for my own projects (so it isn't generalized to use anyone else's data). I'm sure that if I can write the program, someone else has produced a similar program that lets you put in a spreadsheet and get a map. -- kainaw 03:26, 29 September 2008 (UTC)[reply]

Creating a webcomic...need help with programming and CMS ideas

What should the site I present my content be like? I like how xkcd does it. Ruby on Rails seems to be very popular with comic admins and I think many of the more popular sites use it. I don't know how to program any web scripting languages like PHP and I don't have much experience with databases. I certainly don't want a series of static pages. --hello, i'm a member | talk to me! 04:10, 29 September 2008 (UTC)[reply]

Wordpress is always an option...its pretty easy to navigate and use for those new to the game...plus theres a shedload of themes out there that'll make it uniquely yours (with a few modifications)...you may need to learn some PHP tho'. Boomshanka (talk) 04:16, 29 September 2008 (UTC)[reply]
I don't want it to look like a blog, though. Really, I'm using this as a learning experience to get into some web programming. --hello, i'm a member | talk to me! 04:30, 29 September 2008 (UTC)[reply]
From what I can tell, xkcd uses static pages... If you like how they do it, then read up on HTML and CSS and find someone to host your web site. You can also use an editor like Dreamweaver or MS Expression. There are many companies that will host yours for free.
But when you wrote that you didn't want static pages, did you mean that you wanted to animate the comics? If that's the case, in addition to HTML and CSS, you'd need to use something like Adobe Flash Professional. There are other animation techniques, but that's what I'd recommend. Some people also use JavaScript to improve the feel of their sites with things like drop-down lists and roll-over images.
Tell me: what format are your images in? You asked for help, and if you'd like, I can assist...--465jn (talk) 06:03, 29 September 2008 (UTC)[reply]
A Wordpress site doesn't have to "look like a blog". Have you seen some of the webcomics that use Comicpress (a Wordpress theme)? —Tamfang (talk) 08:34, 29 September 2008 (UTC)[reply]
I wouldn't accuse PVP, for example, of looking like a blog. —Tamfang (talk) 05:52, 30 September 2008 (UTC)[reply]
I tried quite a lot of CMS software out there a while ago, the vast majority I thought were real bad, the only one I really liked was MODx, very modular, and good use of page cache. It's not for everyone, but if you are not afraid to learn something a little more complex than your average "install & post" web bundle, it's good. Equendil Talk 09:33, 29 September 2008 (UTC)[reply]
Take a look at Comicpress. It's the Wordpress theme that many other webcomics use (like Starslip Crisis, just to give you an example to look at). --98.217.8.46 (talk) 13:33, 29 September 2008 (UTC)[reply]
A very simple way of using php is to specify some kind of variable in the URL: www.example.com/showcomic.php?id=102
Then just have one page with all the layout and each comic saved in a numbered file, i.e. 102.jpg. Somewhere in the page would be a statement like this:

<img src="<?php echo ($_GET["id"]).'\.jpg'; ?>">

Please contact me via my talk page if you need more on this - I could build you an example page based on this. -=# Amos E Wolfe talk #=- 14:54, 29 September 2008 (UTC)[reply]
Note that if you just cobble together some very ad hoc code it is likely to have a variety of security problems. --98.217.8.46 (talk) 23:54, 29 September 2008 (UTC)[reply]
Duly noted. I normally add a small script which will only process the $GET value from the URL if it matches one of a set of values defined in an array. It's also not difficult to "sanitise" any potential user input (such as $GET from the URL) to remove anything except letters and/or numbers, using regular expressions. -=# Amos E Wolfe talk #=- 14:40, 30 September 2008 (UTC)[reply]

Hacked AIM Account

I've gone through all of AIM's steps on trying to "fix" the problem but it's not helping me.

It's like for whatever reason, I can no longer access my account nor change/reset my password like all of the account info/registration has been somehow changed.

Is there any other way at getting it back...legally? —Preceding unsigned comment added by L3tt3rz (talkcontribs) 10:08, 29 September 2008 (UTC)[reply]

Building A Computer: Processor Type

Should i go with an AMD processor or an Intel Processor. AMDs are really expensive but i've never used one. I like intel but their processors faster than 3 GHz are uber-expensive. I am sick of my crappy computer and want to build a new one, but i'm stuck on the processor choice. Can someone help? 31306D696E6E69636B6D (talk) 13:15, 29 September 2008 (UTC)[reply]

Try Tom's hardware (put it in google) they provide comparative tests of CPUs. There is no 'correct' answer and it will depend on applications/tasks as I understand it. Anyhoo Tom's hardware is a good place to start comparing CPUs. 194.221.133.226 (talk) 15:17, 29 September 2008 (UTC)[reply]

Any practical difference between Cat 5e and Cat 6?

Our IT guy wants to rewire our offices with Cat 6 Ethernet cable which will require considerable expense. We're already wired for Cat 5e and run Gigabit Ethernet over that without problems. Are there any real benefits to a Cat 6 network? —Preceding unsigned comment added by 70.167.58.6 (talk) 14:53, 29 September 2008 (UTC)[reply]

I can't think of any reason to rewire offices with cat 6 where cat 5e is already installed. It might be a good idea for connecting major servers or buildings together but honestly I think the bandwidth would just be wasted going to a bunch of individual pcs. Personally I wouldn't rewire with something that was only twice as good - I'd put in more cables. Otherwise you have the problems of lots of changes to things that are already working. I'd only consider rewiring where here was a requirement for and the cables could support three or four times as much traffic. Dmcq (talk) 15:30, 29 September 2008 (UTC)[reply]

Mac conversion MOV to GIF

Resolved
 – Time passed.

Hello. Can you tell me how to convert a Quicktime movie (.mov) to an animated movie that is usable on Wikipedia (.gif)? I tried the menu items in GraphicConverter, searched Wikipedia a while, and found nothing so far at versiontracker.com. Thank you. -SusanLesch (talk) 15:41, 29 September 2008 (UTC)[reply]

Thanks. Just to save precious time here, for now I no longer need to post the movie. Maybe Quicktime Pro or a GraphicConverter upgrade will do this, or maybe I missed the obvious. If there is follow up please copy my talk page as I may not be able to return to the Reference desk anytime soon. -SusanLesch (talk) 17:23, 29 September 2008 (UTC)[reply]
Just a note that Quicktime Pro does not have this ability. --98.217.8.46 (talk) 23:48, 29 September 2008 (UTC)[reply]

Phone infrastructure?

When you set up a corporate phone network, and you set up an option on somebody's voice mail to press "zero" to go to another person in the same branch, is that flowchart called phone infrastructure or what's the term? A term to mean the map and layout of who gets redirected to whom for optimal service standards and covering for other people if the caller needs immediate assistance to redirect a live person when they reach a voice mail.--Sonjaaa (talk) 18:07, 29 September 2008 (UTC)[reply]

A bunch of extensions that all ring in response to a given stimulus (generally a given external line ringing) is called a "ring group". Voicemail, and the "press 0" thing are examples of what phone people call an "attendant" (voicemail is an example of "automated attendant", which also includes VP systems). So probably what you're doing is proposing setting the "missed-call attendant" (or "optional missed-call attendant") to a given ring group. Modern phone exchanges generally have hideously complicated "maps", which allow you to set up any number of complicated things like this. -- Finlay McWalter | Talk 18:13, 29 September 2008 (UTC)[reply]

I was wondering if it was possible to link to local files (on my computer), with the metalink standard. SF007 (talk) 22:29, 29 September 2008 (UTC)[reply]

The latest spec says:

<url> has values of "ftp", "ftps", "http", "https", "rsync", "bittorrent", "magnet", "ed2k" for the type attribute.

so apparently not. --Sean 23:09, 29 September 2008 (UTC)[reply]

September 30

Help understanding SSH command

ssh -D 8080 -C -q username@domain.com

I'm using the above command to access my home network via my web browser while I'm away at university. There are many other people on this local network -- what's to stop them from connecting to {my.local.ip.address}:8080 and thus having access to my personal home network? I trust that when used as just a secure shell SSH is completely safe, but since I have explicitly asked it to do this, doesn't that negate its in-built security? Apologies if this question seems a bit redundant to the more experienced computer users out there, but I want to make sure, just in case.

Thanks. —Preceding unsigned comment added by 131.111.243.37 (talk) 02:25, 30 September 2008 (UTC)[reply]

Just because you are using a different port does not make it less secure. The security is in the encrypted traffic between the two computers and the password you use when you login. So, I may be able to try and SSH into your computer on port 8080, but without knowing your password, there is nothing I can do. You aren't using "password" as your password, are you? -- kainaw 02:54, 30 September 2008 (UTC)[reply]
The -D option makes the SSH client listen as a SOCKS proxy on that port on the client computer and forward connections through the SSH directly to the other side. So the OP has a legitimate concern that if his computer is now listening on that port to allow his applications to use it, other people might be able to use it too. --Spoon! (talk) 04:41, 30 September 2008 (UTC)[reply]
The answer is that, by default, the SSH client only listens for port forwarding connections on the localhost, and so only programs from your own computer can use it. There is a setting in ssh_config called "GatewayPorts" (see the ssh_config(5) man page) which if enabled allows remote hosts to connect to forwarded ports too; but this option is disabled by default. --Spoon! (talk) 04:41, 30 September 2008 (UTC)[reply]
Thank you; that's exactly what I was concerned about, and it's good to know I have nothing to worry about. —Preceding unsigned comment added by 131.111.243.37 (talk) 09:53, 30 September 2008 (UTC)[reply]

Run a command at startup

Hello, I am running PCLinuxOS inside Virtual Box and I want to automatically mount the shared folder at startup because I don't want to run the command mount -t vboxsf vmshared /mnt/share everytime I start the VM.

I also have Ubuntu in VBox. In Ubuntu all I did was created this script in my home partition and added the line /home/abhishek/mount.sh to the end of the file /etc/rc.local and it worked. But this is not working in PCLinuxOS. Is there something I'm doing wrong or any other alternative method to do this? Thanks -Abhishek Talk |Contribs 10:42, 30 September 2008 (UTC)[reply]

Oh and I also made the script executable with chmod a+x -Abhishek Talk |Contribs 10:42, 30 September 2008 (UTC)[reply]
The normal way of mounting a given filesystem on system startup is to add the appropriate entry to /etc/fstab (see man -S 5 fstab). This is not recommended for network filesystems (as the network being down or the remote filesystem's provider being off makes your bootup hang) - but if in this case the thing you're mounting is really on the same physical computer (presumably its an fs on the hosting OS) then this is generally safe enough. -- Finlay McWalter | Talk 15:29, 30 September 2008 (UTC)[reply]

Error message

Request: GET http://en.wikipedia.org/wiki/WLOW, from 198.85.212.10 via sq35.wikimedia.org (squid/2.6.STABLE21) to () Error: ERR_CANNOT_FORWARD, errno (11) Resource temporarily unavailable at Tue, 30 Sep 2008 14:11:26 GMTVchimpanzee · talk · contributions · 14:33, 30 September 2008 (UTC)[reply]

Whatever caused this, try it again. Wikipedia often hiccoughs but usually does something right next time. If this isn't the case, please expalin what you were trying to do. -- SGBailey (talk) 15:05, 30 September 2008 (UTC)[reply]