To install VLC media player and MPlayer on Raspberry Pi and Ubuntu, issue these at the command line:
sudo apt-get install software-properties-common
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:videolan/stable-daily
sudo apt-get update
sudo apt-get install mplayer vlc
The first two lines are for installing add-apt-repository. It may not be strictly necessary to install both (add-apt-repository is only in one of them, depending on particular versions of the operating system), but in this way it is guaranteed to work.
2015-01-02
2014-12-05
Breaking into PowerShell
Notes for climbing the steep PowerShell learning curve...
Commonly used cmdlets (use Get-Alias to get the list of all aliases):
- Get-ChildItem. Aliases: ls, dir, and gci
- Get-Content. Aliases: cat, gc, and type
- Get-Help. Using the option -full will output examples of use for the cmdlet in question.
- Get-WmiObject. Alias: gwmi. In PowerShell 1.0 it was largely the only way to access remote computers.
- Format-List. Effectively reverse rows and columns (in output).
- Get-Location. Aliases: pwd and gl
- Get-Member. Alias: gm
- Get-Process. Aliases: gps and ps
- Group-Object. Alias: group
- Measure-Command. For timing.
- Measure-Object. Alias: measure
- New-Item. Alias: ni (and mkdir with parameter -ItemType "Directory"). For instance, create a new file, new folder or registry entry.
- New-Object.
- Out-GridView. Open GUI window with the fields as columns and objects as rows. The columns can be interactively sorted and the clipboard works with the usual shortcut Ctrl + C, including disjoint selected rows!. Alias: ogv
- Select-Object. Effectively choose another subset of fields from an object than the default (e.g. for the ultimate goal of an output). Alias: select
- Set-Location. Sets the current working location. Aliases cd, chdir, and sl
- Sort-Object. Alias: sort
- Test-Path. Test if the syntax for a path is correct. Useful when dealing with user input.
- Where-Object. Used to filter (get a subset of piped objects). A common idiom is Where-Object {$_ -match '\d{3}[-|\s]\d{3}[-|\s]\d{3}$'}, where what is between the two single quotes is a regular expression. Aliases: where and ?
- Write-Output. If the command is the last command in the pipeline, the objects are displayed in the console. Aliases: echo and write
wc
Equivalent to Linux' wc (used on a directory listing in this example):
Get-ChildItem | Measure-Object | Select-Object -ExpandProperty Count
Using aliases:
dir | measure | select -ExpandProperty Count
Example: get desired information from the running processes on the computer
Get-Process returns a (very long) list of running processes on the computer. Assume we are interested in the processes that take up a lot of memory and that are potentially leaking (Private Bytes is the proper quantity for this). First explore the different kind of values with Get-Member:
Get-Process | Get-Member
The field "PrivateMemorySize" seems to be what is called "Private Bytes".
Use Where-Object to only get the subset of processes that take up more than about 1 MB:
Get-Process | Where-Object {$_.PrivateMemorySize -gt 1000000}
This returns some processes with eight different kinds of fields (or at least that is how it appears in the output on the screen), but not private bytes. Say we still want the process ID and process name, but also private bytes and the full path to the executable. Use Select-Object to get those four fields instead of the eight defaults (the four names are from the output of Get-Member, above):
Get-Process | Where-Object {$_.PrivateMemorySize -gt 1000000} | Select-Object Id, PrivateMemorySize, Name, Path
We can sort by any of the four fields:
Get-Process | Where-Object {$_.PrivateMemorySize -gt 1000000} | Select-Object Id, PrivateMemorySize, Name, Path | Sort-Object -Property PrivateMemorySize
When this is output to the screen, it is way too wide. To get more readable output we can effectively reverse rows and columns with Format-List:
Get-Process | Where-Object {$_.PrivateMemorySize -gt 1000000} | Select-Object Id, PrivateMemorySize, Name, Path | Sort-Object -Property PrivateMemorySize | Format-List
Alternatively, we can get the output into a GUI window using cmdlet Out-GridView:
Get-Process | Where-Object {$_.PrivateMemorySize -gt 1000000} | Select-Object Id, PrivateMemorySize, Name, Path | Sort-Object -Property PrivateMemorySize | Out-GridView
The GUI window is quite sophisticated. For instance, using Add criteria, all instances of svchost can be excluded from the displayed processes.
Using aliases and the fact that the parameter to Sort-Object is positional, it can be shortened to:
ps | where {$_.PrivateMemorySize -gt 1000000} | select Id, PrivateMemorySize, Name, Path | sort PrivateMemorySize | Format-List
and
ps | where {$_.PrivateMemorySize -gt 1000000} | select Id, PrivateMemorySize, Name, Path | sort PrivateMemorySize | ogv
, respectively.
On my system the last items in the output was:
Id : 448
PrivateMemorySize : 56143872
Name : powershell
Path : C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.exe
Id : 3636
PrivateMemorySize : 90882048
Name : CCC
Path : C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static\ccc.exe
Id : 4952
PrivateMemorySize : 349118464
Name : opera
Path : D:\Program Files (x86)\Opera1051\opera.exe
Id : 2648
PrivateMemorySize : 630624256
Name : firefox
Path : D:\Program Files (x86)\Mozilla Firefox27\firefox.exe
Firefox took up 601 MB, the Opera web browser 332 MB, some videodisplay thingy 87 MB and PowerShell itself 54 MB.
2013-02-26
M95C512 is a 64 kilobyte EEPROM
M95C512 is not googable (or bingable for that matter) - although M95512 is.
M95C512 is a standard serial EEPROM in STMicroelectronics's (ST) M95 series and is a 512 kbit (64 kilobyte) serial SPI bus EEPROM.
The datasheet (PDF) is at http://www.st.com/web/en/resource/technical/document/datasheet/CD00048102.pdf. Here it is listed as M95512-W, M95512-R, M95512-DR, and M95512-DF (the difference is in the lowest supply voltage they accept; they have 5.5 V as their upper limit).
So why did I post this information? Because I am working every day with a device that employs a M95C512!
M95C512 is a standard serial EEPROM in STMicroelectronics's (ST) M95 series and is a 512 kbit (64 kilobyte) serial SPI bus EEPROM.
The datasheet (PDF) is at http://www.st.com/web/en/resource/technical/document/datasheet/CD00048102.pdf. Here it is listed as M95512-W, M95512-R, M95512-DR, and M95512-DF (the difference is in the lowest supply voltage they accept; they have 5.5 V as their upper limit).
So why did I post this information? Because I am working every day with a device that employs a M95C512!
2012-04-15
The scripting story for .NET
Update 2014-08-16:
Promising references:
Finding the scripting story of .NET (and what to actually do in order to implement scripting in a .NET application) turns out to be very hard. Part of the reason may be that scripting is not in vogue anymore, even though it is (still) important for any successful desktop or server application - sooner or later there will be a need to automate things, instead of tediously doing things only through the user interface.
An indication of the sad state of affairs is that Stack Overflowers will completely misunderstand a question of this kind and think it is about choosing a particular scripting language (PowerShell, Iron Python, etc.) when the question is about how to make an application scriptable and define/implement an object model. They will completely fail to understand what an object model is, even if it is explained in the question (often they will not read such an explanation, but immediately associate "scripting" or "scriptable" with "scripting language").
In the 1990s both Apple and Microsoft had focus on scripting. Apple with the Open Scripting Architecture (OSA) and Microsoft with COM. Both had "object models", a term that is often misunderstood by the ignorant or those that think in terms of a programming language for implementing an application. An object model is how an external application or script (internal or external) sees and interact with the application. A class in the object model represent something in the application and roughly represent the same thing as from the user interface.
For instance, in many cases there is a document class that represent a document in the application. The document class will often have a property named "title" (property is also an object model term and is not to be confused with, say, properties in binary components in COM or .NET). Changing the "title" property of a document in an external script will have the side effect of changing the title in the running instance of the application, corresponding to (in this case) of the user doing a Save As operation to save the document in a new file and as a result changing the title of the document.
Microsoft has implemented object models in their Office Suite of applications.
With the advent of .NET there was not much fanfare regarding scripting, but the scripting story for .NET may actually have been summarised by the MSDN Magazine article "Scripting and .NET: Visual Studio for Applications Provides Customized Scripting Facilities for Your .NET Project" (2002-08):
In the past, the Microsoft Active Scripting architecture has allowed you to make your applications extensible. But it came with some drawbacks. You couldn't call into DLLs; you had to use COM interfaces. The scripts were not compiled, so they ran more slowly than they otherwise might, and a number of objects had to ride along with the script. To solve these problems and make extensibility easier to attain, Visual Studio for Applications (VSA) was introduced.
The Microsoft® Active Scripting architecture was a COM-based solution that met many of these criteria, but it wasn't perfect."
The Microsoft .NET platform has a set of classes that offers the benefits of Active Scripting without the drawbacks. This set of classes, named Visual Studio® for Applications (VSA), provides a pluggable IDE and debugger for Visual Basic® .NET."
But that is 10 years ago, so where are we now?
VSA, though, is not even contained in Wikipedia.
Further reading:
To Be Continued...
Promising references:
- Make your .NET application support scripting - a practical approach
- Scripting for .NET
- Script Happens .NET "Writing applications that host a script engine to enable people to write scripts to customize and extend applications has proven to be very successful"
- Using .NET to make your Application Scriptable "The Object Model, Host Application & Script Editor"
Finding the scripting story of .NET (and what to actually do in order to implement scripting in a .NET application) turns out to be very hard. Part of the reason may be that scripting is not in vogue anymore, even though it is (still) important for any successful desktop or server application - sooner or later there will be a need to automate things, instead of tediously doing things only through the user interface.
An indication of the sad state of affairs is that Stack Overflowers will completely misunderstand a question of this kind and think it is about choosing a particular scripting language (PowerShell, Iron Python, etc.) when the question is about how to make an application scriptable and define/implement an object model. They will completely fail to understand what an object model is, even if it is explained in the question (often they will not read such an explanation, but immediately associate "scripting" or "scriptable" with "scripting language").
In the 1990s both Apple and Microsoft had focus on scripting. Apple with the Open Scripting Architecture (OSA) and Microsoft with COM. Both had "object models", a term that is often misunderstood by the ignorant or those that think in terms of a programming language for implementing an application. An object model is how an external application or script (internal or external) sees and interact with the application. A class in the object model represent something in the application and roughly represent the same thing as from the user interface.
For instance, in many cases there is a document class that represent a document in the application. The document class will often have a property named "title" (property is also an object model term and is not to be confused with, say, properties in binary components in COM or .NET). Changing the "title" property of a document in an external script will have the side effect of changing the title in the running instance of the application, corresponding to (in this case) of the user doing a Save As operation to save the document in a new file and as a result changing the title of the document.
Microsoft has implemented object models in their Office Suite of applications.
With the advent of .NET there was not much fanfare regarding scripting, but the scripting story for .NET may actually have been summarised by the MSDN Magazine article "Scripting and .NET: Visual Studio for Applications Provides Customized Scripting Facilities for Your .NET Project" (2002-08):
In the past, the Microsoft Active Scripting architecture has allowed you to make your applications extensible. But it came with some drawbacks. You couldn't call into DLLs; you had to use COM interfaces. The scripts were not compiled, so they ran more slowly than they otherwise might, and a number of objects had to ride along with the script. To solve these problems and make extensibility easier to attain, Visual Studio for Applications (VSA) was introduced.
The Microsoft® Active Scripting architecture was a COM-based solution that met many of these criteria, but it wasn't perfect."
The Microsoft .NET platform has a set of classes that offers the benefits of Active Scripting without the drawbacks. This set of classes, named Visual Studio® for Applications (VSA), provides a pluggable IDE and debugger for Visual Basic® .NET."
But that is 10 years ago, so where are we now?
VSA, though, is not even contained in Wikipedia.
Further reading:
- Introducing Visual Studio for Applications (2001-01-16). "... have probably been wondering what role script plays in the .NET world", "Customization in a .NET World"
To Be Continued...
2012-03-21
My active podcast list
The podcasts I am currently following (2012-03) are listed below. The links are RSS feed URLs.
- .NET Rocks!
- Aarhus .NET User Group
- Agenda
- Alt.NET Podcast
- Arianespace - WebTV
- Astronomy Cast
- Best of Natural History Radio (BBC)
- Big Picture Science
- De 6 hatte – Radio24syv
- Deep Fried Bytes
- Digital Planet
- Faglitteratur
- Fat and Mean Podcast
- FeatherCast
- Filosofiske diskussioner
- FLOSS Weekly
- Full Feed
- Futures in Biotech
- Gå aldrig ned fra scenen
- General Chemistry
- Get-scripting (PowerShell)
- Grammar Girl
- Hanselminutes
- Harddisken
- Herding Code
- I hegnet
- Ibens Harem
- Klima og miljø
- Klubværelset
- Physics C10, 001|Fall 2010|UC Berkeley
- Linux Outlaws
- Monocle
- Natursyn
- Open money
- Pragmatic Podcasts
- Python 411
- Rebooting The News
- Rosenkjær foredrag
- RunAs Radio
- Science in Action (BBC)
- Security Now!
- Selvsving på P1
- Software Engineering Radio
- Sommergæsten 2010
- Sommergæsten 2011
- Start The Week (BBC)
- Sundhed på P1
- SWR1 Aktuell um 5
- The Naked Scientists
- This Developer's Life
- This Week In Google
- Thorborgs Talkshow
- Ubuntu Podcast from the UK
- Videnskabens verden
2012-03-20
2011-12-29
Firefox version history
Ever wondered when a particular feature was introduced in Firefox and not being able to navigate the maze that is mozilla.org?
There is a Wikipedia page with Firefox's version history!
The table in section Release history has information for each minor version, for example, "3.6.21 - Off-cycle security update. Blacklisted a compromised HTTPS certificate.".
There is a Wikipedia page with Firefox's version history!
The table in section Release history has information for each minor version, for example, "3.6.21 - Off-cycle security update. Blacklisted a compromised HTTPS certificate.".
2011-08-30
The ALT.NET movement
The ALT.NET movement is somewhat mysterious.
Here are some leads (however the altnetpedia.com links seem to be effectively broken now):
What is ALT .NET? by Jeremy D. Miller
http://altnetpedia.com/default.aspx?AspxAutoDetectCookieSupport=1 Wiki for ALT.NET. The real meat! E.g. detailed articles with lists of tools, books, blog posts, Screen Casts, for: Continuous integration, Behavior Driven Development, Tools
http://altnetpedia.com/Resources.ashx#Tutorials_4 Tutorials
http://tech.groups.yahoo.com/group/altdotnet/message/22146 From ALT.NET: "Hudson is very easy once you get over the initial learning stage. For instance, it took me only about 10 minutes to set up email notification for failed builds sending to the developer you broke the build." "Hudson has a plug-in environment and there are many available. I use SVN for source control and this is just a radio button and a repository URL to configure. I use polling to check for committed changes to the code and again a radio button. I use NAnt to build and this is a plug-in. I use NUnit to run unit tests and this is just a plug-in. There are Git, Gallio, Doxygen, Bugzilla, Build Publisher, LDAP Email, MSBuild, Mercurial, MSTest, Selenium, Twitter and many more plug-ins."
http://altnetpodcast.com/ Alt.NET Podcast. RSS-feed URL: http://feeds.feedburner.com/altnetpodcast
http://tech.groups.yahoo.com/group/altdotnet/message/22076 From ALT.NET. Automated Build Frameworks - Recommendations? http://guard From herding code 84, Herding Code 84: Ex-Microsoft Developer Panel with Mike Moore, Jeff Cohen, and Scott Bellware convention over configuration
http://www.genericerror.com/blog/default,month,2008-10.aspx "I've become quite a fan of Eric Evans book, Domain Driven Design.", "Part of my recent work has been been moving towards the persistence ignorance. All this really means is creating a domain layer that is not aware of, and has no dependency on the way it is stored." "Microsoft recently released the ADO.Net Entity Framework which was lots of fun for the ALT.NET crowd because it gave them something new to complain about. " NHibernate
http://altnetseattle.pbwiki.com/Agenda-and-Session-Notes Schedule for ALT.NET conference. With links.
What is ALT .NET? by Jeremy D. Miller
http://altnetpedia.com/default.aspx?AspxAutoDetectCookieSupport=1 Wiki for ALT.NET. The real meat! E.g. detailed articles with lists of tools, books, blog posts, Screen Casts, for: Continuous integration, Behavior Driven Development, Tools
http://altnetpedia.com/Resources.ashx#Tutorials_4 Tutorials
http://tech.groups.yahoo.com/group/altdotnet/message/22146 From ALT.NET: "Hudson is very easy once you get over the initial learning stage. For instance, it took me only about 10 minutes to set up email notification for failed builds sending to the developer you broke the build." "Hudson has a plug-in environment and there are many available. I use SVN for source control and this is just a radio button and a repository URL to configure. I use polling to check for committed changes to the code and again a radio button. I use NAnt to build and this is a plug-in. I use NUnit to run unit tests and this is just a plug-in. There are Git, Gallio, Doxygen, Bugzilla, Build Publisher, LDAP Email, MSBuild, Mercurial, MSTest, Selenium, Twitter and many more plug-ins."
http://altnetpodcast.com/ Alt.NET Podcast. RSS-feed URL: http://feeds.feedburner.com/altnetpodcast
http://tech.groups.yahoo.com/group/altdotnet/message/22076 From ALT.NET. Automated Build Frameworks - Recommendations? http://guard From herding code 84, Herding Code 84: Ex-Microsoft Developer Panel with Mike Moore, Jeff Cohen, and Scott Bellware convention over configuration
http://www.genericerror.com/blog/default,month,2008-10.aspx "I've become quite a fan of Eric Evans book, Domain Driven Design.", "Part of my recent work has been been moving towards the persistence ignorance. All this really means is creating a domain layer that is not aware of, and has no dependency on the way it is stored." "Microsoft recently released the ADO.Net Entity Framework which was lots of fun for the ALT.NET crowd because it gave them something new to complain about. " NHibernate
http://altnetseattle.pbwiki.com/Agenda-and-Session-Notes Schedule for ALT.NET conference. With links.
2011-08-28
CHAOS team
An explanation for what the CHAOS team at Stack Exchange is is in the Meta Stack Overflow post What is the meaning of CHAOS? Is it related to the PSI (?) character? (deleted now, only visible to users with 10,000 or more reputation points on that site, Meta Stack Overflow)
Their main outlet is the Tumblr blog, somewhat confusing called "Stack Exchange Blog" (the Stack Overflow blog effectively has the role of the official blog for the Stack Exchange Network).
Members
Aarthi Devanathan. Twitter account. Main Stack Exchange account, Home Improvement. Blog.
Abby T. Miller. Twitter account. Main Stack Exchange account, Apple. Blog.
Brett White. Twitter account. Main Stack Exchange account, Gaming. Blog.
Lauren Gundrum. Twitter account. Main Stack Exchange account, English. Blog.
Laura. Twitter account. Main Stack Exchange account, Photography. Blog.
Samuel Brand. Twitter account. Main Stack Exchange account, Android. Blog (currently empty).
Their main outlet is the Tumblr blog, somewhat confusing called "Stack Exchange Blog" (the Stack Overflow blog effectively has the role of the official blog for the Stack Exchange Network).
Members
Aarthi Devanathan. Twitter account. Main Stack Exchange account, Home Improvement. Blog.
Abby T. Miller. Twitter account. Main Stack Exchange account, Apple. Blog.
Brett White. Twitter account. Main Stack Exchange account, Gaming. Blog.
Lauren Gundrum. Twitter account. Main Stack Exchange account, English. Blog.
Laura. Twitter account. Main Stack Exchange account, Photography. Blog.
Samuel Brand. Twitter account. Main Stack Exchange account, Android. Blog (currently empty).
2011-07-24
Stack Exchange word corrections
The current wordlist in Edit Overflow (long, 1233 words) is listed below. It mostly targets Stack Overflow, but there are also words typically used on Super User and some general words (like the incorrect "compatability" - the correct one is "compatibility"). The incorrect ones have actually been observed in posts on the Stack Exchange network.
The first column is the incorrect term, and the second is the correct term. Most words are context independent, but a few depends on context (for instance, the incorrect "im" resolves to "I'm", although the incorrect "im" could also mean "IM" (instant messaging)).
Note: there appears to be a problem with this blogging platform. The list appears to be empty, but it actually starts somewhere down there (about one third down the page).
The first column is the incorrect term, and the second is the correct term. Most words are context independent, but a few depends on context (for instance, the incorrect "im" resolves to "I'm", although the incorrect "im" could also mean "IM" (instant messaging)).
Note: there appears to be a problem with this blogging platform. The list appears to be empty, but it actually starts somewhere down there (about one third down the page).
| Incorrect | Correct | URL |
|---|---|---|
| java | Java | http://en.wikipedia.org/wiki/Java_%28programming_language%29 |
| JAVA | Java | http://en.wikipedia.org/wiki/Java_%28programming_language%29 |
| javafx | JavaFX | http://en.wikipedia.org/wiki/JavaFX |
| java ee | Java EE | http://en.wikipedia.org/wiki/Java_Platform,_Enterprise_Edition |
| javaee | Java EE | http://en.wikipedia.org/wiki/Java_Platform,_Enterprise_Edition |
| java EE | Java EE | http://en.wikipedia.org/wiki/Java_Platform,_Enterprise_Edition |
| JEE | Java EE | http://en.wikipedia.org/wiki/Java_Platform,_Enterprise_Edition |
| J2EE | Java EE | http://en.wikipedia.org/wiki/Java_Platform,_Enterprise_Edition |
| j2ee | Java EE | http://en.wikipedia.org/wiki/Java_Platform,_Enterprise_Edition |
| J2ee | Java EE | http://en.wikipedia.org/wiki/Java_Platform,_Enterprise_Edition |
| j2me | Java ME | http://en.wikipedia.org/wiki/Java_Platform,_Micro_Edition |
| J2me | Java ME | http://en.wikipedia.org/wiki/Java_Platform,_Micro_Edition |
| J2ME | Java ME | http://en.wikipedia.org/wiki/Java_Platform,_Micro_Edition |
| JavaME | Java ME | http://en.wikipedia.org/wiki/Java_Platform,_Micro_Edition |
| jsf | JSF | http://en.wikipedia.org/wiki/JavaServer_Faces |
| jsp | JSP | http://en.wikipedia.org/wiki/JavaServer_Pages |
| jdk | JDK | http://en.wikipedia.org/wiki/Java_Development_Kit |
| javascript | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| js | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| JS | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| java script | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| Javascript | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| javscript | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| javasctipt | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| Javascipt | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| javaScript | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| javescript | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| Javasctipt | JavaScript | http://en.wikipedia.org/wiki/JavaScript |
| jquery | jQuery | http://en.wikipedia.org/wiki/JQuery |
| JQuery | jQuery | http://en.wikipedia.org/wiki/JQuery |
| Jquery | jQuery | http://en.wikipedia.org/wiki/JQuery |
| JQUERY | jQuery | http://en.wikipedia.org/wiki/JQuery |
| JQUery | jQuery | http://en.wikipedia.org/wiki/JQuery |
| Jquery-UI | jQuery UI | http://en.wikipedia.org/wiki/JQuery_UI |
| jquery ui | jQuery UI | http://en.wikipedia.org/wiki/JQuery_UI |
| jquery-ui | jQuery UI | http://en.wikipedia.org/wiki/JQuery_UI |
| Jquery UI | jQuery UI | http://en.wikipedia.org/wiki/JQuery_UI |
| JQueryUI | jQuery UI | http://en.wikipedia.org/wiki/JQuery_UI |
| jQueryUI | jQuery UI | http://en.wikipedia.org/wiki/JQuery_UI |
| jqueryui | jQuery UI | http://en.wikipedia.org/wiki/JQuery_UI |
| AJAX | Ajax | http://en.wikipedia.org/wiki/Ajax_%28programming%29 |
| ajax | Ajax | http://en.wikipedia.org/wiki/Ajax_%28programming%29 |
| php | PHP | http://en.wikipedia.org/wiki/PHP |
| Php | PHP | http://en.wikipedia.org/wiki/PHP |
| PHP5 | PHP 5 | http://en.wikipedia.org/wiki/PHP#Release_history |
| phpmyadmin | phpMyAdmin | http://en.wikipedia.org/wiki/PhpMyAdmin |
| cakePhp | CakePHP | http://en.wikipedia.org/wiki/CakePHP |
| cakePHP | CakePHP | http://en.wikipedia.org/wiki/CakePHP |
| cakephp | CakePHP | http://en.wikipedia.org/wiki/CakePHP |
| Cakephp | CakePHP | http://en.wikipedia.org/wiki/CakePHP |
| CAKEPHP | CakePHP | http://en.wikipedia.org/wiki/CakePHP |
| PHPBB | phpBB | http://en.wikipedia.org/wiki/PhpBB |
| phpbb | phpBB | http://en.wikipedia.org/wiki/PhpBB |
| PhpNuke | PHP-Nuke | http://en.wikipedia.org/wiki/PHP-Nuke |
| PHPNuke | PHP-Nuke | http://en.wikipedia.org/wiki/PHP-Nuke |
| mysql | MySQL | http://en.wikipedia.org/wiki/MySQL |
| mySQL | MySQL | http://en.wikipedia.org/wiki/MySQL |
| mySql | MySQL | http://en.wikipedia.org/wiki/MySQL |
| MySql | MySQL | http://en.wikipedia.org/wiki/MySQL |
| My-sql | MySQL | http://en.wikipedia.org/wiki/MySQL |
| MYSQL | MySQL | http://en.wikipedia.org/wiki/MySQL |
| Mysql | MySQL | http://en.wikipedia.org/wiki/MySQL |
| myql | MySQL | http://en.wikipedia.org/wiki/MySQL |
| Linq to SQL | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| linq to sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| linq2sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq2Sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq-to-SQL | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq 2 Sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq Sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| LinqToSql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| linq-to-sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| LinqSQL | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq to sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| LINQ-to-SQL | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq to Sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| LINQ to sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| LinqToSQL | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq-To-SQL | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq-To-Sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq2sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq-to-sql | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq2SQL | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq To SQL | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| Linq 2 SQL | LINQ to SQL | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL |
| linq to xml | LINQ to XML | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_XML |
| LINQ-to-XML | LINQ to XML | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_XML |
| Linq to XML | LINQ to XML | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_XML |
| linq-to-xml | LINQ to XML | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_XML |
| LINQ to objects | LINQ to Objects | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_Objects |
| Linq-to-Objects | LINQ to Objects | http://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_Objects |
| sqlite | SQLite | http://en.wikipedia.org/wiki/SQLite |
| Sqlite | SQLite | http://en.wikipedia.org/wiki/SQLite |
| sqllite | SQLite | http://en.wikipedia.org/wiki/SQLite |
| sqite | SQLite | http://en.wikipedia.org/wiki/SQLite |
| SQlite | SQLite | http://en.wikipedia.org/wiki/SQLite |
| Postgres | PostgreSQL | http://en.wikipedia.org/wiki/PostgreSQL |
| postgres | PostgreSQL | http://en.wikipedia.org/wiki/PostgreSQL |
| postgresql | PostgreSQL | http://en.wikipedia.org/wiki/PostgreSQL |
| Postgresql | PostgreSQL | http://en.wikipedia.org/wiki/PostgreSQL |
| postgres sql | PostgreSQL | http://en.wikipedia.org/wiki/PostgreSQL |
| pgsql | PostgreSQL | http://en.wikipedia.org/wiki/PostgreSQL |
| Postgre | PostgreSQL | http://en.wikipedia.org/wiki/PostgreSQL |
| postgre | PostgreSQL | http://en.wikipedia.org/wiki/PostgreSQL |
| SQL Server | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| MSSQL | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| sqlserver | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| Sql Server | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| SQL server | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| sql server | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| SqlServer | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| sql Server | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| Sql server | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| mssql | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| MS SQL | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| SQLServer | SQL Server | http://en.wikipedia.org/wiki/Microsoft_SQL_Server |
| SQLServer 2000 | SQL Server 2000 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#Genesis |
| sql2005 | SQL Server 2005 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2005 |
| sql server 2005 | SQL Server 2005 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2005 |
| SQL 2005 Server | SQL Server 2005 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2005 |
| SQL server 2005 | SQL Server 2005 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2005 |
| sql-server-2005 | SQL Server 2005 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2005 |
| SQL2005 | SQL Server 2005 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2005 |
| SqlServer2005 | SQL Server 2005 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2005 |
| SQLServer2005 | SQL Server 2005 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2005 |
| SQL 2005 | SQL Server 2005 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2005 |
| sql 2005 | SQL Server 2005 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2005 |
| sql server 2008 | SQL Server 2008 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2008 |
| SQL 2008 | SQL Server 2008 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2008 |
| Sql 2008 | SQL Server 2008 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2008 |
| Sql Server 2008 | SQL Server 2008 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2008 |
| sql 2008 | SQL Server 2008 | http://en.wikipedia.org/wiki/Microsoft_SQL_Server#SQL_Server_2008 |
| sql server 2005 express | SQL Server Express Edition | http://en.wikipedia.org/wiki/SQL_Server_Express |
| SQL Server 2005 Express | SQL Server Express Edition | http://en.wikipedia.org/wiki/SQL_Server_Express |
| SQL Express | SQL Server Express Edition | http://en.wikipedia.org/wiki/SQL_Server_Express |
| SQL Server Express | SQL Server Express Edition | http://en.wikipedia.org/wiki/SQL_Server_Express |
| sql server express | SQL Server Express Edition | http://en.wikipedia.org/wiki/SQL_Server_Express |
| sql-express | SQL Server Express Edition | http://en.wikipedia.org/wiki/SQL_Server_Express |
| sql ce | SQL Server Compact | http://en.wikipedia.org/wiki/SQL_Server_Compact |
| SQL compact | SQL Server Compact | http://en.wikipedia.org/wiki/SQL_Server_Compact |
| Tsql | T-SQL | http://en.wikipedia.org/wiki/Transact-SQL |
| T/SQL | T-SQL | http://en.wikipedia.org/wiki/Transact-SQL |
| TSQL | T-SQL | http://en.wikipedia.org/wiki/Transact-SQL |
| t-sql | T-SQL | http://en.wikipedia.org/wiki/Transact-SQL |
| pl/sql | PL/SQL | http://en.wikipedia.org/wiki/PL/SQL |
| msn | MSN | http://en.wikipedia.org/wiki/MSN |
| WinForms | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| winforms | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| win forms | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| Winform | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| Win-Forms | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| windows form | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| Winforms | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| windows forms | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| win form | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| WinForm | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| winform | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| Win Form | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| wiform | Windows Forms | http://en.wikipedia.org/wiki/Windows_Forms |
| tiff | TIFF | http://en.wikipedia.org/wiki/Tagged_Image_File_Format |
| android | Android | http://en.wikipedia.org/wiki/Android_%28operating_system%29 |
| iphone | iPhone | http://en.wikipedia.org/wiki/IPhone |
| Iphone | iPhone | http://en.wikipedia.org/wiki/IPhone |
| i-phone | iPhone | http://en.wikipedia.org/wiki/IPhone |
| I-phone | iPhone | http://en.wikipedia.org/wiki/IPhone |
| IPHONE | iPhone | http://en.wikipedia.org/wiki/IPhone |
| .net | .NET | http://en.wikipedia.org/wiki/.NET_Framework |
| .Net | .NET | http://en.wikipedia.org/wiki/.NET_Framework |
| dotnet | .NET | http://en.wikipedia.org/wiki/.NET_Framework |
| .net3.5 | .NET 3.5 | http://en.wikipedia.org/wiki/.NET_Framework_version_history#.NET_Framework_3.5 |
| scala | Scala | http://en.wikipedia.org/wiki/Scala_%28programming_language%29 |
| SCALA | Scala | http://en.wikipedia.org/wiki/Scala_%28programming_language%29 |
| objective-c | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| Objective C | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| objective-C | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| Obj-C | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| ObjC | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| obj c | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| objective c | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| ObjectiveC | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| obj-c | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| Obetive-C | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| objc | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| Obj-c | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| Objective c | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| objective C | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| Objective-c | Objective-C | http://en.wikipedia.org/wiki/Objective-C |
| FX cop | FxCop | http://en.wikipedia.org/wiki/FxCop |
| ASP.net MVC | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| ASP.Net MVC | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| asp.net mvc | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| Asp.net mvc | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| asp.net-mvc | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| asp net mvc | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| MVC.Net | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| MVC .Net | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| asp.net MVC | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| mvc.net | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| ASPNET MVC | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| aspnet mvc | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| ASP MVC | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| ASP.MVC | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| Asp.net MVC | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| ASP.Net MvC | ASP.NET MVC | http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework |
| asp.net | ASP.NET | http://en.wikipedia.org/wiki/ASP.NET |
| ASP.net | ASP.NET | http://en.wikipedia.org/wiki/ASP.NET |
| ASP.Net | ASP.NET | http://en.wikipedia.org/wiki/ASP.NET |
| Asp.net | ASP.NET | http://en.wikipedia.org/wiki/ASP.NET |
| Asp.NET | ASP.NET | http://en.wikipedia.org/wiki/ASP.NET |
| Asp.Net | ASP.NET | http://en.wikipedia.org/wiki/ASP.NET |
| ASp.NET | ASP.NET | http://en.wikipedia.org/wiki/ASP.NET |
| asp.NET | ASP.NET | http://en.wikipedia.org/wiki/ASP.NET |
| ASPNET | ASP.NET | http://en.wikipedia.org/wiki/ASP.NET |
| asp.et | ASP.NET | http://en.wikipedia.org/wiki/ASP.NET |
| asp | ASP Classic | http://en.wikipedia.org/wiki/Active_Server_Pages |
| ASP | ASP Classic | http://en.wikipedia.org/wiki/Active_Server_Pages |
| ASP classic | ASP Classic | http://en.wikipedia.org/wiki/Active_Server_Pages |
| Classic ASP | ASP Classic | http://en.wikipedia.org/wiki/Active_Server_Pages |
| classic ASP | ASP Classic | http://en.wikipedia.org/wiki/Active_Server_Pages |
| osx | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| os x | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| OS X | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| OSX | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| OS/X | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| mac os X | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| Mac OSX | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| mac osx | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| Mac OS X | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| MacOSX | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| Mac OSx | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| MAC OS X | Mac OS X | http://en.wikipedia.org/wiki/Mac_OS_X |
| Leopard | Mac OS X Leopard | http://en.wikipedia.org/wiki/Mac_OS_X_Leopard |
| leopard | Mac OS X Leopard | http://en.wikipedia.org/wiki/Mac_OS_X_Leopard |
| Mac OS X Leopard | Mac OS X Leopard | http://en.wikipedia.org/wiki/Mac_OS_X_Leopard |
| snow leopard | Mac OS X Snow Leopard | http://en.wikipedia.org/wiki/Mac_OS_X_Snow_Leopard |
| Snow leopard | Mac OS X Snow Leopard | http://en.wikipedia.org/wiki/Mac_OS_X_Snow_Leopard |
| snow-leopard | Mac OS X Snow Leopard | http://en.wikipedia.org/wiki/Mac_OS_X_Snow_Leopard |
| Mac OS X Snow Leopard | Mac OS X Snow Leopard | http://en.wikipedia.org/wiki/Mac_OS_X_Snow_Leopard |
| flex | Flex | http://en.wikipedia.org/wiki/Adobe_Flex |
| FLEX | Flex | http://en.wikipedia.org/wiki/Adobe_Flex |
| action script | ActionScript | http://en.wikipedia.org/wiki/ActionScript |
| actionscript | ActionScript | http://en.wikipedia.org/wiki/ActionScript |
| Actionscript | ActionScript | http://en.wikipedia.org/wiki/ActionScript |
| AS3 | ActionScript | http://en.wikipedia.org/wiki/ActionScript |
| as2 | ActionScript | http://en.wikipedia.org/wiki/ActionScript |
| SP | stored procedure | http://en.wikipedia.org/wiki/Stored_procedure |
| SPs | stored procedure | http://en.wikipedia.org/wiki/Stored_procedure |
| sp | stored procedure | http://en.wikipedia.org/wiki/Stored_procedure |
| sproc | stored procedure | http://en.wikipedia.org/wiki/Stored_procedure |
| sprocs | stored procedure | http://en.wikipedia.org/wiki/Stored_procedure |
| StoredProcedure | stored procedure | http://en.wikipedia.org/wiki/Stored_procedure |
| stored proc | stored procedure | http://en.wikipedia.org/wiki/Stored_procedure |
| db | database | http://en.wikipedia.org/wiki/Relational_database_management_system |
| DB | database | http://en.wikipedia.org/wiki/Relational_database_management_system |
| Db | database | http://en.wikipedia.org/wiki/Relational_database_management_system |
| ria | RIA | http://en.wikipedia.org/wiki/Rich_Internet_application |
| Subsonic | SubSonic | http://en.wikipedia.org/wiki/Subsonic_%28software%29 |
| subsonic | SubSonic | http://en.wikipedia.org/wiki/Subsonic_%28software%29 |
| Entity Framework | ADO.NET Entity Framework | http://en.wikipedia.org/wiki/ADO.NET_Entity_Framework |
| EF | ADO.NET Entity Framework | http://en.wikipedia.org/wiki/ADO.NET_Entity_Framework |
| ADO.Net Entity Framework | ADO.NET Entity Framework | http://en.wikipedia.org/wiki/ADO.NET_Entity_Framework |
| entity framework | ADO.NET Entity Framework | http://en.wikipedia.org/wiki/ADO.NET_Entity_Framework |
| Entities framework | ADO.NET Entity Framework | http://en.wikipedia.org/wiki/ADO.NET_Entity_Framework |
| Ado.net entity framework | ADO.NET Entity Framework | http://en.wikipedia.org/wiki/ADO.NET_Entity_Framework |
| ef | ADO.NET Entity Framework | http://en.wikipedia.org/wiki/ADO.NET_Entity_Framework |
| ado.net | ADO.NET | http://en.wikipedia.org/wiki/ADO.NET |
| Ado.Net | ADO.NET | http://en.wikipedia.org/wiki/ADO.NET |
| wpf | WPF | http://en.wikipedia.org/wiki/Windows_Presentation_Foundation |
| Wpf | WPF | http://en.wikipedia.org/wiki/Windows_Presentation_Foundation |
| msdn | MSDN | http://en.wikipedia.org/wiki/Microsoft_Developer_Network |
| msndn | MSDN | http://en.wikipedia.org/wiki/Microsoft_Developer_Network |
| Powerbuilder | PowerBuilder | http://en.wikipedia.org/wiki/PowerBuilder |
| powerbuilder | PowerBuilder | http://en.wikipedia.org/wiki/PowerBuilder |
| PB | PowerBuilder | http://en.wikipedia.org/wiki/PowerBuilder |
| swing | Swing | http://en.wikipedia.org/wiki/Swing_%28Java%29 |
| qt | Qt | http://en.wikipedia.org/wiki/Qt_%28toolkit%29 |
| QT | Qt | http://en.wikipedia.org/wiki/Qt_%28toolkit%29 |
| Qt creator | Qt Creator | http://en.wikipedia.org/wiki/Qt_Creator |
| QtCreator | Qt Creator | http://en.wikipedia.org/wiki/Qt_Creator |
| Qt creater | Qt Creator | http://en.wikipedia.org/wiki/Qt_Creator |
| QT Creator | Qt Creator | http://en.wikipedia.org/wiki/Qt_Creator |
| QT-Creator | Qt Creator | http://en.wikipedia.org/wiki/Qt_Creator |
| qt-creator | Qt Creator | http://en.wikipedia.org/wiki/Qt_Creator |
| qtcreator | Qt Creator | http://en.wikipedia.org/wiki/Qt_Creator |
| qt creator | Qt Creator | http://en.wikipedia.org/wiki/Qt_Creator |
| Qtcreater | Qt Creator | http://en.wikipedia.org/wiki/Qt_Creator |
| Intellisense | IntelliSense | http://en.wikipedia.org/wiki/IntelliSense |
| intellisense | IntelliSense | http://en.wikipedia.org/wiki/IntelliSense |
| intelisense | IntelliSense | http://en.wikipedia.org/wiki/IntelliSense |
| internet | Internet | http://en.wikipedia.org/wiki/Internet |
| Youtube | YouTube | http://en.wikipedia.org/wiki/YouTube |
| youtube | YouTube | http://en.wikipedia.org/wiki/YouTube |
| utf-8 | UTF-8 | http://en.wikipedia.org/wiki/UTF-8 |
| utf8 | UTF-8 | http://en.wikipedia.org/wiki/UTF-8 |
| UTF8 | UTF-8 | http://en.wikipedia.org/wiki/UTF-8 |
| utf-16 | UTF-16 | http://en.wikipedia.org/wiki/UTF-16/UCS-2 |
| intellij | IntelliJ IDEA | http://en.wikipedia.org/wiki/IntelliJ_IDEA |
| IntellJ Idea | IntelliJ IDEA | http://en.wikipedia.org/wiki/IntelliJ_IDEA |
| IntelliJ | IntelliJ IDEA | http://en.wikipedia.org/wiki/IntelliJ_IDEA |
| Intellij | IntelliJ IDEA | http://en.wikipedia.org/wiki/IntelliJ_IDEA |
| InjelliJ | IntelliJ IDEA | http://en.wikipedia.org/wiki/IntelliJ_IDEA |
| couchdb | CouchDB | http://en.wikipedia.org/wiki/CouchDB |
| reflector | .NET Reflector | http://en.wikipedia.org/wiki/.NET_Reflector |
| .Net reflector | .NET Reflector | http://en.wikipedia.org/wiki/.NET_Reflector |
| .NET reflector | .NET Reflector | http://en.wikipedia.org/wiki/.NET_Reflector |
| nhibernate | NHibernate | http://en.wikipedia.org/wiki/NHibernate |
| Nhibernate | NHibernate | http://en.wikipedia.org/wiki/NHibernate |
| hibernate | Hibernate | http://en.wikipedia.org/wiki/Hibernate_%28Java%29 |
| HIBERNATE | Hibernate | http://en.wikipedia.org/wiki/Hibernate_%28Java%29 |
| poco | POCO | http://en.wikipedia.org/wiki/Plain_Old_CLR_Object |
| struts | Struts | http://en.wikipedia.org/wiki/Apache_Struts |
| s2 | Struts | http://en.wikipedia.org/wiki/Apache_Struts |
| S2 | Struts | http://en.wikipedia.org/wiki/Apache_Struts |
| boost | Boost C++ Libraries | http://en.wikipedia.org/wiki/Boost_C%2B%2B_Libraries |
| Boost | Boost C++ Libraries | http://en.wikipedia.org/wiki/Boost_C%2B%2B_Libraries |
| CI | Continuous integration | http://en.wikipedia.org/wiki/Continuous_integration |
| imagemagik | ImageMagick | http://en.wikipedia.org/wiki/ImageMagick |
| dpi | DPI | http://en.wikipedia.org/wiki/Dots_per_inch |
| numpy | NumPy | http://en.wikipedia.org/wiki/NumPy |
| NUmPy | NumPy | http://en.wikipedia.org/wiki/NumPy |
| Numpy | NumPy | http://en.wikipedia.org/wiki/NumPy |
| bash | Bash | http://en.wikipedia.org/wiki/Bash_%28Unix_shell%29 |
| WIX | WiX | http://en.wikipedia.org/wiki/WiX |
| Wix | WiX | http://en.wikipedia.org/wiki/WiX |
| perl | Perl | http://en.wikipedia.org/wiki/Perl |
| Linq | LINQ | http://en.wikipedia.org/wiki/Language_Integrated_Query |
| linq | LINQ | http://en.wikipedia.org/wiki/Language_Integrated_Query |
| Powershell | PowerShell | http://en.wikipedia.org/wiki/Windows_PowerShell |
| powershell | PowerShell | http://en.wikipedia.org/wiki/Windows_PowerShell |
| Expression blend | Expression Blend | http://en.wikipedia.org/wiki/Microsoft_Expression_Blend |
| blend | Expression Blend | http://en.wikipedia.org/wiki/Microsoft_Expression_Blend |
| Blend | Expression Blend | http://en.wikipedia.org/wiki/Microsoft_Expression_Blend |
| vim | Vim | http://en.wikipedia.org/wiki/Vim_%28text_editor%29 |
| gvim | gVim | http://en.wikipedia.org/wiki/Vim_%28text_editor%29#Interface |
| GVIM | gVim | http://en.wikipedia.org/wiki/Vim_%28text_editor%29#Interface |
| VIM | Vim | http://en.wikipedia.org/wiki/Vim_%28text_editor%29 |
| VI | vi | http://en.wikipedia.org/wiki/Vi |
| notepad++ | Notepad++ | http://en.wikipedia.org/wiki/Notepad%2B%2B |
| cygwin | Cygwin | http://en.wikipedia.org/wiki/Cygwin |
| sourceforge | SourceForge | http://en.wikipedia.org/wiki/SourceForge |
| source forge | SourceForge | http://en.wikipedia.org/wiki/SourceForge |
| open office | OpenOffice | http://en.wikipedia.org/wiki/OpenOffice.org |
| Open Office | OpenOffice | http://en.wikipedia.org/wiki/OpenOffice.org |
| vb script | VBScript | http://en.wikipedia.org/wiki/VBScript |
| vbscript | VBScript | http://en.wikipedia.org/wiki/VBScript |
| Vbscript | VBScript | http://en.wikipedia.org/wiki/VBScript |
| VB Script | VBScript | http://en.wikipedia.org/wiki/VBScript |
| matlab | MATLAB | http://en.wikipedia.org/wiki/MATLAB |
| Matlab | MATLAB | http://en.wikipedia.org/wiki/MATLAB |
| segfault | segmentation fault | http://en.wikipedia.org/wiki/Segmentation_fault |
| seg fault | segmentation fault | http://en.wikipedia.org/wiki/Segmentation_fault |
| json | JSON | http://en.wikipedia.org/wiki/JSON |
| Json | JSON | http://en.wikipedia.org/wiki/JSON |
| firebug | Firebug | http://en.wikipedia.org/wiki/Firebug |
| FireBug | Firebug | http://en.wikipedia.org/wiki/Firebug |
| drupal | Drupal | http://en.wikipedia.org/wiki/Drupal |
| DRUPAL | Drupal | http://en.wikipedia.org/wiki/Drupal |
| pyqt | PyQt | http://en.wikipedia.org/wiki/PyQt |
| GMail | Gmail | http://en.wikipedia.org/wiki/Gmail |
| gmail | Gmail | http://en.wikipedia.org/wiki/Gmail |
| resharper | ReSharper | http://en.wikipedia.org/wiki/ReSharper |
| Resharper | ReSharper | http://en.wikipedia.org/wiki/ReSharper |
| tdd | TDD | http://en.wikipedia.org/wiki/Test-driven_development |
| Test-Driven-Development | TDD | http://en.wikipedia.org/wiki/Test-driven_development |
| Xampp | XAMPP | http://en.wikipedia.org/wiki/XAMPP |
| XAMMP | XAMPP | http://en.wikipedia.org/wiki/XAMPP |
| xampp | XAMPP | http://en.wikipedia.org/wiki/XAMPP |
| xammp | XAMPP | http://en.wikipedia.org/wiki/XAMPP |
| yui | YUI | http://en.wikipedia.org/wiki/Yahoo!_UI_Library |
| Yui | YUI | http://en.wikipedia.org/wiki/Yahoo!_UI_Library |
| SED | sed | http://en.wikipedia.org/wiki/Sed |
| awk | AWK | http://en.wikipedia.org/wiki/AWK |
| tcl | Tcl | http://en.wikipedia.org/wiki/Tcl |
| TCL | Tcl | http://en.wikipedia.org/wiki/Tcl |
| lua | Lua | http://en.wikipedia.org/wiki/Lua_%28programming_language%29 |
| ANT | Ant | http://en.wikipedia.org/wiki/Apache_Ant |
| ant | Ant | http://en.wikipedia.org/wiki/Apache_Ant |
| VB.Net | VB.NET | http://en.wikipedia.org/wiki/Visual_Basic_.NET |
| Vb.Net | VB.NET | http://en.wikipedia.org/wiki/Visual_Basic_.NET |
| vb.net | VB.NET | http://en.wikipedia.org/wiki/Visual_Basic_.NET |
| VB.net | VB.NET | http://en.wikipedia.org/wiki/Visual_Basic_.NET |
| Vb.net | VB.NET | http://en.wikipedia.org/wiki/Visual_Basic_.NET |
| VB6 | Visual Basic 6.0 | http://en.wikipedia.org/wiki/Visual_Basic#Timeline |
| vb6 | Visual Basic 6.0 | http://en.wikipedia.org/wiki/Visual_Basic#Timeline |
| vb 6 | Visual Basic 6.0 | http://en.wikipedia.org/wiki/Visual_Basic#Timeline |
| Vb6 | Visual Basic 6.0 | http://en.wikipedia.org/wiki/Visual_Basic#Timeline |
| WIFI | Wi-Fi | http://en.wikipedia.org/wiki/Wi-Fi |
| Wifi | Wi-Fi | http://en.wikipedia.org/wiki/Wi-Fi |
| WiFi | Wi-Fi | http://en.wikipedia.org/wiki/Wi-Fi |
| wifi | Wi-Fi | http://en.wikipedia.org/wiki/Wi-Fi |
| wi-fi | Wi-Fi | http://en.wikipedia.org/wiki/Wi-Fi |
| IO | I/O | http://en.wikipedia.org/wiki/Input/output |
| io | I/O | http://en.wikipedia.org/wiki/Input/output |
| vlc | VLC media player | http://en.wikipedia.org/wiki/VLC_media_player |
| VLC | VLC media player | http://en.wikipedia.org/wiki/VLC_media_player |
| emacs | Emacs | http://en.wikipedia.org/wiki/Emacs |
| python | Python | http://en.wikipedia.org/wiki/Python_%28programming_language%29 |
| ipython | IPython | http://en.wikipedia.org/wiki/IPython |
| maven | Maven | http://en.wikipedia.org/wiki/Apache_Maven |
| greasemonkey | Greasemonkey | http://en.wikipedia.org/wiki/Greasemonkey |
| grease monkey | Greasemonkey | http://en.wikipedia.org/wiki/Greasemonkey |
| putty | PuTTY | http://en.wikipedia.org/wiki/PuTTY |
| ta | TA | http://en.wikipedia.org/wiki/Teaching_assistant |
| codeigniter | CodeIgniter | http://en.wikipedia.org/wiki/Codeigniter#CodeIgniter |
| Codeigniter | CodeIgniter | http://en.wikipedia.org/wiki/Codeigniter#CodeIgniter |
| glassfish | GlassFish | http://en.wikipedia.org/wiki/GlassFish |
| glasfish | GlassFish | http://en.wikipedia.org/wiki/GlassFish |
| 7Zip | 7-Zip | http://en.wikipedia.org/wiki/7-Zip |
| 7zip | 7-Zip | http://en.wikipedia.org/wiki/7-Zip |
| 7-zip | 7-Zip | http://en.wikipedia.org/wiki/7-Zip |
| sync | synchronise | http://en.wikipedia.org/wiki/Synchronization |
| sychronized | synchronise | http://en.wikipedia.org/wiki/Synchronization |
| sifr | sIFR | http://en.wikipedia.org/wiki/Scalable_Inman_Flash_Replacement |
| Sifr | sIFR | http://en.wikipedia.org/wiki/Scalable_Inman_Flash_Replacement |
| BootCamp | Boot Camp | http://en.wikipedia.org/wiki/Boot_Camp_%28software%29 |
| Bootcamp | Boot Camp | http://en.wikipedia.org/wiki/Boot_Camp_%28software%29 |
| bootcamp | Boot Camp | http://en.wikipedia.org/wiki/Boot_Camp_%28software%29 |
| boot camp | Boot Camp | http://en.wikipedia.org/wiki/Boot_Camp_%28software%29 |
| ironpython | IronPython | http://en.wikipedia.org/wiki/IronPython |
| groovy | Groovy | http://en.wikipedia.org/wiki/Groovy_%28programming_language%29 |
| Netbeans | NetBeans | http://en.wikipedia.org/wiki/NetBeans |
| netbeans | NetBeans | http://en.wikipedia.org/wiki/NetBeans |
| net-beans | NetBeans | http://en.wikipedia.org/wiki/NetBeans |
| wxython | wxPython | http://en.wikipedia.org/wiki/WxPython |
| solr | Solr | http://en.wikipedia.org/wiki/Apache_Solr |
| SolR | Solr | http://en.wikipedia.org/wiki/Apache_Solr |
| noscript | NoScript | http://en.wikipedia.org/wiki/NoScript |
| Noscript | NoScript | http://en.wikipedia.org/wiki/NoScript |
| adblock | Adblock | http://en.wikipedia.org/wiki/Adblock_Plus |
| AdBlock | Adblock | http://en.wikipedia.org/wiki/Adblock_Plus |
| matplotlib | Matplotlib | http://en.wikipedia.org/wiki/Matplotlib |
| idle | IDLE | http://en.wikipedia.org/wiki/IDLE_%28Python%29 |
| Idle | IDLE | http://en.wikipedia.org/wiki/IDLE_%28Python%29 |
| Sharepoint | SharePoint | http://en.wikipedia.org/wiki/Microsoft_SharePoint |
| sharepoint | SharePoint | http://en.wikipedia.org/wiki/Microsoft_SharePoint |
| share point | SharePoint | http://en.wikipedia.org/wiki/Microsoft_SharePoint |
| paypal | PayPal | http://en.wikipedia.org/wiki/PayPal |
| pay pal | PayPal | http://en.wikipedia.org/wiki/PayPal |
| Paypal | PayPal | http://en.wikipedia.org/wiki/PayPal |
| mono | Mono | http://en.wikipedia.org/wiki/Mono_%28software%29 |
| MONO | Mono | http://en.wikipedia.org/wiki/Mono_%28software%29 |
| Monodevelop | MonoDevelop | http://en.wikipedia.org/wiki/MonoDevelop |
| mono develop | MonoDevelop | http://en.wikipedia.org/wiki/MonoDevelop |
| vmware | VMware | http://en.wikipedia.org/wiki/VMware |
| VMWare | VMware | http://en.wikipedia.org/wiki/VMware |
| Vmware | VMware | http://en.wikipedia.org/wiki/VMware |
| scipy | SciPy | http://en.wikipedia.org/wiki/SciPy |
| Scipy | SciPy | http://en.wikipedia.org/wiki/SciPy |
| ldap | LDAP | http://en.wikipedia.org/wiki/LDAP |
| Scite | SciTE | http://en.wikipedia.org/wiki/SciTE |
| SciTe | SciTE | http://en.wikipedia.org/wiki/SciTE |
| scite | SciTE | http://en.wikipedia.org/wiki/SciTE |
| SCitE | SciTE | http://en.wikipedia.org/wiki/SciTE |
| SCITE | SciTE | http://en.wikipedia.org/wiki/SciTE |
| Textpad++ | Textpad++ | |
| orm | ORM | http://en.wikipedia.org/wiki/Object-relational_mapping |
| ExtJS | Ext | http://en.wikipedia.org/wiki/Ext_JS |
| Ext JS | Ext | http://en.wikipedia.org/wiki/Ext_JS |
| ExtJs | Ext | http://en.wikipedia.org/wiki/Ext_JS |
| extjs | Ext | http://en.wikipedia.org/wiki/Ext_JS |
| ext | Ext | http://en.wikipedia.org/wiki/Ext_JS |
| ext-js | Ext | http://en.wikipedia.org/wiki/Ext_JS |
| gwt | GWT | http://en.wikipedia.org/wiki/Google_Web_Toolkit |
| mediawiki | MediaWiki | http://en.wikipedia.org/wiki/MediaWiki |
| MEDIAWIKI | MediaWiki | http://en.wikipedia.org/wiki/MediaWiki |
| Mediawiki | MediaWiki | http://en.wikipedia.org/wiki/MediaWiki |
| excel | Excel | http://en.wikipedia.org/wiki/Microsoft_Excel |
| EXCEL | Excel | http://en.wikipedia.org/wiki/Microsoft_Excel |
| wysiwyg | WYSIWYG | http://en.wikipedia.org/wiki/WYSIWYG |
| moinmoin | MoinMoin | http://en.wikipedia.org/wiki/MoinMoin |
| joomla | Joomla | http://en.wikipedia.org/wiki/Joomla |
| JOOMLA | Joomla | http://en.wikipedia.org/wiki/Joomla |
| yaml | YAML | http://en.wikipedia.org/wiki/YAML |
| xaml | XAML | http://en.wikipedia.org/wiki/Extensible_Application_Markup_Language |
| Xaml | XAML | http://en.wikipedia.org/wiki/Extensible_Application_Markup_Language |
| openGl | OpenGL | http://en.wikipedia.org/wiki/OpenGL |
| opengl | OpenGL | http://en.wikipedia.org/wiki/OpenGL |
| Open Gl | OpenGL | http://en.wikipedia.org/wiki/OpenGL |
| inkscape | Inkscape | http://en.wikipedia.org/wiki/Inkscape |
| ndepend | NDepend | http://en.wikipedia.org/wiki/NDepend |
| XmlRpc | XML-RPC | http://en.wikipedia.org/wiki/XML-RPC |
| xmlprc | XML-RPC | http://en.wikipedia.org/wiki/XML-RPC |
| coldfusion | ColdFusion | http://en.wikipedia.org/wiki/ColdFusion |
| CF | ColdFusion | http://en.wikipedia.org/wiki/ColdFusion |
| Mootools | MooTools | http://en.wikipedia.org/wiki/MooTools |
| mootools | MooTools | http://en.wikipedia.org/wiki/MooTools |
| gae | Google App Engine | http://en.wikipedia.org/wiki/Google_App_Engine |
| GAE | Google App Engine | http://en.wikipedia.org/wiki/Google_App_Engine |
| AppEngine | Google App Engine | http://en.wikipedia.org/wiki/Google_App_Engine |
| google app engine | Google App Engine | http://en.wikipedia.org/wiki/Google_App_Engine |
| google-app-engine | Google App Engine | http://en.wikipedia.org/wiki/Google_App_Engine |
| Google AppEngine | Google App Engine | http://en.wikipedia.org/wiki/Google_App_Engine |
| google apps | Google Apps | http://en.wikipedia.org/wiki/Google_Apps |
| wordpress | WordPress | http://en.wikipedia.org/wiki/WordPress |
| Wordpress | WordPress | http://en.wikipedia.org/wiki/WordPress |
| WP | WordPress | http://en.wikipedia.org/wiki/WordPress |
| ssl | SSL | http://en.wikipedia.org/wiki/SSL |
| webkit | WebKit | http://en.wikipedia.org/wiki/WebKit |
| Webkit | WebKit | http://en.wikipedia.org/wiki/WebKit |
| arduino | Arduino | http://en.wikipedia.org/wiki/Arduino |
| arduion | Arduino | http://en.wikipedia.org/wiki/Arduino |
| arudino | Arduino | http://en.wikipedia.org/wiki/Arduino |
| ARDUINO | Arduino | http://en.wikipedia.org/wiki/Arduino |
| prototype | Prototype | http://en.wikipedia.org/wiki/Prototype_JavaScript_Framework |
| silverlight | Silverlight | http://en.wikipedia.org/wiki/Microsoft_Silverlight |
| sliverlight | Silverlight | http://en.wikipedia.org/wiki/Microsoft_Silverlight |
| Sliverlight | Silverlight | http://en.wikipedia.org/wiki/Microsoft_Silverlight |
| Silverligt | Silverlight | http://en.wikipedia.org/wiki/Microsoft_Silverlight |
| Silvelight | Silverlight | http://en.wikipedia.org/wiki/Microsoft_Silverlight |
| Silver light | Silverlight | http://en.wikipedia.org/wiki/Microsoft_Silverlight |
| siverlight | Silverlight | http://en.wikipedia.org/wiki/Microsoft_Silverlight |
| crystal report | Crystal Reports | http://en.wikipedia.org/wiki/Crystal_Reports |
| crystal reports | Crystal Reports | http://en.wikipedia.org/wiki/Crystal_Reports |
| Crystal report | Crystal Reports | http://en.wikipedia.org/wiki/Crystal_Reports |
| openvpn | OpenVPN | http://en.wikipedia.org/wiki/OpenVPN |
| mongodb | MongoDB | http://en.wikipedia.org/wiki/MongoDB |
| Hbase | HBase | http://en.wikipedia.org/wiki/HBase |
| lucene | Lucene | http://en.wikipedia.org/wiki/Lucene |
| subversion | Subversion | http://en.wikipedia.org/wiki/Apache_Subversion |
| SVN | Subversion | http://en.wikipedia.org/wiki/Apache_Subversion |
| svn | Subversion | http://en.wikipedia.org/wiki/Apache_Subversion |
| SubVersion | Subversion | http://en.wikipedia.org/wiki/Apache_Subversion |
| cp | The Code Project | http://en.wikipedia.org/wiki/The_Code_Project |
| CP | The Code Project | http://en.wikipedia.org/wiki/The_Code_Project |
| codeproject | The Code Project | http://en.wikipedia.org/wiki/The_Code_Project |
| code project | The Code Project | http://en.wikipedia.org/wiki/The_Code_Project |
| CodeProject | The Code Project | http://en.wikipedia.org/wiki/The_Code_Project |
| csv | CSV | http://en.wikipedia.org/wiki/Comma-separated_values |
| fk | foreign key | http://en.wikipedia.org/wiki/Foreign_key |
| FK | foreign key | http://en.wikipedia.org/wiki/Foreign_key |
| clr | CLR | http://en.wikipedia.org/wiki/Common_Language_Runtime |
| magento | Magento | http://en.wikipedia.org/wiki/Magento |
| zend | Zend Framework | http://en.wikipedia.org/wiki/Zend_Framework |
| Zend | Zend Framework | http://en.wikipedia.org/wiki/Zend_Framework |
| simplexml | SimpleXML | http://en.wikipedia.org/wiki/SimpleXML |
| redis | Redis | http://en.wikipedia.org/wiki/Redis_%28data_store%29 |
| tokyocabnit | Tokyo Cabinet | http://fallabs.com/tokyocabinet/ |
| memcached | Memcached | http://en.wikipedia.org/wiki/Memcached |
| fastcgi | FastCGI | http://en.wikipedia.org/wiki/FastCGI |
| project euler | Project Euler | http://en.wikipedia.org/wiki/Project_Euler |
| project Euler | Project Euler | http://en.wikipedia.org/wiki/Project_Euler |
| FireSheep | Firesheep | http://en.wikipedia.org/wiki/Firesheep |
| processing | Processing | http://en.wikipedia.org/wiki/Processing_%28programming_language%29 |
| flash | Flash | http://en.wikipedia.org/wiki/Adobe_Flash |
| curl | cURL | http://en.wikipedia.org/wiki/CURL |
| Bittorrent | BitTorrent | http://en.wikipedia.org/wiki/BitTorrent_%28protocol%29 |
| bittorrent | BitTorrent | http://en.wikipedia.org/wiki/BitTorrent_%28protocol%29 |
| notepad | Notepad | http://en.wikipedia.org/wiki/Notepad_%28software%29 |
| wordpad | WordPad | http://en.wikipedia.org/wiki/WordPad |
| captcha | CAPTCHA | http://en.wikipedia.org/wiki/CAPTCHA |
| sympy | SymPy | http://en.wikipedia.org/wiki/SymPy |
| pig latin | Pig Latin | http://en.wikipedia.org/wiki/Pig_Latin |
| pig-latin | Pig Latin | http://en.wikipedia.org/wiki/Pig_Latin |
| Pig-latin | Pig Latin | http://en.wikipedia.org/wiki/Pig_Latin |
| Pig-Latin | Pig Latin | http://en.wikipedia.org/wiki/Pig_Latin |
| PigLatin | Pig Latin | http://en.wikipedia.org/wiki/Pig_Latin |
| piglatin | Pig Latin | http://en.wikipedia.org/wiki/Pig_Latin |
| pil | PIL | http://en.wikipedia.org/wiki/Python_Imaging_Library |
| mac book pro | MacBook Pro | http://en.wikipedia.org/wiki/MacBook_Pro |
| macbook | MacBook Pro | http://en.wikipedia.org/wiki/MacBook_Pro |
| bluetooth | Bluetooth | http://en.wikipedia.org/wiki/Bluetooth |
| BT | Bluetooth | http://en.wikipedia.org/wiki/Bluetooth |
| xbox | Xbox | http://en.wikipedia.org/wiki/Xbox |
| ps3 | PS3 | http://en.wikipedia.org/wiki/PlayStation_3 |
| tcl/tk | Tcl/Tk | http://en.wikipedia.org/wiki/Tcl |
| symfony | Symfony | http://en.wikipedia.org/wiki/Symfony |
| Symphony | Symfony | http://en.wikipedia.org/wiki/Symfony |
| symphony | Symfony | http://en.wikipedia.org/wiki/Symfony |
| tomcat | Tomcat | http://en.wikipedia.org/wiki/Apache_Tomcat |
| openid | OpenID | http://en.wikipedia.org/wiki/OpenID |
| openID | OpenID | http://en.wikipedia.org/wiki/OpenID |
| openId | OpenID | http://en.wikipedia.org/wiki/OpenID |
| open id | OpenID | http://en.wikipedia.org/wiki/OpenID |
| OpenId | OpenID | http://en.wikipedia.org/wiki/OpenID |
| myopenid | MyOpenID | http://myopenid.com/ |
| Oauth | OAuth | http://en.wikipedia.org/wiki/OAuth |
| oauth | OAuth | http://en.wikipedia.org/wiki/OAuth |
| OAUTH | OAuth | http://en.wikipedia.org/wiki/OAuth |
| css | CSS | http://en.wikipedia.org/wiki/Cascading_Style_Sheets |
| Css | CSS | http://en.wikipedia.org/wiki/Cascading_Style_Sheets |
| Github | GitHub | http://en.wikipedia.org/wiki/GitHub |
| github | GitHub | http://en.wikipedia.org/wiki/GitHub |
| tinymce | TinyMCE | http://en.wikipedia.org/wiki/TinyMCE |
| TinyMce | TinyMCE | http://en.wikipedia.org/wiki/TinyMCE |
| tinyMCE | TinyMCE | http://en.wikipedia.org/wiki/TinyMCE |
| blackberry | BlackBerry | http://en.wikipedia.org/wiki/BlackBerry |
| Blackberry | BlackBerry | http://en.wikipedia.org/wiki/BlackBerry |
| BB | BlackBerry | http://en.wikipedia.org/wiki/BlackBerry |
| bb | BlackBerry | http://en.wikipedia.org/wiki/BlackBerry |
| eclipse | Eclipse | http://en.wikipedia.org/wiki/Eclipse_%28software%29 |
| gcc | GCC | http://en.wikipedia.org/wiki/GNU_Compiler_Collection |
| gdb | GDB | http://en.wikipedia.org/wiki/GNU_Debugger |
| valgrind | Valgrind | http://en.wikipedia.org/wiki/Valgrind |
| git | Git | http://en.wikipedia.org/wiki/Git_%28software%29 |
| Textmate | TextMate | http://en.wikipedia.org/wiki/TextMate |
| textmate | TextMate | http://en.wikipedia.org/wiki/TextMate |
| TM | TextMate | http://en.wikipedia.org/wiki/TextMate |
| ie | Internet Explorer | http://en.wikipedia.org/wiki/Internet_Explorer |
| IE | Internet Explorer | http://en.wikipedia.org/wiki/Internet_Explorer |
| internet explorer | Internet Explorer | http://en.wikipedia.org/wiki/Internet_Explorer |
| internet explore | Internet Explorer | http://en.wikipedia.org/wiki/Internet_Explorer |
| I.E | Internet Explorer | http://en.wikipedia.org/wiki/Internet_Explorer |
| IE6 | Internet Explorer 6 | http://en.wikipedia.org/wiki/Internet_Explorer_6 |
| IE 6 | Internet Explorer 6 | http://en.wikipedia.org/wiki/Internet_Explorer_6 |
| Internet Explorer 6 | Internet Explorer 6 | http://en.wikipedia.org/wiki/Internet_Explorer_6 |
| IE7 | Internet Explorer 7 | http://en.wikipedia.org/wiki/Internet_Explorer_7 |
| ie7 | Internet Explorer 7 | http://en.wikipedia.org/wiki/Internet_Explorer_7 |
| IE 7 | Internet Explorer 7 | http://en.wikipedia.org/wiki/Internet_Explorer_7 |
| IE8 | Internet Explorer 8 | http://en.wikipedia.org/wiki/Internet_Explorer_8 |
| IE9 | Internet Explorer 9 | http://en.wikipedia.org/wiki/Internet_Explorer_9 |
| html | HTML | http://en.wikipedia.org/wiki/HTML |
| Html | HTML | http://en.wikipedia.org/wiki/HTML |
| firefox | Firefox | http://en.wikipedia.org/wiki/Mozilla_Firefox |
| FF | Firefox | http://en.wikipedia.org/wiki/Mozilla_Firefox |
| firfox | Firefox | http://en.wikipedia.org/wiki/Mozilla_Firefox |
| chrome | Chrome | http://en.wikipedia.org/wiki/Google_Chrome |
| scheme | Scheme | http://en.wikipedia.org/wiki/Scheme_%28programming_language%29 |
| powerpoint | PowerPoint | http://en.wikipedia.org/wiki/Microsoft_PowerPoint |
| c# | C# | http://en.wikipedia.org/wiki/C_Sharp_%28programming_language%29 |
| sql | SQL | http://en.wikipedia.org/wiki/SQL |
| Sql | SQL | http://en.wikipedia.org/wiki/SQL |
| SQl | SQL | http://en.wikipedia.org/wiki/SQL |
| http | HTTP | http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol |
| Http | HTTP | http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol |
| ascii | ASCII | http://en.wikipedia.org/wiki/ASCII |
| acsii | ASCII | http://en.wikipedia.org/wiki/ASCII |
| fluent nhibernate | Fluent NHibernate | http://fluentnhibernate.org/ |
| Fluentnhibernate | Fluent NHibernate | http://fluentnhibernate.org/ |
| fluentnhibernate | Fluent NHibernate | http://fluentnhibernate.org/ |
| fluent | Fluent NHibernate | http://fluentnhibernate.org/ |
| FluentNhibernate | Fluent NHibernate | http://fluentnhibernate.org/ |
| async | asynchronously | http://en.wiktionary.org/wiki/asynchronously |
| Async | asynchronously | http://en.wiktionary.org/wiki/asynchronously |
| haskell | Haskell | http://en.wikipedia.org/wiki/Haskell_%28programming_language%29 |
| playstation 3 | PlayStation 3 | http://en.wikipedia.org/wiki/PlayStation_3 |
| Nunit | NUnit | http://en.wikipedia.org/wiki/NUnit |
| nunit | NUnit | http://en.wikipedia.org/wiki/NUnit |
| Junit | JUnit | http://en.wikipedia.org/wiki/JUnit |
| hudson | Hudson | http://en.wikipedia.org/wiki/Hudson_%28software%29 |
| grails | Grails | http://en.wikipedia.org/wiki/Grails_%28framework%29 |
| VS | Visual Studio | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio |
| visual studio | Visual Studio | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio |
| vs | Visual Studio | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio |
| vs.net | Visual Studio | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio |
| visual stduio | Visual Studio | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio |
| VS 2008 | Visual Studio 2008 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008 |
| VS2008 | Visual Studio 2008 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008 |
| vs08 | Visual Studio 2008 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008 |
| vs 08 | Visual Studio 2008 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008 |
| Vs08 | Visual Studio 2008 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008 |
| visual studio 2008 | Visual Studio 2008 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008 |
| VS.Net 2008 | Visual Studio 2008 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008 |
| VS.NET 2008 | Visual Studio 2008 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008 |
| Visual Studio2008 | Visual Studio 2008 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008 |
| studio 2008 | Visual Studio 2008 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2008 |
| VS 2010 | Visual Studio 2010 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2010 |
| VS2010 | Visual Studio 2010 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2010 |
| vs 2010 | Visual Studio 2010 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2010 |
| visual studio 2010 | Visual Studio 2010 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2010 |
| vs2010 | Visual Studio 2010 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2010 |
| studio 2010 | Visual Studio 2010 | http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2010 |
| moq | Moq | http://en.wikipedia.org/wiki/Moq |
| MsBuild | MSBuild | http://en.wikipedia.org/wiki/MSBuild |
| msbuild | MSBuild | http://en.wikipedia.org/wiki/MSBuild |
| ms build | MSBuild | http://en.wikipedia.org/wiki/MSBuild |
| dreamweaver | Dreamweaver | http://en.wikipedia.org/wiki/Adobe_Dreamweaver |
| cocoa | Cocoa | http://en.wikipedia.org/wiki/Cocoa_%28API%29 |
| clojure | Clojure | http://en.wikipedia.org/wiki/Clojure |
| aquamacs | Aquamacs | http://en.wikipedia.org/wiki/Aquamacs |
| slime | SLIME | http://en.wikipedia.org/wiki/SLIME |
| django | Django | http://en.wikipedia.org/wiki/Django_%28web_framework%29 |
| xcode | Xcode | http://en.wikipedia.org/wiki/Xcode |
| XCode | Xcode | http://en.wikipedia.org/wiki/Xcode |
| itunes | iTunes | http://en.wikipedia.org/wiki/ITunes |
| wcf | WCF | http://en.wikipedia.org/wiki/Windows_Communication_Foundation |
| ruby | Ruby | http://en.wikipedia.org/wiki/Ruby_%28programming_language%29 |
| RoR | Ruby on Rails | http://en.wikipedia.org/wiki/Ruby_on_Rails |
| Rails | Ruby on Rails | http://en.wikipedia.org/wiki/Ruby_on_Rails |
| rails | Ruby on Rails | http://en.wikipedia.org/wiki/Ruby_on_Rails |
| ruby on rails | Ruby on Rails | http://en.wikipedia.org/wiki/Ruby_on_Rails |
| gem | RubyGems | http://en.wikipedia.org/wiki/RubyGems |
| rubygem | RubyGems | http://en.wikipedia.org/wiki/RubyGems |
| jruby | JRuby | http://en.wikipedia.org/wiki/JRuby |
| unicode | Unicode | http://en.wikipedia.org/wiki/Unicode |
| UNICODE | Unicode | http://en.wikipedia.org/wiki/Unicode |
| SPRING | Spring Framework | http://en.wikipedia.org/wiki/Spring_Framework |
| spring | Spring Framework | http://en.wikipedia.org/wiki/Spring_Framework |
| Spring | Spring Framework | http://en.wikipedia.org/wiki/Spring_Framework |
| Spring.Net | Spring.NET | http://www.springframework.net/ |
| JBOSS | JBoss | http://en.wikipedia.org/wiki/JBoss |
| jboss | JBoss | http://en.wikipedia.org/wiki/JBoss |
| paint.net | Paint.NET | http://en.wikipedia.org/wiki/Paint.NET |
| regex | regular expression | http://en.wikipedia.org/wiki/Regular_expression |
| Regex | regular expression | http://en.wikipedia.org/wiki/Regular_expression |
| regexp | regular expression | http://en.wikipedia.org/wiki/Regular_expression |
| Regexp | regular expression | http://en.wikipedia.org/wiki/Regular_expression |
| regx | regular expression | http://en.wikipedia.org/wiki/Regular_expression |
| regular Expression | regular expression | http://en.wikipedia.org/wiki/Regular_expression |
| REGEX | regular expression | http://en.wikipedia.org/wiki/Regular_expression |
| xpath | XPath | http://en.wikipedia.org/wiki/XPath |
| Xpath | XPath | http://en.wikipedia.org/wiki/XPath |
| repl | REPL | http://en.wikipedia.org/wiki/Read-eval-print_loop |
| Vtune | VTune | http://en.wikipedia.org/wiki/VTune |
| oprofile | OProfile | http://oprofile.sourceforge.net/about/ |
| Oprofile | OProfile | http://oprofile.sourceforge.net/about/ |
| pspad | PSPad | http://en.wikipedia.org/wiki/PSPad |
| Textpad | TextPad | http://en.wikipedia.org/wiki/TextPad |
| textpad | TextPad | http://en.wikipedia.org/wiki/TextPad |
| e-text editor | E Text Editor | http://en.wikipedia.org/wiki/E_Text_Editor |
| E | E Text Editor | http://en.wikipedia.org/wiki/E_Text_Editor |
| E-Texteditor | E Text Editor | http://en.wikipedia.org/wiki/E_Text_Editor |
| e-texteditor | E Text Editor | http://en.wikipedia.org/wiki/E_Text_Editor |
| WINE | Wine | http://en.wikipedia.org/wiki/Wine_%28software%29 |
| wine | Wine | http://en.wikipedia.org/wiki/Wine_%28software%29 |
| komodo | Komodo | http://en.wikipedia.org/wiki/ActiveState_Komodo |
| wxwidgets | wxWidgets | http://en.wikipedia.org/wiki/WxWidgets |
| WxWidgets | wxWidgets | http://en.wikipedia.org/wiki/WxWidgets |
| p/invoke | P/Invoke | http://en.wikipedia.org/wiki/Platform_Invocation_Services |
| pinvoke | P/Invoke | http://en.wikipedia.org/wiki/Platform_Invocation_Services |
| jni | JNI | http://en.wikipedia.org/wiki/Java_Native_Interface |
| Ilasm | ILAsm | http://en.wikipedia.org/wiki/ILAsm |
| Ildasm | ILDASM | |
| Cruisecontrol | CruiseControl | http://en.wikipedia.org/wiki/CruiseControl |
| cruisecontrol | CruiseControl | http://en.wikipedia.org/wiki/CruiseControl |
| cruise control | CruiseControl | http://en.wikipedia.org/wiki/CruiseControl |
| CruiseControl.net | CruiseControl.NET | http://en.wikipedia.org/wiki/CruiseControl |
| CruiseControl.Net | CruiseControl.NET | http://en.wikipedia.org/wiki/CruiseControl |
| cruisecontrol.net | CruiseControl.NET | http://en.wikipedia.org/wiki/CruiseControl |
| cruiseontrol.net | CruiseControl.NET | http://en.wikipedia.org/wiki/CruiseControl |
| CCNet | CruiseControl.NET | http://en.wikipedia.org/wiki/CruiseControl |
| CC.Net | CruiseControl.NET | http://en.wikipedia.org/wiki/CruiseControl |
| ccnet | CruiseControl.NET | http://en.wikipedia.org/wiki/CruiseControl |
| jdbc | JDBC | http://en.wikipedia.org/wiki/Java_Database_Connectivity |
| war | WAR | http://en.wikipedia.org/wiki/WAR_%28Sun_file_format%29 |
| h2 | H2 | http://en.wikipedia.org/wiki/H2_%28DBMS%29 |
| yum | YUM | http://en.wikipedia.org/wiki/Yellowdog_Updater,_Modified |
| Aptitude | aptitude | http://en.wikipedia.org/wiki/Aptitude_%28software%29 |
| Redmine | Redmine | http://en.wikipedia.org/wiki/Redmine |
| gitorious | Gitorious | http://en.wikipedia.org/wiki/Gitorious |
| vps | VPS | http://en.wikipedia.org/wiki/Virtual_private_server |
| Google Search | http://en.wikipedia.org/wiki/Google_Search | |
| Google Search | http://en.wikipedia.org/wiki/Google_Search | |
| yahoo | Yahoo Search | http://en.wikipedia.org/wiki/Yahoo!_Search |
| Yahoo | Yahoo Search | http://en.wikipedia.org/wiki/Yahoo!_Search |
| http://en.wikipedia.org/wiki/Facebook | ||
| http://en.wikipedia.org/wiki/Facebook | ||
| FB | http://en.wikipedia.org/wiki/Facebook | |
| flickr | Flickr | http://en.wikipedia.org/wiki/Flickr |
| filezilla | FileZilla | http://en.wikipedia.org/wiki/FileZilla |
| ejb | EJB | http://en.wikipedia.org/wiki/Enterprise_JavaBean |
| dojo | Dojo Toolkit | http://en.wikipedia.org/wiki/Dojo_Toolkit |
| IB | Interface Builder | http://en.wikipedia.org/wiki/Interface_Builder |
| interface builder | Interface Builder | http://en.wikipedia.org/wiki/Interface_Builder |
| Interface builder | Interface Builder | http://en.wikipedia.org/wiki/Interface_Builder |
| xib | Interface Builder | http://en.wikipedia.org/wiki/Interface_Builder |
| ibatis | iBATIS | http://en.wikipedia.org/wiki/IBATIS |
| WireShark | Wireshark | http://en.wikipedia.org/wiki/Wireshark |
| wireshark | Wireshark | http://en.wikipedia.org/wiki/Wireshark |
| Monotouch | MonoTouch | http://en.wikipedia.org/wiki/Mono_(software)#MonoTouch |
| Mono Touch | MonoTouch | http://en.wikipedia.org/wiki/Mono_(software)#MonoTouch |
| Sql Server Management Studio | SQL Server Management Studio | http://en.wikipedia.org/wiki/SQL_Server_Management_Studio |
| MS SQL Server Management Studio | SQL Server Management Studio | http://en.wikipedia.org/wiki/SQL_Server_Management_Studio |
| sql mgmt studio | SQL Server Management Studio | http://en.wikipedia.org/wiki/SQL_Server_Management_Studio |
| SQL management studio | SQL Server Management Studio | http://en.wikipedia.org/wiki/SQL_Server_Management_Studio |
| Vsto | VSTO | http://en.wikipedia.org/wiki/Visual_Studio_Tools_for_Office |
| mime | MIME | http://en.wikipedia.org/wiki/MIME |
| Mime | MIME | http://en.wikipedia.org/wiki/MIME |
| url | URL | http://en.wikipedia.org/wiki/Uniform_Resource_Locator |
| Url | URL | http://en.wikipedia.org/wiki/Uniform_Resource_Locator |
| mercurial | Mercurial | http://en.wikipedia.org/wiki/Mercurial |
| bitkeeper | BitKeeper | http://en.wikipedia.org/wiki/BitKeeper |
| raid | RAID | http://en.wikipedia.org/wiki/RAID |
| Raid | RAID | http://en.wikipedia.org/wiki/RAID |
| scsi | SCSI | http://en.wikipedia.org/wiki/SCSI |
| wav | WAV | http://en.wikipedia.org/wiki/WAV |
| cpython | CPython | http://en.wikipedia.org/wiki/CPython |
| mp3 | MP3 | http://en.wikipedia.org/wiki/MP3 |
| ogg | Ogg | http://en.wikipedia.org/wiki/Ogg |
| PIP | pip | http://pip.openplans.org/ |
| Virtualenv | virtualenv | http://pypi.python.org/pypi/virtualenv |
| Atlas | ATLAS | http://en.wikipedia.org/wiki/Automatically_Tuned_Linear_Algebra_Software |
| r | R | http://en.wikipedia.org/wiki/R_%28programming_language%29 |
| GEdit | gedit | http://en.wikipedia.org/wiki/Gedit |
| linux | Linux | http://en.wikipedia.org/wiki/Linux |
| LINUX | Linux | http://en.wikipedia.org/wiki/Linux |
| unix | Unix | http://en.wikipedia.org/wiki/Unix |
| UNIX | Unix | http://en.wikipedia.org/wiki/Unix |
| wmv | WMV | http://en.wikipedia.org/wiki/Windows_Media_Video |
| mp4 | MP4 | http://en.wikipedia.org/wiki/MPEG-4_Part_14 |
| h264 | H.264 | http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC |
| aac | AAC | http://en.wikipedia.org/wiki/Advanced_Audio_Coding |
| SO | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| S.O | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| StacOkverflow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| StackOF | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| stackoverflow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| Stackoverflow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| stack-overflow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| stack overflow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| Stackover flow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| StackOverflow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| StackOverFlow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| Stack overflow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| Stack Overflow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| stackovwerflow | Stack Overflow | http://en.wikipedia.org/wiki/Stack_Overflow |
| SE | Stack Exchange | http://en.wikipedia.org/wiki/Stack_Exchange_Network |
| stackexchange | Stack Exchange | http://en.wikipedia.org/wiki/Stack_Exchange_Network |
| stack exchange | Stack Exchange | http://en.wikipedia.org/wiki/Stack_Exchange_Network |
| stackExchange | Stack Exchange | http://en.wikipedia.org/wiki/Stack_Exchange_Network |
| StackExchange | Stack Exchange | http://en.wikipedia.org/wiki/Stack_Exchange_Network |
| Stack Exchange | Stack Exchange | http://en.wikipedia.org/wiki/Stack_Exchange_Network |
| stack-exchange | Stack Exchange | http://en.wikipedia.org/wiki/Stack_Exchange_Network |
| serverfault | Server Fault | http://en.wikipedia.org/wiki/Server_Fault |
| SF | Server Fault | http://en.wikipedia.org/wiki/Server_Fault |
| ServerFault | Server Fault | http://en.wikipedia.org/wiki/Server_Fault |
| Serverfault | Server Fault | http://en.wikipedia.org/wiki/Server_Fault |
| Server Fault | Server Fault | http://en.wikipedia.org/wiki/Server_Fault |
| CS | computer science | http://en.wikipedia.org/wiki/Computer_science |
| compsci | computer science | http://en.wikipedia.org/wiki/Computer_science |
| Virtualbox | VirtualBox | http://en.wikipedia.org/wiki/VirtualBox |
| virtualbox | VirtualBox | http://en.wikipedia.org/wiki/VirtualBox |
| virtual box | VirtualBox | http://en.wikipedia.org/wiki/VirtualBox |
| Virtual Box | VirtualBox | http://en.wikipedia.org/wiki/VirtualBox |
| VirtulBox | VirtualBox | http://en.wikipedia.org/wiki/VirtualBox |
| VirualPC | Virual PC | http://en.wikipedia.org/wiki/Windows_Virtual_PC |
| pcre | PCRE | http://en.wikipedia.org/wiki/Perl_Compatible_Regular_Expressions |
| zen cart | Zen Cart | http://en.wikipedia.org/wiki/Zen_Cart |
| ZenCart | Zen Cart | http://en.wikipedia.org/wiki/Zen_Cart |
| zenCart | Zen Cart | http://en.wikipedia.org/wiki/Zen_Cart |
| jre | JRE | http://en.wikipedia.org/wiki/Java_Virtual_Machine#Execution_environment |
| SAFARI | Safari | http://en.wikipedia.org/wiki/Safari_%28web_browser%29 |
| opera | Opera | http://en.wikipedia.org/wiki/Opera_%28web_browser%29 |
| smtp | SMTP | http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol |
| definately | definitely | http://en.wiktionary.org/wiki/definately |
| nagios | Nagios | http://en.wikipedia.org/wiki/Nagios |
| usb | USB | http://en.wikipedia.org/wiki/Universal_Serial_Bus |
| Jqgrid | jqGrid | http://www.trirand.com/jqgridwiki/doku.php?id=start |
| JQGrid | jqGrid | http://www.trirand.com/jqgridwiki/doku.php?id=start |
| jqgrid | jqGrid | http://www.trirand.com/jqgridwiki/doku.php?id=start |
| jQgrid | jqGrid | http://www.trirand.com/jqgridwiki/doku.php?id=start |
| JqGrid | jqGrid | http://www.trirand.com/jqgridwiki/doku.php?id=start |
| JQgrid | jqGrid | http://www.trirand.com/jqgridwiki/doku.php?id=start |
| jQGrid | jqGrid | http://www.trirand.com/jqgridwiki/doku.php?id=start |
| nat | NAT | http://en.wikipedia.org/wiki/Network_address_translation |
| xmpp | XMPP | http://en.wikipedia.org/wiki/Extensible_Messaging_and_Presence_Protocol |
| imho | IMHO | http://en.wiktionary.org/wiki/IMHO |
| imo | IMO | http://en.wiktionary.org/wiki/IMO |
| rmi | RMI | http://en.wikipedia.org/wiki/Java_remote_method_invocation |
| opensocial | OpenSocial | http://en.wikipedia.org/wiki/OpenSocial |
| hdd | hard disk drive | http://en.wikipedia.org/wiki/Hard_disk_drive |
| HDD | hard disk drive | http://en.wikipedia.org/wiki/Hard_disk_drive |
| HD | hard disk drive | http://en.wikipedia.org/wiki/Hard_disk_drive |
| harddrive | hard disk drive | http://en.wikipedia.org/wiki/Hard_disk_drive |
| hd | hard disk drive | http://en.wikipedia.org/wiki/Hard_disk_drive |
| hard drive | hard disk drive | http://en.wikipedia.org/wiki/Hard_disk_drive |
| hard disk | hard disk drive | http://en.wikipedia.org/wiki/Hard_disk_drive |
| ssd | SSD | http://en.wikipedia.org/wiki/Solid-state_drive |
| i18n | internationalisation and localisation | http://en.wikipedia.org/wiki/Internationalization_and_localization |
| I18n | internationalisation and localisation | http://en.wikipedia.org/wiki/Internationalization_and_localization |
| Wamp | WAMP | http://en.wikipedia.org/wiki/WAMP |
| wamp | WAMP | http://en.wikipedia.org/wiki/WAMP |
| godaddy | Go Daddy | http://en.wikipedia.org/wiki/Go_Daddy |
| goaddy | Go Daddy | http://en.wikipedia.org/wiki/Go_Daddy |
| di | dependency injection | http://en.wikipedia.org/wiki/Dependency_injection |
| DI | dependency injection | http://en.wikipedia.org/wiki/Dependency_injection |
| Dependency Injection | dependency injection | http://en.wikipedia.org/wiki/Dependency_injection |
| seo | SEO | http://en.wikipedia.org/wiki/Search_engine_optimization |
| md5 | MD5 | http://en.wikipedia.org/wiki/MD5 |
| sha1 | SHA-1 | http://en.wikipedia.org/wiki/SHA-1 |
| xslt | XSLT | http://en.wikipedia.org/wiki/XSLT |
| innodb | InnoDB | http://en.wikipedia.org/wiki/InnoDB |
| myisam | MyISAM | http://en.wikipedia.org/wiki/MyISAM |
| html5 | HTML5 | http://en.wikipedia.org/wiki/HTML5 |
| confluence | Confluence | http://en.wikipedia.org/wiki/Confluence_%28software%29 |
| scrum | Scrum | http://en.wikipedia.org/wiki/Scrum_%28development%29 |
| TFS | Team Foundation Server | http://en.wikipedia.org/wiki/Team_Foundation_Server |
| tfs | Team Foundation Server | http://en.wikipedia.org/wiki/Team_Foundation_Server |
| mingw | MinGW | http://en.wikipedia.org/wiki/MinGW |
| CodeBlocks | Code::Blocks | http://en.wikipedia.org/wiki/Code::Blocks |
| Code Blocks | Code::Blocks | http://en.wikipedia.org/wiki/Code::Blocks |
| Airport | AirPort | http://en.wikipedia.org/wiki/AirPort |
| airport | AirPort | http://en.wikipedia.org/wiki/AirPort |
| adsl | ADSL | http://en.wikipedia.org/wiki/Asymmetric_Digital_Subscriber_Line |
| mbps | Mbit/s | http://en.wikipedia.org/wiki/Data_rate_units |
| legit | legitimate | http://en.wiktionary.org/wiki/legit |
| px | pixels | http://en.wikipedia.org/wiki/Pixel |
| w3 | W3C | http://en.wikipedia.org/wiki/World_Wide_Web_Consortium |
| w3c | W3C | http://en.wikipedia.org/wiki/World_Wide_Web_Consortium |
| afaik | AFAIK | http://en.wiktionary.org/wiki/AFAIK |
| ubuntu | Ubuntu | http://en.wikipedia.org/wiki/Ubuntu_%28operating_system%29 |
| UBUNTU | Ubuntu | http://en.wikipedia.org/wiki/Ubuntu_%28operating_system%29 |
| dao | DAO | http://en.wikipedia.org/wiki/Data_access_object |
| erlang | Erlang | http://en.wikipedia.org/wiki/Erlang_%28programming_language%29 |
| sdk | SDK | http://en.wikipedia.org/wiki/Software_development_kit |
Subscribe to:
Posts (Atom)