Tuesday, January 21, 2014

The 25 worst passwords of 2013: 'password' gets dethroned


fire



“123456” is finally getting some time in the spotlight as the world's worst password, after spending years in the shadow of “password.”
Security firm Splashdata, which every year compiles a list of the most common stolen passwords, found that “123456” moved into the number one slot in 2013. Previously, “password” had dominated the rankings.
The change in leadership is largely thanks to Adobe, whose major security breach in October affected upwards of 48 million users. A list of passwords from the Adobe breach had “123456” on top, followed by “123456789” and “password.” The magnitude of the breach had a major impact on Splashdata's results, explaining why “photoshop” and “adobe123” worked their way onto this year's list.
Fans of “password” could reasonably petition for an asterisk, however, given that the stolen Adobe passwords included close to 100 million test accounts and inactive accounts. Counting those passwords on the list is kind of like setting a home run record during batting practice. Don't be surprised if “password” regains the throne in 2014.
Weaker passwords are more susceptible to brute-force attacks, where hackers attempt to access accounts through rapid guessing. And when encrypted passwords are stolen, weaker ones are the first to fall to increasingly sophisticated cracking software.
As always, Splashtop suggests avoiding common words and phrases, and says that replacing letters with similar-looking numbers (such as “3” instead of “E) is not an effective strategy. Instead, consider using phrases of random words separated by spaces or underscores, and using different passwords, at least for your most sensitive accounts. Password management programs such as LastPass, KeePass and Splashdata's own SplashID can also help, as you only have to remember a single master password.
Here's the full list of worst passwords from 2013, according to Splashdata:
  1. 123456
  2. password
  3. 12345678
  4. qwerty
  5. abc123
  6. 123456789
  7. 111111
  8. 1234567
  9. iloveyou
  10. adobe123
  11. 123123
  12. admin
  13. 1234567890
  14. letmein
  15. photoshop
  16. 1234
  17. monkey
  18. shadow
  19. sunshine
  20. 12345
  21. password1
  22. princess
  23. azerty
  24. trustno1
  25. 000000

Set Up a Certificate Authority in RHEL5

Security certificates are widely used for authentication. This article explores how to set up a Certificate Authority in RHEL5.
 
Security certificates are basically used for authentication purposes and you must have encountered a number of websites that use them. These digital certificates are issued by a Certificate Authority. Such certificates contain the public key of the applicants and various other information regarding their identity. In this article, we’ll discuss the setting up of a Certificate Authority in RHEL and certificate signing.
Before we start, just make sure you have openssl installed on your system and follow the steps listed below:

1.     Open the  /etc/pki/tls/openssl.cnf file in a text editor and write down the following lines under the [ CA_default ] section:
dir=/etc/pki/myCA
certificate=$dir/my-ca.crt
crl=$dir/my-ca.crl
private_key=$dir/private/my-ca.key
You can find the purpose of each of these objects in the /etc/pki/tls/openssl.cnf file.
2.    Under the [ req_distinguished_name ] section, you can specify the default values for several fields:

countryName_default=IN
stateOrProvinceName_default=West Bengal
localityName_default=Kolkata
These fields are used during the time of certificate creation.
3.     Now it is time to create your working directories using the following command:

mkdir p /etc/pki/myCA/{certs,crl,newcerts,private}
4.     Create a certificate index file using the command that follows:
touch /etc/pki/CA/index.txt
5.     To create another file for the next certificate serial number to be issued, use the following command:
echo 01 > /etc/pki/myCA/serial
6.     It’s time to generate a private key and a self-signed certificate for your Certificate Authority.
cd /etc/pki/myCA
openssl genrsa -out private/my-ca.key des3 2048
Do remember the passphrase you give at this step.
7.     Now create your self-signed certificate using the command shown below:

openssl req 'new x509 key private/my-ca.key days 365 > my-ca.crt
This certificate will be distributed to your users.
With this, the process of setting up a Certificate Authority is complete. Now you can make your self-signed certificate downloadable by your users through a Web browser. Let us next check out the process of signing a certificate.

1.    First of all, generate a private key using the openssl genrsa 1024 > mykey.key command.
2.    Then create the Certificate Signing Request using the  openssl req ‘new’key mykey.key out mycsr.csr command.
3.    Now, as the Certificate Authority, sign the certificate using the openssl ca in mycsr.csr out mycert.crt command.
Your certificate is now ready to be used across multiple applications including the Web and e-mail. You can view information regarding this certificate in the /etc/pki/myCA/newcerts/01.pem file. Also, if you open /etc/pki/myCA/serial, you’ll see that its contents have been updated to 2, which is the serial number for the next certificate to be signed. As a Certificate Authority, you can also revoke a certificate using the openssl ca revoke /etc/pki/myCA/newcerts/01.pem command. Here 01.pem id is the file related to the first certificate that we’ve created.

So this was a brief overview of how to set up a Certificate Authority in RHEL5. You can use it for intranet applications management. And if you want to understand the functionality behind the Certificate Security, you can explore the cryptography concepts related to certificates like TLS/SSL handshakes, key distribution, cryptographic hashes, etc.

15 CSS Tools That Will Really Simplify Your Work!

  Simplifying your work flow goes a long way in making better CSS write-ups. This is why you should use tools that can help you do this. The following are 15 tools that help in this respect!

HTML, HTML5, CSS, Internet Explorer, Patternify, CSS tools, simplify CSS, learn CSS, HTML tools, news




1. Layer Styles: Use this HTML5 app for an intuitive approach towards CSS3.

2. CSS3 Pie: This can be used for putting in useful decorative features on Internet Explorer 6-9.

3. Patternify: Create beautiful CSS patterns.

4. CSS Compressor: Increase the loading speed and reduce the bandwidth of your webpages.

5. Spritemapper: Merge multiple web pages into one.

6. EzxtractCSS: Extract ids, classes and inline styles from an online HTML document into a CSS stylesheet.

7. Tridiv: Use this to easily create 3D CSS shapes.

8. SkyCSS Tool: This tool allows you to create CSS classes, while almost completely avoiding manuscript code.

9. Prefixmy CSS: An easy way to prefix CSS code.

10. Responsive Web CSS: This web-based tool will allow you to create a responsive layout skeleton with drag and drops.

11. CSS Form Generator: Create nice-looking layout for your forms.

12. Sencha Animator: Create animated images, text and design buttons with emebedded analytics and gradients.

13. Buttons: Create highly customisable, modern and flexible web buttons.

14. CSS Patterns Gallery: This website displays creative patterns using CSS3.

15. CSS Menu Maker: Use this tool if you need to create custom CSS drop down menus easily.

10 Ways You Can Use Linux to Fix Your Windows PC

Even though you may not want to use Linux as your desktop, you can use it to save your Windows PC—for resetting passwords, recovering deleted files, or scanning for viruses. Let’s see how you can do it in the article below.

Linux, Windows PC, Ways, Boot, System, Desktop, Viruses, Files, Ubuntu, Computer, Recovering, Deleting




As cited on howtogeek.com, here are ten ways of doing it -

1. Making Your Ubuntu Live CD - The first step that you can take is to create your own Ubuntu Live CD and as you can only burn an ISO image to a disc, you can try making a customized live CD through a reconstructor that may have custom applications that aren’t there by default.

2.Alternate: Making Your Ubuntu Live USB - As carrying around a CD might not always be the most convenient thing, you might want to also make an Ubuntu Live USB that is nothing more than a flash drive which has a copy of Linux installed on it. You can also make a persistent Ubuntu flash drive for saving your settings.

3.Changing or Resetting Your Password – One of the simplest ways to use Linux to fix Windows is while trying to recover a forgotten password. You simply need to boot it up and run a few commands, and your password will be reset.

4.Diagnosing Windows or Hardware Problems – There are many ways to use Ubuntu to diagnose hardware issues. Simply boot off the Live CD, and start running some applications and test out all the hardware from a working Linux environment. If the system functions well in Linux, the problem is probably a Windows, virus, or driver issue.

5.Cloning Your Hard Drive – For simply replacing your hard drive with a new one, or simply creating a backup of your entire system, you can make use of the Ubuntu Live CD to make a clone of your drive, make a drive image, or even transfer that drive image across the network to another computer for safekeeping.

6.Recovering Data - You don’t require to go to school for becoming a forensics expert, you can use the Ubuntu Live CD to do and add it on your CV to earn extra brownie points.

7.Recovering Deleted Files - You can utilize an Ubuntu Live CD for recovering the files with a couple of keystrokes from the terminal and get yourself back in business instantly.

8.Scanning Your Windows PC for Viruses - Utilizing a host of very good antivirus applications that have Linux versions these day you can remove viruses in little time. You simply need to go into the Synaptic package manager, search for Avast, and install it into the live cd session.

9.Securely Wiping Your PC’s Hard Drive –For ensuring your hard drive is clean, you can make use of the Ubuntu Live CD to wipe the drive. This wipe will be secure, with every bit of data overwritten to ensure no one can recover anything.

10.Repairing Damaged Backup CDs – If you have a backup CD that is too scratched up to read very well, you can utilize the ddrescue tool from the command line to recover as much information from that disc as possible. You can simply boot into the Live CD and follow through the guide for recovering some files.


5 Reasons That May Make You Dump MySQL

When it comes to database management systems, MySQL has ruled the roost for a long time. It is still ruling, but the popularity has definitely faded since it came under Oracle in 2009. Open source database MariaDB is often seen to be the chief competitor for MySQL and more and more developers are choosing this new DBMS over MySQL regularly.

MySQL, DMBS, MariaDB, PostgreSQL, LPGL, GPL, news, Fedora, Red Hat, Red Hat Enterprise Linux, openSUSE, Oracle, Sun Microsystems, database management systems




1. MySQL isn’t mature enough: Since it didn’t start out as a relational database management system, older ones like PostgreSQL and even closed source Microsoft SQL Server and Oracle are considered to be more feature rich.

2. While MySQL is an open source database, many say that it doesn’t feel like one anymore. Since coming under Oracle’s banner, MySQL has closed source and proprietary modules. MariaDB is an open source alternative for MySQL. All code in MariaDB is under the LPGL, GPL or BSD licenses. So, it doesn’t have any closed source modules. On the contrary, it still has those features, but in an open source module.

3. Performance wise, MySQL seems to be failing to competitors. It’s chief competitor, MariaDB has been seen to be ahead on benchmark results. In fact, the MariaDB blog has benchmark results showing that it is ahead of MySQL, even if only by a little bit. Also, PostgreSQL has also added features that make some developers opt for it instead of MySQL.

4. While an open source platform should be driven by the community, MySQL is owned by Oracle. As a result of this, many developers choose to use MariaDB as they aren’t sure of the future of My SQL and Oracle doesn’t provide a public roadmap, not does it take patches from the community. Being built on MySQL, MariaDB is also faster and more stable.

5. The Red Hat Enterprise Linux already ships with MariaDB. In addition, Fedora has also announced that it would be moving to MariaDB. On the other hand, popular Linux-based distro openSUSE has also made the same announcement in January 2013.

Further, the Wikimedia Foundation has also supported MariaDB, which is a huge boost for the comparatively new database management system.

25 Free HTML5 Templates That Designers Can Use!

Responsive HTML5 templates are those that can automatically adapt a layout based on the viewing environment being used. It does this by using proportion-based grids, CSS3 media queries and flexible images. They act as tools for web designers to create innovative designs on websites with interactive drag and drop menus, video and audio canvas elements and other features. Here are 25 such tools that you can use for your designing purposes.

HTML5, HTML5 tools, HTML5 tips, HTML5 templates, Chrome, Firefox, Internet Explorer 9, HTML5 designs, HTML5 resources, learn HTML5, HTML5 made easy




1. Organic

2. Presentable Free Template

3. Strongly Typed

4. Tessellate

5. Prestigious

6. Agency

7. Ascend

8. Liquid Gem

9. Retina Responsive

10. Mori Dark

11. Overflow

12. Helios

13. Responsive Wedding

14. Curve

15. Free Responsive BootStrap Template

16. Appstore Responsive Mobile Website Template

17. Golden Gate App

18. Digy Responsive HTML5 Theme

