Computing desk | ||
---|---|---|
< March 22 | << Feb | March | Apr >> | March 24 > |
Welcome to the Wikipedia Computing Reference Desk Archives |
---|
The page you are currently viewing is an archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages. |
Hi. I'm sure this is a really basic question to many people who watch this forum but-- A friend wanted me to check out their blog on Myspace. So, I look at it and the main page and the blog come up OK. But when I clicked on the "viewmorepics" link, it keeps redirecting me to Myspace's main page.
Do I have to join MySpace and log in just to see the pictures, even though AFAIK they are "public"? Or is there an issue with cookies or scripting or something I might have disabled in my browser which could be interfering? Squidfryerchef 01:36, 23 March 2007 (UTC)
I purchased an inkjet refill kit. For the first time, I successfully refilled my HP 27 Black Ink Cartridge. After all the ink was consumed, I tried to refill the same cartridge for a second time. I cleaned my cartridge 5 times. The printing quality was poor. It barely printed anything. Does anybody know how to successfully refill an HP 27 Black Ink Cartridge for a second time? Thanks very much. 208.72.125.112 02:28, 23 March 2007 (UTC)
By the way, the ink cartridge is remanufactured to begin with. 208.72.125.78 03:55, 23 March 2007 (UTC)
Hey guys, I'm trying to use VBA to get some data out of a FITS file and into an excel spreadsheet, but its been a loooong time since i've used VB, i've got the filename and opened it for input, but I cant work out how to actually get the data out into an array. Help? :) Capuchin 13:09, 23 March 2007 (UTC)
I have downloaded Windows Media player from the Microsoft website, but everytime i try to use it, my computer asks me to Validate the software. When i do, it says i have a counterfiet copy. How can this be, if i got it staight from the microsoft website, and is there anything i can do. Is there another way to download it> —The preceding unsigned comment was added by 75.54.61.158 (talk) 13:30, 23 March 2007 (UTC).
Is it possible to download videos from sites such as Youtube and put them into iTunes and in turn an iPod? Is it even legal to do so? Ipmin 13:46, 23 March 2007 (UTC)
vixy.net never seems to work for me. how is it that you guys get it to work?
I have just been electronically chastised by my sister because I sent her a very funny attachment showing various video recordings of church ceremony mishaps. She took umbrage that I had caused her mailbox to overload and said in future I should not send her large attachments because each time they get forwarded, the size of any attachment doubles say from 3Mb to 6Mb. I have been using e-mail both professionally at work and privately at home for over 10 years and no-one else has ever pointed that out to me. So my question is, quite simply, is she correct? And if so, has anyone any suggestions as to how I can still send the e-mail and it's attachment without it having that effect? Thanks in anticipation. CasualWikiUser 13:58, 23 March 2007 (UTC)
When person A sends mail containing a photo or video attachment to person B, and when person B forwards it to person C, and depending on the vagaries of the mail software used by A and B, I have definitely seen two distinct copies of the (encoded) attachment occasionally present in the copy received by person C (i.e., me). But I don't know if this process could geometrically increase in a 4,8,16,... pattern. —Steve Summit (talk) 13:41, 24 March 2007 (UTC)
I went to a friend's house and he has an original Xbox. We played Halo 2 multiplayer, and I remarked that it would be a lot of fun if you could hook more than 4 controllers to the console. He said that you can "network" up to four Xboxes and play with 16 people without using the Internet. Is it possible to do this with the PS3? If so, if they are all the 60GB ones, can you use the wireless capabilities?J.delanoy 15:16, 23 March 2007 (UTC)
Do the old PS2 controllers work on the PS3? Thanks, Asics talk Editor review! 17:35, 23 March 2007 (UTC)
"The PlayStation 3 does not include interfaces for legacy PlayStation peripherals, though IGN.com tested a legacy controller using a PS2-to-USB adapter, finding that it is compatible, though most other devices (such as the Guitar Hero controller) may not be compatible. Nyko Technologies have started production on the "Play Adaptor", a PS3-to-USB adapter allowing for guitars and other PlayStation 2 peripherals to be used on the PlayStation 3 and is scheduled for release in Q2/2007. The PS3 supports both the USB EyeToy camera/webcam and SOCOM Headset for video and voice chat. A memory card adapter is available so users can save their PS/PS2 data to a virtual memory card on the hard drive. The PlayStation 3 can also use Memory Sticks to store save data for PlayStation and PlayStation 2 software."
--Lumina83 20:36, 23 March 2007 (UTC)
When I'm running Voyage Century Online, I often have trouble maintaining connection to the server when I'm on my home wireless connection. I never lose connection to the internet, I am merely booted from the game server, and the problem is only on my home wireless connection; other wireless networks and broadband give me no problem. This mainly happens if I stop playing for a few minutes to browse the internet or grab something to eat, and I leave the game running. If I maintain activity, however, I rarely have a problem. Could there be some sort of feature, either for Vista, my for my wireless card, for my router, or for my modem, that blocks connection when there is a lack of activity? If not, what could be causing this problem? —Akrabbimtalk 19:50, 23 March 2007 (UTC)
What is the exact brand of the fastest wireless router? What is the fastest internet service in the US? 68.193.147.179 20:59, 23 March 2007 (UTC)
well i dont know about the fastest, but one that is cheap and fast is bellsouth, and the best brand of wireless router would have to be linksys.
I FINALLY got keyboard input in an applet in Java to work. I came across a program in my comuter science book that utilizes the ActionEvent abstract method, so I tweaked and came up with a KeyEvent and that worked. I made the program where there are buttons and you have to click the button that says left to go left and the nhold the spacebar. Yes, I know it's wierd. The only thing is is that I can't get it to get rid of the old character once you have had it move, so it's more liek an etch-a-sketch than anything. THe code is kind of long, so sorry
/** * Move * * Schyler ***** * * March 23, 2007 * *(C) Schyler *****, 2007 */ import java.awt.*; import java.awt.event.*; import java.applet.*; import javax.swing.*; public class Move extends JApplet { private int APPLET_WIDTH = 1000, APPLET_HEIGHT = 600; private JButton left; private JButton right; private JButton up; private JButton down; public int x = 500, y = 300; public String a = "O"; public void init() { left = new JButton ("left"); left.addKeyListener(new leftListener()); right = new JButton ("right"); right.addKeyListener(new rightListener()); up = new JButton ("up"); up.addKeyListener(new upListener()); down = new JButton ("down"); down.addKeyListener(new downListener()); Container cp = getContentPane(); cp.setBackground(Color.cyan); cp.setLayout (new FlowLayout()); cp.add (left); cp.add (right); cp.add (up); cp.add (down); setSize (APPLET_WIDTH, APPLET_HEIGHT); } public class leftListener implements KeyListener { public void keyPressed (KeyEvent event) { x -= 10; repaint(); } public void keyReleased (KeyEvent event) { } public void keyTyped (KeyEvent event) { } } public class rightListener implements KeyListener { public void keyPressed (KeyEvent event) { x += 10; repaint(); } public void keyReleased (KeyEvent event) { } public void keyTyped (KeyEvent event) { } } public class upListener implements KeyListener { public void keyPressed (KeyEvent event) { y -= 10; repaint(); } public void keyReleased (KeyEvent event) { } public void keyTyped (KeyEvent event) { } } public class downListener implements KeyListener { public void keyPressed (KeyEvent event) { y += 10; repaint(); } public void keyReleased (KeyEvent event) { } public void keyTyped (KeyEvent event) { } } public void paint(Graphics p) { p.drawString(a, x, y); repaint(); } }
I figured that the line that says repaint(); would make it redraw the string at he new x and/or y coordinates, but it doesn't. It draws the the new O but leaves the old one. If anyone has an enviroment they plug this into, they can see whta I'm tlakign about and see if they can help me fix it. Also, when I first ru nthe program the 4 buttons at he top don't appear until I roll over them with the mouse. Thnak you for any help. Thanks, schyler 22:00, 23 March 2007 (UTC)
public void update(Graphics g) { paint(g); }
Okay. So wher do I put this method? Do i replace the
public void paint(Graphics p) { p.drawString(a, x, y); repaint(); }
totally with the method you said? Or is it a totally seperate method to be put undrneath the paint method? Thanks schyler 18:42, 24 March 2007 (UTC)
import java.awt.*; class DrawingArea extends Canvas { private int x, y, distance; private String a; public DrawingArea() { super(); this.x = 150; this.y = 150; this.a = new String("0"); this.distance = 10; this.setSize(300, 300); } public void moveLeft() { x -= distance; repaint(); } public void moveRight() { x += distance; repaint(); } public void moveUp() { y -= distance; repaint(); } public void moveDown() { y += distance; repaint(); } public void paint(Graphics p) { p.drawString(a, x, y); } }
public class Move extends JApplet { ... private DrawingArea drawingArea; public void init() { ... drawingArea = new DrawingArea(); cp.add(drawingArea); ... } public class leftListener implements KeyListener { public void keyPressed (KeyEvent event) { drawingArea.moveLeft(); } } ... }
public class Move extends JApplet implements KeyListener { private int APPLET_WIDTH = 1000, APPLET_HEIGHT = 600; private DrawingArea drawingArea; public void init() { drawingArea = new DrawingArea(); drawingArea.addKeyListener(this); Container cp = getContentPane(); cp.setBackground(Color.cyan); cp.setLayout (new FlowLayout()); cp.add(drawingArea); setSize (APPLET_WIDTH, APPLET_HEIGHT); setFocusable(true); } public void keyPressed (KeyEvent e) { switch (e.getKeyCode()) { case KeyEvent.VK_UP: drawingArea.moveUp(); break; case KeyEvent.VK_DOWN: drawingArea.moveDown(); break; case KeyEvent.VK_LEFT: drawingArea.moveLeft(); break; case KeyEvent.VK_RIGHT: drawingArea.moveRight(); break; } } public void keyReleased(KeyEvent e) {} public void keyTyped(KeyEvent e) {} }
implements
keyword. This means the actual applet will be implementing key presses. The only component that is listening to the key presses is the DrawingArea. There are no changes required to that code though. The main applet takes care of the key presses and calls the relevant method on the DrawingArea object. For more info on those key codes, check out the Sun documentation on them. Johnnykimble 01:02, 25 March 2007 (UTC)Is there a way that I can force the connection between my wireless card and the wireless router to decrease in speed and thereby reduce the frequency with which the connection is lost? I don't need anything above 2 MBit/s since it's only used for the internet. --Seans Potato Business 23:58, 23 March 2007 (UTC)
@ 2007-03-24T03:24Z