Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
67% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts

62 Posted Topics

Member Avatar for elunow

update firmware to latest version google for it and make sure its the latest firmware version so make sure you get the firmware from the manufacturer website

Member Avatar for happygeek
2
2K
Member Avatar for notuserfriendly

I am starting a new project and i plan to use c# for it. Basically what it entails to is reconfiguring a large am mount of config files. 100+ of them. They are each named differently but are prefixed the same (ex: CONFIG_FILE_xxxxxx , where x changes). Inside the files …

Member Avatar for thines01
0
303
Member Avatar for notuserfriendly

Hello, first this is not a homework assignment so please respond whenever you have time as a speedy solution is not exactly needed. I have been learning C# recently from a microsoft book and had an idea of a program i want to make. Basically i want to be able …

Member Avatar for notuserfriendly
0
216
Member Avatar for notuserfriendly

hello i have this Hp Pavillion machine, its is somewhat new and when i was working on it one day, it froze, and when i try to turn it on it just beeps , a long beep for like 10 seconds, and another long after that and it goes like …

Member Avatar for Rik_
0
601
Member Avatar for hatux

You need to create a separate class "ClassSortsOnScore" or whatever you want to name it that implements comparable. After that its easy. [CODE=java] // here is an example class SortsOnScore implements Comparator <Match>{ public int compare(Match one, Match two){ if (one.getScore()>two.getScore(){return -1;} else if(one.getScore()==two.getScore()){return 0;} else return 1; } } …

Member Avatar for masijade
0
106
Member Avatar for javaking33
Member Avatar for jon.kiparsky
0
187
Member Avatar for kandyhyatt

Did you copy the code form a handout? If so you definitely copied it wrong. look at lines 45-58. Thats pseudo code. Thats what your prof wants you to implement. You have shown squat for effort.

Member Avatar for Eric Cute
0
124
Member Avatar for notuserfriendly

I am reading from a file. After i tokenize and assign each value to a string field i call the constructor and initialize the object. next i want to add them to an array. I have done this with a vector and all i do is [CODE=java]ObjectVec.add(obj1);[/CODE] Mind you this …

Member Avatar for masijade
0
175
Member Avatar for notuserfriendly

I am reading from a file and while i know how to work with those i am trying to read the line. get all the fields. then store them in a class with those fields. then store that object in a vector. Heres how i deal with reading the stuff …

Member Avatar for notuserfriendly
0
148
Member Avatar for notuserfriendly

Pretty much i can convert from infix to postfix really well and that is nto the problem i need help with the postfix evaluation also i dont think my evaluate method is correct i have two push methods, one for char and one for int. i really am stuck and …

Member Avatar for masijade
-1
2K
Member Avatar for notuserfriendly

the model is hp pavillion dv9700 i have never bought laptop screens online before and would like to know if anyone knows any good websites to buy from. already looked on ebay.

Member Avatar for eacamovic
0
114
Member Avatar for notuserfriendly

Bought a new same exact LCD monitor with same serial number from ebay, my old screen wokrs with he inverter board but its just cracked so i decided to buy a new one. the new screen does not work , the back-light of it. Like its really dark. I know …

0
109
Member Avatar for notuserfriendly

I am coding 2 dynamic arrays. basically ive done the first part which requires the user to enter rows and columns, i also implemented the functions to print and fill the created arrays. now the next task is to create a SINGLE dimensional array with enough size to fit the …

Member Avatar for notuserfriendly
0
382
Member Avatar for notuserfriendly

Was in the middle of installing Windows 7 on a pc. Power outage and 1 hours later when electricity came back everything looked fine. windows even finished installing and i typed i my username/password for new account and then switched to my other desktop because i had stuff to do. …

Member Avatar for finito
0
190
Member Avatar for notuserfriendly

Hello, i am programming a spreadsheet as my assignment. I have done it but the last step is to make it so uncalculated cells linked to other uncalculated cells need to be calculated. meaning if A1 hold the formula A1 = a2+a3 and if A3 in turn holds another formula …

