Save info   Get password
Home Submit your blog Edit Account Rules RSS-Archive Contact
    • Programming




      Herb Schildt's Java Programming Cookbook
      Legendary programming author Herb Schildt shares some of his favorite programming techniques in this high-powered Java "cookbook." Organized for quick reference, each recipe shows how to accomplish a practical programming task. A recipe begins with a list of key ingredients (the classes, methods, and interfaces) followed by step-by-step instructions that show how to assemble them into a com

      Written by: TECHNOMAC


      Programming and Customizing the AVR Microcontroller
      This reader-friendly guide shows you how to take charge of the newest, most versatile microcontrollers around, Atmel's AVR RISC chip family. Inside, Electronics World writer and astronomy instrumentation developer Dhananjay V. Gadre walks you from first meeting these exciting new computers-on-a-chip all the way through design and ready-to-launch products. Download Description How to take cha

      Written by: TECHNOMAC


      If Boxing Is Your Favorite Sport DirecTV Has Loads of Hockey Programming For You
      By: David Johnson Who doesn't love a good boxing match on TV? Isn't it great when it's a good fight and it is perfumed by two game competitors who are decent enough to follow all the rules of the sport? Nonsense! Everyone knows that the best boxing matches are the ones that break out during ice hockey games and the really good ones involve groups of adrenaline fueled maniacs that refuse to stop as they perform impromptu tooth removal surgery on each other, as the blood thirsty crowd goes nuts.The problem with regular boxing matches is that as soon as they start getting going the damn referee stops all the action and the dolts always follow his instructions, as if they don't even have minds of their own. When a fight breaks out during a hockey game the referee stands away from it, or he mig

      Written by: sports


      What is Logical Database?Logical database in ABAP programming
      The Logical Database Builder then saves you work by using components that you have already defined to generate proposals for other components. Some of the most important attributes of a logical database are set when you define its structure. When you have defined the structure, the Logical Database Builder automatically generates a proposal for the selection include. The system then generates an input mask for the database program, based on the structure of the logical database and the selections. These generated proposals allow you to create a working logical database quickly. However, you must program refinements such as authorization checks and performance optimization yourself. • Database tables. The table must be active in the ABAP Dictionary. Tables always have a flat structure. T

      Written by: sap abap


      Bluetooth programming for Linux.pdf
      Written by Marcel Holtmann and Andreas Vedral, this 24 pages presentation covers Blue tooth in a Linux scope and how to program Linux to get into the bluetooth connection. Although only a glance and not quite indepth coverage, this pdf document is worth looked by everyone who want to know about Linux Programming and Bluetooth! Content: Short [...]

      Written by: Online Free eBooks


      Beginning XNA 2.0 Game Programming: From Novice to Professional
      Alexandre Santos Lobao, Bruno Pereira Evangelista, José Antonio Leal de Farias“Beginning XNA 2.0 Game Programming: From Novice to Professional" Apress | 2008-04-28 | ISBN: 1590599241 | 456 pages | PDF | 4,4 Mb Would you like to create your own games, but never have the time to dig into the details of multimedia programming? Now you don’t have to! XNA makes it simple to create your own games, which will run on your PC and Xbox 360 console. Even if you don’t know how to program at all, Beginning XNA 2.0 Game Programming: From Novice to Professional will teach you the basics of C# 2005 programming along the way. Don’t get overwhelmed with details you don’t need to know— just learn what you need to start creating your own games right now!The fast–paced introduction to XNA

      Written by: TECHNOMAC


      Programming Video Games for the Evil Genius
      IF EVIL'S YOUR NAME, THEN THESE ARE YOUR GAMES! Always wanted to be a genius game creator? This Evil Genius guide goes far beyond a typical programming class or text to reveal insider tips for breaking the rules and constructing wickedly fun games that you can tweak and customize to suit your needs! In Programming Video Games for the Evil Genius, programming wunderkind Ian Cinnamon gives you everything you need to create and control 57 gaming projects. You'll find easy-to-follow plans featuring Java, the most universal programming language, that run on any PC, Mac, or Linux computer. Illustrated instructions and plans for an awesome mix of racing, board, shoot 'em up, strategy, retro, and puzzle gamesGaming projects that vary in difficulty-starting with simple programs and progressin

      Written by: TECHNOMAC


      Best Programming Jokes
      How can you tell when a programmer has had sex? When he's washing the pepper spray out of his eyes. ~~~~~~~~~~~~~~~~~~~~~~~~~ Two bytes meet.  The first byte asks, "Are you ill?"  The second byte replies, "No, just feeling a bit off." ~~~~~~~~~~~~~~~~~~~~~~~~~ Eight bytes walk into a bar.  The bartender asks, "Can I get you anything?" "Yeah," reply the bytes.  "Make us a double." ~~~~~

      Written by: Free Indo Source Code


      DOWNLOAD eBOOK Professional Outlook 2007 Programming
      eBOOK Details Publisher Wrox Release Date October 8, 2007 ISBN 0470049944 eBOOK Description Professional Outlook 2007 Programming Written by one of the most popular and knowledgeable Microsoft Outlook MVPs, this book emphasizes the many new and exciting Outlook 2007 programming features. Ken Slovak shows you all you need to know to develop everything from Outlook custom forms and personal {This is a content summary only, visit my blog for full link, other content and more }

      Written by: Free eBOOK Download


      Trees - Programming Interview Questions
      Question:Write a C program to find the depth or height of a binary treeSolution:#includestruct binarysearchtree{ int data; struct binarysearchtree* left; struct binarysearchtree* right;};typedef struct binarysearchtree* tree;int max(int a,int b){ if(a >=b) return a; else return b;}int height(tree T){if(T==NULL) return 0;else{ int h1=height(T->left); int h2=height(T->right); return 1+max(h1,h2);}}Question:Write a C program to determine the number of elements(or size) in a binary tree?Solution:#includestruct binarysearchtree{ int data; struct binarysearchtree* left; struct binarysearchtree* right;};typedef struct binarysearchtree* tree;int tree_size(tree T){if(T==NULL) return 0;else{ return 1+tree_size(T->left)+tree_size(T->right);}}W

      Written by: Technical Interview Questions


      Beginning XNA 2.0 Game Programming: From Novice to Professional
      Would you like to create your own games, but never have the time to dig into the details of multimedia programming? Now you don’t have to! XNA makes it simple to create your own games, which will run on your PC and Xbox 360 console. Even if you don’t know how to program at all, Beginning XNA 2.0 Game Programming: From Novice to Professional will teach you the basics of C# 2005 programming along the way. Don’t get overwhelmed with details you don’t need to know— just learn what you need to start creating your own games right now! The fast–paced introduction to XNA and the C# language provides professional developers a quick-start guide to creating a commercial product using XNA, as well as offering home enthusiasts or hobbyists everything they need to begin putting together

      Written by: TECHNOMAC


      Programming WCF Services
      My two favorite .Net programming books just happen to be by the same author - Juval Lowy. The first book, "Programming .NET Components", is a well worn companion that often is not on my desk because I loan it out so often. And now, "Programming WCF Services" occupies the #2 slot of .Net book favorites. Lowy's writing style is terse, concise and yet somehow compelling. I find myself often rereading chapters after working through some programming issue related to the subject matter. It's always interesting to me how I can reread a chapter a few weeks or months later and find fresh insights. There's a certain layering of knowledge that reveals itself in subsequent readings that's hard to explain. Lowy's treatment of the subject matter is encyclopedic with numerous examples and countless in

      Written by: Onion Peels


      DOWNLOAD eBOOK OpenGL(R) Programming on Mac OS(R) X: Architecture, Performance, and Integration
      eBOOK Details Publisher Addison-Wesley Professional; Release Date December 27, 2007 ISBN 0321356527 eBOOK Description The Mac has fully embraced OpenGL throughout its visual systems. In fact, Apple's highly efficient, modern OpenGL implementation makes Mac OS X one of today's best platforms for OpenGL development. OpenGL® Programming on Mac OS® X is the first comprehensive resource for {This is a content summary only, visit my blog for full link, other content and more }

      Written by: Free eBOOK Download


      Programming .NET 3.5 (Paperback)
      Programming .NET 3.5 (Paperback)By Jesse Liberty Buy new: $44.99$32.39 First tagged “microsoft” by Yair Zadik Customer tags: dotnet 30, dotnet, net, dotnet 3 5, microsoft Technorati Tags: dotnet 30, dotnet, net, [...]

      Written by: All About Softwares


      Design Blog Discusses All About Programming
      Webmasters and other online business entrepreneurs must constantly keep up with their knowledge and skills if they hope to compete with the hundreds of millions of other people who have a “shingle” up. This is one of the reasons why page design, page contents and page features must always be updated. To webmasters advantage, a new design blog offers lots of free information on web page design, technology, money and life. Let us say for a moment that you want information on user accounts but you don’t want users to have administrative access just to get their work done. There are ways in which you can set up these user accounts using Window’s Vista. You wouldn’t necessarily know how to do that without reading this blog. However, after following the few simple steps and readin

      Written by: The New Business World Blog


      Best Programming Jokes
      How can you tell when a programmer has had sex?When he's washing the pepper spray out of his eyes. ~~~~~~~~~~~~~~~~~~~~~~~~~ Two bytes meet.  The first byte asks, "Are you ill?"  The second byte replies, "No, just feeling a bit off."

      Written by: Software Development Topics


      Beginning C++ Game Programming
      <!-- google_ad_section_start --> Offering a thorough and modern introduction to C++, this book has everything you need in order to learn the fundamentals of C++ and game programming basics. Uploader note: This book will teach you c++ programming basics in terms of gaming, like how an array can be used to store items as an inventory, it won’t teach you 3d or 2d gaming basics. It’s a good way to

      Written by: Share it to everyone


      Professional Palm OS Programming (Wrox Professional Guides) by Lonnon R. Foster
      Product Description Professional Palm OS Programming is everything programmers need to create applications for the world’s most popular operating system for handheld devices. Veteran Palm developer Lonnon Foster, who has been developing commercial applications for the platform since its introduction nearly a decade ago, provides readers with hands-on instruction, lots of code, and advice that

      Written by: I-BIBLIOPHILE LIBRARY


      Professional ADO.NET 2: Programming with SQL Server 2005, Oracle, and MySQL by Wallace B. McClure
      Product Description ADO.NET revolutionized the way data was accessed through SQL Server, Oracle, and MySQL. With Microsoft's release of ADO.NET 2, ADO and the .NET Framework are integrated with SQL Server for the first time-enabling you to program .NET applications directly within the SQL Server database. Packed with sample code and recommended best practices for using ADO.NET 2, this

      Written by: I-BIBLIOPHILE LIBRARY


      Multiplayer Game Programming w/CD
      Todd Barron, LostLogic “Multiplayer Game Programming w/CD" Course Technology PTR | 2002-06-01 | ISBN: 0761532986 | 850 pages | PDF | 12 Mb Multiplayer Game Programming is the first technical guide to enable you to write a complete Internet-ready video game using DirectX 8. The first part of the book covers the history of online gaming, the architecture of multiplayer games, basic networking, and an introduction to Visual C++ and Windows programming. After you cover the basics, you'll move on to sockets, DirectPlay, Direct3D, DirectAudio, and DirectInput programming, as well as multiplayer game design. Whether you are new to game programming, or you have extensive game programming experience but want to break into the multiplayer phenomenon, this book is for you. Multiplayer Game Prog

      Written by: TECHNOMAC


      Multiplayer Game Programming w/CD
      Todd Barron, LostLogic “Multiplayer Game Programming w/CD" Course Technology PTR | 2002-06-01 | ISBN: 0761532986 | 850 pages | PDF | 12 Mb Multiplayer Game Programming is the first technical guide to enable you to write a complete Internet-ready video game using DirectX 8. The first part of the book covers the history of online gaming, the architecture of multiplayer games, basic

      Written by: EDZ-DOWNLOAD


      OPENINGS FOR LINUX DEVICE DRIVER ENGINNERS ( LINUX KERNEL PROGRAMMING)
      Client profile Our client is Headquartered in Virginia, it has a global footprint supported by multiple development centers across key locations in North America & India.It has presence 35 states... [[ This is a content summary only. Visit my website for full links, other content, and more! ]]

      Written by: JOB-HUNT


      OPENINGS FOR LINUX DEVICE DRIVER ENGINNERS ( LINUX KERNEL PROGRAMMING)
      Client profile Our client is Headquartered in Virginia, it has a global footprint supported by multiple development centers across key locations in North America & India.It has presence 35 states... [[ This is a content summary only. Visit my website for full links, other content, and more! ]]

      Written by: JOB-HUNT


      OPENINGS FOR LINUX DEVICE DRIVER ENGINNERS ( LINUX KERNEL PROGRAMMING)
      Client profileOur client is Headquartered in Virginia, it has a global footprint supported by multiple development centers across key locations in North America & India.It has presence 35 states in Continental USA are serviced, 4 Regional Offices, Global Delivery Centers Worldwide .Our client provides Consulting, IT services, and Business process outsourcing services to clients across several verticals around the globe. It provides end-to-end business solutions that leverage technology. They provide solutions for a challenging environment where business and technology strategies converge. Our global management consulting, technology services are committed to delivering innovation and excellence. It has 500+employees.LINUX DEVICE DRIVERS ENGINEERThe ideal candidate should have skills in

      Written by: JOB-HUNT


      Programming Embedded Systems: With C and GNU Development Tools, 2nd Edition (Paperback)
      Programming Embedded Systems: With C and GNU Development Tools, 2nd Edition (Paperback)By Michael Barr Buy new: $49.99$43.5033 utilised and new from $31.99 Customer Rating: First tagged “linux” by William B. Swift Customer [...]

      Written by: All About Softwares


      Portable C and Unix System Programming (Prentice-Hall Signal Processing Series) (Paperback)
      Portable C and Unix System Programming (Prentice-Hall Signal Processing Series) (Paperback)By J. E. Lapin 11 utilised and new from $0.09 Customer Rating: First tagged “unix” by William B. Swift Customer tags: system [...]

      Written by: All About Softwares


      The Art of UNIX Programming (Addison-Wesley Professional Computing Series) (Paperback)
      The Art of UNIX Programming (Addison-Wesley Professional Computing Series) (Paperback)By Eric S. Raymond Buy new: $36.7036 utilised and new from $17.95 Customer Rating: First tagged “linux” by William B. Swift Customer tags: [...]

      Written by: All About Softwares


      Programming Video Games for the Evil Genius
      Ian Cinnamon , "Programming Video Games for the Evil Genius"McGraw-Hill/TAB Electronics | ISBN 0071497528 | February 29, 2008 | 316 Pages | PDF | 5.2MB“Always wanted to be a genius game creator? This Evil Genius guide goes far beyond a typical programming class or text to reveal insider tips for breaking the rules and constructing wickedly fun games that you can tweak and customize to suit your needs!In Programming Video Games for the Evil Genius, programming wunderkind Ian Cinnamon gives you everything you need to create and control 57 gaming projects. You'll find easy-to-follow plans featuring Java, the most universal programming language, that run on any PC, Mac, or Linux computer.”Download from RapidShareDownload from DepositfilesDownload from FileFactoryDownload from Easy-Share

      Written by: TECHNOMAC


      ASP.NET 2.0 Website Programming
      ASP.NET 2.0 Website Programming: Problem - Design - Solution (Programmer to Programmer)ISBN: 9780764584640 | Publisher: Wrox | English | 600 pages | CHM | Mon May 8 2006 | 18Mby Marco Bellinaso This book is different from most others you can find in bookstores. Most offerings in this area are mainly reference books that dissect every little detail of version 2.0 of ASP.NET or the .NET Framework and that – in the best cases – provide a short listing to illustrate each feature. Marco’s book has a radically different approach: he explains how you can assemble all ASP.NET 2.0’s features and leverage its power to design, develop, and deploy a full-featured Web site. Don’t be fooled by the TheBeerHouse being a fictitious site for a fictitious customer: if the main differences between

      Written by: TECHNOMAC


      C (programming language)
      added a link to bit-wise operators ← Previous revision Revision as of 20:32, 30 April 2008 Line 55: Line 55: ** two consecutive equal-signs to test for equality (compare to <code>.EQ.</code> in [[Fortran]] or the equal-sign in [[BASIC]]) ** two consecutive equal-signs to test for equality (compare to <code>.EQ.</code> in [[Fortran]] or the equal-sign in [[BASIC]]) ** <code>&amp;&amp;</code> and <code>||</code> in place of [[ALGOL]]'s <code>and</code> and <code>or</code>, which ** <code>&amp;&amp;</code> and <code>||</code> in place of [[ALGOL]]'s <code>and</code> and <code>or</code>,

      Written by: karthik


      Chaos Programming shares their thoughts about Hellgate: London
      Though the article/review is a bit old, I simply could not pass up the opportunity to share it with everyone who might have missed it after the article was linked to me by an anonymous tip. Included in this article/review is a completely free quest creator! It’s quite accurate too! Don’t forget to read up [...]

      Written by: You Got Flagshipped


      Programming ASP.NET AJAX: Using ASP.NET AJAX JavaScript Extensions
      Delivering rich, Web 2.0-style experiences has never been easier. This book gives you a complete hands-on introduction to Microsoft ASP.NET AJAX 1.0, the new framework that offers many of the same benefits for Ajax development that ASP.NET provides for server-side development. With Programming ASP.NET AJAX, you'll learn how to create professional, dynamic web pages with Ajax in no time. Loaded with code and examples that demonstrate key aspects of the framework, this book is ideal not only for ASP.NET developers who want to take their applications a step further with Ajax, but for any web developers interested in ASP.NET AJAX, no matter what technology they use currently. That includes JavaScript programmers who would like to avoid the headaches of writing cross-browser code. Programming

      Written by: TECHNOMAC


      Programming ASP.NET AJAX: Using ASP.NET AJAX JavaScript Extensions
      Delivering rich, Web 2.0-style experiences has never been easier. This book gives you a complete hands-on introduction to Microsoft ASP.NET AJAX 1.0, the new framework that offers many of the same benefits for Ajax development that ASP.NET provides for server-side development. With Programming ASP.NET AJAX, you'll learn how to create professional, dynamic web pages with Ajax in no time. Loaded with code and examples that demonstrate key aspects of the framework, this book is ideal not only for ASP.NET developers who want to take their applications a step further with Ajax, but for any web developers interested in ASP.NET AJAX, no matter what technology they use currently. That includes JavaScript programmers who would like to avoid the headaches of writing cross-browser code. Programming

      Written by: TECHNOMAC


      Programming Groovy: Dynamic Productivity for the Java Developer
      Venkat Subramaniam, "Programming Groovy: Dynamic Productivity for the Java Developer"Pragmatic Bookshelf | ISBN 1934356093 | April 8, 2008 | 318 Pages | PDF | 3.6MBThe strength of Java is no longer in the language itself; it's in the Java Platform (the JVM, JDK, and rich frameworks and libraries). But recently, the industry has turned to dynamic languages for increased productivity and speed to market.Groovy is one of a new breed of dynamic languages that run on the Java platform. You can use these new languages on the JVM and intermix them with your existing Java code. You can leverage your Java investments while benefiting from advanced features including true Closures, Meta Programming, the ability to create internal DSLs, and a higher level of abstraction.Download from RapidShareDownlo

      Written by: TECHNOMAC


      Programming and Customizing the PIC Microcontroller
      Myke Predko “Programming and Customizing the PIC Microcontroller" McGraw-Hill/TAB Electronics | 2007-09-25 | ISBN: 0071472878 | 1263 pages | PDF | 9 Mb Tap into the latest advancements in PIC technology with the fully revamped Third Edition of McGraw-Hill's Programming and Customizing the PIC Microcontroller. Long known as the subject's definitive text, this indispensable volume comes packed with more than 600 illustrations, and provides comprehensive, easy-to-understand coverage of the PIC microcontroller's hardware and software schemes.With 100 experiments, projects, and libraries, you get a firm grasp of PICs, how they work, and the ins-and-outs of their most dynamic applications. Written by renowned technology guru Myke Predko, this updated edition features a streamlined, more ac

      Written by: TECHNOMAC


      PHP 5 / MySQL Programming for the Absolute Beginner
      Are you ready to begin programming with PHP and MySQL? Then get ready to jump right in. You'll get an introduction to programming with a specific focus on programming web servers with the PHP programming language. Much of the original content from the first edition (1931841322) is retained, but you'll also cover updates relating to the upcoming PHP 5.0 release. Following the same format as the popular first edition, this book provides easy-to-follow instruction. You will use the concepts presented in the book to create games using PHP and MySQL. As each concept is put to the test, you'll acquire programming skills that will easily transition to real-world projects. A true beginner's guide, this book enables you to acquire programming skills that you can use in the next language that yo

      Written by: TECHNOMAC


      Encyclopedia of Systemic Neuro-Linguistic Programming and NLP New Coding by Robert B. Dilts
      Product Description The culmination of nearly four years of continuous work, The Encyclopedia of Systemic Neuro-Linguistic Programming and NLP New Coding written by Robert Dilts and Judith DeLozier provides a fascinating and comprehensive guide to the field of NLP. This beautifully presented, hardbound 2-volume set includes: € descriptions of fundamental techniques and models € definitions of

      Written by: I-BIBLIOPHILE LIBRARY


      Programming Groovy: Dynamic Productivity for the Java Developer (The Pragmatic Programmers)
      # Publisher: Pragmatic Bookshelf (April 8, 2008)# Language: English# ISBN-10: 1934356093# ISBN-13: 978-1934356098Product DescriptionThe strength of Java is no longer in the language itself; it's in the Java Platform (the JVM, JDK, and rich frameworks and libraries). But recently, the industry has turned to dynamic languages for increased productivity and speed to market.Groovy is one of a new breed of dynamic languages that run on the Java platform. You can use these new languages on the JVM and intermix them with your existing Java code. You can leverage your Java investments while benefiting from advanced features including true Closures, Meta Programming, the ability to create internal DSLs, and a higher level of abstraction.If you're an experienced Java developer, Programming Groovy wi

      Written by: Free Ebooks - Share for All


      A+: Obscure Programming Language of the Month
      This is the first in what will be a series of articles, each highlighting an obscure programming language. There are over 2700 languages spoken on Earth. And while there are only about a dozen popular programming languages, there are over 400 known programming languages, many of which you can see in this extensive "Hello World" [...]

      Written by: Software Development Topics


      Excel Programming: Your visual blueprint for creating interactive spreadsheets (Visual Blueprint) (Paperback)
      Excel Programming: Your seeable plan for creating mutual spreadsheets (Visual Blueprint) (Paperback)By Jinjer Simon Buy new: $17.8139 utilised and new from $5.00 Customer Rating: First tagged “excel” by V. K. Noll “denalinoll” [...]

      Written by: All About Softwares


      Visual Basic 6 Programming Library
      Visual Basic novices and other programming novices alike usually have trouble starting out with the basics. The hardest part in programming is getting a kick start and learning the basics. Most novices have no idea where to begin. Code It Better is the perfect place for VB novices to start out in programming. With its [...]

      Written by: VitalBlogs.com - Get a free blog today!


      Visual Basic 6 Programming Library
      Visual Basic novices and other programming novices alike usually have trouble starting out with the basics. The hardest part in programming is getting a kick start and learning the basics. Most novices have no idea where to begin. Code It Better is the perfect place for VB novices to start out in programming. With its [...]

      Written by: VitalBlogs.com - Get a free blog today!


      Kids Inundated with Passive Programming
      “Progress should mean that we are always changing the world to fit the vision, instead we are always changing the vision.” - Orthodoxy, 1908 Radical Mutual-Improvement paraphrases an article called Persuasion & [...]

      Written by: The Chancellor's New Clothes


      Advanced Graphics Programming Using OpenGL - McReynolds
      Advanced Graphics Programming Using OpenGL - McReynoldsToday truly useful and interactive graphics are available on affordable computers. While hardware progress has been impressive, widespread gains in software expertise have come more slowly. Information about advanced techniquesbeyond those learned in introductory computer graphics textsis not as easy to come by as inexpensive hardware.This book brings the graphics programmer beyond the basics and introduces them to advanced knowledge that is hard to obtain outside of an intensive CG work environment. The book is about graphics techniquesthose that dont require esoteric hardware or custom graphics librariesthat are written in a comprehensive style and do useful things. It covers graphics that are not covered well in your old graphics te

      Written by: SofTeca


      C Programming Job Interview Questions
      What will print out? main(){ char *p1=“name”; char *p2; p2=(char*)malloc(20); memset (p2, 0, 20); while(*p2++ = *p1++); printf(“%s\n”,p2); } Answer:empty string. What will be printed as the result of the operation below:main(){ int x=20,y=35; x=y++ + x++; y= ++y + ++x; printf(“%d%d\n”,x,y); } Answer : 5794 What will be printed as the result of the operation below:main(){ int x=5; printf(“%d,%d,%d\n”,x,x< >2); } Answer: 5,20,1 What will be printed as the result of the operation below:#define swap(a,b) a=a+b;b=a-b;a=a-b; void main(){ int x=5, y=10; swap (x,y); printf(“%d %d\n”,x,y); swap2(x,y); printf(“%d %d\n”,x,y);} int swap2(int a, int b){ int temp; temp=a; b=a; a=temp; return 0; } Answer: 10, 510, 5

      Written by: Technical Interview Questions


      Expert Oracle, Signature Edition Programming Techniques and Solutions for Oracle 7.3 through 8.1.7 (Expert One-On-One) (Hardcover)
      Expert Oracle, Signature Edition Programming Techniques and Solutions for Oracle 7.3 finished 8.1.7 (Expert One-On-One) (Hardcover)By Thomas Kyte Buy new: $56.9019 utilised and new from $33.00 Customer Rating: First tagged “oracle” by Mark Schmeets “mschmeets” [...]

      Written by: All About Softwares


      iPhone Open Application Development: Write Native Objective-C Applications for the iPhone: Programming an Exciting Mobile Platform
      Certain technologies bring out everyone's hidden geek, and iPhone did the moment it was released. Even though Apple created iPhone as a closed device, tens of thousands of developers bought them with the expressed purpose of designing and running third-party software. In this clear and concise book, veteran hacker Jonathan Zdziarski - one of the original hackers of the iPhone - explains the iPhone's native environment and how you can build software for this device using its Objective-C, C, and C++ development frameworks."iPhone Open Application Development" walks you through the iPhone's proprietary development environment, offers an overview of the Objective-C language you'll use with it, and supplies background for the iPhone operating system. You also get detailed recipes and workin

      Written by: TECHNOMAC


      Technical Interview Questions Programming Languages and softwares
      Here i am showing the technical interview questions of various IT, ITES, BPO, KPO, Software DEveloper, Animation, Web Designing, Project Interview, Consultancy firms, Web Designing Firms and many other companies Tech Interview Questions by real candidates and experiences. Here you will view or download free online complete detailed questions, answers, solutions, solved questions, problems, preparation help, helpful resources, Mulitple choice questions for placement papers, MCQs, Reasoning questions, basic, advanced, important, popularly mostly asked programming language interview questions for latest 2007 and 2008. So check these out. Good Luck for your Placement papers. May you get a good placement. Do Mail us your paper.Note: For web designing, animation interviews, graphics, etc. the qu

      Written by:


      C Sharp C# Programming language questions - 7
      C Sharp Technical and Programming Language Interview Questions for software application developers. Latest and recent questions, problems, explanations, answers and solutions for programs totally free online for your preparation. keep watching for more.Is it possible to inline assembly or IL in C# code? - No. Is it possible to have different access modifiers on the get/set methods of a property? - No. The access modifier on a property applies to both its get and set accessors. What you need to do if you want them to be different is make the property read-only (by only providing a get accessor) and create a private/internal set method that is separate from the property. Is it possible to have a static indexer in C#? - No. Static indexers are not allowed in C#. If I return out of a try/final

      Written by:


      C Sharp Technical Programming Interview Questions
      C Sharp More Advanced Important tech technical interview questions with detailed explanations and answers, solutions free online for interview preparation. Latest and recent papers for 2007, 2008Are private class-level variables inherited? - Yes, but they are not accessible, so looking at it you can honestly say that they are not inherited. But they are. Why does DllImport not work for me? - All methods marked with the DllImport attribute must be marked as public static extern. Why does my Windows application pop up a console window every time I run it? - Make sure that the target type set in the project properties setting is set to Windows Application, and not Console Application. If you’re using the command line, compile with /target:winexe, not /target:exe. Why do I get an error (CS10

      Written by:


      Learn Vertex and Pixel Shader Programming With Directx 9
      Learn Vertex and Pixel Shader Programming With Directx 9This book covers all the fundamentals of programming vectors using SIMD methodology in conjunction with the Direct3D 9 application interfaces. Text shows how to write assembly language for programming the vertex shader and pixel shader hardware using DirectX 9. Covers the fundamentals of programming vectors using SIMD methodology in conjunction with the Direct3D 9 application interfaces. For game developers. Password: knowfree.net

      Written by: SofTeca


      Multithreaded Programming with Java Technology
      Multithreading gives developers using the Java 2 platform a powerful tool for dramatically improving the responsiveness and performance of their programs on any platform, even those without inherent multithreading support. Multithreaded Programming with Java Technology is the first complete guide to multithreaded development with the Java 2 platform. Multithreading experts Bil Lewis and Daniel J. Berg cover the underlying structures upon which threads are built; thread construction; and thread lifecycles, including birth, life, death, and cancellation. Next, using extensive code examples, they cover everything developers need to know to make the most of multithreading, including: Thread scheduling models and synchronization-with solutions for complex, real-world synchronization proble

      Written by: TECHNOMAC


      VTC - C Programming 2007 with Tim Heagarty
      The C Programming Language is the foundation of nearly all modern computer languages. C is a “low level” simple language that can be used to create the most elegant of applications and operating systems. Most of today’s commercial applications and operating systems have the C language at their core. VTC author Tim Heagarty explains the history and mechanics of the language and gives practical advice on its use in the commercial world. To begin learning simply click the links.Download Here (298 MB) Password: knowfree.net

      Written by: TECHNOMAC


      Introduction To PHP, The Web Programming Language
      PHP is a recursive acronym for PHP Hypertext Preprocessor, though it originally stood for Personal Home Page. It is designed specifically for the web, hence a web programming language. PHP is a server-side scripting language which can be either embedded into HTML documents or used alone. Since PHP is a interpreted language, when someone requests a page containing PHP, the code is interpreted on the server and the output (often HTML) is returned to the client web browser. As you might have guessed, PHP can help you generate different outputs depending on the conditions and generate different pages depending on conditions programmed, hence able to create what wee call “Dynamic Pages”. For example, suppose we want to put the current date and time on our web pa

      Written by: Learning Computer Programming


      Programming Languages: Design and Implementation (4th Edition) (Hardcover) newly tagged “tools”
      Programming Languages: Design and Implementation (4th Edition) (Hardcover)By Terrence W. Pratt Buy new: $119.00$119.0030 used and new from $3.92 Customer Rating: First tagged “tools” by D BROSSEAU Customer tags: programming(3), algorithms(2), software [...]

      Written by: Your Home Improvement and Family Resources


      SEO and Programming Website
      Do you want to start a blog or website even though you're not a techie? What do you need to put up a successful site? Finding the answer to that simple question can be frustrating as there are countless of web sites on the internet discussing the same topic. Maxwebdesign.eu might be able to help you. Robert G. Working and Brad together with the team of well experienced writers, share insight into the world of art, culture, and design. The blog has a lot of articles that will help you build your own website and be successful in marketing. The team also tackles custom web design, programming as well as the world of Search Engine Optimization (SEO). The magazine styled web design blog is a complete package for those who want to know anything about the internet, web design, SEO, and programm

      Written by: Gundam and Robot Anime


      eBook | PHP 5 / MySQL Programming for the Absolute Beginner
      Are you ready to begin programming with PHP and MySQL? Then get ready to jump right in. You'll get an introduction to programming with a specific focus on programming web servers with the PHP programming language. Much of the original content from the first edition (1931841322) is retained, but you'll also cover updates relating to the upcoming PHP 5.0 release. Following the same format as the popular first edition, this book provides easy-to-follow instruction. You will use the concepts presented in the book to create games using PHP and MySQL. As each concept is put to the test, you'll acquire programming skills that will easily transition to real-world projects. A true beginner's guide, this book enables you to acquire programming skills that you can use in the next language that you ta

      Written by: Free Appz


      Java (programming language)
      Primary goals ← Previous revision Revision as of 08:40, 14 April 2008 Line 45: Line 45: # It should contain built-in support for using [[computer network]]s. # It should contain built-in support for using [[computer network]]s. # It should be designed to execute code from [[remote procedure call|remote source]]s securely. # It should be designed to execute code from [[remote procedure call|remote source]]s securely. - # It should be easy to use by selecting what were considered the good parts of other object-oriented languages. + # It should be easy to use by selecting what were considered the good parts o === Platform independence === === Platform independence ===

      Written by: karthik


      If Boxing Is Your Favorite Sport DirecTV Has Loads of Hockey Programming For You
      If Boxing Is Your Favorite Sport DirecTV Has Loads of Hockey Programming For YouBy: David Johnson Who doesn't love a good boxing match on TV? Isn't it great when it's a good fight and it is perfumed by two game competitors who are decent enough to follow all the rules of the sport? Nonsense! Everyone knows that the best boxing matches are the ones that break out during ice hockey games and the really good ones involve groups of adrenaline fueled maniacs that refuse to stop as they perform impromptu tooth removal surgery on each other, as the blood thirsty crowd goes nuts.The problem with regular boxing matches is that as soon as they start getting going the damn referee stops all the action and the dolts always follow his instructions, as if they don't even have minds of their own. When a

      Written by: sports


      Programming ADO.NET
      Programming ADO.NETWiley 2002-04-19 ISBN: 0471201871 700 pages CHM 3,5 MbA powerful tool for delivering data-driven content across the Web, ADO.NET is the new set of data access services for Microsoft's .NET Framework. Because of its many new features, experienced and new programmers alike need to learn ADO.NET from the ground up.Provides detailed coverage of the objects that form the ADO.NET infrastructureExplores the relationship between ADO.NET, ASP.NET, XML, and server-side tools such as SQL Server 2000 and BizTalk ServerFeatures "Best Practices" sections that cover how to retrieve, manipulate, and update data with ADO.NETCompanion Web site contains code examples in VB.NET and C#://w16.easy-share.com/1699960914.html

      Written by: SofTeca


      Programming Cameras and Pan-Tilts: with DirectX and Java
      Programming Cameras and Pan-Tilts: with DirectX and Java by Ioannis Pavlidis (Author), Vassilios Morellas (Author), Pete Roeber (Author)Publisher: Morgan Kaufmann; Pap/Cdr edition (December 19, 2002) | ISBN-10: 1558607560 | PDF | 3 Mb | 288 pagesThe rapid rise of PC-based cameras has lead to the enormous growth of software applications that use real-time video programming. These applications include video conferencing, computer games, scientific research, automated security and surveillance, industrial inspection, and Web cameras. Previously, developers had to search through manufacturer manuals or research papers in computer vision or image processing to learn how to program devices for these applications.Programming Cameras and Pan-Tilts with DirectX and Java is the first book to offer p

      Written by: TECHNOMAC


      Canadians Protest CBC Radio 2's Cut in Classical Music Programming
      photo by Timothy Neesam/CBC The Canadian Broadcast Company disbandment of it's classical music division and traveling orchestra series last month has produced mostly outrage from Canadians across the continent since the CBC's announcement.Yesterday, in eight cities throughout Canada, including Halifax, Montreal and Vancouver, protesters demonstrated outside CBC offices.The CBC's reaction: "We have a mandate as a national public broadcaster … to represent the musical diversity and creativity in the country, and that's exactly what we're going to do. Classical, yes, but other kinds of music as well." [Full article].John Terauds, a classical music critic, wrote to the Toronto Star, essentially agreeing with the CBC's decision in the interest of 'indie pop and rock':Wouldn’t it be nice if

      Written by: Indie Rock Cafe


      Beginning Visual Basic .NET Database Programming
      Author(s): Denise Gosnell, Matthew Reynolds, Bill ForgeyPublisher: WroxYear: 2001ISBN: 1861005555Language: EnglishPages: 688File type: PDFSize (for download): 5.8 MBAll software is based on the principle of manipulating data. Whether it's the code that runs inside your VCR to start recording at a specific time, or air traffic control software, code is always working with data in one form or another.Today, we find that sophisticated applications store their data in a "database", a central repository of data overseen by a Database Management System, or DBMS. A DBMS does two things. Firstly, it handles the storage of the data. Secondly, it provides mechanisms for retrieving data as well as adding, removing, and changing data. A DBMS endeavors to do this in the most efficient way possible.Over

      Written by: Music,games,softwares Blog


      Professional Windows Vista Gadgets Programming (Programmer to Programmer) by Wei-Meng Lee
      Product Description Professional Windows Vista Gadgets Programming covers sidebar and sideshow gadget development each in their own part of the book. Part 1 will cover Sidebar gadgets while Part 2 covers SideShow gadgets. In each part, the book first explains the motivation behind each technology and its features. Then, the reader is taken on a quick walkthrough of how to develop a simple

      Written by: I-BIBLIOPHILE LIBRARY


      Programming Microsoft Composite UI Application Block and Smart Client Software Factory
      Get hands-on guidance for developing smart client applications using Windows Forms with the Composite UI Application Block (CAB) and the Smart Client Software Factory. Smart clients, the evolved intersection of thin clients and rich clients, have been hampered by the complexities involved in using traditional Web development methods. With just your fundamental Microsoft Visual Basic or Microsoft Visual C# skills, this guide will help you understand the prefabricated classes of CAB and the proven patterns that the Smart Client Software Factory provides. This book offers classroom-tested guidance, hands-on instruction, and a proven building-block approach. Through seven modular lessons, developers of moderate experience with learn how to create functional, robust smart client application

      Written by: TECHNOMAC


      Programming ADO.NET
      A powerful tool for delivering data-driven content across the Web, ADO.NET is the new set of data access services for Microsoft’s .NET Framework. Because of its many new features, experienced and new programmers alike need to learn ADO.NET from the ground up.Provides detailed coverage of the objects that form the ADO.NET infrastructureExplores the relationship between ADO.NET, ASP.NET, XML, and server-side tools such as SQL Server 2000 and BizTalk ServerFeatures “Best Practices” sections that cover how to retrieve, manipulate, and update data with ADO.NETCompanion Web site contains code examples in VB.NET and C#

      Written by: TECHNOMAC


      OOPS PROGRAMMING TECHNIQUES
      Creating Models :Humans are model-builders. We create models of the world to manage complexity and to help us understand problems we're trying to solveModels are simplifications. There is little point to a model that is as complex as the object in the problem domain. If you had a map of the United States that had every rock, blade of grass, and bit of dirt in the entire country, the map would have to be as big as the country itself. Your road atlas of the U.S. eschews all sorts of irrelevant detail, focusing only on those aspects of the problem domain (e.g., the country's roads) that are important to solving the problem (e.g., getting from place to place). If you want to drive from Boston to New York City, you don't care where the trees are; you care where the exits and interchanges are lo

      Written by: microsoft dot net


      Programming Internet Mail
      For most users, e-mail is just another application on their computers. For developers, however, Internet e-mail involves a dizzying array of standards and formats. Programming Internet Email takes all of today’s e-mail standards and puts them together in a readable form. David Wood has compiled his knowledge of a broad array of topics to create this fine guide for both developers and the technologically curious. He explains what makes Internet e-mail work and then dives into the Multipurpose Internet Mail Extensions (MIME), Secure/Multipurpose Internet Mail Extensions (S/MIME), Open Pretty Good Protocol (OpenPGP), and Post Office Protocol 3 (POP3) standards. Simple Mail Transfer Protocol (SMTP), Internet Message Access Protocol (IMAP), and vCard–the e-mail version of business cards–

      Written by: TECHNOMAC


      C++ GUI Programming with Qt4 (2nd Edition) (Prentice Hall Open Source Software Development Series)
      The Only Official, Best-Practice Guide to Qt 4.3 Programming Using Trolltech’s Qt you can build industrial-strength C++ applications that run natively on Windows, Linux/Unix, Mac OS X, and embedded Linux without source code changes. Now, two Trolltech insiders have written a start-to-finish guide to getting outstanding results with the latest version of Qt: Qt 4.3. Packed with realistic examples and in-depth advice, this is the book Trolltech uses to teach Qt to its own new hires. Extensively revised and expanded, it reveals today’s best Qt programming patterns for everything from implementing model/view architecture to using Qt 4.3’s improved graphics support. You’ll find proven solutions for virtually every GUI development task, as well as sophisticated techniques for providing

      Written by: TECHNOMAC


      rofessional Oracle 8i Application Programming with Java, PL/SQL and XML
      Michael Awai, Matthew Bortniker, John Carnell and oth. “Professional Oracle 8i Application Programming with Java, PL/SQL and XML" Wrox Press | 2000-12 | ISBN: 1861004842 | 1275 pages | PDF | 8,9 Mb Mirror Virus Free!!Checked Professional_Oracle_8i_Programming.rar - DoneMirror:

      Written by: TECHNOMAC


      Linux Socket Programming
      by Example by Warren Gay" Linux Socket Programming "Publisher:Que | Pages:576 | 2000-04-28 | ISBN: 0789722410 | PDF | 3 MbBook Description:Linux Socket Programming by Example begins with a very basic introduction to the fundamentals of socket level programming. As the chapters progress, you are introduced to related concepts, such as forming network addresses, Ipv6, the TCP/IP protocol suite and options, writing servers, and creating secure applications. You will also learn about socket fundamentals, domains and addresses, address conversion functions, socket types and protocols, Internet sockets, types and protocols, binding an address to a socket, using Datagram oriented protocols, and much more.-_que_press.pdf

      Written by: TECHNOMAC


      Professional Outlook 2007 Programming
      Professional Outlook 2007 ProgrammingWrox 454 pages 0470049944 October 8, 2007 PDF 5 Mb* Written by one of the most popular and knowledgeable Microsoft Outlook MVPs, this book fills a void in the market for a professional-level Outlook programming book* Explains how to use the many new features of Outlook 2007's object model and offers honest advice from the author on how to deal with common shortcomings and pitfalls of Outlook* Addresses common workarounds for Outlook programming bugs and how to interface with Word, Excel, SharePoint, and Access* Discusses the new Object Model, Outlook forms, COM add-ins, security, and more-0470049944-rar.htmlor

      Written by: SofTeca


      C++ GUI Programming with Qt4 (2nd Edition) (Prentice Hall Open Source Software Development Series)
      C++ GUI Programming with Qt4 (2nd Edition) (Prentice Hall Open Source Software Development Series)Prentice Hall PTR; 2 edition 0132354160 752 pages February 14, 2008 CHM 14 MbThe Only Official, Best-Practice Guide to Qt 4.3 Programming. Using Trolltech's Qt you can build industrial-strength C++ applications that run natively on Windows, Linux/Unix, Mac OS X, and embedded Linux without source code changes. Now, two Trolltech insiders have written a start-to-finish guide to getting outstanding results with the latest version of Qt: Qt 4.3. Packed with realistic examples and in-depth advice, this is the book Trolltech uses to teach Qt to its own new hires. Extensively revised and expanded, it reveals today's best Qt programming patterns for everything from implementing model/view archite

      Written by: SofTeca


      Professional Oracle 8i Application Programming with Java, PL/SQL and XML
      Professional Oracle 8i Application Programming with Java, PL/SQL and XMLWrox Press 2000-12 ISBN: 1861004842 1275 pages PDF 8,9 MbOracle Corporation has broadened its development platform, integrating open standards such as Java and XML into the heart of the Oracle 8i database. This extended programming environment continues to exploit the qualities of scalability, reliability and efficiency of the world's most successful data management software, but at the same time it provides new challenges and opportunities to programmers.This book shows you how to develop enterprise PL/SQL applications exploiting Java and XML, and how technologies such as EJBs can be moved to the 8i database. You'll work through case studies using a mix of both familiar and unfamiliar tools and languages, showing

      Written by: SofTeca


      C++ GUI Programming with Qt4 (2nd Edition) (Prentice Hall Open Source Software Development Series)
      C++ GUI Programming with Qt4 (2nd Edition) (Prentice Hall Open Source Software Development Series) Prentice Hall PTR; 2 edition | 0132354160 | 752 pages | February 14, 2008 | CHM | 14 Mb The Only Official, Best-Practice Guide to Qt 4.3 Programming. Using Trolltech's Qt you can build industrial-strength C++ applications that run natively on Windows, Linux/Unix, Mac OS X, and embedded Linux

      Written by: EDZ-DOWNLOAD


      MSN to produce original programming for MSN, MSNBC, and Xbox Live
      MediaWeek is reporting on the unveiling of "an ambitious slate of original programming created for its multiple web platforms, including the MSN portal, MSNBC.com and Xbox Live" before a group of ad agency and marketing types at a Digital Showcase in New York.  Microsoft emphasized  its commitment to producing targeted large scale web series, offering integrated advertising opportunities, according to Media Week: Among the new series to come out of MSN's Branded Entertainment group are In Need Of Repair, a male-aimed home improvement series featuring a pair of sophomoric, mostly inept hosts; and The Men's Room, an instructional fashion series geared for 20-something men who are averse to reading magazines such as GQ and Details. Also in the works are Seven Secrets A

      Written by: Geek Valley


      SQL Server TSQL Coding Conventions, Best Practices, and Programming Guidelines
      Databases are the heart and soul of many enterprise applications, and it is very essential to pay special attention to database programming. I've seen in many occasions where database programming is overlooked, thinking that it's something easy that be done by anyone. This is wrong.For a better performing database you need a real DBA and a specialist database programmer, let it be for Microsoft SQL Server, Oracle, Sybase, DB2 or whatever! If you don't use database specialists during your development cycle, databases often end up becoming the performance bottleneck. I decided to write this article in order to put together some of the database programming best practices so that my fellow DBAs and database developers can benefit!Here are some programming guidelines and best practices, keeping

      Written by: future of coding


      Programming Skills and Testers!
      Am I a Tester or a Programmer? Who am I? Abhijit Navindgikar: “I am having one question regarding software testing. Currently I am working as a software tester. I am having 3 years of experience in manual testing and having the basic knowledge of C/C++. Is it necessary for me to learn new technologies like C# .NET for future prospects in testing? Is it necessary for the tester to have the

      Written by: Software Testing Zone


      They’re bringing our kids quality, educational programming.
      But as far as teaching them how to count, well… Wait for it… Wait for it… Wait for it… Or maybe they’re just making sure our kids are as depressed as we are about aging.

      Written by: Old SM


      Download Advance SAP ABAP BSP programming Tutorial
      Free Download Download Advance SAP ABAP BSP programming Tutorial...SAP ABAP ALL IMPORTANT TCODESWhat is SAP ABAP BDC and How you use it?SAP ABAP Program to get the User exit for any Tran...COMPLETE SAP XI TRANSACTION CODES Frequently usedUnified Access to All SAP ABAP HR InfotypesSAP Quality Management(QM) Functional TutorialsSAP BW Warehouse Management Functional TutorialsFor SAP implementing ADS few installations and con...How to send emails to a recipient address containi...SAP ABAP ALV Function Module Frequently UsedObject Oriented ALV-Sample program to insert Logo ...

      Written by:


      Professional iPhone and iPod touch Programming: Building Applications for Mobile Safari
      The unprecedented success of iPhone and iPod touch serves as proof positive that application developers are entering uncharted territory when it comes to creating sophisticated, multi-functional mobile applications for the revolutionary interface design of the touch screen. The Safari-exclusive applications for these Apple devices assemble elements of Web 2.0 apps, traditional desktop apps, multimedia video and audio, and the cell phone. this book shows you how to integrate these various elements with key design concepts and principles in order to develop a highly usable interface for the touch screen. You'll learn to use existing open-source libraries in your code, imitate the overall look and feel of built-in Apple applications, and migrate existing Web 2.0 apps and sites to this ne

      Written by: TECHNOMAC


      Linux System Programming
      This book is about writing software that makes the most effective use of the system you're running on - code that interfaces directly with the kernel and core system libraries, including the shell, text editor, compiler, debugger, core utilities, and system daemons. The majority of both Unix and Linux code is still written at the system level, and "Linux System Programming" focuses on everything above the kernel, where applications such as Apache, bash, cp, vim, Emacs, gcc, gdb, glibc, ls, mv, and X exist. Written primarily for engineers looking to program (better) at the low level, this book is an ideal teaching tool for any programmer. Even with the trend toward high-level development, either through web software (such as PHP) or managed code (C#), someone still has to write the PHP

      Written by: TECHNOMAC


      How You Can Control Another Person’s Desires by Neurolinguistic Programming
      Mindblowing Video Movie star Simon Pegg, from ‘Shaun of the Dead’ and ‘Hot Fuzz’ is receiving a present from stunning psychologist Derren Brown - it can be anything he desires. He goes from wanting a leather jacket to a RED BMX in the space of 5 minutes. Pegg is convinced that he originally wanted [...]

      Written by: Using your mind power to create your life


      Programming Amazon Web Services: S3, EC2, SQS, FPS, and SimpleDB
      James Murty “Programming Amazon Web Services: S3, EC2, SQS, FPS, and SimpleDB " O'Reilly Media, Inc. | 2008-03-25 | ISBN: 0596515812 | 600 pages | CHM | 3,2 Mb Building on the success of its storefront and fulfillment services, Amazon now allows businesses to "rent" computing power, data storage and bandwidth on its vast network platform. This book demonstrates how developers working with small- to mid-sized companies can take advantage of Amazon Web Services (AWS) such as the Simple Storage Service (S3), Elastic Compute Cloud (EC2), Simple Queue Service (SQS), Flexible Payments Service (FPS), and SimpleDB to build web-scale business applications. With AWS, Amazon offers a new paradigm for IT infrastructure: use what you need, as you need it, and pay as you go. Programming Web Servic

      Written by: TECHNOMAC


      Bluetooth Application Programming with the Java APIs Essentials Edition
      Timothy J. Thompson, C Bala Kumar, Paul Kline “Bluetooth Application Programming with the Java APIs Essentials Edition " Morgan Kaufmann | 2008-02-15 | ISBN: 0123743427 | 304 pages | PDF | 2,1 Mb Adoption of Bluetooth wireless technology has become ubiquitous in the last few years. One of the biggest steps forward is the standardization of Java APIs for Bluetooth wireless technology (JABWT). The latest updates to this standard is explained in detail in this book. The JABWT standard, defined by the JSR-82 Java Specification Request, supports rapid development of Bluetooth applications that are portable, secure, and highly-usable. Wireless device manufacturers have responded overwhelmingly to the JABWT specification by implementing JABWT applications in mobile phones and other personal

      Written by: TECHNOMAC


      Practical Guide to Curl (Programming Series) (Paperback)
      Practical Guide to Curl (Programming Series) (Paperback)By Kevin Hanegan Buy new: $27.6925 utilised and new from $3.23 First tagged “javascript” by Prussian7 “prussian7″ Customer tags: bots, curl, spidering, java, javascript Technorati [...]

      Written by: All About Softwares


      New Page added under programming
      I just posted an article I read some time back about working with arrays in C#.NET. Anyway if you are having a hard time understand arrays and the way they work check out the article under the programming section. I didn’t write this article nor am i attempting to say i did (Mahesh [...]

      Written by: Optimus Wookie


eXTReMe Tracker