Click here to Skip to main content
15,886,578 members

Our Mailouts

Newsletter - 14 Jan 2013

Most popular new articles
144 articles this week.
Welcome to this week's newsletter from The Code Project.
To ensure that future newsletters you receive from The Code Project aren't mistakenly blocked by antispam software, be sure to add the maillist.codeproject.com domain to your list of allowed senders.

Site News

CES 2013 has wrapped up and while not, specifically, a software developer show it still has a lot to offer those of us who can't get enough of the latest and greatest. Most interesting to me were the new laptops, specifically the ultrabooks.

It looks like Intel will be making our interactions with our humble portable even more interesting with their Perceptual Computing. Think of it as a Kinect powered laptop. Intel are doing Yet Another crazy big contest based around this so if you're up for some loot you should hit their contest page..

We're also wrapping up our own Intel Ultrabook challenge with the final piece of the puzzle (so to speak). our Ultrabook Article competition invites those who took the time to learn about Ultrabooks in our previous comp. to write up their hard earned knowledge. A Latest And Greatest Ultrabook is up for grabs, but get in quick- it ends this week.

cheers,
Chris Maunder

Click here Build Windows 8 Apps
Find out why Windows 8 represents the largest opportunity for our generation of app developers. Sign up now and you'll receive the tools, help, and support you need to get your Windows 8 app developed. Start your App Adventure today!
Click here Ultrabook: System Responsiveness, Performance, and Battery Life
New Ultrabooks inspired by Intel fit deliver excellent performance and new Intel technologies in a smaller package so that you can complete all your tasks in a lighter, more comfortable portable system. Learn more!
Click here Manage your app and get a shirt!
New Relic, the leader in SaaS-based web app performance monitoring, is giving everyone who tries their software a Nerd Life shirt. Do you code in .NET, Ruby, PHP, Python, or Java? Then you can use New Relic at no cost!
Click here VIDEO: InApp Payments for your application (56min)
Learn about PlaySpan, now part of Visa and how to add InApp payments to your Desktop, Web or Mobile software project. This demo includes features and functions, code snippets and all you’ll need to get started. Watch Now.
Click here Is your team ready to innovate in 2013?
Give your team access to thousands of technology books & videos. Starting at $299.
Click here Bring Your Database to Life
Iron Speed Designer is the fastest way to deliver feature-rich applications for .NET, SharePoint and software-as-a-service cloud computing environments. Amaze users with visually stunning applications that look like they took months to build. Download a Trial!
Click here SpreadsheetGear 2012 for .NET Now Available!
New WPF and Silverlight controls, multithreaded recalc, 64 new Excel compatible functions, save to XPS, improved efficiency and performance, Windows 8 support and more. Download your fully functional SpreadsheetGear trial Today!

Weekly Poll Results

Will you be upgrading to Windows 8?

Survey period: 7 Jan 2013 to 14 Jan 2013

We ran this survey back in October and thought it would be interesting to see how opinions have changed.

OptionVotes% 
I already use Windows 8 as my primary OS35620.03356 votes, 20.03%
I have Windows 8 on one of my machines25014.07250 votes, 14.07%
I plan on upgrading to Windows 8 as my primary OS1166.53116 votes, 6.53%
I plan on installing Windows 8 on a machine18210.24182 votes, 10.24%
I'm not sure19010.69190 votes, 10.69%
I don't think so20211.37202 votes, 11.37%
No - I have no plans to use Windows 848027.01480 votes, 27.01%

This week's survey: When you release code under a license, what factors are important?

Most popular new articles

7 Jan 2013 - 13 Jan 2013

Latest Additions

144 articles overall. 55 new, 89 updated.

New articles added

Ajax

Algorithms & Recipes

C#

Client side scripting

Database

Document / View

Game Development

  • Puzzle Square - Destiny777
    The goal of the program was to make things simple yet easy to understand and quickly changeable based on future ideas.

Java

Libraries

OpenGL

Product Showcase

Shell and IE programming

Ultrabooks

Windows 8 Design

Articles updated

.NET Framework

Ajax

Algorithms & Recipes

Android

Applications & Tools

ASP.NET

ASP.NET Controls

Audio and Video

Button Controls

C / C++ Language

C#

Charts, Graphs and Images

  • D3 crash course - Espen Harlinn
    Learn how to visualize data generated by an ASP.Net HTTP handler using D3.js

Client side scripting

Cryptography & Security

Database

Design and Architecture

Edit Controls

Files and Folders

GDI+

  • Persian Gulf in 3D Anaglyph - Mohammad Reza Khosravi
    This application uses some simple 2D methods to make 3D scenes which can be seen with Red/Cyan Anaglyph glasses.

General Graphics

  • Guess My Drawing! - Albara Hakami
    A Windows Forms application to share a whiteboard with many clients with only one drawer, in a gamy way.

GPU Programming

Hardware & System

HTML / CSS