Member Avatar for notuserfriendly
0
191
Member Avatar for notuserfriendly

Hello, i am currently writing an assembler for the theoretical SIC/xe machine and i decided to do it in python. Very new to python but i thought it would be fund to do it in and willing to learn. So far i know what to do and have the diea …

Member Avatar for woooee
0
508
Member Avatar for carpenoctem

You can just do stuff in home directory if you dont really care much about clutter. But i recommend making a directory called python_scripts. [CODE]mkdir python_scripts cd python_scripts gedit pythonscript1.py ## after coding your scripts save fie, close gedit, then: chmod a+x pythonscript1.py ./pythonscript1 ##<<< thats how you run it[/CODE]

Member Avatar for vegaseat
0
313
Member Avatar for notuserfriendly

Hello, I recently decided to build a new computer ofr general/low gaming purpose. i have an ASUS M4A785TD-V EVO motherboard After assembling everything correctly i press the ON button. for 1 second everything lights up, the fans spin. and then its gone nothing happens. i try to press the button …

Member Avatar for dmusket
0
235
Member Avatar for Grn Xtrm

u need to implement the stack then do precedence with switch cases ill give more info once i get home, but at least show some code that you wrote not the code from your resource material form CD

Member Avatar for cymercutie88
0
1K
Member Avatar for notuserfriendly

Hello i have ubuntu . I can rightclick on any folder and share it and i am able to view them from my windows xp machine and another linux machine at home. but when i try to share stuff from the a second HardDrive from the said ubuntu machine , …

0
115
Member Avatar for notuserfriendly

I need to read from a file and be able to split it into columns and ignore a line if it starts with ' . '. the text file is made of 3 columns but at some lines there are no words in the first column here is an example …

Member Avatar for 7stud
0
397
Member Avatar for beholdafrica

this guy probably stole said laptop and now is trying to find a way to open it up. First he says it was SENT by HIS brother then when asked to ask his brother he immediately says he doesn't know, . The first thing i would do when i got …

Member Avatar for jbennet
0
214
Member Avatar for notuserfriendly

basically i am trying to search for similar strings in an array which is hardcoded into the script and compare them to and find the line they exist on the text file here is my code so far [CODE=perl] #!/usr/bin/perl %fruit=(banana=>1,apple=>2,orange=>5); $target = %fruit; open(INPUT, "<fruits.txt"); while (<INPUT>) { if …

Member Avatar for d5e5
0
246
Member Avatar for r0n

you should use the scanner class imo. more compact [url]http://java.sun.com/j2se/1.5.0/docs/api/java/util/Scanner.html[/url]

Member Avatar for r0n
0
4K
Member Avatar for Pradeep.sibar
Member Avatar for Niteshay
Member Avatar for mapsonyllaer
0
155
Member Avatar for houndhen
Member Avatar for prokorn

Or do a free online scan. here [url]http://housecall.trendmicro.com/[/url] if theres a virus it should find it.

Member Avatar for caperjack
0
104
Member Avatar for prokorn

Do you have a winodws XP CD? Pop it in and i think theres an option around the end to reinstall microsoft services. that should do it. if not try system restore to an earlier version. also WHAT does not seem to work about it?

Member Avatar for cguan_77
0
43
Member Avatar for JeyC

go to this site. it may help [url]http://www.allenware.com/icsw/icswidx.htm[/url]

Member Avatar for cguan_77
0
111
Member Avatar for inphoenix

[QUOTE=Catweazle;65355][url="http://www.wellesley.edu/Computing/ResNet/P2P/limewire.html"]http://www.wellesley.edu/Computing/ResNet/P2P/limewire.html[/url] File sharing is bad, mmkayy? And bad file sharing software is REALLY bad![/QUOTE] you mean REALLY REALLY BAD? mmkay!

Member Avatar for jbennet
0
400
Member Avatar for clinton.havens

Do a system update. That mostly should fix it if your system is not updated already. also microsoft is trying to use them with generic drivers. try to find actual drivers for your mice.

