DotNetShoutout - Latest published stories (page 2)
4
Shouts

Oxygene & WP8 – Creating First Windows Phone 8 Project

published 7 days, 2 hours, 31 minutes ago posted by http://isenthil.myopenid.com/http://isenthil.myopenid.com/ 16 days, 5 hours, 28 minutes ago
Friday, May 17, 2013 9:27:50 AM GMT Wednesday, May 08, 2013 6:31:04 AM GMT
Oxygene & WP8 – Creating First Windows Phone 8 Project (more)
category: Metro | clicked: 3 | comment | | source: mobileosgeek.com
tags:
4
Shouts

How to turn ON/OFF the Microsoft Two-Step Verification?

published 7 days, 2 hours, 31 minutes ago posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 16 days, 9 hours, 24 minutes ago
Friday, May 17, 2013 9:27:50 AM GMT Wednesday, May 08, 2013 2:34:24 AM GMT
In the last post “What is Two-Factor Authentication?” we discussed about various factors of authentication system including different examples. We also learnt about Knowledge Factor, Inherence Factor and Possession Factor. Microsoft recently added a second step authentication mechanism in all their accounts as an extra security layer. This post will guide you to turn ON/OFF this security layer. (more)
category: How To | clicked: 9 | comment | | source: www.kunal-chowdhury.com
tags:
4
Shouts

Oxygene & WP8 – Setting up the Development Environment

published 8 days, 2 hours, 25 minutes ago posted by http://isenthil.myopenid.com/http://isenthil.myopenid.com/ 17 days, 5 hours, 44 minutes ago
Thursday, May 16, 2013 9:33:23 AM GMT Tuesday, May 07, 2013 6:14:37 AM GMT
Oxygene & WP8 – Setting up the Development Environment (more)
category: Metro | clicked: 12 | comment | | source: www.mobileosgeek.com
tags:
2
Shouts

Reference implementation: Creating a hybrid cloud with Windows Azure Virtual Networks software based Site-to-Site VPN

published 8 days, 2 hours, 25 minutes ago posted by sandrinosandrino 17 days, 15 hours, 32 minutes ago
Thursday, May 16, 2013 9:33:23 AM GMT Monday, May 06, 2013 8:26:55 PM GMT
After Microsoft announced software based Site-to-Site VPN support between Windows Azure Virtual Networks and Windows Server 2012 Routing And Remote Access I wrote a blog post on how easy it is to configure all of this: Setting up software based Site-to-Site VPN for Windows Azure with Windows Server 2012 Routing and Remote Access. I got lot of positive response on that post and a few people also asked me how they could get this to work in a real corporate network. That’s why I decided to write this post…... (more)
category: Architecture | clicked: 8 | comment | | source: fabriccontroller.net
tags:
4
Shouts

Oxygene & WP8 – Introduction

published 8 days, 22 hours, 25 minutes ago posted by http://isenthil.myopenid.com/http://isenthil.myopenid.com/ 18 days, 6 hours, 4 minutes ago
Wednesday, May 15, 2013 1:33:55 PM GMT Monday, May 06, 2013 5:54:26 AM GMT
Currently, the developers can build the native Windows Phone 8 app using C# or Visual Basic .NET. How about another language which can help the developers build Native Windows Phone 8 App? (more)
category: Metro | clicked: 11 | comment | | source: mobileosgeek.com
tags:
3
Shouts

Using Caching in ASP.NET Web Applications | TechBubbles

published 9 days, 19 hours, 48 minutes ago posted by kalyanms1kalyanms1 19 days, 9 hours, 42 minutes ago
Tuesday, May 14, 2013 4:10:42 PM GMT Sunday, May 05, 2013 2:16:15 AM GMT
Caching is a way which you can use to improve the performance of an ASP.NET Web applications. Caching is a location where you can store the data and access quickly. You have to use caching carefully and this post explains different caching mechanisms that available in ASP.NET web applications.The three ways that you can use to store the Cache data in ASP.NET applications are (more)
category: Web Dev | clicked: 30 | comment | | source: www.techbubbles.com
tags:
1
Shouts

Creating Fixed-Width Data Files

published 9 days, 19 hours, 48 minutes ago posted by BlackWaspBlackWasp 19 days, 1 hour, 29 minutes ago
Tuesday, May 14, 2013 4:10:42 PM GMT Sunday, May 05, 2013 10:29:09 AM GMT
Fixed-width data files are an alternative to comma-separated values (CSV) for storing and sharing tabular data. The information in a fixed-width data set tends to use more storage or bandwidth than CSV but is more readable to humans. (more)
category: How To | clicked: 16 | comment | | source: www.blackwasp.co.uk
tags:
4
Shouts

