Category Archives: Uncategorized

Open Agentic Web

An open agentic web, where AI agents make decisions and perform tasks on behalf of users or organizations, is fast becoming the vision of the internet, a sentiment expressed by Microsoft at it’s recent Build 2025 conference. My takeaway so far from the conference is, Microsoft’s declaring it’s full embrace of the agentic space and […]

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Uncategorized | Leave a comment

Delegating

Successful leaders delegate well.

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Uncategorized | Comments Off on Delegating

Journey as a leader

I began my journey in leadership a number of years ago, starting with managing small projects and teams and slowly taking on larger more challenging projects and teams. Along the way, I took a number of management and leadership courses, read a lot of books, blogs, biographies, watched a lot of TED talks, attended conferences […]

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Uncategorized | Comments Off on Journey as a leader

Navigation improvements in ReSharper 2018.1

Some improvements in ReSharper 2018.1 Resharper…

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Uncategorized | Comments Off on Navigation improvements in ReSharper 2018.1

Genetics

Came across some really cool research in genetics, that will help cure several genetic research – Harvard Research

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Uncategorized | Comments Off on Genetics

Javascript Performance

I think document.queryselectorAll is slower then a straight document.getElementsByTagName. Found the following site that is good for javascript performance comparison, Javascript performance testing site

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Uncategorized | Comments Off on Javascript Performance

Learning LINQ – skip

Example 1: var myPageQuery = from i in myPages select i; var startValue = 1;var numberPages = 3; //To get 3 pagesvar collectionOfPages = myPageQuery.Skip(startValue).Take(numberPages); Example 2: int[] carSales = { 5, 200, 10, 9, 50, 60, 99, 77 };IEnumerable orderedCarSales = carSales.OrderByDescending(g => g).Skip(2);Console.WriteLine(“Car sales except the top two are:”);foreach (int car in orderedCarSales){ […]

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Uncategorized | Comments Off on Learning LINQ – skip

.NET codecamp in Alabama at Huntsville

Codecamp was a grand success – over 200 people attended. Everyone enjoyed the speaker and sessions. I’m glad to get some rest now.

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Uncategorized | Comments Off on .NET codecamp in Alabama at Huntsville

.NET codecamp in Alabama at Huntsville

Great topics submitted for talks at code camp including, A Peek at ADO.NET Data Services (AKA Astoria) Introducing the ADO.NET Entity Framework Getting Ready for Silverlight 2.0 Microsoft Expression Blend for Silverlight Developers Windows Worflow SQL Server topics

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Uncategorized | Comments Off on .NET codecamp in Alabama at Huntsville

WPF

So I am looking WPF – Windows Presentation Foundation – Microsoft’s latest GUI framework. As a .NET developer, having worked on web forms and WinForms, I am curious as to what WPF framework offers, as unlike WinForms which was built on top of Windows Controls, WPF was built from scratch. WPF allows the look and […]

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Uncategorized | Comments Off on WPF