19. Colorzied

20. zBoom Music

21. Century

22. Food Photographer

23. Royale Free HTML5 Template

24. Online Media Responsive Template

25. Particular Free HTML5 Template

Getting Top 10 Files/Directories On Ubuntu Linux

Ubuntu Linux comprises of a rich set of commands to manipulate and access files. The du utility provides information on disk usage, and the sort utility on sorting results. Ultimately, those results can be run using the head command that offers you the top 10 lines outputted via other command. You can chain the commands together for getting the output that you desire.

Linux, Ubuntu, Directories, Files, Commands, Output, Sorting, Files, Directories, Chain




As stated on howtogeek.co, firstly we’ll utilise the du -sm command to provide the results in MB:

$ du -sm *
1 wp-config-sample.php
1 wp-config.php
14 wp-content
1 wp-feed.php
—- trimmed —

Now the results can be seen aren’t sorted and we can sort them using the sort -nr command that sorts by numerical value in reverse. Finally, the results can be run through head -10 for getting the top 10 results:

This is the command that is going to run:

du -sm * | sort -nr | head -10
Below is an example of the output:
$ du -sm * | sort -nr | head -10
14 wp-content
2 wp-includes
1 xmlrpc.php
1 xml.php
1 x.php
1 wp-trackback.php
1 wp-settings.php
1 wp-rss2.php
1 wp-rss.php
1 wp-register.php

9 RSS Feeds Java Developers Must Know

RSS feed offers web readers the freedom to select from a bulk of information that is present across the Internet. Though there are ways to opt for it, it’s not simple to decide which RSS feed one must subscribe and/or NOT subscribe.

RSS, Java developer, Subscribe, Readers, Software, Feed, Martin Fowler, Coding Horror, DZone, Webappers




Here are the top nine feeds that are ideal for a Java Developer-

1. MartinFowler.com – He is a well-known author, software consultant and speaker. His blog on software technology is an essential read for any software developer. For further information you can visit - RSS – MartinFowler.com RSS Feed

2. Coding Horror – This is a very popular RSS feeds used by over 115,000 RSS readers. People with interest in programming or those who are beginning into the field of programming must visit the site as it offers various kinds of information. For further information you can visit - RSS - Codinghorror RSS Feed

3. DZone – This is for web developers and programmers and is the most helpful technical site for developers with over 20,000 subscribers to Dzone RSS feeds with over 1000 users being found in the new links section. For further information you can visit - RSS - DZone Front Page RSS Feed

4. Webappers – This is a blog for open source projects and developers. It has over 16,000 regular readers who are web designer or developers. The website has over 27,437 RSS subscribers. For further information you can visit - RSS - WebAppers RSS Feed

5. Digg.com – This is a very popular bookmarking site and it does offer RSS in the field of technology with no hired editors for the articles. It promotes the user's stuff and determines its content. For further information you can visit - RSS - Digg Technology RSS Feed

6. Oracle Technology Network for Java Developers [formerly known as Sun Developer Network (SDN) ] - This website offers latest resources for Java developers. It allows you to access information in three different categories of interest - Java technology highlights, Java ME Technology and Solaris Technology highlights – which are all XML based news feed categories. For further information you can visit - RSS - Sun Developer Network RSS Feed

7. IBM's DeveloperWorks - IBM offers tutorials and technical resources for Java students and developers. The RSS feeds are offered for information management products, Lotus products, Rational products, Tivoli products, Websphere products and IBM software products. For further information you can visit - RSS - DeveloperWorks RSS Feed

8. O' Reilly On Java - The website was set up in 2000 and it offers news about the latest innovations in Java along with quality code snippets. It has a number of Java based coding examples. It offers news in a number of sections including Java and XML, Java IDE Tools, security, SysAdmin, servlets, open source, P2P, web services and wireless Java. For further information you can visit - RSS - OnJava RSS Feed

9. Reddit Programming - Reddit is another popular bookmarking website, just like digg.com. It. Its programming feed contains some of the interesting articles related to Java. For further information you can visit - RSS - OnJava RSS Feed

8 Resources For Developing Apps For Mozilla's Firefox OS

Non-profit organisation Mozilla recently came up with the Firefox OS, named after its popular internet browser Firefox. The OS has been developed to run on smartphones and tablets and is currently running on the ZTE Open and GeeksPhone Peak+ smartphones. In addition, the OS is also expected to be running on Smart televisions soon.

The OS competes with Google’s Android, Apple’s iOS, Microsoft’s Windows Phone and other mobile operating systems like Jolla’s Sailfish OS. It is based entirely on open standards and uses HTML5, JavaScript etc. There are certain resources that you will need in order to develop apps for the Firefox OS. Here are eight that may be of help to you.

Mozilla, Firefox OS, Android, iOS, Windows Phone, Sailfish OS, Jolla, Google, Apple, Microsoft, open source, app development, Firefox OS apps




- Firefox OS simulator: Use this to test your apps on the OS.

- Boilerplate app: Use this to check the usage of the WebAPI.

- IndexDB: This is how you can store data in the user’s browser.

- App Manifest: This teaches you how to create a manifest file that lets your apps talk to the web browser.

- App Manager: Get in depth control of the debugging and deployment of HTML5 apps.

- You need to make cross domain requests by making the app Privileged (or Certified).

- Firefox OS Style Guide: This is the style guide for the Firefox OS that you can use for colours etc.

- Firefox OS design principles: This is a description of the design philosophy used in the OS.

25 Open Source Alternatives For Costly Applications!

Over the years, it has been observed the prices of proprietary software have been rising year to year. Many software that were known to be pricey have switched to a software as a service (SaaS) pricing model. This appears less costly as it is based on a monthly subscription than a fee.

Software, Proprietary, Open source, SaaS, Subscription, Projects,  Tools, OS, Accounting, Price, XIWA




There are also some proprietary software that have seen a dip in price this year with some becoming free. Here is a list of open source software projects that can replace very expensive software. Let’s take a look at 25 under various heads below.

Accounting

1. Edoceo Imperium – This is for Quick Books Pro costing $249.95 or $12.95 per month and Sage Peachtree Complete Accounting costing $379.99 and up. It is a Web-based application that tracks quotes, work orders, invoices, contacts, customers and vendors. It also offers double-entry accounting capabilities and can be integrated with Google Calendar and other apps. It does not require an OS. You can download it from here

2. FrontAccounting – This is for QuickBooksPro costing $249.95 or $12.95 per month) and Sage Peachtree Complete Accounting costing $379.99 and up. It has both accounting and basic ERP planning that are ideal for small businesses supporting various languages and currencies and also many businesses. It is Operating System independent. You can download it from here

3. TurboCASH – This is for QuickBooksPro costing $249.95 or $12.95 per month and Sage Peachtree Complete Accounting costing $379.99 and up. This is another accounting package made for SMBs. It features stock control, general ledger, accounts receivable and payable, reporting and analysis capabilities. It works on Windows. You can download it from here

4. XIWA – This is for QuickBooksPro costing $249.95 or $12.95 per month and Sage Peachtree Complete Accounting costing $379.99 and up. It is a Linux-based accounting program that has been around since 1999. It has multi-user support, multi-company support, payroll, stock/investment tracking, reporting and more. You can download it from here

Audio Recording/Editing

5. Audacity – This is for Apple LogicPro costing $199.99 and FL Studio Producer Edition costing $199. It permits amateur musicians in recording and editing multi-track recordings. Its latest version comes with an improved reverb tool and the ability to record computer playback and many new commands, which simplify the editing process. It works on Windows, Linux, OS X.

You can download it from here

6. Frinika – This is for Apple LogicPro costing $199.99 and FL Studio Producer Edition costing $199. It is Java-based. It is not very advanced as some other options, but has a sequencer, midi support, soft synthesizers, audio recorder, piano roll/tracker/notation editing and more. It is Operating System Independent. You can download it from here

7. Linux MultiMedia Studio – This is for AppleLogicPro costing $199.99 and FL Studio Producer Edition costing $199. It makes it quite simple to compose and/or produce your own music and comes with a song editor, beat+bassline editor, piano roll, 64-channel FX mixer, standards support and more. It works on Windows and Linux. You can download it from here

Business Intelligence

8. Jaspersoft – This is for Oracle Business Intelligence Standard costing $5,000+, Microsoft Dynamics costing $27,150 or $178 per month per user) and IBM Cognos Express costing $25 per user per month and up. It is an open source and popular business intelligence software. It is Operating System Independent. You can download it from here

9. Jedox – This is for Oracle Business Intelligence Standard costing $5,000+, Microsoft Dynamics costing $27,150 or $178 per month per user) and IBM Cognos Express costing $25 per user per month and up. It offers planning and forecasting, reporting and analysis, sales management, procurement management and project management. It is Operating System independent. You can download it from here

10. Pentaho – This is for Oracle Business Intelligence Standard costing $5,000, Microsoft Dynamics costing $27,150 or $178 per month per user and IBM Cognos Express costing $25 per user per month and up. It provides a range of commercial analytics and big data products with Lufthansa, Telefonica and Marketo as its clients. It works on Windows, Linux and OS X. You can download it from here

Business Process Management

11. ProcessMaker – This is for IBM Business Process Manager Express costing $45,100 and up. It's available in paid cloud, on-premise enterprise and SugarCRM editions. It also has a free community version. It works on Windows and Linux. You can download it from here
CAD

12. BRL-CAD – This is for AutoCAD costing $4,195 and up. It is used by the U.S. military for over twenty years. It is a solid geometry modeling and editing package having over 400 tools, utilities, and applications assisting with design and analysis of vehicles, mechanical parts, and architecture. It also has radiation dose planning, medical visualization and education. It works on Windows, Linux, OS X and others. You can download it from here

13. FreeCAD – This is for AutoCAD costing $4,195 and up. It is a parametric modeling tool made with mechanical engineers and product designers in mind. It supports many industry-standard CAD file formats. It works on Windows, Linux, OS X and others. You can download it from here

14. Archimedes – This is for AutoCAD costing $4,195 and up. It is a Java-based bare-bones CAD system idea for certain architects and students. It works on Windows, Linux and OS X.
You can download it from here

Customer Relationship Management

15. Sugar Community Edition – This is for Sage ACT! costing $269.99 and up, Microsoft Dynamics CRM costing $65 per user per month and up and Oracle CRM on Demand costing $75 per user per month and up. It has millions of users that include personnel at Coca-Cola, Chevrolet, Men's Warehouse, ThyssenKrupp System Engineering and others. It is independent of Operating System. You can download it from here

16. vTiger – This is for Sage ACT! costing $269.99 and up, Microsoft Dynamics CRM costing $65 per user per month and up and Oracle CRM on Demand costing $75 per user per month and up. It has over 10,000 customers. It is aimed at assisting enterprises "get organized, grow sales, boost marketing ROI, and deliver delightful customer experiences." It works on Windows, Linux, iOS and Android. You can download it from here

17. Orange Leap – This is for Sage ACT! costing $269.99 and up. It is ideal for non-profits and aimed at creating managing contacts especially fundraising contacts simpler. It works on Windows. You can download it from here

18. SourceTap – This is for Sage ACT! costing $269.99 and up, Microsoft Dynamics CRM costing $65 per user per month and up and Oracle CRM on Demand costing $75 per user per month and up. It is created basically for sales team members offering lead, account and opportunity management tools. It works on Windows and Linux. You can download it from here

19. SplendidCRM – This is for Sage ACT! costing $269.99 and up, Microsoft Dynamics CRM costing $65 per user per month and up and Oracle CRM on Demand costing $75 per user per month and up. Its latest version of Splendid has a new survey model, 42 new standard reports, Google Apps Sync, an HTML5 calendar and more. It works on Windows. Click here

20. ConcourseSuite – This is for Sage ACT! costing $269.99 and up, Microsoft Dynamics CRM costing $65 per user per month and up and Oracle CRM on Demand costing $75 per user per month and up. It is a Java-based apps that is aimed at providing a 360° view of your customer, tracking leads, opportunities, marketing and customer support functions. It works on Windows, Linux and OS X. Click here

Database

