Adsense

p[lacehoder
placehoolder
Showing posts with label to. Show all posts
Showing posts with label to. Show all posts

Monday, July 4, 2011

How to Get Free Adobe Programs

if you guys don't know, there is a way to get free adobe programs such as adobe flash builder.  if you are unemployed, a student, or an educator, then you qualify for free programs.  just visit https://freeriatools.adobe.com/ and choose the program you want.  if you qualify, they will send you a product key for the respective program via email.  you can download the programs from the official adobe site and use the product key you received to register it.  i hope this helps you guys.

Sunday, February 13, 2011

C++ How to Program (7th Edition) (Deitel)

C++ How to Program (7th Edition) [Paperback
Paul Deitel (Author), Harvey M. Deitel (Author)



I WORKED HARD TO UPLOAD THIS, PLEASE SAY THANKS AND ENJOY! I'LL BE UPLOADING MORE EBOOKS SOON!

Download Link
http://www.fileserve.com/file/r6HRcgB
http://www.fileserve.com/file/aUexfSd
http://www.fileserve.com/file/fk5tUyU

Monday, January 24, 2011

C++ How to Program (7th Edition) (Deitel)

C++ How to Program (7th Edition)
Paul Deitel (Author), Harvey M. Deitel (Author) 



I WORKED HARD TO UPLOAD THIS, PLEASE SAY THANKS AND ENJOY! I'LL BE UPLOADING MORE EBOOKS SOON!

Download Link:
http://www.fileserve.com/file/r6HRcgB
http://www.fileserve.com/file/aUexfSd
http://www.fileserve.com/file/fk5tUyU

Monday, January 10, 2011

Make Easy Extra Money

sup guys, i'm going to show u this trick to make $3 in 10mins with cash crate. some of u might already know it, but for those who don't this will be useful. the trick is quizzes.

What is CashCrate?
if u don't already know, cashcrate is probably the most popular gpt site out there. they give u money for doing offers and now they have a point system where u can earn money and points at the same time. and u also play games to earn points. u can redeem prizes with points. the amount of money u make on this site depends on how active u are on it. i myself am not really active on it, some days i log in and do one offer. other days i forget to log in. but i still make some good cash with it.

HOW MY TRICK WORKS:



1) create a cashcrate account, they give u a dollar for joining.i would tremendously appreciate it if u use my ref link.:

my referral link here:
http://www.cashcrate.com/2221421

non-ref link: http://www.cashcrate.com



2) download roboform, it's a free program which fills in info for you so u don't have to manually do it.


3) set up roboform, using information that will be used to fill out these offers.


4) get the greasemonkey addon:https://addons.mozilla.org/en-US/firefox/addon/748/
install this script for greasemonkey, it autoskips surveys for you: http://userscripts.org/scripts/show/57587
enable greasemonkey and that script.


5) go back to cashcrate, "click offers", choose "100% free" and "payout". now scroll those for the offers worth $.50. these are are usually quizzes. for example u might find one that say "which finally fantasy xii" are you. THE REASON WE ARE DOING THIS WITH QUIZZES IS THAT QUIZZES ARE FAST AND THE SCRIPT WORKS AMAZINGLY WITH QUIZES. U CAN FILL OUT A $.50 QUIZ IN 15-20 SECS.


6)once at the quiz page, on roboform, right click and choose "fill forms" then choose "fill and submit". this way roboform will fill and auto click submit info for u so u don't even have to move your mouse. then if the quiz jumps or ads, surveys, or stupid offers, the greasmonkey script will automatically press "pass" or "skip" so u. SO THE WHOLE TIME, YOU'LL JUST SIT AT YOUR COMPUTER WITHOUT REALLY LIFTING A FINGER!!!
it should be fast and once u get your quiz result. click submit.


7)once you are done, use ccleaner to clear ur cache and cookies or u can do it yourself but that takes longer. with ccleaner u can just leave it on and press on button. THE REASON for this is because most of quizes are from quizjungle or quiznexus and what happens is when u fill out too many offers from the same place, they don't count. so clearing cookies and cache basically allows for a fresh start. do this after u complete each quiz.

SIDENOTES:



* quizes usually 3-4 days to process. sometimes a week. but when that money comes, BAM!