Internet / Network

  • fastJSON - Mehdi Gholam
    Smallest, fastest polymorphic JSON serializer (with Silverlight4 and MonoDroid support)

  • Google Translator - Ravi Bhavnani
    An object that harnesses the power of Google's online natural language translation tools.

  • Node.Js And Stuff - Sacha Barber
    Small demo app using Node.Js/Socket.IO/MongoDB/D3.Js and jQuery

  • Building a Socket-WebServer using C# - rockdino
    How to make a simple web server which supports GZIP compression, applications, and sessions.

Miscellaneous

Parallel Programming

Product Showcase

Shell and IE programming

Silverlight

Tabs & Property Pages

Ultrabooks

Windows 8 Design

Windows Presentation Foundation

Windows Runtime

XML

New Tips and Tricks added

Algorithms & Recipes

Android

Applications & Tools

ASP.NET

ASP.NET Controls

C#

Client side scripting

Database

Libraries

LINQ

SharePoint Server

Tips and Tricks updated

Applications & Tools

ASP.NET

ASP.NET Controls

Client side scripting

Collections

Database

Libraries

Silverlight

VB.NET

Windows Phone 7

New Technical Blogs added

Applications & Tools

ASP.NET

Client side scripting

Database

  • Automatically importing CSV into MySQL - Richard Penman
    Sometimes I need to import large spreadsheets into MySQL.The easy way would be to assume all fields are varchar, but then the database would lose features such as ordering by a numeric field.The hard way would be to manually determine the type of each field to define the schema.That doesn't sound mu

Design and Architecture

  • Build Metrics with Distributed Teams and Large Organizations - eric hexter
    The first and most important metric is having a Working build, in terms of continuous integration, that means: compiling software and passing unit tests. It is pretty simple but with distributed teams these becomes even more important.

  • Facade Pattern - David Corne
    This is the first of actual posts in my series on design patterns in Python.

DirectX

  • DirectX made simple - Super Lloyd
    CodeProject With Windows 8, WinRT, C++/Cx I think the time to write an elegant C# / XAML app using some DirectX rendering in C++ has finally come! Thanks WinRT! :-) Here I just plan to describe my attempt at learning DirectX and C++ and integrate it nicely in a C# XAML app. My first exercise was

HTML / CSS

Internet / Network

Libraries

Other .NET Languages

  • How to make python faster - Richard Penman
    Python and other scripting languages are sometimes dismissed because of their inefficiency compared to compiled languages like C. For example here are implementations of the fibonacci sequence in C and Python:int fib(int n){ if (n < 2) return n; else return fib(n - 1) + fib(n - 2);}int m

Reviews on Third Party Products and Tools

  • Solving CAPTCHA with OCR - Richard Penman
    Some websites require passing a CAPTCHA to access their content. As I have written before these can be parsed using the deathbycaptcha API, however for large websites with many CAPTCHA's this becomes prohibitively expensive. For example solving 1 million CAPTCHA's with this API would cost $1390.Fort

  • Apps of 2012 - Terrence Dorsey
    2012 was the second full year back using a Mac as my full-time work machine since the mid-90s. The transition from Lion to Mountain Lion hasn't been smooth as I would have liked, but it's still a nice place to get some work done.In theory, I don't need many tools to get my daily work accomplished: a

SQL Reporting Services

  • Using sql compact for integration tests with entity framework. - eric hexter
    In my practices using continuous integration, I try to achieve 100% code coverage using integration tests. This is a separate metric from my unit tests, think of these tests as verifying all of my infrastructure code works properly when wired … Continue reading →

Testing and QA

  • Code review guidelines - ludovicianul
    Code review is systematic examination (often known as peer review) of computer source code.

Threads, Processes & IPC

  • Threading with webkit - Richard Penman
    In a previous post I showed how to scrape a list of webpages. Here is an updated example that downloads the content in multiple threads.

Uncategorised Technical Blogs

Web Security

  • Automatic web scraping - Richard Penman
    I have been interested in automatic approaches to web scraping for a few years now.During university I created the SiteScraper library, which used training cases to automatically scrape webpages.This approach was particularly useful for scraping a website periodically because the model could automat

Web Services

Technical Blogs updated

Algorithms & Recipes

Client side scripting

  • Binding Metro UI Tiles with Knockout.js - Sk. Tajbir
    Knockout is a JavaScript library which dynamically binds data between different html contents and follow Model-View-View-Model (MVVM) design pattern.  It’s one of the core feature is Observable, which can detect changes in the view model....

Cross Platform

Site & Server Management

  • SQL Server: A Query Slow in SSMS, Fast in Application, WHY? - aasim abdullah
    Today, a colleague asked me, why his simple selectquery is taking around 3000ms (3 Seconds) to execute while, same query is quite fast when executed from application. Answer is simple: SQL Server Management Studio use RBAR-Row By Agonizing Rowmethod to fetch rows and inform row by row to SQL Server




© 2013 The Code Project.  All rights reserved.


This email was sent to mailout@maillist.codeproject.com. To stop receiving The Code Project Insider News click here.
The Code Project 503-250 Ferrand Drive, Toronto Ontario, M3C 3G8 Canada +1 416-849-8900 x 100

Please do not reply directly to this email. It was sent from an unattended mailbox. For correspondence please use webmaster@codeproject.com