21. MySQL – This is for Microsoft SQL Server standard costing $898 and up. It is used by organizations including Facebook, Google, Adobe, Alcatel Lucent and Zappos. It has been for a long time among the most popular databases for use with the Web offering scalability, flexibility, high performance and more. It works on Windows, Linux, Unix and OS X. Click here

22. Firebird – This is for Microsoft SQL Server standard costing $898 and up. It was launched in 1981 and is a mature SQL database boasting cross-platform support, multi-generation architecture, logging and monitoring capabilities, great security and more. It works on Windows, Linux, Unix, OS X and Solaris. Click here

23. Kexi – This is for Microsoft Office Access 2013 costing $109.99 and FileMakerPro12 costing $299. Kexi has a familiar set of desktop database features. Notable capabilities include full visual designers for tables, queries and forms; support for parameterized queries; support for object data; lookup columns; advanced import tools and more. It works on Windows, Linux and OS X. Click here

Desktop Publishing

24. Scribus – This is for InDesign CS5 costing $19.99 per user per month and up, QuarkXPress costing $849 and Microsoft Publisher costing $109.99. It is a professional-caliber page layout program performing color separations, CMYK and spot colors, ICC color management, PDF creation and more. It works on Windows, Linux and OS X. Click here

25. MiKTeX – This is for InDesign CS5 costing $19.99 per user per month and up, QuarkXPRess costing $849 and Microsoft Publisher costing $109.99. It is a publishing solution for making scientific and mathematical text look beautiful. It works on Windows and Linux. Click here

20 Free Ebooks On PHP And MySQL!

Learning PHP and MySQL is almost a basic part of every web developer's skill set nowadays. If you want to built a website, you will be using either of these for sure. Moreover, they serve a lot of different purposes. The problem most face though is in finding the right resources.

PHP, MySQL, CSS, PHP ebooks, MySQL ebooks, CSS Ebooks, free ebooks, free ebooks on PHP, PHP free ebooks, MySQL free ebooks, free ebooks on PHP My SQL, free ebooks on CSS




While resources on both these platforms are plenty, they can sometimes be hard to trace. So, having said that, we bring you 20 of the best free ebooks you will find on PHP and MySQL. There's a little bit of CSS here and there too!

PHP 6 and MySQL 5

Beginning PHP6, Apache, MySQL Web Development

PHP 6 Fast and Easy Web Development

PHP 6/MySQL Programming for Absolute Beginner

PHP5 And MySQL Bible

PHP5 For Dummies

PHP5 Power Programming

Beginning Php5 Apache And Mysql Web Development

Professional Lamp Linux Apache Mysql Php5

Beginning PHP and MySQL

Core PHP Programming - Using PHP to Build Dynamic Web Sites

Core PHP Programming Third Edition Leon Atkinson

PHP and MySQL Web Development All in One

PHP Solutions Dynamic Web Design Made Easy

Head First! PHP and MySQL

MySQL PHP Database Applications

MYSQL PHP Database Applications Second Edition

PHP5 For Dummies

PHP and MySQL for Dummies Second Edition

Learn PHP, MySQL and CSS

New To Java Programming? Here Are Some Fundamentals To Keep In Mind

The fundamentals of any programming language are core for acquiring an edge in the future. Hence mastering it may require time but it is best to start late than to end in a dead end. Java is one programming language, which needs a strong foundation and practice of the concepts.

As cited on udemy.com, here are some basic concepts that you should know if you want to be successful in Java or any other programming language-

Fundamentals, Programming, Language, Core, Variables, Operations, Classes and Objects, Fields, Methods, Constructors, Concepts




1. Variables – Most computer programs read data from one point, process the data, and then write the data at other place that include the computer monitor or a database file on the hard drive. In most programming languages, data is kept in variables of X and Y and a host of other variables. Once you start making Java programs, you must declare variables, assign values and execute operations with the use of the variables.

2. Operations – Just like a calculator, Java programs make use of operators (+, -, *, /, ?, etc) to work with the variables in your program. These can be used for assigning value to variables, performing mathematical functions, and creating new objects based on variables. Operators are utilized in conditional logic statements like for loops, while loops, if statements, switch statements, and method calls.

3. Classes & Objects - Classes are structured for grouping variables and operations together in coherent modules. They have fields, constructors and methods along with other attributes. Objects are specific instances of a class. An apt example to understand classes and objects is to relate it to cars as it has all possible cars within it. Since all cars have similar features like four wheels, an engine, a transmission, seatbelts, a steering wheel, etc. Once you have created an object, it is an example of a car and by default takes all of its attributes. This is called inheritance.

4. Fields – This is a variable belonging to a class or object. For example, the Car Class can define a field called brand. All Car objects will contain this brand field, but the field value can be different for each instance of the class. This permits Car objects to be distinct from each another with the same basic attributes inherent to all cars.

5. Constructors – This is a special type of method that is executed once an object has been created. Its sole aim is to assign values to the fields which are specific to that particular instance of the object. For example, if you are making a car object, you might need to tell the program the brand of your car, the colour, its speed, and direction.

6. Methods – This is a group of operations that carry out certain function together. Methods benefit from another object-oriented programming concept known as Encapsulation. For example, if there is a method for speeding up the car. The driver only knows that by pressing the gas pedal the car goes faster. He is not bothered about how the car moves faster. Encapsulation refers to the internal workings of a particular method which are hidden from the remainder of the program and other methods within the program. Methods are those that really perform the “work” in your programs.

Top 10 Most Notorious Hacker Groups Ever!

Yes, a 'hacker' is a person who has extraordinary knowledge of computers and is skilled at exploiting weaknesses in computer networks. Yes, it is not the perfect definition, but the basic idea is, the 'term' hacker doesn't automatically mean criminal. While some are activists (hacktivists), others are ethical. Then there are those who do use their skills for criminal activities. In any case, one thing that is certain is that a hacker is a person who possesses extraordinary grasp over computers and deserves some respect for the same. When a few of them get together, well, that is indeed a scary proposition!

Here are the 10 most notorious hacker groups to have ever touched a keyboard.

hackers, LolzSec, Anonymous, top hackers, top hacker groups, best hacker groups, FIFA, Drew Barrymore, Wimbledon, Anonymous, Masters of Deception, Pentagon,





1. Chaos Computer Club: This group made a name for itself by hacking the Bildschirmtext computer in Germany and taking 134,000 Deutsch Marks from a bank in Hamburg. They did this to prove that the security system was flawed and returned the money they took the next day. They also protested against the French nuclear testing using hacking, by exposing a Trojan horse spyware device being used by the Germany government. The group was formed on 12 September 1981 in Berlin.

2. Global kOS: Pronounced Global Chaos, this group created as much of it as they could, that too on a global scale. Their members included AcidAngel, Shadow Hunter, The Assassin etc. and the group has been credited with providing a number of automated hacker tools to the world. One of the most famous out of these tools was ‘Up Yours’, which was used to bring down the websites of 40 politicians, MTV and the Ku Klux Klan. There are also tools like kOS crack and BattlePong.

3. The Level Seven Crew: This hacker crew took its name from the seventh level of hell, as depicted in Dante’s Inferno. In this, the seventh level is ‘the violent’ level. In 1999, the first crew hacked into 60 high profile computer systems. These included names like NASA, Sheraton Hotels and The First American National Bank. They are believed to be the first group to have hacked into a Moroccan domain. The group was known for their hacktivism and disbanded in 2000.

4. globalHell: This group was co-founded by Patrick Gregory, a street-gang member from Houston, Texas. It has been said to be behind the destruction of data on 115 websites, information trafficking and millions of dollars worth of damages. Ironically, Gregory had turned towards computers to escape his gang life. Rather, he ended up creating a 60 member crew of hackers, who treated the internet like their streets and wreaked havoc.

Gregory’s crew has also been credited with online extortion and defacing the United States Army’s website when they wrote “global hell will not die”, on it. Interestingly, Chad Davis, another co-founder for the group, was arrested in 1999 and sent to prison for six months, along with a fine of $8,054, became an independent security consultant later.

5. TeaMp0isoN: This group was started in 2010 by a 16-year-old hacker with the alias TriCk. TeaMp0isoN was responsible for hacking into NATO, Facebook and the English Defense League. In addition, this group stole personal data from Tony Blair by hacking into his email account. They also attacked Research In Motion, the company that developed the BlackBerry, in 2011, by defacing their blog. They did this because the company planned to help the police during the England riots that year. The group wrote on the blog, “We are all for the rioters that are engaging in attacks on the police and government.”

6. Network Crack Program Hacker Group: NCPH was formed in China in 1994. It is led by Tan Dailin (screen name Wicked Rose), who is said to be working for the Chinese army. While the size of the crew is unknown, it is said to be consisting of 10 members, with Dailin and three others at the top.

The GinWui rootkit, created by Wicked Rose, was used in attacking the US Department of Defense in 2006. According to Wicked Rose, NCPH has a sponsor who pays them for their activities. This benefactor is believed to be the People’s Liberation Army.

7. LulzSec: With the motto, “Laughing at your security since 2011,” Lulzsec is credited with attacking Fox.com, an X-Factor database, Sony, FBI and CIA. The group has caused damages worth billions of dollars. The group exposed the contact information for 73,000 contestants when they hacked the X-factor database. Important members of LulzSec were arrested in 2012 by the FBI. They were turned in by the group’s leader Sabu. But LulzSec reappeared within three months, hacking a singles in military dating website, claiming that the crew has been ‘reborn’.

8. Masters of Deception: This group was formed in 1989 and played rival to Legion of Doom, a Texas-based hacker group. The two were bitter rivals, who always tried to stay ahead of each other. This later turned into an all out war with class and racial overtones being added to the fray.

The group carried out an attack, which has been called one of the most extensive thefts of computer information ever known. The top five members of the group were arrested by the Secret Service eventually and charged with computer tampering, computer and wire fraud, illegal wiretapping, and conspiracy. They all pleaded guilty.

9. Milw0rm: This hacktivist group was formed on 3 June 1998 and made the Bhabha Atomic Research Center in India their primary target. The group took 5 MB of classified files related to India’s last five nuclear tests and deleted data from two servers. It also posted anti-nuclear messages on the website. Milw0rd also hacked into the website of web hosting company EasySpace and posted an anti-nuclear message on 300 websites, including those of Wimbledon, FIFA World Cup, Drew Barrymore and the Saudi Royal Family.

10. Anonymous: Not much needs to be said about this group. It is perhaps the most famous and notorious of all hacker groups ever. The group has attacked the Pentagon, threated to take down Facebook and threatened Los Zetas, the Mexican drug cartel. In addition, it has also declared a war against Scientology. They go by the motto, “We are Anonymous. We are Legion. We do not forgive. We do not forget. Expect us.”

Syntax Differences Between C++ And Java

Are you having a tough time differentiating between C++ and Java? Do you keep using the semicolon when you're not supposed to? While the two languages are similar, there are certain syntactical differences that can be confusing. Here’s something that will come in handy.

C++, Java, java programming, C++ programming, programming tips, C++ Java difference, C++ syntax, Java syntax, Java C++ syntax difference, Java tips, C++ tips, tech news, news




The main function

C++

int main( int X, char* Y[])
{
printf( "Hello, world" );
}

Java

Every function in Java has to be made a part of a class. So, the main function also has to be a part of a class. Moreover, in Java there is one main() function for every class. This can come in handy when writing unit tests for the class.

class HelloWorld
{
public static void main(String X[])
{
System.out.println( "Hello, World" );
}
}

Compiling

C++

In C++, you will be compiling as,

g++ X.cc -o outfile

This will then be run with,

./outfile

Java

In Java, you will compile the classes in X.java.

javac X.java

You have to run this by invoking the static main method.

Class declarations

While C++ requires a semicolon at the end of class declarations, Java does not have any such requirement.

C++

class X{};

Java

class X{}

Method declarations

A method declaration in Java must be a part of a class always. Otherwise, both the languages are quite the same syntactically on this front. You can also use the public, private and protected access specifications in Java.

Constructors and destructors

In the case of constructors, the syntax in both C++ and Java is the same. Java though has no exact replacement for destructors.

Static members

Static members (variables and functions) are also declared in the same way in both the languages. But, Java allows for static initialisation blocks in order to initialise static variables.