Top developer news this week | TechBubbles

published 9 days, 19 hours, 48 minutes ago posted by kalyanms1kalyanms1 19 days, 21 minutes ago
Tuesday, May 14, 2013 4:10:42 PM GMT Sunday, May 05, 2013 11:37:16 AM GMT
This post gives you the links for latest announcements for Microsoft developers. Announcing the Release of WebMatrix3 As most of the developers probably know that WebMatrix is free light-weight tool for building ASP.NET applications. There are tons of new features in this release including Windows Azure integration, ScottGu outlined the features here and this tool can be downloaded from here (more)
category: Web Dev | clicked: 19 | comment | | source: www.techbubbles.com
tags:
2
Shouts

What is Two-Factor Authentication?

published 10 days, 21 hours, 32 minutes ago posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 20 days, 20 hours, 12 minutes ago
Monday, May 13, 2013 2:26:31 PM GMT Friday, May 03, 2013 3:46:10 PM GMT
Two-factor authentication is a user authentication system where an user needs to provide two different factors to authorize the user’s identity. It is not a new concept and in many places we are knowingly or unknowingly using it for secure access. There could be multiple factors too and that known as Multi-factor authentication. Today in this post we will learn basics about this type of authentication system. (more)
category: How To | clicked: 19 | comment | | source: www.kunal-chowdhury.com
tags:
2
Shouts

Seeding a Database in Entity Framework | TechBubbles

published 11 days, 2 hours, 2 minutes ago posted by kalyanms1kalyanms1 21 days ago
Monday, May 13, 2013 9:56:57 AM GMT Friday, May 03, 2013 11:58:26 AM GMT
The code-first approach of Entity Framework creates the database in LocalDB instance of SQL Server Express. The Entity Framework uses the model’s property names and data types to create the tables.Entity Framework uses EdmMetadata table to synchronize model classes with the database schema. To keep the database in sync with the model you need to re-create an existing database using Entity Framework. EF allows you to create the database every time when application starts or only create when it detects a c... (more)
category: Web Dev | clicked: 14 | comment | | source: www.techbubbles.com
tags:
3
Shouts

Manage folders & files in your ASP.NET MVC app with elFinder.Net

published 15 days, 1 hour, 22 minutes ago posted by lenielleniel 22 days, 1 hour, 26 minutes ago
Thursday, May 09, 2013 10:36:32 AM GMT Thursday, May 02, 2013 10:32:22 AM GMT
Recently I had to evaluate what were my options when it comes to managing folders and files in an ASP.NET MVC project – a file manager somewhat like what a Content Management System does but I needed something way simpler and intuitive and principally of easy integration. Read on to discover the extremely helpful open source project called ElFinder.Net. It's a port from the original elFinder developed for PHP by Studio 42. (more)
category: Web Dev | clicked: 35 | comment | | source: www.leniel.net
tags:
2
Shouts

You (yes, YOU) are part of the Just Team!

published 15 days, 1 hour, 22 minutes ago posted by KodefuGuruKodefuGuru 24 days, 9 hours, 17 minutes ago
Thursday, May 09, 2013 10:36:32 AM GMT Tuesday, April 30, 2013 2:41:58 AM GMT
"Here are some tangible examples to show you why we at Just consider you a valuable part of our team." The article then shows community contributions. Cool stuff if you use JustDecompile or JustCode. (more)
category: Agile | clicked: 17 | comment | | source: blogs.telerik.com
tags:
1
Shouts

Improving sign ups by 125% by simple A/B testing

published 15 days, 1 hour, 22 minutes ago posted by hilarycookhilarycook 24 days, 20 hours, 4 minutes ago
Thursday, May 09, 2013 10:36:32 AM GMT Monday, April 29, 2013 3:54:54 PM GMT
This post describes a simple A/B experiment which helped improve user sign up rate to our product, Raygun, by 125%. We found that just a tiny change to our sign up page had a dramatic effect on trial sign ups. (more)
category: UX | clicked: 18 | comment | | source: raygun.io
tags:
2
Shouts

Async Controller in MVC4

