Steves
Name: Steves
Score: 28,401.44
Last Seen: 475 days, 13 hours, 49 minutes ago
Member Since: 1 February, 2009
DotNetShoutout
atom rss
4
Shouts

MMP Video Editor Transform Manager Task updated to IIS Transform Manager 1.0 Beta | Ezequiel Jadib

published 687 days, 22 hours, 46 minutes ago posted by http://ejadib.myopenid.com/http://ejadib.myopenid.com/ 692 days, 17 hours, 13 minutes ago
Monday, July 04, 2011 8:14:28 AM GMT Wednesday, June 29, 2011 1:47:35 PM GMT
A few months ago, Microsoft published the Beta version of the IIS Transform Manager. This new release contains an incredible set of new features, explained here by Chris Knowlton. Back in the Alpha days, I wrote an IIS Transform Manager Task that takes an Microsoft Media Platform Video Editor (formerly Rough Cut Editor) Project XML file (which includes the EDL) as input, and outputs a new encoded video that represents the MMP Video Editor edits. (more)
category: Metro | clicked: 27 | comment | | source: blogs.southworks.net
tags: IIS7, MMP Video Editor, Microsoft Media Platform, Emerging Technology, Smooth Streaming, media, Adaptive Streaming, RCE, IIS Transform Manager, Rough Cut Editing
6
Shouts

From Silverlight To HTML5 - CodeProject

published 687 days, 22 hours, 46 minutes ago posted by FantasticMrFishFantasticMrFish 690 days, 51 minutes ago
Monday, July 04, 2011 8:14:28 AM GMT Saturday, July 02, 2011 6:10:25 AM GMT
This article describes my experiences of taking a control written in Silverlight for Windows Phone 7, and making it cross-platform by re-implementing it using JavaScript and HTML5. (more)
category: Metro | clicked: 59 | comment | | source: www.codeproject.com
tags: Silverlight, Windows Phone 7, css3, JavaScript, html5
5
Shouts

Ext.NET 1.0.0 released

published 687 days, 22 hours, 46 minutes ago posted by http://quachnguyen.myopenid.com/http://quachnguyen.myopenid.com/ 688 days, 18 hours, 30 minutes ago
Monday, July 04, 2011 8:14:28 AM GMT Sunday, July 03, 2011 12:30:42 PM GMT
Quickly Build Rich AJAX Enabled Web Applications For ASP.NET Ext.NET is an open source ASP.NET (WebForm + MVC) component framework integrating the cross-browser Sencha Ext JS JavaScript Library. Includes 100+ high performance controls for Data Grids, Trees, Menus, Forms, Advanced Layouts and AJAX communication. Download and More: http://www.ext.net/download/ Example:http://examples.ext.net/ (more)
category: Web Dev | clicked: 54 | 1 comment | | source: code2code.info
12
Shouts

Calling Cross Domain WCF service using Jquery/Javascript

published 690 days, 9 hours, 56 minutes ago posted by http://pranayamr.myopenid.com/http://pranayamr.myopenid.com/ 693 days, 22 hours, 45 minutes ago
Friday, July 01, 2011 9:04:59 PM GMT Tuesday, June 28, 2011 8:16:01 AM GMT
This post is about to call the cross domain WCF service from you page i.e Calling WCF service hosted on one domain and calling the service form jquery/javascript of page which is hosted on some other domain. But before we start its better to get understand about the format of the data get exchange from one server to other server. JSONP Ajax allows to get data in the background without interfering with the display. Ajax call done by using XMLHttpRequest object, which is allow the client side java... (more)
category: Web Dev | clicked: 70 | 2 comments | | source: pranayamr.blogspot.com
tags: C#, ScriptManager, JavaScript, jQuery, WCF
3
Shouts

To repeat or not to repeat yourself?

