Collection of *Overflow (StackExchange) sites

by Kulin 8. December 2009 02:19

Joel Spolsky and Jeff Atwood have launched their hosted software model – StackExchange – a while back now, and we’re already starting to see a plethora of sites building theme-based discussion Q&A sites using StackExchange as the engine. This is a collection of a few of the interesting StackExchange sites I’ve come across so far. I intend to keep building on this list with stuff I find useful as I discover more of them.

The “Trilogy” (This is where it all began)StackOverflow, ServerFault, SuperUser
DatabasesOracleOverflow, Ask SSC
Microsoft OfficeOfficeQuestions
SecuritySecurityCrunch

Startups/EntrepreneurshipOnStartups (by Dharmesh Shah)

In the meanwhile, there’s also a massive dump of StackExchange sites that seems to be fairly up-to-date.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

Software | General

Car goes for a toss after being hit by Wrecking ball! (NYC)

by Kulin 5. December 2009 21:20

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

Reality

Brilliant interactive retail experience built with Windows 7, WPF, touch

by Kulin 28. November 2009 17:57

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , , , ,

Software

Outlook msg file create

by Kulin 10. August 2009 01:52

Creating a new Outlook .msg file programmatically in C#

[code:c#]

// Creates a new Outlook Application Instance
Outlook.Application objOutlook = new Outlook.Application();

// Creating a new Outlook Message from the Outlook Application Instance
Outlook.MailItem mic = (Outlook.MailItem)(objOutlook.CreateItem(Outlook.OlItemType.olMailItem));

// Assigns the "TO", "CC" and "BCC" Fields
mic.To = toTextBox.Text;
mic.CC = ccTextBox.Text;
mic.BCC = bccTextBox.Text;

// Assigns the Subject Field
mic.Subject = subjectTextBox.Text;

// Switch the Importance ComboBox to identify the Mail Message Importance Level
switch (importanceComboBox.SelectedItem.ToString())
{
        case "High":
                mic.Importance = Outlook.OlImportance.olImportanceHigh;
                break;         case "Normal":
                mic.Importance = Outlook.OlImportance.olImportanceNormal;
                break;

        case "Low":
                mic.Importance = Outlook.OlImportance.olImportanceLow;
                break;
}

// Define the Mail Message Body. In this example, you can add in HTML content to the mail message body
mic.HTMLBody = messageTextBox.Text;

// Adds Attachment to the Mail Message.
// Note: You could add more than one attachment to the mail message.
// All you need to do is to declare this relative to the number of attachments you have.
mic.Attachments.Add(attachmentOneTextBox.Text,Outlook.OlAttachmentType.olByValue,1,"Attachment Name");

// Save the message to C:\demo.msg. Alternatively you can create a SaveFileDialog to
// allow users to choose where to save the file
mic.SaveAs(@"C:\demo.msg", Outlook.OlSaveAsType.olMSG);

[/code]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , ,

programming

How to block the annoying IE ‘click’ sound

by Kulin 9. June 2009 12:37

This one has bothered me for years. Honestly I only have myself to blame for not doing something about it sooner. Like they say, its never too late and hence this post. If you’ve found yourself pulling out your hair every time you click a hyperlink in Internet Explorer, here’s how to be follicle friendly and turn that sound off.

1. Navigate to Control Panel > Sounds
2. Click the ‘Sounds’ tab
3. Scroll down until you reach the ‘Windows Explorer’ section and within it, search for the ‘Start Navigation’ entry
4. Set the ‘Sounds’ dropdown to ‘None’
5. Click Ok

IESound

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , ,

Software

Windows 7 Upgrade Advisor (beta)

by Kulin 10. May 2009 04:17

Ignoring the items against the warning symbol (not that I particularly care about them), I got a clean chit.

Windows 7 Upgrade Advisor (Beta)

Currently rated 2.0 by 1 people

  • Currently 2/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Software

Windows Server 2008 Foundation

by Kulin 7. April 2009 10:57

Microsoft has released Windows Server 2008 Foundation (a low-cost variant of the Windows Server 2008 core). Paul Thurrott covers some valid reasons for Microsoft releasing a product that is squarely aimed at tiny businesses (15 people or less) and in doing so they are also taking a broad swipe at the hardcore enthusiast market. Notably these are the two market segments that have a predilection towards the use of pirated Windows OS products (be it client or server) and with this release, Microsoft is making it even easier to go 'legit'. There are a couple of more reasons which I believe led to the release of this SKU.

1) The Worldwide Recession - Lets face it, the global downturn is not going to be kind to sales figures and Microsoft needed to pull something off that would keep those cash registers ringing (and in doing so keep shareholder value intact) well through this time of economic prudence.

2) Linux -  This is actually related to my first point above. Companies not spending more often than not translates into companies looking to free software. Ubuntu has free fully supported enterprise server and desktop versions out every 6-months and they've got zero shareholders to worry about. That's the deep-seated Redmondian fear. I'm not even going to prod the 'TCO monster' with a 10-foot pole, but depending on how you look at it, the release of Server Foundation will likely act as a gravity well and pull those sitting on the fence back into the Microsoft product fold.

It will be interesting to see the final feature set of Windows Server 2008 Foundation. With no support for virtualization (as per the EULA I suppose) and single-processor-socket only support, I wouldn't look to it to run my "weather simulation" server, but as a low-end file/database server it seems like Microsoft may just have hit the sweet spot.

Currently rated 4.0 by 1 people

  • Currently 4/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , , ,

Software

CIA World Factbook - United States

by Kulin 3. April 2009 05:30

Came across this statement in the CIA World Factbook against the entry United States (background section):
"The economy is marked by steady growth, low unemployment and inflation, and rapid advances in technology."

Also, all the way at the bottom of the page it says: "This page was last updated on 19 March 2009".

Something is not quite right, or perhaps its just one of those rare instances where the CIA has its facts wrong. Just saying.

Currently rated 3.0 by 1 people

  • Currently 3/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , , ,

Economy

Hello Tata Nano

by Kulin 23. March 2009 09:39

The title was supposed to be a play with words (in case you didn't get it). Anyway, you've waited for it and now its here, so don't just sit there reading this silly blog! Go out there and buy it, or something.

Currently rated 1.0 by 1 people

  • Currently 1/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

General

Microsoft !exploitable Security Analyzer released

by Kulin 22. March 2009 09:21

The Microsoft Security Engineering Center ('MSEC') has released an open source tool called the !exploitable Security Analyzer (pronounced 'bang exploitable') to detect and analyze security and crashes within software projects while they are in development. Designed around the familiar People-Processes-Technology frame of reference, !exploitable has been designed as a Windows Debugger (Windbg) extension and works on a rule-based engine to parse out and categorize crash dumps for further investigation.

Slides are also available for those interested in delving further into the gory details.

Currently rated 2.0 by 1 people

  • Currently 2/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

programming | Software

Powered by BlogEngine.NET 1.4.5.0 | Theme by Mads Kristensen
Page loaded in 0.031202 seconds.

Disclaimer

The opinions reflected on this blog are entirely my own, and do not reflect the thoughts and/or opinions of my employer in any way.