<

Data Deluge and a Startup’s Glassdoor

Keywords: , , , , , , , , , , , , , , ,

These days, we are deluged with data, and as a result we’re confusing noise with information, and information with useful information. But what many companies fail to realize is that what matters is what you do with that data — and as a result, they are missing out on a tremendous opportunity.

Yesterday was one of those days when I was dragging my feet, mostly because I stayed up way past my bedtime for the launch of NewTeeVee Station and then woke up at my usual time — before sunrise. The foggy state of my brain reinforced how necessary sleep is for connecting the dots and being productive. With the sun shining brightly, a walk along the Embarcadero to the office seemed like the perfect antidote. As Celine Roque writes on WebWorkerDaily, “Being exposed to ... Read More

Find Tweeters in Your Area with TwitterLocal

Keywords: , , , , , , , , ,

TwitterLocal is a great tool for anyone that has ever wondered if anyone close to them, geographically that is, uses Twitter just like they do. This site allows you to input a location, whether it’s a city or a state, and check the surrounding area (up to 20 miles) to see who else is […]

TwitterLocal is a great tool for anyone that has ever wondered if anyone close to them, geographically that is, uses Twitter just like they do. This site allows you to input a location, whether it’s a city or a state, and check the surrounding area (up to 20 miles) to see who else is Twittering close by. I am located in Fayetteville, Arkansas which is a small town, and I want to find all of the people that are Twittering around me. ... Read More

CloudCamp San Francisco

Keywords: , , , , , ,

On the eve of Structure 08 in San Francisco, the folks behind many of today’s cloud computing initiatives will be gathering at CloudCamp. GigaOM is one of the evening’s sponsors:
CloudCamp was formed in order to provide a common ground for the introduction and advancement of cloud computing. Through a series of local CloudCamp events, attendees […]

On the eve of Structure 08 in San Francisco, the folks behind many of today’s cloud computing initiatives will be gathering at CloudCamp. GigaOM is one of the evening’s sponsors: CloudCamp was formed in order to provide a common ground for the introduction and advancement of cloud computing. Through a series of local CloudCamp events, attendees can exchange ideas, knowledge and information in a creative and supporting environment, advancing the current state of cloud computing and related technologies. If you’re in the city, come ... Read More

Intype - Code Editor

Keywords: , , , ,

Today I finally used Intype code editor, and it is pretty neat, it pretty much allows you to insert half the necessary stuff. It is still in alpha stages but it sure does have a lot of potential. The full stable version when released will not be free and may cost you somewhere between $25 and $45.

For more information have a look at the FAQ section.


Today I finally used Intype code editor, and it is pretty neat, it pretty much allows you to insert half the necessary stuff. It is still in alpha stages but it sure does have a lot of potential. The full stable version when released will not be free and may cost you somewhere between $25 and $45. For more information have a look at the FAQ section. Read More

Woopra: Where Analytics is Heading

Keywords: , , , , , , , , , , , , ,

WoopraOne of my colleagues in the office told me about a website statistics service named Woopra (he knows I love quantitative data). I had not heard about it prior, so I went a did a little research around the Internet about it. Apparently, it launched on/around May 30 2008, as it’s relatively new, but had a nice little writeup on TechCrunch. I did some Tweet tracking and saw that a healthy early adapter audience was using it.

What is Woopra you ask? Very simply: MyBlogLog meets Google Analytics and has a baby, and then morphs into a Bloomberg Terminal of the next century. Very, very interesting, at least to me it is. I’ve taken some screenshots of my Woopra Terminal and put them below for you to see:

Woopra Image 1

Woopra Image 2

What I like about Woopra is that it gives me information in near real-time and tells me where my audience is going and where they have been on my website. Generally, all of the data exists on server logs, but I like the advanced graphical representation of my data. In the screenshots above, you can see the ticker on the bottom of the page that scrolls with data from the server.

Woopra is going to run into some issues when large publishers start signing up. They are in beta right now which is very smart and limiting their service to publishers who are less than 10,000 page views. I’m speculating that the reason for this is because the amount of resources it takes to crunch all of the data is fairly intensive and that they want to work out all of the kinks before they start charing. I’m interested to learn how their infrastructure is built - are they using Amazon’s EC2?

