Vort3X

Stories kicked by friends of Vort3X

Two Different Ways of Running Virtual Machines on Windows 7(blogs.msdn.com)

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

A useful article on 2 different ways to run virtual machines on Windows 7. read more...

2 comments |category: |Views: 403

tags: another

Exclusive Interview With Steve Ballmer: Products, Competition, The Roa(techcrunch.com)

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

Microsoft CEO Steve Ballmer visited Silicon Valley on Thursday for his annual meeting with top venture capitalists to talk about Microsoft product strategy. This was his first visit to Silicon Valley since announcing the search partnership with Yahoo in July. I had a chance to sit down with him just after that event for a hour-long one-one-one interview. In the first 10+ minutes of the interview Ballmer gives his high level thoughts on major Microsoft products and strategies (including Windows, Windows Mobile, Internet Explorer, Bing, Azure, Mesh, Natal and others), competition, the future of search and search marketing, Microsoft’s “three screens and the cloud” strategy, the recent acquisition of Interactive Supercomputing and, yes, even his thoughts on Twitter. read more...

1 comment |category: |Views: 171

tags: another

Performing Static Page Checking in MVC(dimecasts.net)

submitted by tryfailretrytryfailretry(90) 2 years, 8 months ago

Taking a look at how you can setup Static Type checking within your ASP.Net MVC web project. Having static checking is a great asset as it can reduce the chances of run time errors due to refactoring. Static checking will also allow the compiler to verify all your strongly typed objects are being called correctly. read more...

add a comment |category: |Views: 203

tags: another

Reimagining www.asp.net - Part One: The Home Page Experience(john-sheehan.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 8 months ago

How would you redesign www.asp.net if you could start from scratch? read more...

add a comment |category: |Views: 280

tags: another

Simple .NET Developer Survey(questionpro.com)

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

A chance to win $100 at Amazon by taking a simple .NET developer survey read more...

1 comment |category: |Views: 387

tags: another

Two part screencast on iPhone Development using C#(codesnack.com)

submitted by BschooleyBschooley(125) 2 years, 8 months ago

This screencast compares and contrasts the creation of a UITabBarController-based application in both Xcode using Cocoa and MonoDevelop using MonoTouch. read more...

add a comment |category: |Views: 535

tags: another

Integrating OpenID in an ASP.NET MVC Application using DotNetOpenAuth(west-wind.com)

submitted by rstrahlrstrahl(7226) 2 years, 8 months ago

OpenId is getting more popular and with it requests to integrate it into Web sites as a user authentication mechanism. In this post I'll discuss the OpenId integration on CodePaste.net in an ASP.NET MVC application discussing both high level OpenId concepts, the process and the code implementation. read more...

1 comment |category: |Views: 301

tags: another

xVal v1.0 is now released(blog.codeville.net)

submitted by desmonddesmond(2014) 2 years, 8 months ago

In case you’re not aware, xVal is a validation helper for ASP.NET MVC that lets you use your own choice of server-side validation framework (e.g., Microsoft’s DataAnnotations attributes, or Castle Validator, or NHibernate Validaion) and dynamically generates client-side validation code from your rules. Version 1.0 adds new features including dynamic client-side validation summaries and remote (ajax) validation rules. read more...

add a comment |category: |Views: 218

tags: another

Copy and Paste programming - A bad habit(msmvps.com)

submitted by JoacimJoacim(255) 2 years, 8 months ago

I usually stay away from religious discussions when it comes to programming habits and technology choices simply because they don’t usually make any sense at all and are most often just based on emotions. Arguing if VB.Net is better or worse than C# is just nonsense in my book since the differences between them are minor. They both target the same platforms, and use the same framework, of course there are differences but none of them are so great th. read more...

1 comment |category: |Views: 486

tags: another

Create and run a new ASP.NET web application with CodeRun Online IDE(youtube.com)

submitted by alexgrossalexgross(258) 2 years, 8 months ago

A youtube video that shows a simple and quick way to create and run ASP.NET applications with no downloads and istallations, just by opening a simple browser page. Cool! read more...

2 comments |category: |Views: 223

tags: another

DEVELOPING WPF BROWSER APPLICATIONS ONLINE(blogs.windowsclient.net)

submitted by alexgrossalexgross(258) 2 years, 8 months ago

If you ever wondered if it is possible to develop WPF applications online, then the answer is yes. I recently stumbled upon a tool, called CodeRun. It is an online IDE that allows the developer to create various types of applications online, directly from the web browser, without the need to install any additional plug-ins or applications. One of the features of this tool is the possibility to create Windows Presentation Foundation applications. To be specific, it allows the developer to work on WPF Browser Applications (since it would not be possible at this time to run a client application). read more...

1 comment |category: |Views: 281

tags: another

Introducing PostSharp 2.0: #1 - NotifyPropertyChanged (postsharp.org)

submitted by gfraiteurgfraiteur(988) 2 years, 8 months ago

Gael Fraiteur does first revelations about PostSharp 2.0 on a real-life example: implementing the INotifyPropertyChanged pattern with an aspect. Be safely seated! read more...

add a comment |category: |Views: 506

tags: another

Is Silverlight the new WebForms?(encosia.com)

submitted by gt1329agt1329a(7849) 2 years, 8 months ago

Is Silverlight becoming the same crutch that WebForms was nearly a decade ago? read more...

add a comment |category: |Views: 715

tags: another

Is Silverlight the new WebForms?(encosia.com)

submitted by gt1329agt1329a(7849) 2 years, 8 months ago

Is Silverlight becoming the same crutch that WebForms was nearly a decade ago? read more...

add a comment |category: |Views: 715

tags: another

Design Patterns – Using the Builder Pattern in C#(dotnetcube.com)

submitted by dncdudedncdude(1350) 2 years, 8 months ago

The Builder Pattern falls under the category of the Creational Patterns as it controls the instantiation of a class. This pattern is suitable in scenarios in which an object is made up several parts and the constituent parts need to be created in the same order using an algorithm. A real world example is in making a pizza. A pizza is made up of several parts (the crust, cheese and the toppings) that are constructed using an algorithm (bake the crust, add cheese and add the toppings). read more...

add a comment |category: |Views: 410

tags: another

Design Patterns – Using the Builder Pattern in C#(dotnetcube.com)

submitted by dncdudedncdude(1350) 2 years, 8 months ago

The Builder Pattern falls under the category of the Creational Patterns as it controls the instantiation of a class. This pattern is suitable in scenarios in which an object is made up several parts and the constituent parts need to be created in the same order using an algorithm. A real world example is in making a pizza. A pizza is made up of several parts (the crust, cheese and the toppings) that are constructed using an algorithm (bake the crust, add cheese and add the toppings). read more...

add a comment |category: |Views: 410

tags: another