Articles submitted by members via their Technical Blog feed. Want to have the blog entries from
your Technical Blog automatically posted as articles on The Code Project? It's
easy!
1.
Getting Started with Erlang and Nitrogen
Getting started with Erlang and Nitrogen
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Tom Janssens
|
Updated: 17 Sep 2012
Rating:
(0 votes for this Article)
|
|
2.
How to set up a build server for your TFS Hosting account
In this article, I will share with you on how to set up a build server for your TFS Hosting account.
(The Code Project Open License (CPOL))
Enterprise Systems »
Content Management Server »
General
|
Windy Liu
|
Updated: 17 Sep 2012
Rating:
(0 votes for this Article)
|
|
3.
SQL Server: Script to Generate HTML Report/mail for Databses Current Size, Growth Rate and Available Disk Space
Working with multiple databases on multiple instances is a tough job. You need to monitor all these instances for everything. Best way to keep eye on every instance activity is SQL Server Jobs. How quickly databases on these instances are growing and does target instance has required space on hard d
(The Code Project Open License (CPOL))
Database »
Database »
SQL Server
|
aasim abdullah
|
Updated: 17 Sep 2012
Rating:
(0 votes for this Article)
|
|
4.
Introduction to Windows Metro Style
A brief introduction to Metro Style App Development
(The Code Project Open License (CPOL))
Graphics / Design »
Metro »
General
|
Christian Amado
|
Updated: 16 Sep 2012
Rating: 2.85/5
(6 votes)
|
|
5.
SQL Server: Applying Filter on sp_MSforeachDB
Working on multiple databases on a single instance, sometime you need to execute a query for each database and for that sp_MSforeachdb is the best choice.Recently talking to my development team I came to know that a very few guys have idea about filter for sp_MSforeachDB.For example, if I need to ge
(The Code Project Open License (CPOL))
Database »
Database »
SQL Server
|
aasim abdullah
|
Updated: 16 Sep 2012
Rating: 4.00/5
(1 vote)
|
|
6.
SATA hotplug : Add/Remove sata HDD in a jiffy
Here is how to use your SATA HDD like an portable (plug-n-play) HDD...
(The Creative Commons Attribution-Share Alike 3.0 Unported License)
General Reading »
Hardware & System »
Hardware
|
TheCodeArtist
|
Updated: 16 Sep 2012
Rating: 2.67/5
(3 votes)
|
|
7.
Model Validation in ASP.NET MVC
In this article we will see how to apply basic validations to a model and also we will see how to create custom validations by implementing the ValidationAttribute class or IValidatableObject interface.
(The Code Project Open License (CPOL))
Web Development »
Validation »
General
|
After2050
|
Updated: 16 Sep 2012
Rating: 5.00/5
(2 votes)
|
|
8.
5 ways to improve HDD performance on Linux
How to Improve the hard disk performance on a Linux system.
(The Creative Commons Attribution-Share Alike 3.0 Unported License)
General Reading »
Hardware & System »
System
|
TheCodeArtist
|
Updated: 16 Sep 2012
Rating: 5.00/5
(1 vote)
|
|
9.
HDD, FS, O_SYNC : Throughput vs. Integrity
Filesystems, block-devices, throughput and data-integrity. Why O_SYNC on a filesystem does NOT guarantee a write to the HDD and why Raw-I/O over BLOCK devices DOES guarantee a write to disk.
(The Creative Commons Attribution-Share Alike 3.0 Unported License)
General Reading »
Hardware & System »
Device Drivers
|
TheCodeArtist
|
Updated: 16 Sep 2012
Rating: 5.00/5
(2 votes)
|
|
10.
SQL Server: Controlling SQL Server Log Information
For DBAs, SQL Server Log is the main source to troubleshoot problems related to SQL Server. It contains user-defined events and certain system events. By default 6 files are created for an instance and are recycled once sql server is restarted or you can force for new sql server log file with follo
(The Code Project Open License (CPOL))
Database »
Database »
SQL Server
|
aasim abdullah
|
Updated: 15 Sep 2012
Rating:
(0 votes for this Article)
|
|
11.
Using your favorite Visual Studio 2010 add-ins/extensions in VS2012
I've just about finished my transition from Visual Studio 2010 to Visual Studio 2012. While this has probably been the easiest of any VS update I can remember, it wasn't without a few painful moments. Here's a summary of the annoyances and the solutions I found. Uppercase Menus Why, Microsoft, why?
(The Code Project Open License (CPOL))
|
James Treworgy
|
Updated: 15 Sep 2012
Rating: 4.00/5
(1 vote)
|
|
12.
Diagnosing ADO.NET with ETW traces
The majority of modern applications use ORMs as a way to connect to a database. Those libraries simplify the usage of the underlying ADO.NET API in a way that we might even forget that under the hood we are dealing … Continue reading →
(The Code Project Open License (CPOL))
Platforms, Frameworks & Libraries »
.NET Framework »
Instrumentation
|
Sebastian Solnica
|
Updated: 15 Sep 2012
Rating: 5.00/5
(1 vote)
|
|
13.
SQL Server: How Local Variables Can Reduce Query Performance
It’s a common practice by database developers to use local variables in stored procedures and scripts to place filter on basis of these local variables. YES, these local variables can slowdown your queries. Let’s prove it. Create a new table and insert dummy rows. USEAdventureWorksGO CREATE TA
(The Code Project Open License (CPOL))
Web Development »
ATL Server »
General
|
aasim abdullah
|
Updated: 15 Sep 2012
Rating: 2.00/5
(1 vote)
|
|
14.
SQL Server has encountered 1 occurrence(s) of cachestore flush
SQL Server Log report from one of our production server was continuously showing following messages. Log Date Process Info Process Text 2012-07-23T20:00:08.880 spid17s SQL Server has encountered 1 occurrence(s) of cachestore flush for the 'Bound Trees' cachestore (part of plan cache) du
(The Code Project Open License (CPOL))
Web Development »
ATL Server »
General
|
aasim abdullah
|
Updated: 14 Sep 2012
Rating:
(0 votes for this Article)
|
|
15.
SQL Server : Tables Relationship Diagram Using TSQL Script
How do you create relationship diagram/report between tables of a given database ? Mostly people use Database Diagram for this purpose, but this can be achieved by TSQL script as following.Download Script -- Tables Relationship Script -- Script By: Syed Muhammad Yasir for http://connectsql.blogspot.
(The Code Project Open License (CPOL))
Web Development »
ATL Server »
General
|
aasim abdullah
|
Updated: 14 Sep 2012
Rating:
(0 votes for this Article)
|
|
16.
Touch handling in Android
Touch handling in Android.
(The Code Project Open License (CPOL))
Mobile Development »
Android »
General
|
Serge Desmedt
|
Updated: 14 Sep 2012
Rating:
(0 votes for this Article)
|
|
17.
Converting BBCode into HTML using C#
A brief article into how to use a C# library that converts BBCode used by popular forums into HTML.
(The Code Project Open License (CPOL))
Web Development »
HTML / CSS »
HTML
|
Richard James Moss
|
Updated: 14 Sep 2012
Rating: 5.00/5
(2 votes)
|
|
18.
Apple unveils the iPhone 5
Apple's yearly iPhone ritual has come to pass again.
(The Code Project Open License (CPOL))
Mobile Development »
iPhone »
General
|
Zac Gery
|
Updated: 13 Sep 2012
Rating: 1.00/5
(2 votes)
|
|
19.
An army general in charge of a software development project
Coming to a common ground is helpful for communication between two professions of very different disciplines.
(The Code Project Open License (CPOL))
Development Lifecycle »
Design and Architecture »
General
|
Zijian
|
Updated: 13 Sep 2012
Rating:
(0 votes for this Article)
|
|
20.
Unit Test, TDD, and some limitations
Unit Test, TDD, and some limitations.
(The Code Project Open License (CPOL))
Development Lifecycle »
Testing and QA »
General
|
Zijian
|
Updated: 13 Sep 2012
Rating:
(0 votes for this Article)
|