What I’d like to see is Woopra share network data information.  Meaning, if I track a view on my site and rename them, I’d like to see that “renamed” person across the entire Woopra network.  There is a lot of information in the larger “network” - lets see if Woopra pools that data.

I also give them credit for the slick interface.

Darren Herman is a digital media enthusiast and serial entrepreneur. Herman writes about technology, entrepreneurship and digital media at his blog, http://www.darrenherman.com.

Partner Links
Manage your finances online with Geezeo
Web Jobs
CenterNetworks LinkedIn Business Group
CenterNetworks Facebook Fan Page
Check out SmugMug for a free trial

One of my colleagues in the office told me about a website statistics service named Woopra (he knows I love quantitative data). I had not heard about it prior, so I went a did a little research around the Internet about it. Apparently, it launched on/around May 30 2008, as it’s relatively new, but had a nice little writeup on TechCrunch. I did some Tweet tracking and saw that a healthy early adapter audience was using it. What is Woopra you ask? Very ... Read More

Custom Visual Studio Visualizer

Keywords: , , , , , , ,

Code debugging is one of the most important parts of any development life cycle because it gives you the technique to find the problem and how to resolve it. When we talk about the visual debugging Visual Studio has tremendous potential in the term visual debugging features in the form of DataTips. DataTips tool provide a handy way to view information about your variables in visual studio during debugging only. In old versions of Visual Studio DataTips were limited in the amount of the information they could display. Now in Visual Studio particularly after VS2005 DataTips have been enhanced to give more detail information about the simple and complex variables. By the help of DataTips tool programmer easily visualize different variable data types in their Visualizers.

Visualizer is a new component in Visual Studio debugger user interface that give us a completely new way to view the structure of object or variable in a meaningful way. The first question that comes in your mind is what is actually Visualizer is all about and simple answer of this question is “it’s a dialog box or other interface to display appropriate types in a meaningful way.” Default Visual Studio debugger comes with four standards visulaizers and these are following

Text

HTML

XML visualizer

Dataset visualizer (Dataset, DataTable and DataView objects.)

 

When a debugger variable show a magnifying glass icon on the variable so it’s mean it has an appropriate visualizer.

 

 

In the preceding figure Visual Studio debugger show a DataTable Visualizer when you click the magnifying glass icon debugger show datatable visualizer.

In the following image I want to show image loading in the picture box in debug mode.

 

 

In the above image Visual Studio debugger not able to load image visualizer because there is no visualizer is available.

 

Ok this is an over view of very high level story and now I am going to write custom Image visualizer. Please follow the following steps.

1.       Create a Class Library project in Visual C#.

2.       Name it “VisualDebugger”.

3.       Add following Assemblies References.

a.       Microsoft.VisualStudio.DebuggerVisualizers.dll

b.       System.Drawing.dll

c.       System.Windows.Forms.dll

4.       Rename the class1 to ImageDebugger.cs

5.       Copy the following codes.

 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Drawing;

using System.Windows.Forms;

using Microsoft.VisualStudio.DebuggerVisualizers;

 

[assembly: System.Diagnostics.DebuggerVisualizer(
typeof(
VisualDebugger.ImageDebugger),
typeof(
VisualizerObjectSource),
Target = typeof(
System.Drawing.Image),
Description =
“Image Visualizer)]

namespace VisualDebugger

{

    public class ImageDebugger : Microsoft.VisualStudio.DebuggerVisualizers.DialogDebuggerVisualizer

    {

        protected override void Show(Microsoft.VisualStudio.DebuggerVisualizers.IDialogVisualizerService windowService, Microsoft.VisualStudio.DebuggerVisualizers.IVisualizerObjectProvider objectProvider)

        {

            System.Drawing.Image image = (Image)objectProvider.GetObject();

 

            Form frm = new Form();

                frm.Text = “Custom Visualizer - “ + image.HorizontalResolution.ToString() + ” “ + image.VerticalResolution.ToString();

                frm.Width = image.Width;

                frm.Height = image.Height;

 

            PictureBox pic = new PictureBox();

                pic.Image = image;

                pic.SizeMode = PictureBoxSizeMode.AutoSize;

              

            frm.Controls.Add(pic);

            frm.ShowDialog();

        }

    }

}

 

