tallen

Stories kicked by tallen

Using ASP.NET MVC 4, ApiControllers and SQL Server 2012(galratner.com)

submitted by galratnergalratner(334) 5 days, 3 hours ago

ASP.NET MVC continues to innovate and in its current version (4) it offers support for Web APIs. Today we are going to examine a real life scenario of using Web APIs along with MVC 4 as we are utilizing the Google Earth plug-in to mark a defined area and SQL Server 2012 geography type to help us persist and calculate GIS data. In our example we are going to mark an area on the globe using a polygon, calculate the center of the area, find all of the coffee shops closest to the center of the area and arrange them by distance. We are going to mark them on the map as well as show a full list including ranking. read more...

add a comment |category: |Views: 183

tags: another

Native HTML5 push notifications with ASP.NET Web API and Knockout.js(www.strathweb.com)

submitted by fdubfdub(281) 20 days, 3 hours ago

Tutorial on how to build a multi-person browser-based chat using ASP.NET Web API (PushStreamContent), Server Sent Events (JS Event Source) and Knockout.js. Features HTML5 push notifications over HTTP. read more...

add a comment |category: |Views: 295

tags: another

Five Must Have Tools for MVC Developers(www.codecapers.com)

submitted by threenine39threenine39(329) 1 year, 7 months ago

5 Must have tools for MVC developers read more...

1 comment |category: |Views: 936

tags: another

12 Things Every Programmer Should Know(tech.wowkhmer.com)

submitted by samnang.chhunsamnang.chhun(60) 1 year, 8 months ago

The presentation was a kind of motivation to programmers for career development. From my experience in doing programming about 5 years, I was so happy with this presentation because I hope the talk will help to explain about techniques, best practices, and attitudes of a good programmer/developer should has when he/she decided his/her career to stay in software development. read more...

add a comment |category: |Views: 733

tags: another

Stored Procedure Optimization Tips – Best Practices(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 2 years, 3 months ago

Key Points discussed in the articles are : 1. Include SET NOCOUNT ON statement 2. Use schema name with object name 3. Do not use the prefix “sp_” in the stored procedure name 4. Use IF EXISTS (SELECT 1) instead of (SELECT *) 5. Try to avoid using SQL Server cursors whenever possible 6. Keep the Transaction as short as possible 7. Use TRY-Catch for error handling read more...

2 comments |category: |Views: 779

tags: another

Welcome to the new DotNetKicks(blog.dotnetkicks.com)

submitted by javeryjavery(5523) 2 years, 4 months ago

Welcome to the new DotNetKicks - Lots of improvements and even more on the way! read more...

6 comments |category: |Views: 436

tags: another

Microsoft collaborates to improve interoperability(blogs.msdn.com)

submitted by bobfamiliarbobfamiliar(3648) 2 years, 4 months ago

The Interoperability Bridges and Labs Center is dedicated to technical collaborative work between Microsoft, customers, partners and open sources communities to improve interoperability between Microsoft and non-Microsoft technologies. The Center is run by the Microsoft Interoperability Strategy Group working with many other teams at Microsoft, with customers input and with the community at large to build technical bridges, labs and solutions to improve interoperability in mixed IT environments. In this site, you will find a live directory of these technical and freely downloadable interoperability Bridges with related content such as demos, technical articles, helpful best practices from the projects leads and sharing technical guidance. You will also find Labs, which contain technical guidance explaining how to best achieve interoperability in specific product scenarios. The vast majority of the projects are run as Open Source projects with third party and community members and released under a broad BSD license, or other licenses such as MS-PL or Apache, so that our customers, partners and the community can use them in many open and broad reaching scenarios. We welcome feedback and discussions on the Interoperability Strategy Group blog at Interoperability @ Microsoft. read more...

3 comments |category: |Views: 78

tags: another

Hello Tekpub(blog.wekeroad.com)

submitted by cranialstraincranialstrain(60) 2 years, 7 months ago

Rob Conery introduces his new venture into tutorial screencasts for .NET and associated technologies. He provides some background detail to his decision to start the venture with James Avery and his aims for it's future. read more...

1 comment |category: |Views: 153

tags: another

Learning the Decorator Pattern (dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 11 months ago

Taking at how we can use the Decorator Pattern in our application. The decorator pattern is a structural pattern which allows you to attach new or additional actions to an object dynamically. Using the decorator pattern provides a very clean and flexible alternative to subclassing (via inheritance) your object and thus creating an unwanted inheritance tree read more...

add a comment |category: |Views: 484

tags: another

How .NET Regular Expressions Really Work(moserware.com)

submitted by moserwaremoserware(1665) 3 years, 2 months ago

A very deep dive into the source code for how .NET Regular Expressions really work read more...

3 comments |category: |Views: 609

tags: another

10 Programming Proverbs Every Developer Should Know(kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 3 years, 7 months ago

Proverbs are used to express universal truths or life lessons in a short and memorable fashion. I find that they are a great way to keep things in perspective, both in life and in work. Because of this, I have assembled 10 programming proverbs that every developer needs in their arsenal. read more...

add a comment |category: |Views: 1213

tags: another

Correctly disposing using the using()-statement(startbigthinksmall.wordpress.com)

submitted by jeisenbergjeisenberg(90) 4 years, 1 month ago

A nice little article for newbies about how the using()-statement in C# works. read more...

add a comment |category: |Views: 9

tags: another

A Set of Useful Extension Methods for DateTime(iridescence.no)

submitted by fredrikfredrik(250) 4 years, 2 months ago

Presenting 11 time-saving (oh, the pun!) extension methods for the DateTime class. read more...

add a comment |category: |Views: 47

tags: another

Memcached's .NET cousin - Cacheman (sriramkrishnan.com)

submitted by dkjariwaladkjariwala(165) 4 years, 3 months ago

Sriram from Microsoft develops Cacheman, a fast distributed hashtable similar to Memcached written in pure managed code. read more...

add a comment |category: |Views: 283

tags: another

C# .NET Gmail Tools(code.msdn.microsoft.com)

submitted by JozefSevcikJozefSevcik(1880) 4 years, 3 months ago

Gmail class library for getting gmail atom feeds and for sending emails through gmail. read more...

add a comment |category: |Views: 215

tags: another

Load XML into List Collection(brainyautomation.com)

submitted by tallentallen(130) 4 years, 3 months ago

Simple method load XML data into a list collection. read more...

add a comment |category: |Views: 218

tags: another