class Foo
{
static private int x;
// static initialization block
{ x = 5; }
}

Scoop static namespaces and methods

C++

In C++, you will use the Class::method form in order to scoop static methods.

class MyClass
{
public:
static do();
};

Use this by,

MyClass::do();

Java

In Java, on the other hand, scooping comes with the use of the .again parameter. This is similar to accessing the fields of a class.

class MyClass
{
public static do()
{
// do something
}
}

To use the static method.

MyClass.doStuff();

Object declarations
C++

// on the stack
myClass x;

// or on the heap
myClass *x = new myClass;

Accessing fields from various objects

C++

In order to access fields from classes and other such objects, the programmer has to use dots.

myClass x;
x.field;

If a pointed is involved, then the narrow operator (->) has to be used.

myClass x = new MyClass();
x->field;

Java

In Java, only the dot is used. Since we always use references in Java, even pointers are accessed using the dot.

myClass x = new MyClass();
x.field;

Protection levels

They are specified in a different manner.

C++

public:
void X();
void Y();

Java

public void X();
public void Y();


Virtual functions

C++

virtual int X();

Virtual functions can also be used non virtually. You can simply say into X().

Java

int foo(); // or, final int foo();

In Java, functions are always virtual by default. You use ‘final’ in order to avoid them from being overridden.

Abstract Classes

C++

All you need to do is include public virtual functions./

class X{ public: virtual void X() = 0; };

Java

In Java the syntax allows the programmer to be explicit.

abstract class X{ public abstract void X(); }

If you want to specify an interface, then say,
interface X{ public void foo(); }

In that case though, you will have to implement it by,
class Y implements X
{
public void M() { /* do something */ }
}

Memory management

This is also pretty much the same in both the languages, except that Java has garbage collection, so no delete for Java.

500 Free eBooks On Programming!


500 Free eBooks On Programming!

Searching for a free ebook on programming? Look no more, here's bringing to you 500 ebooks for all your programming needs!
 
Here we bring to you an uncategorized list ebooks on programming which are available for free download. The list covers books on all major programming languages including Ada, Assembly, C, C#, C++, CGI, JavaScript, Perl, Pascal, Haskell, Java, Lisp, PHP, Prolog, Python, Ruby, and many more. It also includes books on game programming and software engineering. So scroll down, pick, download, read and have fun!
001. The Design Patterns Java Companion
       James W. Cooper |
       Published in 1998, 218 pages
002. Thinking in Enterprise Java
       Bruce Eckel et. al. | MindView, Inc.
       Published in 2003
003. The Ugly JavaScript Book
       John H. Keyes |
       Published in 2001
004. Maven: The Complete Reference
       Tim O'Brien, at al. | Sonatype, Inc.
       Published in 2010
005. PHP with Guru99
       Krishna Rungta | Smashwords
       Published in 2013, 151 pages
006. Mr. Neighborly's Humble Little Ruby Book
       Jeremy McAnally |
       Published in 2006, 147 pages
007. Ada Programming
        | Wikibooks
       Published in 2007, 242 pages
008. Java Persistence
       James Sutherland, Doug Clarke | Wikibooks
       Published in 2012, 130 pages
009. Java Testing and Design
       Frank Cohen | Prentice Hall PTR
       Published in 2004, 544 pages
010. Practical Smalltalk: Using Smalltalk/V
       Dan Shafer, Dean A. Ritz | Springer
       Published in 1991, 251 pages
011. Ada 95: The Lovelace Tutorial
       David A. Wheeler | Springer
       Published in 1996, 293 pages
012. Starting FORTH
       Leo Brodie | FORTH, Inc.
       Published in 2009, 346 pages
013. Another tour of Scala
       David Copeland | naildrivin5.com
       Published in 2010
014. Python for Education
       Ajith Kumar | Inter University Accelerator Centre
       Published in 2010, 110 pages
015. The Haskell School of Music
       Paul Hudak | Yale University
       Published in 2012, 353 pages
016. More Servlets and JavaServer Pages
       Marty Hall | Pearson Education
       Published in 2001, 752 pages
017. Programming Windows Phone 7
       Charles Petzold | Microsoft Press
       Published in 2010, 1013 pages
018. Computer Science Logo Style
       Brian Harvey | The MIT Press
       Published in 1997, 1068 pages
019. Windows Phone 7 Developer Guide
       Dominic Betts, at al. | Microsoft Press
       Published in 2011
020. Programming Fundamentals: A Modular Structured Approach Using C++
       Kenneth Leroy Busbee | Connexions
       Published in 2011, 331 pages
021. Test-Driven Development with Python
       Harry Percival | O'Reilly Media
       Published in 2013
022. Learn Prolog Now!
       Patrick Blackburn, Johan Bos, Kristina Striegnitz | College Publications
       Published in 2006, 284 pages
023. 88 C Programs
       JT Kalnay | Smashwords
       Published in 2012, 296 pages
024. Ruby on Rails Tutorial: Learn Rails by Example
       Michael Hartl | Addison-Wesley
       Published in 2010
025. Picking Up Perl
       Bradley M. Kuhn | ebb.org
       Published in 2001, 66 pages
026. Creating a Simple 3D Game with XNA
        | Wikibooks
       Published in 2010
027. Java Enterprise Performance
       Alois Reitbauer, et al. | Compuware Corporation
       Published in 2012
028. The Oracle PHP Cookbook
       John Alphonse, Justin Kestelyn | Oracle
       Published in 2009
029. Industrial Strength C++
       Mats Henricson, Erik Nyquist | Prentice Hall
       Published in 1996, 244 pages
030. Non-Programmers Tutorial For Python
       Josh Cogliati | Wikibooks
       Published in 2005, 90 pages
031. Computer Science: Abstraction to Implementation
       Robert M. Keller | Harvey Mudd College
       Published in 2001, 627 pages
032. Sams Teach Yourself Java 2 in 24 Hours
       Rogers Cadenhead, Mark Taber | Sams
       Published in 1999, 429 pages
033. Foundations of Computer Science
       Lawrence C Paulson | University of Cambridge
       Published in 2000, 155 pages
034. Dive Into Python
       Mark Pilgrim | Apress
       Published in 2004, 413 pages
035. Standard ECMA-334 C# Language Specification
        | Ecma International
       Published in 2006, 553 pages
036. Smalltalk-80: The Language and its Implementation
       Adele Goldberg, David Robson | Addison-Wesley
       Published in 1983, 742 pages
037. Tcl and the Tk Toolkit
       John K. Ousterhout | Addison-Wesley
       Published in 2007, 142 pages
038. Do It Yourself Agile Kickstart
       Damon Poole | Valtivity
       Published in 2012, 31 pages
039. Standard C++ Library Reference
        | International Business Machines Corporation
       Published in 2005, 439 pages
040. Smalltalk: An Introduction to Application Development Using VisualWorks
       Trevor Hopkins, Bernard Horan | Prentice Hall
       Published in 1995, 413 pages
041. Apache Jakarta Commons: Reusable Java Components
       Will Iverson | Prentice Hall PTR
       Published in 2005, 360 pages
042. Scheme 9 from Empty Space
       Nils M Holm | Lulu Press
       Published in 2007, 130 pages
043. Python for Fun
       Chris Meyers |
       Published in 2004
044. Perl Programming
        | Wikibooks
       Published in 2012, 141 pages
045. Higher-Order Perl: Transforming Programs with Programs
       Mark Jason Dominus | Morgan Kaufmann
       Published in 2005, 592 pages
046. Conceptive C
       Harry McGeough | Smashwords
       Published in 2011, 172 pages
047. Silverlight for Windows Phone Toolkit In Depth
       Boryana Miloshevska | windowsphonegeek.com
       Published in 2011, 245 pages
048. Ruby Essentials
        | Techotopia
       Published in 2007
049. Algorithms for Programmers: Ideas and Source Code
       Jorg Arndt |
       Published in 2008, 990 pages
050. Practical PHP Testing
       Giorgio Sironi |
       Published in 2009, 61 pages
051. Java Swing Tutorial
       Jan Bodnar | ZetCode
       Published in 2011
052. Fundamentals of Computer Programming with C#
       Svetlin Nakov, et al. | Telerik Software Academy
       Published in 2013, 1132 pages
053. Creating Applications with Mozilla
       David Boswell, at al. | O'Reilly Media
       Published in 2002, 480 pages
054. Java Look and Feel Design Guidelines, 2nd Edition
       Sun Microsystems Inc. | Addison-Wesley Professional
       Published in 2001, 416 pages
055. Working With Objects
       T. Reenskaug, P. Wold, O.A. Lehne | Prentice Hall
       Published in 1996, 497 pages
056. why's (poignant) guide to Ruby
       why the lucky stiff |
       Published in 2008
057. Python 2.5 Quick Reference
       Richard Gruet |
       Published in 2007, 42 pages
058. Introduction to Software Development
       J. P. Lopez, L. R. i Xirgo | Eureca Media
       Published in 2010, 379 pages
059. Java: The Fundamentals of Objects and Classes
       David Etheridge | BookBoon
       Published in 2009, 92 pages
060. Financial Numerical Recipes in C++
       Bernt Arne Ødegaard |
       Published in 2007, 262 pages
061. x86 Disassembly
        | Wikibooks
       Published in 2008, 151 pages
062. Haskell: Functional Programming with Types
       Joeri van Eekelen, et al. | Wikibooks
       Published in 2007, 290 pages
063. The Psychology of Menu Selection
       Kent L. Norman | Ablex Publishing Corporation
       Published in 1991, 368 pages
064. JavaScript Essentials
       Neil Smyth | Techotopia
       Published in 2007
065. The Art and Craft of Programming: Python Edition
       John C. Lusth | The University of Alabama
       Published in 2012, 115 pages
066. Java Structures: Data Structures in Java for the Principled Programmer
       Duane A. Bailey | McGraw-Hill
       Published in 2007, 542 pages
067. Programming in Java Advanced Imaging
        | Sun Microsystems, Inc.
       Published in 1999
068. Zend Framework: Surviving The Deep End
       Pádraic Brady |
       Published in 2009, 37 pages
069. Scala for the Impatient
       Cay Horstmann | Addison-Wesley
       Published in 2011, 113 pages
070. GUI Programming with Python: QT Edition
       Boudewijn Rempt | OpenDocs, LLC
       Published in 2002
071. Programming Languages at a Glance
       Andreas Hohmann | Minimal Programming
       Published in 2003, 324 pages
072. Python for Informatics: Exploring Information
       Charles Severance | PythonLearn
       Published in 2010, 220 pages
073. Mobile Developer's Guide to the Parallel Universe
        | Wireless Industry Partnership
       Published in 2012, 104 pages
074. The Definitive Guide to symfony
       Fabien Potencier, François Zaninotto | Apress
       Published in 2007, 425 pages
075. Object-Oriented Reengineering Patterns
       S. Demeyer, S. Ducasse, O. Nierstrasz | Elsevier Science
       Published in 2008, 360 pages
076. Upgrading Microsoft Visual Basic 6.0 to Microsoft Visual Basic .NET
       Ed Robinson, Robert Ian Oliver, Michael Bond | Microsoft Press
       Published in 2002, 547 pages
077. The Scheme Programming Language, 4th Edition
       R. Kent Dybvig | The MIT Press
       Published in 2009, 504 pages
078. Object Oriented Software in Ada 95, Second Edition
       Michael A. Smith |
       Published in 2001, 446 pages
079. Python Cookbook
       David Beazley, Brian K. Jones | O'Reilly Media
       Published in 2013, 708 pages
080. Big Fat Rails
       Mitch Guthrie | bigfatrails.com
       Published in 2012, 53 pages
081. The Black Art of Programming
       Mark McIlroy | Blue Sky Technology
       Published in 2013, 672 pages
082. Machine Language for Beginners
       Richard Mansfield | Compute! Publications
       Published in 1987, 350 pages
083. The Software Development Book
       Mark Watson |
       Published in 2009
084. So You Want to Learn to Program?
       James M. Reneau | CreateSpace
       Published in 2010, 380 pages
