Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
Member Avatar for stupendousomega

I'm running Arch Linux with the LXDE DE, if it matters. I want to be able to plug in my HP Deskjet F4480 All-in-One and be able to scan. I tried following instructions on forums by googleing, but came to no sucessful conclusion. I uninstalled all software I installed and …

Member Avatar for Gribouillis
0
477
Member Avatar for stupendousomega

#include <stdio.h> typedef struct { int stat1, stat2, stat3; } X_type; void createPlayer(char *X) { X_type X; } int main() { createPlayer("Foo"); createPlayer("Bar"); return 0; } I would like to create a structure ojject based on a string passed to a function. So the above code would create 2 X_type …

Member Avatar for Ancient Dragon
0
162
Member Avatar for stupendousomega

I understand that variables are global unless otherwise stated local, but for some reason, (and it's probably my own stupidity) it's not working. I have searched around to no avail. #!/bin/bash function a { echo $1 } echo $1 a Say you pass the word car to it. It should …

Member Avatar for Watael
0
139
Member Avatar for stupendousomega

Without the name, it runs fine. I read up that adding const before new could solve my problem, but it doesn't. Any ideas? include <iostream> include <string.h> using namespace std; class Player { int Health, *Strength, *Speed, *Accuracy, *Defense; char *Name[80]; public: Player (char, int, int, int, int, int); ~Player …

Member Avatar for raptr_dflo
0
160
Member Avatar for Tornado Afterma

Hey what kind of programming language does the original playstation use? And where can I download it and some good tutorials? I just have one lying around and thought that it would be cool to make some games just 4 fun.

Member Avatar for Dr. Cooldude
0
147
Member Avatar for virgosiete

Hello everyone! My computer is like a ghost.. It's scary.. I created a password for my account(administrator)but then suddenly I removed it because I don't wanna type any password in order to start up my pc. So I restarted it and it's 100% not asking for password. [B]Here's the problem, …

Member Avatar for virgosiete
0
122
Member Avatar for stupendousomega

I need a way to concurrently create variables with a loop. Like... Instead of int my_var_1 = 1; int my_var_2 = 1; int my_var_3 = 1; Because the user may need thousands of variables, and I don't want there to be a limit. So I was wondering if there was …

Member Avatar for dionisov
0
6K
Member Avatar for stupendousomega

I bought an Nvidia 6200. It came with drivers on a disk, but I have win7, and it only supported Vista and XP, so I went on the site, and downloaded new ones that work on win7, but they won't install unless the card is in. I install the card, …

Member Avatar for flagstar
0
230
Member Avatar for stupendousomega

Alright, so... I'm using Gnome 3, and when I click logout in the top-right corner, it takes FOREVER to log out... If it logs out at all. I don't know what takes it so long, but it's ridiculous. What I want to do is find the script it runs and …

Member Avatar for stupendousomega
0
390
Member Avatar for stupendousomega

I'm having trouble booting up from my HDD. It's a SATA HDD plugged right into the motherboard... I have played with the BIOS setting for a while now, but can't seem to get it to boot up. Can anyone who has this motherboard help me out? I've gotten to the …

Member Avatar for stupendousomega
0
220
Member Avatar for stupendousomega

How would I add a quick reply box to the bottom of a forum-style website? I know I'm going to need some sort of JavaScript or PHP script or something... I really don't know where to start.

Member Avatar for matricol
0
102
Member Avatar for stupendousomega

I have a computer that seemingly has a blown power supply. When I connect power to it, the internal fan of the it doesn't even turn. No power at all... But the little light on the front of the computer comes on. That's it. Just that light. No fans. Nothing …

Member Avatar for BBAD
0
396
Member Avatar for stupendousomega

I'm running Arch Linux on my computer and I found a Toshiba External SuperMulti Drive. Model: PA37610-1DV2 I plug it in and it doesn't work. Doesn't even detect it. The reason I'm using it is it's faster than my internal drive and my internal drive doesn't burn dual-layer. So... Any …

Member Avatar for stupendousomega
0
463
Member Avatar for stupendousomega

The title really spells it out. I have LXDE on an Arch system. I want to remove it but keep openbox. Do I have to do a complete re-build, or can I remove just LXDE?

0
133
Member Avatar for stupendousomega

I have a user input an integer... But if it's really long, it throws an exception and starts looping infinitely. How would I make it cut the number after the first 7 digits and only use that? Like, if I inputted 654897654321648435435135813513843513543514, it would only accept 6548976. Please help.

Member Avatar for mrnutty
0
210