here's my earning so far. i just made a new account on the fifth. like i said i don' go on it often but i beasted on the 6th though lmao. you can see the pending money for those quizzes. honestly, if ur not lazy like me, u can make money fast by just leaving the comp on since the script+roboform does the work for u.



Uploaded with ImageShack.us

IF YOU LIKED THIS THREAD AND FOUND IT USEFUL, PRESS THE THANKS BUTTON. I WOULD BE REALLY HAPPY IF U SIGNED UP USING MY REFERRAL LINK: http://www.cashcrate.com/2221421
THANKS ALOTS AND GOOD LUCK GETTING THAT CHEDDAR!

pm me if you need any help

The Most Common Mistake in C++ Programming

                After programming c++ for several years, i still make common mistakes that costs alot of time and stress.  Nevertheless, due to my experience, it is easy for me to figure out what this problem is most of the time.   For others who are just beginning c++, they can not afford of luxury of experience, thus they struggle for hours or days to try to find out the error.   Based on my days as a new programmer and on the experiences of several other beginner programmers, the most common but most catastrophic error is not having a return value for non-void functions.

                Most often, people will write functions that have a return value or int or string but in their code body, they do not return anything or sometimes just type “return”:

i.e
int me()
{…….
Return;
}
                This is fatal because even if you do not specify a return value, c++ will automatically and randomly return something of the specified return type.   Now, many people do this and with returns types like ints or floats, errors rarely occur, however, if you specify a function that returns a string and you do not return anything, you will get a lot of undefined errors or most of the time, you will get a seg fault.
http://en.wikipedia.org/wiki/Segmentation_fault
The reason is that a string is basically a array of character, one points to the next, and they take up a chunk of space of main memory.  Now, since you did not specify what string to return, the compiler will automatically return a string of arbitrary size and from and arbitrary location, now due to this randomized event, the compiler might choose a part in memory that is currently being allocated to another program, or event worse, a vital system service.  Thus, the OS intervenes, stops your program, and you get a seg fault.

                So the main theme here is to always return something, have a return value.  If you want your int function to return nothing, then type:
return 0;
if you want your string function to return nothing, then type :
return  “”;

this returns an empty string.   IF YOUR FUNCTIONS HAS A RETURN TYPE, THEN GIVE IT A RETURN VALUE, OTHERWISE  JUST WRITE A VOID FUNCTION!!
Returning values is a habit that you must get into, especially If you are writing large programs and want to minimize headaches.

How to Speed Up Your Computer

   I'm going to show you how to speed up your computer shutdown time signficantly.  This is for Windows Xp but should also work for Windows 7. First, open the registry editor.  To do this on windows XP, click start, run, then type in "regedit" in the box and click ok.  for Windows 7, click start -> search ->and type in "regedit". 
Disclaimer: only edit what i tell you to edit, do not edit anything else unless you what you are doing. Editing the wrong items will mess up your computer!


   First, we are going to edit the amount it that windows xp waits before kill open applications when the press the "shutdown" button.  to do this, go to "HKEY_CURRENT_USERControl PanelDesktop".  then double click "‘WaitToKillAppTimeout" and change the to 1000.  double click "HungAppTimeout" and change that value to 1000.

    Next, we are going to make it so Windows auto kills active applications.  this is very helpful, for example, when you press alt+ctrl+dlt to use the task manager to kill a non-responsive program, you will be prompted to confirm the killing off that app, by doing this, once you click "end process" that process will be killed immediately.  moreover, sometimes when you shut down your computer and walk away thinking that it has been shut down and come back 30 mins later to find that the computer is still on and you see a promt to"kill active applications", this is very annoying.  by enabling auto kill tasks, windows will automatically kill such apps.
to do this, double click "AutoEndTasks" and change the value to 1.

    The next step is to do this for every account on the computer, what we just did above was for your current account, we want to make it so that every account on the computer will shut down fast.  to do this, navigate to"HKEY_USERS.DEFAULTControl PanelDesktop" and change "‘WaitToKillAppTimeout" and "HungAppTimeout" to 1000 and "AutoEndTasks" to 1.  this should enable this tweak for every account.
   Finally, go to "HKEY_LOCAL_MACHINESystemCurrentControlSetControl" and double click "WaitToKillServiceTimeout" and change the value to 1000. 

Restart your computer and next time you shutdown, it should be much faster.
check out this video if you want  to see how to do it:

Related Posts Plugin for WordPress, Blogger...