085. Ada 95 Reference Manual
       Tucker S. Taft, Robert A. Duff | Springer
       Published in 1997, 526 pages
086. HTTP Programming Recipes for C# Bots
       Jeff Heaton | Heaton Research, Inc.
       Published in 2007, 628 pages
087. GPU Gems 3
       Hubert Nguyen | Addison-Wesley Professional
       Published in 2007, 1008 pages
088. Taligent's Guide to Designing Programs
        | Taligent Press
       Published in 1994, 152 pages
089. Foundations of Programming: Building Better Software
       Karl Seguin | CodeBetter.Com
       Published in 2007, 79 pages
090. Hacking Secret Ciphers with Python
       Al Sweigart |
       Published in 2013, 436 pages
091. PHP 5 Power Programming
       Andi Gutmans, Stig Bakken, Derick Rethans | Prentice Hall PTR
       Published in 2004, 720 pages
092. Revisiting C#
       Anoop Madhusudanan | amazedsaint.com
       Published in 2011, 33 pages
093. MacRuby: The Definitive Guide
       Matt Aimonetti | O'Reilly Media
       Published in 2010
094. COBOL: A self-instructional manual
       James A. Saxon | Prentice-Hall
       Published in 1963, 190 pages
095. The Java Web Services Tutorial
       Eric Armstrong, et al | Pearson Education
       Published in 2005, 457 pages
096. The Java Language Specification, 3rd edition
       James Gosling, Bill Joy, Guy Steele, Gilad Bracha | Prentice Hall PTR
       Published in 2005, 684 pages
097. Michael Abrash's Graphics Programming Black Book
       Michael Abrash | Coriolis Group Books
       Published in 2001, 1342 pages
098. Cross-Platform GUI Programming with wxWidgets
       Julian Smart, Kevin Hock, Stefan Csomor | Prentice Hall PTR
       Published in 2005, 744 pages
099. Think Stats: Probability and Statistics for Programmers
       Allen B. Downey | Green Tea Press
       Published in 2011, 122 pages
100. Optimizing Code for Speed
        | Wikibooks
       Published in 2011
101. Mastering Node
       TJ Holowaychuk | Visionmedia
       Published in 2012
102. Git Pocket Guide
       Richard E. Silverman | O'Reilly Media
       Published in 2013, 224 pages
103. Java AWT Reference
       John Zukowski | O'Reilly
       Published in 1997, 1074 pages
104. C++ Language Tutorial
       Juan Soulie | cplusplus.com
       Published in 2007, 144 pages
105. Concepts, Techniques, and Models of Computer Programming
       Peter Van Roy, Seif Haridi | The MIT Press
       Published in 2004, 939 pages
106. Securing Java: Getting Down to Business with Mobile Code
       Gary McGraw, Edward W. Felten | Wiley
       Published in 1999, 324 pages
107. Introduction to Objective Caml
       Jason Hickey | Caltech
       Published in 2008, 284 pages
108. Start Here: Python Programming for Beginners
       Jody Scott Ginther | toonzcat.com
       Published in 2010, 58 pages
109. Java Look and Feel Design Guidelines: Advanced Topics
        | Addison-Wesley Professional
       Published in 2001, 200 pages
110. 31 Days of Refactoring
       Sean Chambers, Simone Chiaretta | Los Techies
       Published in 2009, 52 pages
111. 1000 Java Tips
       Alexandre Patchine, Dr. Heinz M. Kabutz |
       Published in 2005, 856 pages
112. Thinking in Java, 3rd Edition
       Bruce Eckel | Prentice Hall PTR
       Published in 2002, 1119 pages
113. Beginning Perl
       Curtis 'Ovid' Poe | Wrox
       Published in 2012, 696 pages
114. Foundations of Computer Science: C Edition
       Al Aho, Jeff Ullman | W. H. Freeman
       Published in 1994, 786 pages
115. Thinking in C++, 2nd Edition
       Bruce Eckel | Prentice Hall
       Published in 2003
116. Rapid C# Windows Development
       Joseph Chancellor | Lulu.com
       Published in 2006, 141 pages
117. Optimizing C ++
       Steve Heller | Prentice Hall PTR
       Published in 1998, 416 pages
118. Programming Pearls, 2nd Edition
       Jon Bentley | Addison-Wesley Professional
       Published in 1999, 256 pages
119. Object Oriented Perl
       Damian Conway | Manning Publications
       Published in 1999, 56 pages
120. The J2EE 1.4 Tutorial
       Eric Armstrong, at al. | Sun Microsystems, Inc.
       Published in 2006, 1542 pages
121. Inside Smalltalk
       W. R. Lalonde, J. R. Pugh | Prentice-Hall
       Published in 1990
122. Java: Learning to Program with Robots
       Byron Weber Becker | Course Technology
       Published in 2006, 864 pages
123. Loving Lisp, or the Savvy Programmer's Secret Weapon
       Mark Watson |
       Published in 2002
124. Making Games with Python and Pygame
       Al Sweigart |
       Published in 2012, 365 pages
125. The Java Virtual Machine Specification, 2nd Edition
       Tim Lindholm, Frank Yellin | Prentice Hall PTR
       Published in 1999, 496 pages
126. An Introduction to R
       W. N. Venables, D. M. Smith | Network Theory
       Published in 2008, 100 pages
127. Object-oriented Programming in C# for C and Java programmers
       Kurt Nørmark | Aalborg University
       Published in 2010, 485 pages
128. Mastering Software Project Management
       Hsiang Tao Yeh | Lulu.com
       Published in 2006, 189 pages
129. Ruby on Rails Security
       Heiko Webers | OWASP
       Published in 2009, 48 pages
130. Zen Style Programming
       Nils M Holm | Lulu Press
       Published in 2008, 336 pages
131. Project Shrink Linear Edition
       Bas de Baar | Project Shrink
       Published in 2009, 80 pages
132. Introduction to Programming using Python
       K. Schuerer, et al. | Pasteur Institute
       Published in 2008, 242 pages
133. Windows Phone 7 Guide for iPhone Application Developers
        | Microsoft
       Published in 2011, 97 pages
134. Finite-state Automata in Java
       Bradley Kjell | Cental Connecticut State University
       Published in 2001
135. A Computer Science Tapestry: Exploring Computer Science with C++
       Owen L. Astrachan | McGraw - Hill
       Published in 1999, 879 pages
136. 97 Things Every Software Architect Should Know
       Richard Monson-Haefel | O'Reilly
       Published in 2010
137. CoffeeScript Cookbook
       David Brady, et al. | coffeescriptcookbook.com
       Published in 2012
138. Java: An Object First Approach
       Fintan Culwin | Prentice Hall
       Published in 1997, 393 pages
139. The Bastards Book of Ruby
       Dan Nguyen | bastardsbook.com
       Published in 2011
140. Java: Graphical User Interfaces
       David Etheridge | BookBoon
       Published in 2009, 101 pages
141. Building Skills in Python
       Steven F. Lott |
       Published in 2008, 459 pages
142. Prolog Programming
       Roman Bartak |
       Published in 1998
143. Ada in Action, Second Edition
       Do-While Jones |
       Published in 1995, 153 pages
144. Developing an Advanced Windows Phone 7.5 App
       David Britch, et al. | Microsoft
       Published in 2012, 208 pages
145. A Taste of Smalltalk
       Ted Kaehler, Dave Patterson | W W Norton & Co Inc
       Published in 1986, 152 pages
146. Natural Language Processing in Prolog
       Gerald Gazdar, Chris Mellish | Addison-Wesley
       Published in 1989, 519 pages
147. Haskell Tutorial for C Programmers
       Eric Etheridge | HaskellWiki
       Published in 2011
148. Learning Cocoa with Objective-C
       James Duncan Davidson | O'Reilly Media, Inc.
       Published in 2002, 384 pages
149. Ada Distilled
       Richard Riehle | AdaWorks
       Published in 2003, 113 pages
150. WML and WMLScript
       V. Mukhi, V. Kalantri, S. Mukhi | BPB Publications
       Published in 2008
151. PNG: The Definitive Guide
       Greg Roelofs | O'Reilly
       Published in 1999, 321 pages
152. Developing Web Applications with Haskell and Yesod
       Michael Snoyman | O'Reilly Media
       Published in 2012, 298 pages
153. Evaluating Java for Game Development
       Jacob Marner |
       Published in 2002, 314 pages
154. Killer Game Programming in Java
       Andrew Davison | O'Reilly Media
       Published in 2009
155. Using, Understanding, and Unraveling The OCaml Language
       Didier Rémy | INRIA Paris-Rocquencourt
       Published in 2001, 182 pages
156. Fundamentals of C++ Programming
       Richard L. Halterman | Southern Adventist University
       Published in 2010, 524 pages
157. AMPL: A Modeling Language for Mathematical Programming
       R. Fourer, D.M. Gay, B.W. Kernighan | Duxbury Press
       Published in 2002, 540 pages
158. MPI: The Complete Reference
       Marc Snir, at al. | The MIT Press
       Published in 1998, 800 pages
159. Version Control with SVK
       Michael Brouwer, Russell Brown |
       Published in 2005
160. Programming Mac OS X with Cocoa for Beginners
        | Wikibooks
       Published in 2011
161. Programming Vertex, Geometry, and Pixel Shaders
       Wolfgang Engel, et al. |
       Published in 2011
162. Read Ruby 1.9
        | runpaint.org
       
163. ANSI C for Programmers on UNIX Systems
       Tim Love |
       Published in 1999
164. Pangea Software's Ultimate Game Programming Guide for Mac OS X
       Brian Greenstone | Pangea Software, Inc
       Published in 2004, 288 pages
165. GNU Emacs Lisp Reference Manual
       Bil Lewis, Dan LaLiberte, Richard Stallman | Free Software Foundation
       Published in 2009, 1025 pages
166. PHP Best Practices
       Alex Cabal | phpbestpractices.org
       Published in 2012
167. Artificial Intelligence through Prolog
       Neil C. Rowe | Prentice-Hall
       Published in 1988, 481 pages
168. The Underground PHP and Oracle Manual
       Christopher Jones, Alison Holloway | Oracle
       Published in 2008, 290 pages
169. Learning Perl the Hard Way
       Allen B. Downey | Green Tea Press
       Published in 2003, 69 pages
170. Beginning C++ Through Game Programming
       Michael Dawson | Course Technology PTR
       Published in 2010
171. Pablo's SOLID Software Development
       Derick Bailey | LosTechies.com
       Published in 2009, 81 pages
172. Kindle Fire Development Essentials
        | Techotopia
       Published in 2012
173. Professional Programmer's Guide to Fortran77
       Clive G. Page | University of Leicester
       Published in 2005, 180 pages
174. Algorithm Implementation
        | Wikibooks
       Published in 2010
175. Java in a Nutshell
       David Flanagan | O'Reilly
       Published in 1997, 628 pages
176. Adventure in Prolog
       Dennis Merritt | Springer
       Published in 1990, 186 pages
177. The J2EE Architect's Handbook
       Derek C. Ashmore | DVT Press
       Published in 2004, 288 pages
178. Unix System Programming in OCaml
       Xavier Leroy, Didier Remy |
       Published in 2011, 143 pages
179. C# - The Basics
       V. Mukhi, S. Shanbhag, S. Mukhi | BPB Publications
       Published in 2008
180. Assemblers And Loaders
       David Salomon | Prentice Hal
       Published in 1993, 299 pages
181. The Codeless Code
       Qi | thecodelesscode.com
       Published in 2012
182. Visual Studio.Net with C#
       Vijay Mukhi, Suraj Godhwani, Sonal Mukhi | BPB Publications
       Published in 2008
183. Working through Screens
       Jacob Burghardt | Flashbulb Interaction
       Published in 2010, 404 pages
184. The Objective-C 2.0 Programming Language
        | Apple Inc.
       Published in 2009, 133 pages
185. Real World Haskell
       B. O'Sullivan, J. Goerzen, D. Stewart | O'Reilly Media, Inc.
       Published in 2008, 710 pages
186. Scala Style Guide
        | Scala Community
       Published in 2011, 45 pages
