Sign in
Random thoughts of a dev
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.net
.net 4.0
ADO.NET
Algorithms
Azure
c#
c# 4.0
Certificates
Cloud Services
Code Contracts
command line tools
Dallas
dynamic
DynamicObject
Entity Framework
Eye On Earth
Geek up
Live Framework
MCS
Mesh
PDC
Resource Model
Security
Surface
X509
Archive
Archives
October 2011
(1)
June 2011
(1)
February 2011
(1)
September 2010
(1)
June 2010
(1)
February 2010
(3)
January 2010
(3)
December 2009
(1)
November 2009
(5)
June 2009
(1)
March 2009
(1)
February 2009
(3)
January 2009
(3)
November 2008
(3)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Random thoughts of a dev
Running a Scheduled Task after another
Posted
over 2 years ago
by
DaveT2
7
Comments
Within the Windows Task Scheduler it is possible to fire off processes based on a lot of different triggers, both time based, and windows event based. However it seemed quite hard to fire off one scheduled task after another had completed, despite there...
Random thoughts of a dev
Simple grep in .net
Posted
over 2 years ago
by
DaveT2
1
Comments
I have been meaning to write a simple grep program which looks through the incoming pipe for a regex and either replaces or matches the lines found for a while. However I haven’t had enough reason to do it up until now, when I had to process 100...
Random thoughts of a dev
Making a healthy application with HealthVault
Posted
over 2 years ago
by
DaveT2
0
Comments
I have done some projects in the past utilizing Microsoft HealthVault ( http://healthvault.co.uk/ ), which officially is defined as: “a health application platform, a set of platform services and a catalyst for creating an application ecosystem...
Random thoughts of a dev
The Cool Wall is Back
Posted
over 3 years ago
by
DaveT2
0
Comments
For those of you who are fans of the BBC show Top Gear, you may remember the Cool Wall, and now you can get your very own Cool Wall along with the launch of IE9 beta and BBC’s Top Gear site. I have been very fortunate to be a member in the team...
Random thoughts of a dev
Security Best Practices in Azure
Posted
over 3 years ago
by
DaveT2
1
Comments
Recently the Azure and security community published the “Security Best Practices for Developing Windows Azure Application” paper on download.microsoft.com: download available here Outlining the security considerations developers should consider when building...
Random thoughts of a dev
Lambdas and anonymous delegates for Debugging
Posted
over 3 years ago
by
DaveT2
2
Comments
I was posed the problem a few weeks ago that someone has a coding project where the execution engine swallows all exceptions and unless explicitly catching all exceptions (he didn’t want to put a big try catch around everything in production code) there...
Random thoughts of a dev
Consuming data from Codename “Dallas”
Posted
over 3 years ago
by
DaveT2
1
Comments
Codename “Dallas” as part of Windows Azure is an Information Service offering which makes it easy to find and consume data from a number of different languages, both managed such as C# and VB.NET, and other web technologies such as javascript and php...
Random thoughts of a dev
Eye On Earth on BBC News
Posted
over 3 years ago
by
DaveT2
0
Comments
A couple of announcements to be made, Firstly: BBC news has written an article on Eye On Earth, my previous project with Microsoft Consulting Services (MCS). http://news.bbc.co.uk/1/hi/technology/8499059.stm Also a proud post from Dom Green,...
Random thoughts of a dev
Using WCF Tester with Azure
Posted
over 3 years ago
by
DaveT2
0
Comments
If you’ve tried to use the wcf testing tool wcftestclient.exe (\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\WcfTestClient.exe) which comes with visual studio on an azure project, you will probably have come across this problem...
Random thoughts of a dev
Entity Framework 4.0
Posted
over 3 years ago
by
DaveT2
0
Comments
With .net 4.0 comes Entity Framework 4.0 which will help with data access and rapid development of database projects! (Don’t worry if you’ve only seen one version of EF before now, this is only the second release). A while back now in PDC was the session...
Random thoughts of a dev
Code Contracts with .Net 4.0
Posted
over 3 years ago
by
DaveT2
0
Comments
I don’t know how many times I have seen a method which I have been trying to debug with a whole stack of parameter checking code at the start of the method to ensure nothing weird happens with unexpected input. This subsequently caused the nicely...
Random thoughts of a dev
Dynamic XML Reader with C# and .Net 4.0
Posted
over 4 years ago
by
DaveT2
0
Comments
Last week I was at a brilliant .net 4.0 training session lead by Richard Blewett of Developmentor ( http://www.develop.com/ ) Along with the new features of .net 4.0 (including the long awaited Tuple classes, BigInteger (an unbounded int), extra Code...
Random thoughts of a dev
Add Eye On Earth to your site
Posted
over 4 years ago
by
DaveT2
0
Comments
If you have an environmental site, or would like to embed Eye On Earth to your site this can be done very easily with the following code. <iframe name="eoe_frame" src="http://eyeonearth.cloudapp.net/Default.aspx? latitude= 55.676&...
Random thoughts of a dev
Add SSL Security to your Azure Webrole
Posted
over 4 years ago
by
DaveT2
3
Comments
As the new Azure toolkit allows upload of certificates to be associated with the roles, and multiple web roles, it is possible to set up 2 sites (2 webroles) one which would be secure, and one which would be unsecured. The first thing you will need...
Random thoughts of a dev
Eye On Earth Launch
Posted
over 4 years ago
by
DaveT2
1
Comments
Last week during PDC the press release went out launching our project Eye On Earth (AirWatch). http://eyeonearth.cloudapp.net/ or http://eyeonearth.cloudapp.net/home.aspx if you do not have Silverlight enabled. Below shows the initial screen...
Random thoughts of a dev
Differences in Azure November 2009 SDK
Posted
over 4 years ago
by
DaveT2
0
Comments
I have been playing around with the new SDK and VS Tools for Azure when I have had time and have noticed a few changes to the development experience, so thought it would be a good to note them down here. The first thing is while Azure Development Fabric...
Random thoughts of a dev
Installing Azure SDK and Tools November 2009
Posted
over 4 years ago
by
DaveT2
0
Comments
It seems a long time since I last blogged as I have been on a long azure project which is launching soon, so watch this space… I am very excited about this! Also I hope to get some good posts going again on this blog from what I have learned during the...
Random thoughts of a dev
Updating the ADO.NET Entity Framework
Posted
over 4 years ago
by
DaveT2
1
Comments
Hi all, I know I haven’t posted for quite a while now, though I have been on a cool project doing some stuff with Azure, SQL Data Services, Silverlight 3 and countless other new technologies. We are just about to finish our first iteration and there...
Random thoughts of a dev
Useful Code Snippet for finding columns in Excel
Posted
over 4 years ago
by
DaveT2
2
Comments
Hi all, I have been working on a project for a while now and needed a quick converter between an integer index and the column of an Excel spreadsheet, I couldn’t find a general algorithm, so had to write one… At first I thought it was a simple base 26...
Random thoughts of a dev
Map your devices with Live Framework
Posted
over 4 years ago
by
DaveT2
0
Comments
I’m glad to see that this blog is getting quite popular, so I’m going to keep the same strain for the moment and extend the MeshageBoard walkthrough once again. The code written so far for the cloud, so that all the data we were adding and viewing was...
Random thoughts of a dev
Share your Mesh data with Contacts
Posted
over 4 years ago
by
DaveT2
1
Comments
Now to one of the most powerful items in the Mesh: ability to share the data between anyone with a live passport. So if you have been following the past few entries I have been working through the MeshageBoard Walkthrough, and the final part is to...
Random thoughts of a dev
Media in the mesh
Posted
over 4 years ago
by
DaveT2
1
Comments
Hello again, last time I covered how to create and view Data Entries within DataFeeds and also said about looking into MediaResouces. Over the past week I have been creating an extension for the console application and allowing the browsing of everything...
Random thoughts of a dev
Further into the Live Framework – Data Entries
Posted
over 4 years ago
by
DaveT2
1
Comments
Well on Monday I blogged about getting started with some of the Live Framework Resource Model within the developers Mesh, I have asked around but it seems that this feed is currently unavailable with the normal beta ( www.mesh.com ). One resource I did...
Random thoughts of a dev
Introduction to the Live Framework
Posted
over 4 years ago
by
DaveT2
1
Comments
Technorati Tags: Mesh , Live Framework So I have just come off of a project and I’ve got some bench time… and as there are so many wonderful things out there to play with I thought I have plenty of things to do. Mesh and the Live Framework ...
Random thoughts of a dev
Windows 7 Beta
Posted
over 4 years ago
by
DaveT2
0
Comments
Hi all, Sorry I haven’t posted in a while but I have been experiencing some alias issues, but it’s all good now :). You may have noticed that the beta for windows 7 is available from msdn subscriber downloads, and so far (from my experience) it...
Page 1 of 2 (28 items)
1
2