Class should be inherited from Microsoft.VisualStudio.DebuggerVisualizers.DialogDebuggerVisualizer and overrider the Show() method of DialogDebuggerVisualizer class to display your custom interface. The next most important and vital part of this visualizer is IVisualizerObjectProvider parameter because you going to caste this interface into apporipate type and in my case it is System.Drawing.Image class(it could be any thing like XML document, your specific class). I used System.Windows.Form class to host my picture box control. One thing that you should keep in mind is apply DebuggerVisualizerAttribute on your class.

 

Note:
First parameter is your custom class, Second parameter is your visualizer source, Third parameter is target object type like XML Document and last is the description of visualizer.

 

Deployment of Visualizer

Copy the DLL to either of the following locations:

Install path\Microsoft Visual Studio 9\Common7\Packages\Debugger\Visualizers\

—or—

My Documents\Visual Studio 2008\Visualizers\

 

Test Visualizer

1.       Create a new application of Windows Forms Application

2.       Give it name

3.       And write the following code.

 

            Image img = Image.FromFile(@”C:\Documents and Settings\sullah\My Documents\My Pictures\ozzie1.jpg”);

            PictureBox pic = new PictureBox();

            pic.Image = img;

 

4.       Set the Breakpoint on pic.Image = img;

 

Following are the outputs.

 


You can clearly see the new Image Visualizer in the preceding image and click on the magnifying glass icon and get output.

 

 


Code debugging is one of the most important parts of any development life cycle because it gives you the technique to find the problem and how to resolve it. When we talk about the visual debugging Visual Studio has tremendous potential in the term visual debugging features in the form of DataTips. DataTips tool provide a handy way to view information about your variables in visual studio during debugging only. In old versions of Visual Studio DataTips were limited in the amount ... Read More

Top 10 Most Pirated TV Shows on BitTorrent (wk23)

Keywords: , , , ,

TV shows are by far the most wanted files via BitTorrent, and according to some, it’s fast becoming the modern day TiVo. But what are all those people downloading? Let’s find out, and take a look at this weeks “Most pirated TV-episodes” chart.

The data is collected by TorrentFreak from a representative sample of BitTorrent sites and is for informational and educational reference only. At the end of the year we will publish a list of most downloaded TV-shows for the entire year, like we did last December. TV-shows such as “Lost” and “Heroes” can get up to 10 million downloads per episode, in only a week. Top Downloads June 01 - June 08 Ranking TV-show 1 (2) Battlestar Galactica 2 (3) The Daily Show 3 (4) The Colbert Report 4 (new) Doctor Who 5 (7) The Tudors 6 (5) Fear Itself 7 (5) So You Think You Can Dance 8 (10) Greek 9 (new) MTV ... Read More

Microsoft Offline Virtual Machine Servicing Tool

Keywords: , , , , ,

As we use more and more virtual machines, particularly for development, there is a risk because they don’t get updated by pushing critical security or virus updates and then they are fired up six months later we can have a security problem.

Microsoft has a solution for their virtual machine environment adding to the virtual machine management tooling -  the Offline Virtual Machine Servicing Tool. This turns on your VMs, updates them and shuts them down automatically.  You can find information about getting on the Beta at the link below.

Get it here


As we use more and more virtual machines, particularly for development, there is a risk because they don't get updated by pushing critical security or virus updates and then they are fired up six months later we can have a security problem. Microsoft has a solution for their virtual machine environment adding to the virtual machine management tooling -  the Offline Virtual Machine Servicing Tool. This turns on your VMs, updates them and shuts them down automatically.  You can find information ... Read More

Only 3 days until Twin Cities Sharepoint Camp 2008

Keywords: , , , ,

Spring 2008 Session - Saturday, June 14, 2008

Join New Horizons of Minnesota and Magenic Technologies for the First Bi-Annual Twin Cities SharePoint Camp Event. Spend a day with other SharePoint Administrators, Developers and End-Users and learn from each other on a variety of topics that impact your world.

SharePoint Camps are about the SharePoint community at large. They are meant to be a place for developers, administrators and any SharePoint user to come and learn from their peers. Topics are always based on community interest and never determined by anyone other than the community.

Spring 2008 Links

Registration link: http://www.nhmn.com/Courses/CrsRegister.aspx?SK=0034676