published 15 days, 1 hour, 22 minutes ago posted by http://prashantmx.myopenid.com/http://prashantmx.myopenid.com/ 23 days, 5 hours, 24 minutes ago
Thursday, May 09, 2013 10:36:32 AM GMT Wednesday, May 01, 2013 6:34:12 AM GMT
How to use Async Controller in MVC4 and .NET 4.5 (more)
category: How To | clicked: 43 | comment | | source: midnightprogrammer.net
tags:
2
Shouts

How to batch clean up the Visual Studio solution folder? (bin, obj etc.)

published 15 days, 1 hour, 22 minutes ago posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 22 days, 20 hours, 47 minutes ago
Thursday, May 09, 2013 10:36:32 AM GMT Wednesday, May 01, 2013 3:11:11 PM GMT
Sometime the Visual Studio’s clean project command does not return as expected and maximum time people used to manually delete the bin, obj, Client Bin, Generated_Code directories to clean all the traces of previous build. Here I will share a small batch code which will help you to clean up those directories by just a single click. Tune it up if you want to add few more directories in the list. (more)
category: How To | clicked: 22 | comment | | source: www.kunal-chowdhury.com
tags:
2
Shouts

Introducing the Event-Driven Message Programming Model for the Windows Azure Service Bus

published 15 days, 1 hour, 22 minutes ago posted by sandrinosandrino 22 days, 23 hours, 14 minutes ago
Thursday, May 09, 2013 10:36:32 AM GMT Wednesday, May 01, 2013 12:44:53 PM GMT
Only a few days after announcing improvements to IaaS, Scott Guthrie announced the release of the Windows Azure SDK 2.0. This release improves the Visual Studio tooling, deployment, automation, … And besides that it also introduces some updates to the Windows Azure Service Bus. One of these updates is the new Event-Driven Message Programming Model (or message pump). (more)
category: Architecture | clicked: 9 | comment | | source: fabriccontroller.net
tags:
2
Shouts

Easy Form Validation using HTML5

published 15 days, 1 hour, 22 minutes ago posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 23 days, 8 hours, 43 minutes ago
Thursday, May 09, 2013 10:36:32 AM GMT Wednesday, May 01, 2013 3:15:18 AM GMT
Writing validation logic using JavaScript in a HTML form is not an easy way. We all have seen it in HTML4 but what’s new in HTML5? Will it provide us easy way to validate the form with writing a small piece of code only? Today we will be talking about this validation stuffs in HTML5. But as usual, all the browsers don’t support all of them but a good start to think for future. (more)
category: How To | clicked: 19 | comment | | source: www.kunal-chowdhury.com
tags:
1
Shouts

Using Remote Powershell with Windows Azure Virtual Machines

published 15 days, 1 hour, 22 minutes ago posted by sandrinosandrino 24 days, 22 hours, 5 minutes ago
Thursday, May 09, 2013 10:36:32 AM GMT Monday, April 29, 2013 1:53:52 PM GMT
Just before the weekend Scott Guthrie announced a few improvements to Virtual Networks, Virtual Machines and Cloud Services. One of these improvements was the support for Remote Powershell. This means that, when you create a Virtual Machine you can choose to enable Remote Powershell on that machine. (more)
category: Architecture | clicked: 5 | comment | | source: fabriccontroller.net
tags:
3
Shouts

Script to automatically configuring Remote PowerShell for Windows Azure Virtual Machines on your machine

published 17 days, 2 hours, 12 minutes ago posted by sandrinosandrino 24 days, 1 hour, 45 minutes ago
Tuesday, May 07, 2013 9:46:53 AM GMT Tuesday, April 30, 2013 10:14:01 AM GMT
In my last post I explained how to leverage the support for Remote PowerShell in your Windows Azure Virtual Machines. While this is fairly easy to setup, it can get a little boring if you need to repeat this over and over again (especially the part with the certificates). A few weeks ago Michael Washam explained how to automate this with the Windows Azure PowerShell SDK: Windows Azure PowerShell Updates for IaaS GA. (more)
category: Architecture | clicked: 7 | comment | | source: fabriccontroller.net
tags:
1
Shouts

Midnight Programmer

published 17 days, 2 hours, 12 minutes ago posted by http://prashantmx.myopenid.com/http://prashantmx.myopenid.com/ 25 days, 11 hours, 46 minutes ago
Tuesday, May 07, 2013 9:46:53 AM GMT Monday, April 29, 2013 12:12:24 AM GMT
SkyDrive REST API wrapper overview. (more)
category: How To | clicked: 28 | comment | | source: midnightprogrammer.net
tags:
Previous 1 2 3 4 5 6 7 8 9 10 ... 476 477 Next