187. Logic, Programming and Prolog
       Ulf Nilsson, Jan Mauszynski | John Wiley & Sons Inc
       Published in 1995, 296 pages
188. Beginning Perl
       Simon Cozens, Peter Wainwright | Wrox Press
       Published in 2000, 700 pages
189. Data Structures and Algorithms with Object-Oriented Design Patterns in Python
       Bruno R. Preiss |
       Published in 2004, 568 pages
190. Objective-C 2.0 Essentials
       Neil Smyth | Techotopia
       Published in 2010
191. Software Architect
       Nigel | ivencia.com
       Published in 2010
192. Software Development Guidelines
        | literateprogramming.com
       Published in 2000, 103 pages
193. The Common Java Cookbook
       Timothy M. O'Brien |
       Published in 2010
194. Applying UML and Patterns: An Introduction to Object-Oriented Analysis and Design
       Craig Larman | Prentice Hall
       Published in 2004, 616 pages
195. Functional Programming in Qi
       Mark Tarver | Upfront Publishing
       Published in 2008, 440 pages
196. Up and Running with Node.js
       Tom Hughes-Croucher | O'Reilly Media
       Published in 2010
197. Extreme Programming in Perl
       Robert Nagler | O'Reilly Media
       Published in 2005, 194 pages
198. Clever Algorithms: Nature-Inspired Programming Recipes
       Jason Brownlee | Lulu.com
       Published in 2011, 436 pages
199. JavaScript Cookbook
       Shelley Powers | O'Reilly Media
       Published in 2010, 554 pages
200. Developing Backbone.js Applications
       Addy Osmani | O'Reilly Media
       Published in 2012, 150 pages
201. x86 Assembly
        | Wikibooks
       Published in 2007, 123 pages
202. An Introduction to Programming in Emacs Lisp
       Robert J. Chassell | Free Software Foundation, Inc.
       Published in 2002, 314 pages
203. Encyclopedia of Graphics File Formats
       James D. Murray, William vanRyper | O'Reilly
       Published in 1996, 1152 pages
204. Java Web Application Development With Click Framework
        | Wikibooks
       Published in 2011
205. Unix and Perl Primer for Biologists
       Keith Bradnam, Ian Korf | Korf Lab
       Published in 2010, 135 pages
206. Concurrent Programming Using Java
       Stephen J. Hartley |
       Published in 2005
207. Common Lisp: An Interactive Approach
       Stuart Charles Shapiro | W.H. Freeman & Company
       Published in 1999, 358 pages
208. C++ GUI Programming with Qt 3
       Jasmin Blanchette, Mark Summerfield | Prentice Hall PTR
       Published in 2004, 464 pages
209. Introduction to newLISP
        | Wikibooks
       Published in 2010
210. An Introduction to Python
       Guido van Rossum | Network Theory Ltd.
       Published in 2006, 164 pages
211. An Introduction to the Imperative Part of C++
       Rob Miller | Imperial College London
       Published in 2008
212. Creating Adventure Games On Your Computer
       Tim Hartnell | Ballantine Books
       Published in 1984, 196 pages
213. The Power PC Compiler Writer's Guide
       Steve Hoxey, at al. | Warthman Associates
       Published in 1996, 264 pages
214. Android Design Guidelines
        | MutualMobile
       Published in 2011, 44 pages
215. Patterns of Software: Tales from the Software Community
       Richard P. Gabriel | Oxford University Press
       Published in 1998, 239 pages
216. Teach Yourself Scheme in Fixnum Days
       Dorai Sitaram |
       Published in 2004
217. QBasic
       Faraaz Damji, et al. | Wikibooks
       Published in 2013
218. Java Authentication and Authorization Service (JAAS) in Action
       Michael Cote |
       Published in 2005
219. Eloquent JavaScript: An opinionated guide to programming
       Marijn Haverbeke | No Starch Press
       Published in 2011
220. Common LISP: A Gentle Introduction to Symbolic Computation
       David S. Touretzky | Benjamin-Cummings Pub Co
       Published in 1990, 587 pages
221. An Introduction to Python
       John C. Lusth | The University of Alabama
       Published in 2012, 115 pages
222. The Art of Assembly Language
       Randall Hyde | No Starch Press
       Published in 2003, 928 pages
223. Mercurial: The Definitive Guide
       Bryan O'Sullivan | O'Reilly Media
       Published in 2009, 288 pages
224. Blender Basics: Classroom Tutorial Book
       James Chronister |
       Published in 2009, 146 pages
225. Python Tutorial
       Guido van Rossum | Python Software Foundation
       Published in 2008, 140 pages
226. Core Servlets and Javaserver Pages
       Marty Hall, Larry Brown | Prentice Hall PTR
       Published in 2003, 736 pages
227. The Practice of Parallel Programming
       Sergey A. Babkin | CreateSpace
       Published in 2010, 422 pages
228. Squeak by Example
       O. Nierstrasz, S. Ducasse, D. Pollet, A. Black | Lulu.com
       Published in 2008, 304 pages
229. The Python Language Reference Manual
       Guido Van Rossum | Network Theory Ltd.
       Published in 2003, 144 pages
230. Backbone Tutorials
       Thomas Davis | backbonetutorials.com
       Published in 2012, 55 pages
231. Basic Lisp Techniques
       David J. Cooper, Jr. | Franz Inc.
       Published in 2003, 100 pages
232. Brewing Java: A Tutorial
       Elliotte Rusty Harold | Cafe au Lait
       Published in 2005
233. Maven by Example
       Tim O'Brien, at al. | Sonatype, Inc.
       Published in 2010
234. BlitzMax
        | Wikibooks
       Published in 2010
235. The Programming Historian
       W.J. Turkel, A. Crymble, A. MacEachern | NiCHE
       Published in 2010, 74 pages
236. Practical Programming in Python
       Jeffrey Elkner, at al. |
       Published in 2010, 259 pages
237. BIOS Disassembly Ninjutsu Uncovered
       Darmawan Salihun | A-List Publishing
       Published in 2006, 579 pages
238. C# in Detail
       Jon Jagger |
       Published in 2001, 300 pages
239. C# Essentials
        | Techotopia
       Published in 2007
240. The Second Book of Machine Language
       Richard Mansfield | Compute! Publications
       Published in 1984, 464 pages
241. Essentials of the Java Programming Language: A Hands-On Guide
       Monica Pawlan | Addison-Wesley Professional
       Published in 2000, 301 pages
242. Let Over Lambda: 50 Years of Lisp
       Doug Hoyte | Lulu.com
       Published in 2008, 384 pages
243. The Little Introduction To Programming
       Karl Seguin | codingintro.com
       Published in 2012
244. wxWidgets tutorial
       Jan Bodnar | ZetCode
       Published in 2007
245. Data Structures and Algorithm Analysis in Java
       Clifford A. Shaffer | Dover Publications
       Published in 2012, 601 pages
246. Blender 3D: Noob to Pro
        | Wikibooks
       Published in 2010
247. MIPS Assembly Language Programming Using QtSpim
       Ed Jorgensen | University of Nevada, Las Vegas
       Published in 2013, 122 pages
248. Tutorial: Java, Maven 2, Eclipse and JSF
       A. Kumaraswamipillai, S. Arulkumaran | Lulu.com
       Published in 2010, 60 pages
249. Invent Your Own Computer Games with Python
       Albert Sweigart | Albert\Sweigart
       Published in 2008, 290 pages
250. PHP Security Guide
        | PHP Security Consortium
       Published in 2005, 37 pages
251. Visual Basic Essentials
        | Techotopia
       Published in 2008
252. A Little Smalltalk
       Timothy Budd | Addison-Wesley
       Published in 1987, 295 pages
253. Think Python: An Introduction to Software Design
       Allen Downey | Green Tea Press
       Published in 2008, 236 pages
254. Version Control by Example
       Eric Sink | Pyrenean Gold Press
       Published in 2011, 226 pages
255. C++: A Beginner's Guide
       Herbert Schildt | McGraw-Hill Osborne Media
       Published in 2003, 576 pages
256. The GNU C Programming Tutorial
       Mark Burgess, Ron Hale-Evans | Free Software Foundation
       Published in 2002, 350 pages
257. Porting to Python 3: An in-depth guide
       Lennart Regebro |
       Published in 2011, 138 pages
258. Java Au Naturel
       Dr. William C. Jones, Jr. |
       Published in 2004
259. Text Algorithms
       M. Crochemore, W. Rytter | Oxford University Press
       Published in 1994, 412 pages
260. User Interfaces
       Rita Matrai | InTech
       Published in 2010, 280 pages
261. GNU Scientific Library Reference Manual
       Brian Gough | Network Theory Ltd.
       Published in 2009, 592 pages
262. A to Z of C
       K. Joseph Wesley, R. Rajesh Jeba Anbiah |
       Published in 2008
263. Ruby Best Practices
       Gregory T. Brown | O'Reilly Media
       Published in 2009, 328 pages
264. Smalltalk-80: The Interactive Programming Environment
       Adele Goldberg | Addison-Wesley
       Published in 1983, 530 pages
265. Introduction to Java and OOA/OOD for Web Applications
       Alvin J. Alexander | DevDaily.com
       Published in 2002
266. Java Distributed Computing
       Jim Farley | O'Reilly Media
       Published in 1998, 386 pages
267. Object-oriented Programming in Java
       Richard L. Halterman | Southern Adventist University
       Published in 2008, 303 pages
268. An Introduction to Programming in Go
       Caleb Doxsey |
       Published in 2012, 165 pages
269. Object-Oriented Programming with ANSI-C
       Axel-Tobias Schreiner |
       Published in 1999, 221 pages
270. Project Management Handbook
       Wouter Baars | projectmanagement-training.net
       Published in 2006
271. C++ Programming for Scientists
       Roldan Pozo, Karin Remington | NIST
       
272. Domain-Driven Design Quickly
       Abel Avram, Floyd Marinescu | Lulu.com
       Published in 2007, 106 pages
273. PHP Programming
        | Wikibooks
       Published in 2012
274. C++ Essentials
       Sharam Hekmat | PragSoft Corporation
       Published in 2005, 311 pages
275. How to Design Programs: An Introduction to Programming and Computing
       Matthias Felleisen, et al | The MIT Press
       Published in 2003, 720 pages
276. Foundations of Jini 2 Programming
       Jan Newmarch | Apress
       Published in 2006, 512 pages
277. CVS Version Control for Web Site Projects
       Sean Dreilinger |
       Published in 1999
278. Processing XML with Java
       Elliotte Rusty Harold | Addison-Wesley Professional
       Published in 2002, 1120 pages
279. JavaScript Enlightenment
       Cody Lindley | Lulu.com
       Published in 2011, 141 pages
280. Pro Git
       Scott Chacon | Apress
       Published in 2009, 300 pages
281. QuickTime for Java: A Developer's Notebook
       Chris Adamson | O'Reilly Media, Inc.
       Published in 2005, 255 pages
282. Practical Common Lisp
       Peter Seibel | Apress
       Published in 2005, 500 pages
283. Programming Computer Vision with Python
       Jan Erik Solem | O'Reilly Media
       Published in 2012, 300 pages
284. Design of CMU Common Lisp
       Robert A. MacLachlan |
       Published in 2003, 122 pages
285. Learn Ruby The Hard Way
       Zed A. Shaw | LCodeTHW
       Published in 2011
286. Sun Certified Java Programmer Pre-Exam Essentials
       Dylan Walsh |
       Published in 2002
287. Agile Data
       Russell Jurney | O'Reilly Media
       Published in 2012, 250 pages
288. Seamless Object-Oriented Software Architecture
       Kim Waldén, Jean-Marc Nerson | Prentice Hall
       Published in 1994, 458 pages
289. Java(TM) Platform Performance: Strategies and Tactics
       Steve Wilson, Jeff Kesselman | Prentice Hall PTR
       Published in 2000, 256 pages
290. Silverlight for Windows Phone
       Puja Pramudya | Microsoft Innovation Center
       Published in 2011, 157 pages
291. Java Programming
        | Wikibooks
       Published in 2011, 200 pages
292. Ada 95: The Craft of Object-Oriented Programming
       John English |
       Published in 2001, 486 pages