Interested in Speaking:

Contact Chris Williams (chriswi@magenic.com)  or Jim Ferguson (jferguson@nhmn.com) for more information. Our first 24 sessions were filled within the first week, but we are filling our request list now and considering opening another room.

Interested in Sponsorship Opportunities:

Contact Brandy Favilla (bfavilla@nhmn.com) for more information.


Where:

New Horizons of MN
4510 W 77th St Suite 210
Edina, MN 55433
http://www.nhmn.com/ContactUs/Directions/Edina.aspx

Time: 8:00 - 4:30ish


Spring 2008 Session - Saturday, June 14, 2008 Join New Horizons of Minnesota and Magenic Technologies for the First Bi-Annual Twin Cities SharePoint Camp Event. Spend a day with other SharePoint Administrators, Developers and End-Users and learn from each other on a variety of topics that impact your world. SharePoint Camps are about the SharePoint community at large. They are meant to be a place for developers, administrators and any SharePoint ... Read More

Silverlight Cream for June 10, 2008 — #296

Keywords: , , , , , , , , ,

Lots of links again tonight: ToolTip Control by Martin Mihaylov, Scott Morrison(3) on DataGrid, VSM by Ian Griffiths, Lee On Tech, and Tim Heuer, SL2B2 by Karen Corby, Cross Domain Services by Tim Heuer, Yavor Georgiev on Web Services, and GetTemplateChild Issues by Lee.

Bill Riess of Silverlight Games 101 has been busily updating to Beta 2 and has a quick access listing for getting to the content.


From SilverlightCream.com:
Using the Shape controls in Silverlight 2 Part 1
Martin Mihaylov of Silverlight Show is starting a nice sequence showing the shape controls such as rectangle, ellipse, line, etc… useful information for all.
Using the ToolTip control in Silverlight 2
This article from Martin is on using the ToolTip control… good concise demo and good information.
What’s New in the Silverlight DataGrid in Beta 2
Scott Morrison has been busy writing articles to help all of us learn how to use the DataGrid enhancements in Beta 2. This one is a general “What’s new” post
Auto-sizing the Silverlight DataGrid
Scott Continues with a DataGrid Auto-sizing post.. very cool :)
Sorting Data in the Silverlight DataGrid
And last for today by Scott is this one on sorting data in the DataGrid… dang hard to keep up with these guys!
Visual State in Silverlight Control Templates
I got this article via Shawn Wildermuth, and it is a great article on VSM by Ian Griffiths… probably the best write-up I’ve seen yet… print this one out for your refrigerator :)
Silverlight 2 Beta2
Karen Corby lists out all the Beta 2 stuff that is on her radar.
Updated Silverlight media player using VisualStateManager
Tim Heuer has two articles going… this first one is an update on a media player app that is skinned using VSM… gotta start reading these things :)
Silverlight cross domain services and a helpful tool
Tim’s second article is in response to email he has been getting from devs having troubles with cross domain issues … good list of why some things are working and some not.
Detailed Overview of Silverlight 2 Beta 2 Web Service Features
This blog post by Yavor Georgiev on the Silverlight WebServices Team is a very nice write-up with links about SL2B2 WebServices.
GetTemplateChild Issue- SLBeta2
Lee has apparently found another issue… this one is with the GetTemplaeChild, and has screenshots to show for his efforts!
Working with VisualStateManager
In a second post, Lee describes his experiences (all good) with the VSM… code included.

Stay in the ‘Light!


Twitter SLNews | Join me @ SilverlightCream | SL Web Articles | SL2 Web Articles | My Articles | My Tutorials | My Tooltips | My SL2 Articles | My SL2 ToolTips | SilverlightCream


Lots of links again tonight: ToolTip Control by Martin Mihaylov, Scott Morrison(3) on DataGrid, VSM by Ian Griffiths, Lee On Tech, and Tim Heuer, SL2B2 by Karen Corby, Cross Domain Services by Tim Heuer, Yavor Georgiev on Web Services, and GetTemplateChild Issues by Lee. Bill Riess of Silverlight Games 101 has been busily updating to Beta 2 and has a quick access listing for getting to the content. From SilverlightCream.com: Using the Shape controls in Silverlight 2 Part 1 Martin Mihaylov of ... Read More