Member Avatar for clinton.havens
0
93
Member Avatar for pg-1956

is it a laptop or desktop? if its laptop make sure you are disabling wireless. if desktop , do you have a router? if you do , get a static internal IP. if you don't have a router get one,

Member Avatar for notuserfriendly
0
87
Member Avatar for spidey
Member Avatar for peedi

[QUOTE=verruckt24;818925]@curtissumpter: what do you think you are doing giving people ready made code, this forum boasts an attitude opposite of that. Tell the OP the logic mentioning the way to go about, or at the most the psuedocode, but not written code in any manner. @peedi : Use a stack …

Member Avatar for rameshrajamani
0
5K
Member Avatar for HLA91

the latest version of ubuntu will work really fast with 256, just disable effects if you want to keep the current OS then: go to termianl and make this folder well just type this in without quotes "mkdir ~/.mozilla/plugins" now go to any site that requires flash and install

Member Avatar for Antman
0
204
Member Avatar for notuserfriendly

ok everything works good outside if i make .java of the classes with a main app but when i put them together my Postfix one has a problem. if you are confused just look at the main method thats where the probelm arises. the thing is after i convert infix …

Member Avatar for notuserfriendly
0
198
Member Avatar for lmkj

You sir might have been backdoored by a script kiddie and hes having fun. try runing and AV scan and post an HJT log.

Member Avatar for Suspishio
0
147
Member Avatar for milgo

well really the purpose of OOP is to make you learn easier. so what you do to start is lay down the steps that you can accomplish it without code but based in java. like are you going to enter a number form the keyboard ? if so assing lets …

Member Avatar for Ezzaral
-1
123
Member Avatar for Johannady2

oh man u still wan them converted? i wish there was a button called "kick poster who doesnt try to code himself"

Member Avatar for verruckt24
0
117
Member Avatar for mona515

well do you just want to transfer all the numbers? or just implement a search method that finds your number and them if it is found it places it into the other array? please be more clear.

Member Avatar for notuserfriendly
0
83
Member Avatar for haralick

please post your connection like router? you have static? are more than one computers in the house using your connection?

Member Avatar for Aaron.C
0
134
Member Avatar for notuserfriendly

[CODE] class OrdArray { private double[] a; // ref to array a private int nElems; // number of data items //---------------------------------------------------------- public OrdArray(int max) // constructor { a = new double[max]; // create array nElems = 0; } //---------------------------------------------------------- public int size() { return nElems; } //---------------------------------------------------------- public int find(double …

Member Avatar for notuserfriendly
0
131
Member Avatar for miracle416

hmm go on google search for hijackthis boards download hijack this post your log on their forum

Member Avatar for Frank Wallis
0
112
Member Avatar for hope6942

hmm well if you have spare parts try to swap them and see if something doesnt work but i know a very simple solution to test if everything works grabs yourself an Ubuntu Live cd and try to run it live if it runs ok it means the hardware is …

Member Avatar for Frank Wallis
0
177
Member Avatar for jaga87_biotech

if you have a modem like 56k card there remove it and try again if not just try to remove all pci cards which you may have installed after you got the computer reply with results

Member Avatar for caperjack
0
263
Member Avatar for Dontworry

try system resotre click on new task and type this c:\windows\system32\restore and go on from that restore to an earlier point

Member Avatar for Dontworry
0
139
Member Avatar for ingeborgdot@yah

i would recommend unplugging mouse and keyboard first then uninstalling all current keyboard and mouse drivers then reinstall drivers after you plugged in the keyboard and mouse make sure everything is connected and the box transmiting signal has its lights on

Member Avatar for Matt Tacular
0
94
Member Avatar for Kerik717
Member Avatar for kenjutsuka
0
153
Member Avatar for shrikantm4u

ok well if you are changing mother board you need to chane almost everything on your pc like CPU and PSU to support the new MB and its features so i thin you should give it another shot try opening the case and make sure all the cables are connected …

Member Avatar for strwrsteve
0
98

The End.