293. Building A JavaScript Framework
       Alex Young | DailyJS
       Published in 2010, 81 pages
294. The R Inferno
       Patrick Burns | Burns Statistics
       Published in 2011, 126 pages
295. Think OCaml
       Nicholas Monje, Allen Downey | Green Tea Press
       Published in 2011, 128 pages
296. Functional C
       Pieter Hartel, Henk Muller | Addison-Wesley
       Published in 1999, 429 pages
297. Building Skills in Object-Oriented Design
       Steven F. Lott |
       Published in 2009, 311 pages
298. Learn to Program
       Chris Pine | Pragmatic Bookshelf
       Published in 2006, 176 pages
299. Text Processing in Python
       David Mertz | Addison-Wesley Professional
       Published in 2003, 544 pages
300. Pro Java 6 3D Game Development
       Andrew Davison | Apress
       Published in 2007, 528 pages
301. Pharo by Example
       Andrew P. Black, at al. |
       Published in 2009, 352 pages
302. C++ GUI Programming with Qt 4
       Jasmin Blanchette, Mark Summerfield | Prentice Hall
       Published in 2008, 734 pages
303. Tcl for Web Nerds
       Hal Abelson, Philip Greenspun, Lydia Sandon |
       Published in 2013
304. Matters Computational: Ideas, Algorithms, Source Code
       Joerg Arndt |
       Published in 2010, 972 pages
305. Programming the Be Operating System
       Dan Parks Sydow | O'Reilly
       Published in 1999, 400 pages
306. C++ for C Programmers
       JT Kalnay | Smashwords
       Published in 2012, 335 pages
307. Android Application Development Cookbook
       Wei-Meng Lee | Wrox
       Published in 2012, 448 pages
308. Python Standard Library
       Fredrik Lundh | O'Reilly
       Published in 2001, 300 pages
309. More with symfony
       Fabien Potencier, Ryan Weaver | Sensio SA
       Published in 2009
310. Clojure Cookbook
       David Sletten | Getting Clojure
       Published in 2010
311. The Problem with Native JavaScript APIs
       Nicholas C. Zakas | O'Reilly Media
       Published in 2012
312. The Craft of Programming
       John C. Reynolds | Prentice Hall
       Published in 1981, 434 pages
313. A Gentle Introduction to symfony
       Francois Zaninotto, Fabien Potencier | Sensio SA
       Published in 2010
314. Become an Xcoder: Start Programming the Mac Using Objective-C
       B. Altenberg, A. Clarke, P. Mougin | CocoaLab
       Published in 2008, 69 pages
315. A++: The Smallest Programming Language in the World
       Georg P. Loczewski | S. Toeche-Mittler Verlag
       Published in 2004
316. Prolog and Natural-Language Analysis
       F. C. N. Pereira, S. M. Shieber | Center for the Study of Language
       Published in 2002, 204 pages
317. Ada 95 Rationale - The Language - The Standard Libraries
       Laurent Guerby |
       Published in 1996
318. The Little Book on CoffeeScript
       Alex MacCaw | O'Reilly Media
       Published in 2012, 60 pages
319. JavaScript Allongé
       Reginald Braithwaite | Leanpub
       Published in 2013, 278 pages
320. BASIC Programming
        | Wikibooks
       Published in 2012
321. The Node Beginner Book
       Manuel Kiessling | Leanpub
       Published in 2011, 35 pages
322. C# Programming
       Rod A. Smith, Jonas Nordlund | Wikibooks
       Published in 2007, 71 pages
323. Visual C++ 6 Unleashed
       Mickey Williams, David Bennett | Sams
       Published in 2000, 1000 pages
324. Object-Oriented Software Composition
       Nierstrasz, Sichritzis | Prentice Hall PTR
       Published in 1995, 362 pages
325. Spring by Example
       David Winterfeldt, Vaan Nila | springbyexample.org
       Published in 2012, 289 pages
326. Picturing Programs: an Introduction to Computer Programming
       Stephen Bloch | College Publications
       Published in 2010, 480 pages
327. The Pocket Guide to Pascal
       Joseph S. Dorward |
       Published in 1995
328. Git Magic
       Ben Lynn |
       Published in 2007, 58 pages
329. The Definitive Guide to Django
       A. Holovaty, J. Kaplan-Moss | Apress
       Published in 2007, 447 pages
330. Super Awesome Advanced CakePHP Tips
       Matt Curry | PseudoCoder.com
       Published in 2009, 66 pages
331. Object Oriented Programming in ANSI-C
       Axel Schreiner |
       Published in 2001, 252 pages
332. Getting Started with the Java 3D API
       Dennis J. Bouvier | Sun Microsystems, Inc.
       Published in 1999
333. How to Think Like a Computer Scientist: Learning with Python
       Jeffrey Elkner, Allen B. Downey, Chris Meyers | Green Tea Press
       Published in 2012
334. Java for the Beginning Programmer
       Jeff Heaton | Heaton Research, Inc.
       Published in 2006, 336 pages
335. Servlets and JavaServer Pages: The J2EE Technology Web Tier
       Jayson Falkner, Kevin Jones | Addison-Wesley
       Published in 2003, 784 pages
336. Casting Spells in Lisp
       Conrad Barski | Lisperati.com
       Published in 2008, 26 pages
337. Version Control with Subversion
       C.M. Pilato, B. Collins-Sussman, B.W. Fitzpatrick | O'Reilly Media
       Published in 2008, 407 pages
338. A Beginner's Python Tutorial
       Steven Thurlow | Wikibooks
       Published in 2013
339. Programming in Fortran 95
       Rachael Padman | University of Cambridge
       Published in 2007, 50 pages
340. JavaScript: The Right Way
       William Oliveira | jstherightway.com
       Published in 2012
341. Practical Programming in Tcl and Tk
       Brent Welch, Ken Jones | Prentice Hall PTR
       Published in 2003, 960 pages
342. Mobile Developer's Guide To The Galaxy
        | Enough Software
       Published in 2012, 207 pages
343. C++ In Action: Industrial Strength Programming Techniques
       Bartosz Milewski | Addison Wesley
       Published in 2001, 485 pages
344. A Project Management Primer
       Nick Jenkins |
       Published in 2006, 43 pages
345. The Joy Of Smalltalk
       Ivan Tomek |
       Published in 2000, 700 pages
346. The C Book: Featuring the ANSI C Standard
       Mike Banahan, Declan Brady, Mark Doran | Addison-Wesley Pub
       Published in 1991, 333 pages
347. Introduction to Python for Econometrics, Statistics and Numerical Analysis
       Kevin Sheppard |
       Published in 2012, 281 pages
348. Java Speech API Programmer's Guide
        | Sun Microsystems, Inc.
       Published in 1998
349. Simulating Humans: Computer Graphics Animation and Control
       N. I. Badler, C. B. Phillips, B. L. Webber | Oxford University Press, USA
       Published in 1993, 283 pages
350. Sams Teach Yourself JavaScript in 24 Hours
       Michael Moncur | Sams
       Published in 2006, 456 pages
351. Perl 5 Pocket Reference
       Johan Vromans, Linda Mui | O'Reilly
       Published in 2000, 31 pages
352. How to think like a Computer Scientist (C++ Version)
       Allen B. Downey |
       Published in 1999, 189 pages
353. Squeak: Learn Programming with Robots
       Stephane Ducasse | Apress
       Published in 2005, 362 pages
354. First Course in Programming with Karel the Robot and Python
       Pavel Solin, Salih Dede | FEMhub Inc.
       Published in 2012, 126 pages
355. HTTP Programming Recipes for Java Bots
       Jeff Heaton | Heaton Research, Inc.
       Published in 2007, 680 pages
356. Advanced Programming for the Java 2 Platform
       Calvin Austin, Monica Pawlan | Addison Wesley Longman
       Published in 2000, 400 pages
357. C# Query Expressions
       Jamie King, Bruce Eckel | MindView, Inc.
       Published in 2008, 239 pages
358. Sequential and Parallel Sorting Algorithms
       H. W. Lang | FH Flensburg
       Published in 2000
359. Java Programming for Kids, Parents and Grandparents
       Yakov Fain |
       Published in 2004, 211 pages
360. Building Expert Systems in Prolog
       Dennis Merritt | Amzi! inc.
       Published in 2000, 358 pages
361. The Programmers' Stone
       Alan G Carter, Colston Sanger |
       Published in 1999, 134 pages
362. Designing Enterprise Applications with the J2EE Platform
       Inderjeet Singh, at al. | Prentice Hall PTR
       Published in 2002, 448 pages
363. Advanced R programming
       Hadley Wickham |
       Published in 2013
364. DOM Enlightenment
       Cody Lindley | domenlightenment.com
       Published in 2012
365. Testing for Continuous Delivery with Visual Studio 2012
       L. Brader, H. Hilliker, A.C. Wills | Microsoft
       Published in 2012, 249 pages
366. Your First Cup: An Introduction to the Java EE Platform
        | Oracle
       Published in 2010, 48 pages
367. Don't Just Roll The Dice: A usefully short guide to software pricing
       Neil Davidson | Red gate books
       Published in 2009, 81 pages
368. Project Management Book
       Michael Harding Roberts | hraconsulting-ltd.co.uk
       Published in 2009
369. The New C Standard
       Derek M. Jones | Addison-Wesley Professional
       Published in 2008, 1615 pages
370. Applications of Prolog
       Attila Csenki | BookBoon
       Published in 2009, 203 pages
371. Vagrant: Up and Running
       Mitchell Hashimoto | O'Reilly Media
       Published in 2013, 156 pages
372. Tcl Programming
        | Wikibooks
       Published in 2010
373. C Programming
        | Wikibooks
       Published in 2006, 129 pages
374. Introduction to Media Computation: A Multimedia Cookbook in Python
       Mark Guzdial | Georgia Institute of Technology
       Published in 2002, 234 pages
375. Google App Engine Java Experiments
       Romin K. Irani |
       Published in 2010, 227 pages
376. Learn Regex The Hard Way
       Zed A. Shaw | LCodeTHW
       Published in 2011
377. Java Reference Guide
       Steven Haines | Pearson Education
       Published in 2003, 650 pages
378. Perl 6 Programming
        | Wikibooks
       Published in 2010
379. Visual Basic.Net
       Vijay Mukhi, Deepak N. Ramchand, Sonal Mukhi | BPB Publications
       Published in 2008
380. Mixu's Node Book
       Mikito Takada | mixu.net
       Published in 2012, 77 pages
381. Learn You Some Erlang for Great Good!
       Frederic Trottier-Hebert | LearnYouSomeErlang.com
       Published in 2010
382. Ruby Programming
        | Wikibooks
       Published in 2011
383. Lisp in Small Parts
       David Johnson-Davies |
       Published in 2012
384. Developing Modern Mobile Web Apps
        | Microsoft Corporation
       Published in 2012, 112 pages
385. Data Structures and Algorithms with Object-Oriented Design Patterns in Ruby
       Bruno R. Preiss |
       Published in 2004
386. Apprenticeship Patterns: Guidance for the Aspiring Software Craftsman
       Dave Hoover, Adewale Oshineye | O'Reilly Media
       Published in 2009
387. The Art and Science of Smalltalk
       Simon Lewis | Prentice Hall
       Published in 1995, 223 pages
388. Statistical Software Engineering
        | National Academies Press
       Published in 1996, 89 pages
389. Object Oriented Programming using Java
       Simon Kendal | BookBoon
       Published in 2009, 209 pages
390. Game Creation with XNA
        | Wikibooks
       Published in 2012
391. Programming Forth
       Stephen Pelc | MicroProcessor Engineering Limited
       Published in 2005, 192 pages
392. Interactive Fortran 77: A Hands on Approach
       Ian D Chivers, Jane Sleightholme |
       Published in 1990, 233 pages
393. CMMI Implementation Guide
       Vishnuvarthanan Moorthy | Smashwords
       Published in 2013, 97 pages
394. Mastering Enterprise JavaBeans 3.0
       R. P. Sriganesh, G. Brose, M. Silverman | Wiley
       Published in 2007, 685 pages
395. Bleeding at the Keyboard: A Guide to Modern Programming with Java
       Gregory J. E. Rawlins |
       Published in 1999
