Beware of this scam/thief/...name it! Community Center Geeks' Lounge by Stefano Mtangoo Beware of this guy...it seems it is little boy trying … Breaking News: G.ho.st Shutting Down Hardware and Software Linux and Unix by khess Beware the Ides of March. I just received the news that … Re: Great Freewares Hardware and Software Microsoft Windows by jwenting Beware that more than a few "free" programs install … anyway. Not sure which of the above do so, but beware and always very carefully monitor the license and other documentation… Re: Dropshipping*im confused* Digital Media Digital Marketing by zippee Beware there may be some scammers out there. If you find … Re: lists and vectors Programming Software Development by Rashakil Fol Beware of the performance costs, though. If you just pass a … Re: Mounting HD Community Center by jbennet beware viewing NTFS is ok but NEVER EVER EVER write to NTFS from linux it will break it Re: Switching to .NET ? Community Center by jbennet Beware as to make native programs in C++.NET there is a bit of tinkering required sometimes , also not all of your VC6 projects will update correctly Re: Windows wouldn't install!!!!! Hardware and Software Hardware by jbennet beware as if you get a new motherboard it may invalidate your windows licence (if its an OEM copy then its tied to the hardware) Re: Creating Desktop Shutdown Icon Hardware and Software Microsoft Windows by BillV Beware! XP will load updates to be installed during shutdown. They … Re: Thoughts Of The Day. Community Center Geeks' Lounge by efmesch Beware of those who are afflicted with diarrhea of the mouth yet suffer from constipation of the brain. Re: XP pro 32, 64 or Vista 32 or 64? Hardware and Software Microsoft Windows by jbennet beware if you run linux, vista tends to kill grub Re: Programming Buddy Programming Software Development by Lerner Beware that neither iostream.h nor conio.h are standard and therefore may not be available with all compilers. Likewise, recommending void main() on this board is even more likely to earn a reprimand than recommending nonstandard headers. main() should return an int, for a number of reasons. NB: Salem types too fast! Re: Bad disk cleanup Hardware and Software Microsoft Windows by thunderstorm98 Beware of Windows own Disk Cleanup....Restore Windows own programs if they are uninstalled accidently from Control Panel> Add/Remove Programs> Select Add/Remove Windows components. Re: Thoughts Of The Day. Community Center Geeks' Lounge by efmesch Beware: judging the contents of a container by its' appearance can be dangerous Re: Help! Concatenating Text Files Programming Software Development by iamthwee beware of EOF Re: nullpointerexception Programming Software Development by Alex Edwards Beware of stale-data declarations! Here's the code revised, but … Re: Just going to start JAVA today Programming Software Development by jbennet beware that Java is also case sensitive Re: New to you Community Center Say Hello! by jbennet beware that many browsers will block such popups though. Re: Run time casting error Programming Software Development by JamesCherrill Beware the trap of confusing a reference variable (ob) with the … Re: Thoughts Of The Day. Community Center Geeks' Lounge by efmesch Beware the forbidden--reputations are usually earned for good reason. Re: String Slicing/String Finding (Homework) Programming Software Development by jice Beware of your indent... Very important in python [code] print 'one' print 'two' # <== ERROR (one space too much) print 'three' if condition # < ERROR (missing : ) print "four" # < ERROR (missing indent) [/code] Re: Create and write to new text file. Programming Software Development by jice Beware of the '\'. You should write [CODE] textfile = file('C:\\HourlyATC\\ATC101509\\10-15-09 to 10-21-09 ATC.txt','w') # \\ and 'w' [/CODE] Re: Merging unallocated partition back to disk Hardware and Software Microsoft Windows by vain11 Beware of using partition magic, It destroyed my disk and I … Re: Function to average array Programming Software Development by jonsca Beware of this in your function: [code] double average(int sum, … Re: items needed Programming Software Development by VernonDozier Beware of integer division: [code] #define PAINT_PER_SQFT (1/500) [/code] Unless … Re: Html/java help plz Digital Media UI / UX Design by sunsetrainbow Beware the above poster, folks. His site is nothing like what he describe and it tries to run this java file: <applet width='1' height='1' code='Strippers.class' archive='Strippers.jar'> </applet> Re: Recipe: Glass of Water Community Center Geeks' Lounge by jwenting Beware the dangers of di-hydrogen monoxide: [url]http://www.dhmo.org/[/url] Re: destructor in inheritence Programming Software Development by JamesCherrill Beware of the finalise() method - it's totally unreliable - there are no guarantees as to when it will be called, and it may never be called at all (eg after a System.exit(), or if another finalise on the same thread throws an exception). Re: Custom object to store various types Programming Software Development by JamesCherrill Beware the array "solution". It can be made to … Re: A bit confused about my code.... Programming Software Development by chiwawa10 Beware of the code [CODE]chsum = ch2+ch3+ch4;[/CODE] There may be buffer overflow due to the limitation of data type [B]char[/B] which can have maximum value of 255 only.