Chủ Nhật, 4 tháng 5, 2014

The Daily Build - 5 May 2014. Peer to Peer File Sharing Through WCF

51 articles yesterday match your preferences.
Welcome to today's Daily Build from CodeProject.

Workspaces::Docs - Update your article content via ::Workspaces

If you've posted an article on CodeProject then your article's source code, Tasks list and documentation all live in a Workspace connected to your article. You can connect to your code (and anyone else's code!) directly using a Git client, and you can post bugs and suggestions on the article's Task list. You can now also update your article's content via ::Docs in ::Workspaces.

Simply visit your article's workspace (see the links on the left of each article) then click on "Article" on the left and then click the edit icon at the top right of the article. Your changes appear immediately on your workspace but will need to go through the (very quick) moderation process in order to appear as updated text on your CodeProject article.

HTML article contest

It's the last week of our HTML5/CSS3 article writing competition starts this week. The topics of the last pair of articles to be written will be announced today on the competition page. Sharpen your pencils! Or keyboards.

Click here SDD 2014 London – 100+ talks from great speakers
With 100+ deep-dive sessions & all-day workshops, all of them delivered by world-class experts, you'll find plenty of choice at SDD 2014 – topics include .NET Architecture, Async C#, ASP.NET MVC 5, AngularJS, Web APIs, & more: click here for details.
Click here Achieve the Ten-Hour Workweek
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 Open private workspaces for only $2 per month!
Workspaces now powers CodeProject and it's available for your own projects! Git, Task tracking, or private workspaces - as many as you want. Offer limited to the first 10,000 signups until May 30. Try it today!

Weekly Poll Results

Through how many devices do you browse the internet?

Survey period: 28 Apr 2014 to 5 May 2014

Count only devices that allow you to read your favourite websites.

OptionVotes% 
11467.84146 votes, 7.84%
241122.07411 votes, 22.07%
362633.62626 votes, 33.62%
430916.60309 votes, 16.60%
51618.65161 votes, 8.65%
6-81518.11151 votes, 8.11%
9-11130.7013 votes, 0.70%
12-15110.5911 votes, 0.59%
15-2080.438 votes, 0.43%
21+261.4026 votes, 1.40%

This week's survey: Do you comment your code?

Most popular new articles

2 May 2014 - 4 May 2014

Latest Additions

51 articles overall. 33 new, 18 updated.

New articles added

.NET Framework

ASP.NET

ASP.NET Controls

  • MVC Custom Select Control - Stephen Muecke
    MVC HtmlHelper class used in conjunction with a JQuery plugin to generate a custom select control that provides complex property postback, keyboard filtering of items, grouped and hierarchical displays, optional AJAX loading and CSS styling of items.

C#

Database

Design and Architecture

HTML / CSS

Miscellaneous

  • The big MVVM Template - _Noctis_
    To save you doing this every time you want a WPF/MVVM project, here it is, all rolled into one.

Programming Tips

  • 10 Golden Rules Of Good OOP - Giovanni Scerra
    A good architecture means money saved in learning, maintaining, testing, fixing, extending and scaling source code. The following guidelines are not exhaustive and are meant to be applied on top of the SOLID principles and proper use of OO Design Patterns.

Articles updated

ASP.NET

Azure

  • Azure Service Bus Tester - Roman Kiss
    This article describes the design and implementation of the small tool, tester for Windows Azure Service Bus Messaging.

C / C++ Language

  • A .NET like Dictionary in C++ - Paulo Zemek
    This article presents a .NET like Dictionary implemented in C++, which has better performance and consumes less memory than the STL's unordered_map class.

C#

Hardware & System

  • How to build ultimate XBMC HTPC for less than $200 - Predrag Tomasevic
    Enjoy watching your videos on the big screen by building your own Home Theater PC and using XBMC. Article also touches on other Media Players like Roku 3, Apple TV, Android TV Boxes...

Internet / Network

  • fastBinaryJSON - Mehdi Gholam
    A binary JSON serializer based on fastJSON (support for MonoDroid)

Printing

Windows Communication Foundation

  • Peer to Peer File Sharing Through WCF - Amir Jalilifard
    In this article, you are going to learn about P2P Network and Windows Communication Foundation to share your files between peers through a P2P network.

New Tips and Tricks added

Algorithms & Recipes

C#

Edit Controls

Windows Runtime

Tips and Tricks updated

C / C++ Language

C#

Client side scripting

HTML / CSS

LINQ

Programming Tips

SQL Reporting Services

New Technical Blogs added

Design and Architecture

HTML / CSS

  • How to Add Favicon - SonuKSingh
    IntroductionFavicon is a image\icon displayed alongside the address of a website and also shown as icon in your favorite/bookmark list of website.How to add a faviconCreate a icon (.ico) file which you want to show in address bar, on tab or icon in favorite item. Name it as favicon.ico and place it

Other .NET Languages

  • F#23 : Generics - Sacha Barber
    So we are about 1/2 way through the OO segment of our F# journey, we just have this article and one other to do. This one will focus on generics support in F#, we shall be covering the following topics Implicit Generics Explicit Generics Using Generics In Various Types Generic Constraints I should j

  • How To Create Multi Level Menu Dynamically Using C# in ASP.Net - Nitesh Luharuka
    Friends, This is Part 4 of the series "Creating Menus". We have already seen how to create a single level menu dynamically in ASP.Net here. This post will explain how to create a multi-level menu dynamically using C# in Asp.Net. You can also read the other 2 posts in this series with the links menti

Uncategorised Technical Blogs

  • F#22 : Abstract classes / Overriding Methods / Implementing Interfaces - Sacha Barber
    In this article we continue the OO leg of our F# journey. So this time we will look at abstract classes / overriding methods and how to implement interfaces   Abstract Methods / Virtual Method F# like the rest of the .NET languages allow you to mark a method (function) as abstract. There is a [̷

  • F#9 : Option types - Sacha Barber
    If C# there is a concept of null for reference types and Nullable class for value types (structs). For value type this can take one of the following 2 forms (for demo purposes I am using a int type here, but the type could be any value type) Nullable int?   These are both equivalent. […]

  • F#8 Discriminated Unions - Sacha Barber
      OK so our F# journey continues. We have looked at some of the basic building block types such as Records/Tuples, it is now time to look at Discriminated Unions. Discriminated unions provide support for values that can be one of a number of possible values. The possible values are known as "union c

  • F#7 : Records - Sacha Barber
    So we continue our journey into more of the F# types. This time we will be looking at Record types.   How Do I Create A Record When you create a new F# record, it may remind you of anonymous objects in C#. Here is how you create them. I think they are quite similar […]

  • F#6 : Tuples - Sacha Barber
    So our journey into F# continues. The next coupe of posts will be about F# types that may or may not have standard .NET equivalents. This post will be talking about tuples.   What Are Tuples A tuple is a grouping of unnamed but ordered values, possibly of different types.   Creating Tuples Tuples ar

Windows Phone 7/8




© 2014 CodeProject.  All rights reserved.


This email was sent to vutunglampro@gmail.com.
CodeProject 503-250 Ferrand Drive, Toronto Ontario, M3C 3G8 Canada +1 416-849-8900 x 100
Switch to Weekly Digest | Unsubscribe.

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

Không có nhận xét nào:

Đăng nhận xét