396. Learn You a Haskell for Great Good!
       Miran Lipovaca | LearnYouaHaskell.com
       Published in 2010, 176 pages
397. How to Use Scheme
       M. Felleisen, R. Findler, M. Flatt, S. Krishnamurthi, P. Steckler |
       Published in 2001
398. Mastering Dyalog APL
       Bernard Legrand | Dyalog Limited
       Published in 2009, 818 pages
399. A Beginners C++
       Neil Gray | University of Wollongong
       Published in 1996
400. Essential JavaScript and jQuery Design Patterns
       Addy Osmani | addyosmani.com
       Published in 2010
401. The Scheme Programming Language, 3rd Edition
       R. Kent Dybvig | MIT Press
       Published in 2003
402. Smalltalk and Object Orientation: An Introduction
       John Hunt | Springer
       Published in 1997, 298 pages
403. The C Library Reference Guide
       Eric Huss |
       Published in 1997
404. Simply Scheme: Introducing Computer Science
       Brian Harvey, Matthew Wright | The MIT Press
       Published in 1999, 611 pages
405. Introducing Ada 95
       John Barnes |
       Published in 1995
406. Ruby Hacking Guide
       Minero Aoki |
       Published in 2004
407. Programming in C
       Bharat Kinariwala, Tep Dobry | University of Hawaii at Manoa
       Published in 1993
408. Practical PHP Programming
       Paul Hudson |
       Published in 2007
409. Android Cookbook
       Ian F. Darwin | O'Reilly Media
       Published in 2011
410. PHP Cookbook
       Adam Trachtenberg, David Sklar | O'Reilly Media
       Published in 2006, 810 pages
411. Write Yourself a Scheme in 48 Hours
       Jonathan Tang | Wikibooks
       Published in 2007, 138 pages
412. Natural Language Processing for the Working Programmer
       Daniël de Kok, Harm Brouwer |
       Published in 2011
413. CGI Programming on the World Wide Web
       Shishir Gundavaram | O'Reilly
       Published in 1996, 450 pages
414. Tcl Tutorial
       Clif Flynt, et al. | Tcl Developer Xchange
       Published in 2011
415. Dissecting a C# Application: Inside SharpDevelop
       Christian Holm, Mike Kruger, Bernhard Spuida | Wrox Press
       Published in 2004, 538 pages
416. Prolog Techniques
       Attila Csenki | BookBoon
       Published in 2009, 186 pages
417. Introduction to Programming Through Game Development Using Microsoft XNA Game Studio
       Rob Miles | Microsoft Press
       Published in 2009, 400 pages
418. Object-Oriented System Development
       Dennis deChampeaux, Doug Lea, Penelope Faure | Addison-Wesley
       Published in 1993, 560 pages
419. OpenGL Programming
        | Wikibooks
       Published in 2012
420. C# Classes
       V. Mukhi, V. Kalantri, S. Mukhi | BPB Publications
       Published in 2008
421. Quick Ada
       Dale Stanbrough |
       Published in 2000, 164 pages
422. C# Development
       Rob Miles |
       Published in 2008, 185 pages
423. Free Java Book
       Daniel L. Schuster | Western State College
       Published in 2011
424. No Bugs!: Delivering Error-Free Code in C and C++
       David Thielen | Addison-Wesley
       Published in 1992, 214 pages
425. The Java Game Programming Tutorial
       Garry Morse |
       Published in 1997
426. C# School: 14 lessons to get you started with C# and .NET
       Faraz Rasheed |
       Published in 2006, 338 pages
427. Java Native Interface: Programmer's Guide and Specification
       Sheng Liang | Prentice Hall PTR
       Published in 1999, 320 pages
428. Successful Lisp: How to Understand and Use Common Lisp
       David B. Lamkins | bookfix.com
       Published in 2004, 360 pages
429. jQuery Fundamentals
       Rebecca Murphey |
       Published in 2010
430. The Secret Ninja Cucumber Scrolls
       David de Florinier, Gojko Adzic, Annette de Florinier |
       Published in 2010
431. The Haskell Road to Logic, Maths and Programming
       Kees Doets, Jan van Eijck | College Publications
       Published in 2004, 449 pages
432. PC Assembly Language
       Paul A. Carter |
       Published in 2006, 195 pages
433. Doctrine ORM for PHP
       Jonathan H. Wage, Konsta Vesterinen | Sensio SA
       Published in 2010, 373 pages
434. Essential CVS
       Jennifer Vesperman | O'Reilly Media, Inc.
       Published in 2006, 428 pages
435. Java for Python Programmers
       Brad Miller | interactivepython.org
       Published in 2011
436. How to Think Like a Computer Scientist (Java Version)
       Allen B. Downey | Green Tea Press
       Published in 2008, 306 pages
437. Programming Principles in Java: Architectures and Interfaces
       David Schmidt | Kansas State University
       Published in 2003, 748 pages
438. Web Client Programming with Perl
       Clinton Wong | O'Reilly
       Published in 1997, 228 pages
439. Modern Perl
       chromatic | Onyx Neon Press
       Published in 2010, 186 pages
440. Using Visual Basic 6
       Hakan Kirik |
       
441. Gradle Beyond the Basics
       Tim Berglund | O'Reilly Media
       Published in 2013, 80 pages
442. Magic Ink: Information Software and the Graphical Interface
       Bret Victor | worrydream.com
       Published in 2006, 73 pages
443. How to Become a C# Programmer
       Scott Whigham | LearnItFirst.com LLC
       Published in 2009, 42 pages
444. Mastering C++
       K. R. Venugopal | Muhammadali Shaduli
       Published in 1997, 804 pages
445. Common Lisp
        | Wikibooks
       Published in 2011
446. Python 201: (Slightly) Advanced Python Topics
       Dave Kuhlman |
       Published in 2003
447. Introduction to Programming in Java: An Interdisciplinary Approach
       Robert Sedgewick, Kevin Wayne | Princeton University
       Published in 2007
448. JS.next: A Manager's Guide
       Aaron Frost | O'Reilly Media
       Published in 2013
449. Subversion Version Control
       William Nagel | Prentice Hall PTR
       Published in 2005, 365 pages
450. Repository Management with Nexus
       Tim O'Brien, at al. | Sonatype, Inc.
       Published in 2009, 226 pages
451. Thinking Forth
       Leo Brodie | Punchy Publishing
       Published in 2004, 316 pages
452. The Art of Readable Code
       Dustin Boswell, Trevor Foucher | O'Reilly
       Published in 2010
453. How to Make Software
       Nick Jenkins |
       Published in 2005, 54 pages
454. Object-Oriented Programming and the Objective-C Language
        | NeXT Software, Inc.
       Published in 1996
455. The GNU C Library Reference Manual
       Sandra Loosemore, at al. | Free Software Foundation, Inc.
       Published in 2007, 1001 pages
456. Fortran 90 Course Notes
       AC Marshall, JS Morgan, JL Schonfelder | The University of Liverpool
       Published in 1997, 278 pages
457. Python course in Bioinformatics
       Katja Schuerer, Catherine Letondal | Pasteur Institute
       Published in 2008, 182 pages
458. Software Optimization Resources
       Agner Fog | agner.org
       Published in 2012
459. Design Patterns In Python
       Rahul Verma, Chetan Giridhar | Testing Perspective
       Published in 2011, 38 pages
460. Learning Object Oriented Programming with Delphi
       Zarko Gajic | About.com
       Published in 1998
461. Win32 Programming for x86 Assembly Language Programmers
       Henry Takeuchi | OOPWeb.com
       Published in 2007
462. Javascript FAQ
       Alexei Kourbatov | Linuxtopia
       Published in 2006
463. Windows Phone Toolkit In Depth
       Boryana Miloshevska | WindowsPhoneGeek
       Published in 2011, 250 pages
464. The OpenGL Programming Guide
       Dave Shreiner | Addison-Wesley Professional
       
465. Using R for Introductory Statistics
       John Verzani | Chapman & Hall/CRC
       Published in 2004, 114 pages
466. Essential Delphi
       Marco Cantu |
       Published in 2002, 156 pages
467. Sams Teach Yourself Visual Basic 6 in 24 Hours
       Greg Perry | Sams
       Published in 1999, 480 pages
468. Parallel Programming in Fortran 95 using OpenMP
       Miguel Hermanns | OpenMP.org
       Published in 2002, 75 pages
469. Computer Programming using GNU Smalltalk
       Canol Goekel | Lulu.com
       Published in 2009, 130 pages
470. Small Memory Software: Patterns for systems with limited memory
       Charles Weir, James Noble | Addison-Wesley
       Published in 2000, 352 pages
471. Search User Interfaces
       Marti A. Hearst | Cambridge University Press
       Published in 2009, 352 pages
472. Beej's Guide to Network Programming - Using Internet Sockets
       Brian Hall |
       Published in 2008, 118 pages
473. Introducing Microsoft Visual Basic 2005 for Developers
       Microsoft Corporation | Microsoft Press
       Published in 2004, 288 pages
474. Task-Centered User Interface Design
       Clayton Lewis, John Rieman |
       Published in 1994, 190 pages
475. The Linux Gamers' HOWTO
       Peter Jay Salzman, Frederic Delanoy |
       Published in 2004
476. PyQt4 Tutorial
       Jan Bodnar | ZetCode
       Published in 2013
477. Tutorial: Hibernate, Spring, HSQL, Eclipse and Maven
       A. Kumaraswamipillai, S. Arulkumaran | Lulu.com
       Published in 2010, 33 pages
478. Introduction to Computer Science using Java
       Bradley Kjell | Central Connecticut State University
       Published in 2006
479. andbook!
       Nicolas Gramlich | anddev.org
       Published in 2008, 62 pages
480. Evil by Design: Design patterns that lead us into temptation
       Chris Nodder | O'Reilly Media
       Published in 2012
481. Using GCC: The GNU Compiler Collection Reference Manual for GCC
       Richard M. Stallman | Free Software Foundation
       Published in 2003, 432 pages
482. Java: Classes in Java Applications
       David Etheridge | BookBoon
       Published in 2009, 118 pages
483. Using Perl 6
       Jonathan S. Duff, et al. |
       Published in 2012, 135 pages
484. JSF Jumpstart
       John Ferguson Smart | Wakaleo Consulting Ltd
       Published in 2007, 67 pages
485. The Java Tutorial
       Mary Campione, Kathy Walrath | Addison-Wesley
       Published in 1996
486. Java Sound Programmer Guide
        | Sun Microsystems, Inc.
       Published in 2002
487. Start programming using Object Pascal
       Motaz Abdel Azeem |
       Published in 2012, 150 pages
488. Data Structures and Algorithms with Object-Oriented Design Patterns in Java
       Bruno R. Preiss | Wiley
       Published in 1999, 656 pages
489. Programming Android
       Zigurd Mednieks, at al. | O'Reilly Media
       Published in 2010
490. Perl 5 Tutorial
       Chan Bernard Ki Hong |
       Published in 2003, 241 pages
491. Inductive Logic Programming: Techniques and Applications
       Nada Lavrac, Saso Dzeroski | Prentice Hall
       Published in 1994, 400 pages
492. Mastering Perl
       brian d foy | O'Reilly Media
       Published in 2007, 346 pages
493. Exploring Programming Language Architecture in Perl
       Bill Hails |
       Published in 2010, 368 pages
494. Python Scripting for Computational Science
       Hans Petter Langtangen | Springer
       Published in 2009, 747 pages
495. Jakarta Struts Live
       Richard Hightower | SourceBeat
       Published in 2004, 273 pages
496. Programming in Scala
       Martin Odersky, Lex Spoon, Bill Venners | Artima Inc
       Published in 2011
497. Scala By Example
       Martin Odersky | EPFL
       Published in 2010, 145 pages
498. The Pascal Programming Language
       Bill Catambay | Academic Press
       Published in 2001
499. Smalltalk With Style
       E. Klimas, S. Skublics, D. A. Thomas | Prentice Hall
       Published in 2004, 139 pages
500. Ada-95: A guide for C and C++ programmers
       Simon Johnston | Ada Home
       Published in 1995