Adsense

p[lacehoder

Categories

placehoolder
Showing posts with label programming. Show all posts
Showing posts with label programming. Show all posts

Wednesday, August 1, 2012

New Iphone 5 Leaked Images

  I'm extremely excited for the iphone 5 to come out.  I've been waiting for this long await upgrade for a while.  what i hope it will have is a bigger screen, more ram, quad core, and better battery.   So of course with all this excitement everyone's including myself have been having, there has been alot of rumors going about.  The thing with Rumors is that most of it are false.  However, recently supposedly "leaked" images of the iphone 5 seems very probably.  i honestly think the images are real and this is the beta version of the iphone 5.  if so, it looks so far.  I love the alimony alloy rim casing around the phone itself, makes it look nice and makes it sturdy.  on top of that, the screen does alot bigger.  I can not wait for this device!



Automating tasks With imacro

  
 How many times have you filled out forms that you've filled many times before or done other Mechanical tasks on the internet?  there are people who complete surveys on the internet to make money but doing it manually would just be foolish and a waste of time.   In comes imacro, a simple and easy to automation tool for firefox or google chrome.  it's an add-on that is free and i highly recommend it.   with imacro you can do any tasks automatically when you just let it run.  These tasks can be anything you can think of.   The best part of imacro is how easy it is to program it.  you literally click record and you let it record the Tasks you want it to do for your.  if you want more advanced tasks, you can edit the code yourserlf.   imacro programming code is extremely easy.  even easier than basic.  if you choose to go this route, here a link to learn the ultra easy language: http://wiki.imacros.net/Main_Page

here's the download link for firefox: https://addons.mozilla.org/en-us/firefox/addon/imacros-for-firefox/


  Overall it's an extremely easy to use program and i highly recommend it.  Comes in handy in lots of ways.

Sunday, February 13, 2011

Computer Organization and Design 4th Edition + cd + Solutions Manual (updated)

Computer Organization and Design, Fourth Edition: The Hardware/Software Interface

By David A. Patterson (Author), John L. Hennessy (Author)



IT TOOK ME A WHILE TO UPLOAD THIS, SO ENJOY IT!!! it comes with a mips reference sheet, the cd that came with it, and also an additional solutions manual

http://www.fileserve.com/file/aSXGMh5
http://www.fileserve.com/file/dMfut88
http://www.fileserve.com/file/MEtRAqs

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

How to Get Free Internet on Your iPhone

    There has been loophole that enables you to get free Edge internet acess on your iphone.  please note that this requires a t-mobile sim card.  this has been tested on prepaid and a monthly plan card.  this ONLY enables you to surf the internet, it does not allow external apps like cyadia, google maps,  tom-tom etc, google earth and etc to access the internet.   this only allows you to browse the world wide web.


step 1a) to do this, navigate to settings->general->network->cellular data network. turn on cellular data, then lick "APN" and type in "wap.voicestream.com".  

step 2a) turn on safari or any other browser you have and DO NOT accept the data plan page pops up, instead type in the  address bar "ifailhard.com/tmobile/iphone".  with this site, you can use send free sms text messages or use the proxy to surf any site.

if  you want a quicker and better surfing Experience, then read this:
  You may find that it is annoying to have the data plan page pop up each time and you may also find that the proxy does not load some webpages properly (i.e images not loading correctly or text alignment being messed  up), then use this following method.

step 1b)  download this hacked opera mini browser from here (enjoy the song :D):
http://www.fileserve.com/file/Xvv6bUU

step 2b) extract the rar file, install the opera ipa file (you need Appsync to do this).  first, we will need the internet  for first time time because we need to configure the browser, so turn on wifi and open the app.  go to settings (wrench icon) -> scroll down to advanced ->protocol, change it from socket to http. close the app and turn off the internet,

step 3b) do step 1a above, turn on cellular data, turn on opera browser and you should not longer be bothered by the data plan page and moreover,  you can have a full web surfing experience and won't need to use the proxy site above.

that's it.

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:

Monday, October 11, 2010

Computer Organization and Design 4th Edition + cd + Solutions Manual

Computer Organization and Design, Fourth Edition: The Hardware/Software Interface

By David A. Patterson (Author), John L. Hennessy (Author)



IT TOOK ME A WHILE TO UPLOAD THIS, SO ENJOY IT!!! it comes with a mips reference sheet, the cd that came with it, and also an additional solutions manual

http://www.fileserve.com/file/aSXGMh5
http://www.fileserve.com/file/dMfut88
http://www.fileserve.com/file/MEtRAqs
Related Posts Plugin for WordPress, Blogger...