published 690 days, 9 hours, 56 minutes ago posted by slo2olsslo2ols 694 days, 1 hour, 58 minutes ago
Friday, July 01, 2011 9:04:59 PM GMT Tuesday, June 28, 2011 5:03:25 AM GMT
What do modern developers if they are forced to write repeated code? Of course, they follow DRY principle and try to write generic code that covers as much as possible cases and can easily be extended to the rest. But sometimes such a change is complex, inefficient, or simply impossible. Here template engines come into play that allow the developer to set the rules and get your service code. I propose to try to take the advantages of both these approaches. (more)
category: How To | clicked: 4 | comment | | source: osmirnov.net
tags: Repository, T4, Builder, Patterns, singleton, dry, snippets, Fluent Interface
6
Shouts

Create Code in JustCode

published 695 days, 11 hours, 17 minutes ago posted by KodefuGuruKodefuGuru 698 days, 11 hours, 43 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Thursday, June 23, 2011 7:17:31 PM GMT
The Q2 release of JustCode includes four new features that will enable you to quickly generate code and eliminate some of the busy work that plagues us as developers. I tested these new features on nopCommerce, an ASP.NET open source shopping cart.Create Derived Type When a class or interface is selected, you have the option to create a derived type (or class that implements the interface). The Create Derived Type feature is available in the Code submenu of JustCode, and it’s also available from the C s... (more)
category: Agile | clicked: 31 | comment | | source: www.kodefuguru.com
tags: JustCode, Telerik, nopCommerce
4
Shouts

A Trio of Presentations: Little Wonders, StyleCop, and LINQ/Lambdas

published 695 days, 11 hours, 17 minutes ago posted by BlackRabbitCoderBlackRabbitCoder 698 days, 5 hours, 7 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Friday, June 24, 2011 1:53:38 AM GMT
Re-posted three presentations on my blog. The first is a general overview of C# lambda expressions and LINQ extension methods, then a presentation on automating code standards using StyleCop and FxCop, then finally my presentation on the Little Wonders of C# and .NET. (more)
category: Web Dev | clicked: 22 | comment | | source: blackrabbitcoder.net
tags: StyleCop, .NET, lambda, Little Wonders, C#, FxCop, Linq
4
Shouts

Dean Hume - C# Parallel Invoke

published 695 days, 11 hours, 17 minutes ago posted by deanomachinodeanomachino 697 days, 16 hours, 52 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Friday, June 24, 2011 2:08:53 PM GMT
C# Parallel Invoke While working through some code, I noticed a method that I have never seen before. I knew that the .Net 4 Framework had introduced a Parallel Class that helped make parallel ForEach Loops easier, but after some searching I came across the ParallelInvoke() method. So, I jumped on the MSDN site and learnt a little bit more about Task Parallels. It makes running one or more independent tasks concurrently really easy with it's fluent interface. After some reading, I noticed that t... (more)
category: Web Dev | clicked: 15 | comment | | source: deanhume.com
tags: C#, .Net 4.0, Parallelism
4
Shouts

ASP.NET MVC HTML5 Before and After: The “semantic” markup of HTML5

published 695 days, 11 hours, 17 minutes ago posted by ioannisioannis 697 days, 1 hour, 41 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Saturday, June 25, 2011 5:20:05 AM GMT
The semantic markup/value of HTML5 In this post, we see how the new semantic tags of HTML5 alter the HTML generated for the homepage of a simple site and why this is important. (more)
category: Web Dev | clicked: 40 | comment | | source: www.progware.org
tags: ASP.NET MVC, HTML 5
5
Shouts

Visiblox MVP Giveaway | Colin Eberhardt's Adventures in .NET

published 694 days, 2 hours, 29 minutes ago posted by FantasticMrFishFantasticMrFish 697 days, 1 hour, 3 minutes ago
Tuesday, June 28, 2011 4:31:57 AM GMT Saturday, June 25, 2011 5:57:46 AM GMT
Readers of my blog will probably have noticed that I have a keen interest in both charting and performance. My friends over at Visiblox have combined these both to create what is one of the fastest charts for WPF, Silverlight and Windows Phone 7, see my recent benchmark blog post for details. What’s more, this performance has been achieved without sacrificing API clarity; the Visiblox charts can be instantiated with concise and clean XAML or manipulated from code-behind. The guys at Visiblox told me t... (more)
category: Metro | clicked: 10 | comment | | source: www.scottlogic.co.uk
tags: Silverlight, Windows Phone 7, chart, WPF, Visiblox
4
Shouts

Testing emails with neptune

published 695 days, 11 hours, 17 minutes ago posted by brunomarquesbrunomarques 698 days, 16 hours, 12 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Thursday, June 23, 2011 2:48:50 PM GMT
Brief overview of a useful tool to test email features in your programs. (more)
category: Architecture | clicked: 20 | comment | | source: geeklyeverafter.blogspot.com
tags: Email, Testing, Tools
4
Shouts

Free inbound data on Azure - Microsoft tweaks the pricing again

published 695 days, 11 hours, 17 minutes ago posted by http://jamescrowley.myopenid.com/http://jamescrowley.myopenid.com/ 698 days, 16 hours, 52 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Thursday, June 23, 2011 2:09:23 PM GMT
Earlier in the year, Microsoft announced a slew of pricing adjustments to the Azure platform, meaning that much more powerful instances were free until the end of this month. The major overhaul on this occasion is that all inbound data to the Azure platform will now be free. (more)
category: Web Dev | clicked: 13 | 1 comment | | source: www.developerfusion.com
tags: Azure
4
Shouts

C# Strings – Getting Started with Strings

published 695 days, 11 hours, 17 minutes ago posted by JudoJudo 699 days, 19 hours, 52 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Wednesday, June 22, 2011 11:09:14 AM GMT
Working with strings is a very common task for most C# developers. The .NET Framework offers good variety of tools for working with strings, but care must be taken as there are several gotchas to trip up the beginner. The first thing to note about strings in .NET is that they are Reference Types. Reference types are live on the managed heap in .NET and so they are managed by the .NET Garbage Collector and unlike Value types they are not automatically destroyed when they are out of scope. Strings can b... (more)
category: Architecture | clicked: 27 | comment | | source: www.csharphelp.com
tags: String, C#, strings
4
Shouts

Using Reverse Geocoding to Find an Address - Gil Fink on .Net

published 695 days, 11 hours, 17 minutes ago posted by gilfgilf 699 days, 1 hour, 16 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Thursday, June 23, 2011 5:44:34 AM GMT
I had a request from a colleague of mine to help him with a geocoding problem. The colleague needed to find an address by a given latitude and longitude which were supplied by a smartphone consumer. The example in this post will show you how you can use Google geocoding API in order to achieve that using C#. (more)
category: How To | clicked: 22 | 1 comment | | source: blogs.microsoft.co.il
tags: Google, Async, C#, geocoder
6
Shouts

Metro UI for RadControls for Silverlight and WPF

published 694 days, 2 hours, 29 minutes ago posted by KodefuGuruKodefuGuru 698 days, 23 hours, 35 minutes ago
Tuesday, June 28, 2011 4:31:57 AM GMT Thursday, June 23, 2011 7:26:09 AM GMT
Windows 8 will bring exciting times to all application developers, especially those who will invest in creating the immersive applications we all saw in that video. We loved the tiles and the clean modern look and how they integrate perfectly within the UI. And I am guessing a lot of software will transition to new ways. As always Telerik will ease this process by providing its Silverlight and WPF offering with Metro UI Theme and kick start your Windows 8 development. The theme is built from the ground... (more)
category: Metro | clicked: 47 | 1 comment | | source: blogs.telerik.com
tags: Silverlight, Telerik, Windows 8, RadControls, WPF
10
Shouts

Metro In Motion Part #6 – Rolling List Location Indicator | Colin Eberhardt's Adventures in .NET

published 713 days, 22 hours, 26 minutes ago posted by FantasticMrFishFantasticMrFish 715 days, 15 hours, 23 minutes ago
Wednesday, June 08, 2011 8:34:49 AM GMT Monday, June 06, 2011 3:37:55 PM GMT
This blog post describes the development of a rolling list location indicator. This indicator mirrors the behaviour seen in the native Windows Phone 7 calendar which rolls from one date to the next as the user scrolls. For those of you who have not been following my Metro-In-Motion series, I’ll briefly recap. My aim is to provide an implementation of the ‘fluid’ UI transitions and effects seen in native Windows Phone 7 applications but absent from the Silverlight APIs. So far I have covered fluid list a... (more)
category: Metro | clicked: 26 | comment | | source: www.scottlogic.co.uk
tags: Windows Phone 7, metro theme
6
Shouts

NHibernate.Envers - a quick introduction

published 713 days, 22 hours, 26 minutes ago posted by Guardian11Guardian11 714 days, 18 hours, 2 minutes ago
Wednesday, June 08, 2011 8:34:49 AM GMT Tuesday, June 07, 2011 12:58:47 PM GMT
A quick introduction to NHibernate.Envers, shows how to setup the environment to enable rich auditing on entities. (more)
category: Data | clicked: 23 | comment | | source: www.primordialcode.com
tags: NHibernate
8
Shouts

Opera Mobile Emulator for desktop - Dev.Opera

published 713 days, 22 hours, 26 minutes ago posted by iftekharahmedamitiftekharahmedamit 715 days, 11 hours, 17 minutes ago
Wednesday, June 08, 2011 8:34:49 AM GMT Monday, June 06, 2011 7:44:04 PM GMT
Figure 1: The Opera Mobile Emulator running on Mac.Introduction Making sure that your site looks great and works exactly as it should in mobile and tablet browsers can often be a tedious process — you typically need one or more physical devices, or some form of virtual machine emulating the whole operating system, and that’s just the start. Our updated Opera Mobile 11 Emulator for Windows, Linux and Mac makes things a whole lot easier. It’s a small, native application that’s easy to install on your de... (more)
category: How To | clicked: 15 | comment | | source: dev.opera.com
tags: Opera Mobile Emulator, Emulator, Opera, Opera Mobile 11, Mobile
8
Shouts

Aurora 6 is here - Mozilla Hacks – the Web developer blog

published 713 days, 22 hours, 26 minutes ago posted by iftekharahmedamitiftekharahmedamit 715 days, 11 hours, 14 minutes ago
Wednesday, June 08, 2011 8:34:49 AM GMT Monday, June 06, 2011 7:47:27 PM GMT
The most notable addition to this new Aurora are the progress element, window.matchMedia API, better APIs for binary data, Server-Sent Events as well as the return of WebSockets. Aurora 6 has been published last week and can be downloaded from firefox.com/channel. (more)
category: How To | clicked: 16 | comment | | source: hacks.mozilla.org
tags: Firefox 6, Mozilla, FileAPI, websockets, Aurora 6, Firefox Aurora, CSS, Mozilla Firefox, Firefox, Aurora
7
Shouts

Create Date and Time Intervals Table in SQL Server using Numbers Table and Dateadd

published 720 days, 1 hour, 10 minutes ago posted by eralpereralper 722 days, 1 hour, 36 minutes ago
Thursday, June 02, 2011 5:51:24 AM GMT Tuesday, May 31, 2011 5:24:41 AM GMT
Time schedule table or date table is frequently required by sql developers during t-sql coding. In this t-sql tutorial I want to give some sql hints that SQL programmers can use in their daily works. You will see that the following sql samples use SQL Server numbers table code in order to create a periodic time blocks or time intervals for different purposes (more)
category: Data | clicked: 10 | comment | | source: www.kodyaz.com
tags: SQL Server, T-SQL
Previous 1 2 3 4 5 6 7 8 9 10 ... 104 105 Next