Spider

By Bill at June 23, 2009 18:41
Filed Under: Move, Nature

IMAG0256 I went to my new house today to meet an exterminator who was going to take care of some ants that have taken up residence under the house. 

While I was walking around the house, I noticed a spider in a bush on one side of the house.  I asked the exterminator, whom I suppose is an expert in these things, if he could identify it and he said that he didn’t know the real name of it, but locally they call them banana spiders.  He added that it would grow about three or four times bigger and indicated that it would be about as big as his hand.  He said that it was relatively harmless to humans, and they are good to have around to catch mosquitoes.

The picture I have here was taken with my cell phone and it is not very clear at all.  Apparently, this one is a baby.  It is only about an inch and a half across.  If this one survives and is still around when we move in, I’ll try to get a better picture.  In the meantime, if you are interested, here is a very good picture of a banana spider that I found and a little bit of information about them.

Banana Spider

Link: photo
Link: information

kick it on DotNetKicks.com

We Now Own a House

By Bill at June 22, 2009 15:42
Filed Under: Move, News

IMG_0674 We closed the deal on our house today.  As of 1:30pm EDT we are home owners in Raleigh, NC.

We move in on July 10th.

 

 

 

.

kick it on DotNetKicks.com

Swan Update

By Bill at June 17, 2009 14:21
Filed Under: Nature

IMAG0247

Deb and I went walking in Prospect Park again this morning and purposely walked by the spot where we encountered a gaggle of geese and an irate swan.  This morning there were a few geese, but we were able to see the entire swan family.

The cygnets are downright adorable.  Everybody seemed to be in a much better mood this morning and it made for a peaceful encounter.

Following are some pictures and a video.




 

Link: photo set on Flickr

kick it on DotNetKicks.com

Gaggle vs Swan

By Bill at June 16, 2009 12:20
Filed Under: Nature

IMAG0231While Deb and I were walking in Prospect park this morning, we came upon a gaggle of geese that themselves stumbled upon an irate swan defending his nest.

The geese seemed to be on the move.  There were mostly goslings in the group with a few adults.  My guess is that they had gone for a walk to forage and were heading back to the lake.  Unfortunately, they tried to enter the lake a few feet from where a pair of nesting swans were protecting their nest.  Some of the other passers by said that they had seen cygnets in the nest earlier, but when we were there one swan was completely covering the nest and the other was on the shore posturing. 

The geese seemed determined to get back to the lake until the swan had enough and started charging.  What followed was almost comical.  The goslings scattered while the adults lagged behind to distract the swan.  Some of the goslings walked right up to me and seemed determined to follow me to safety.  I didn’t know where to lead them, but I was able to get a few good up close pictures with my cell phone.

I also got some video of the swan charging around.  In the very back of the video there is a white spot.  It can’t be seen clearly, but that is the other swan sitting on the nest.



The Gaggle vs The Swan

Link: Photo set on Flickr

kick it on DotNetKicks.com

The Decemberists at Radio City 6/10/2009

By Bill at June 11, 2009 18:21
Filed Under: Music

DecemberistsI had the pleasure of seeing The Decemberists at Radio City last night and I was blown away.

I should start by saying that on more than one occasion someone has mentioned The Decemberists to me.  Actually not just someone, but people I know and respect.  I can’t remember exactly who it was, but I know I’ve had this low level awareness that a band called The Decemberists was out there and that I wanted to see them or at least download some songs and give them a listen. So when my friend Brian asked me if I wanted to go, I jumped at the chance.

Now, again I feel the need to be fair.  I haven’t seen Brian in about 15 years.  Brian and I were very close in college.  We’d been to each other’s houses and the other’s parents.  At one point I drove 4 hours to D.C. just to have dinner with him.  We lived together for a while after graduation.  Brian married another one of my close friends.  It’s hard to believe, but somehow we lost touch and time passed.  It happens.  Luckily, Facebook got us back in touch.  So, after 15 years, Brian could have asked me if I wanted to go watch paint dry or grass grow and I would have said yes.  The fact that I would get to see this band of which I was vaguely aware was just a bonus.

More...

kick it on DotNetKicks.com

How To - A Run.GPS Widget for BlogEngine.Net

By Bill at June 09, 2009 02:39
Filed Under: .Net Programming

RunGps WidgetOne of the great things about BlogEngine.Net is how easy it is to create widgets or plug-ins for it.

I’ve created a widget that displays the stats for a user at Run.GPS.

There are two files that go into a widget: the edit.ascx and the widget.ascx.  Both files go in a folder named for the widget.  That folder goes in the widgets folder off of the web project root.

The edit.ascx holds the code that is used to edit the settings for the widget.  The widget.ascx holds the code for the widget itself.

Run.GPS allows users to build a badge that can be embedded in a web page or blog.  The badge is configured with a series of dropdowns which change a box with HTML code at the bottom of the page.  The code is surrounded in an iframe tag. The HTML can be copied and pasted into any web page to embed the badge.

Badge Interface

For the widget to work, it should have the same settings and generate the same HTML code in an iframe tag.  A quick survey of the various settings shows that the dropdowns directly change most of the values in the HTML code.  For example, changing the “Units” dropdown to “Metric” changes to code to include “&units=Metric and changing the “Map Type” dropdown to “NORMAL” changes the code to include&mapType=NORMAL”.

The only tricky part about converting the settings to HTML code is with the width and height attributes in the HTML code.  For each badge type, there are a different set of dimensions.  Rather than spend too much time on this, I just hard coded the dimensions.

More...
kick it on DotNetKicks.com

Presenting Detail Values as part of the Master – part 2

By Bill at May 10, 2009 19:59
Filed Under: .Net Programming

This is part two of a three part series on working with master-detail data.  In part one I showed how to present detail values on the master using a utility I wrote called the SubAttributeAccessor.  In this article I will go into detail as to how the SubAttributeAccessor works. In part three, I’ll introduce a descendant of DataGridViewColumn that will allow us to show the indexed detail data in line with the master data as additional columns.

The SubAttributeAccessor is a class that when added to a parent class is able to present a list of children as an indexed property of the parent.  For example, let’s imagine that we had a class called song and that is has among other properties one that is a list of attribute objects.

public class Song {
public List<Attribute> Attributes {get; set;}
}

The attribute class on the other hand has at least two properties, a key and a value.  The key property is a string that will be used to identify the attribute and the value property would hold the actual value of the attribute.  Rather than a certain type or even an object, the value will hold a byte buffer where we can store anything using serialization.
 
public class Attribute {
public string Key {get; set;}
public byte[] Value {get; set;}
}

These two classes form the basis of the imaginary scenario that I used in part one of this article.  A song can have an unlimited number of attributes.  As things stand, we can add an attribute to a song like so:

Song mySong = new Song();
Attribute myAttribute = new Attribute();
myAttribute.Key = "Tempo";
myAttribute.Value = "slow";
mySong.Attributes.Add(myAttribute);

More...

kick it on DotNetKicks.com

Old Family Photos

By Bill at April 27, 2009 09:56
Filed Under: News, Family

mosaic7867528

I’ve started scanning in a bunch of old family photos.  They all need to be given titles, descriptions, dates, etc.  If you can help with this and have a Flickr account, please let me know and I will give you rights to make changes to the set.  If you do not have a Flickr account but you can identify some of the photos, please let me know and either I’ll help you get an account, or we’ll work something else out.

Otherwise, the set is available to the public, so at the very least, you can browse through the photos.

I have many, many more photos to scan in, so check back often if you are interested.  I’ll post something here whenever I upload more than a few.

Right now, I’m working on photos from my dad’s family.  Later there will also be a set from my mom’s family.

Link: Flickr Set

kick it on DotNetKicks.com

Neighborhood Recreation

By Bill at April 23, 2009 19:40
Filed Under: News, Move
Playground and Pool
Tennis Court and Club House

Here are some videos of the recreation facilities in our new neighborhood.

.

kick it on DotNetKicks.com

Computer Guru Needed in Brooklyn

By Bill at April 23, 2009 19:32
Filed Under: Random

Is anybody in the New York area able to do a computer tune-up?  The gig includes fixing up one computer for a small business and is paid work.  It also includes fixing up the PTA computer at a public school and is volunteer work.  Normally, I’d do the work myself, but I’m totally swamped, so I told them I would try to find someone who could do it for them. 

Let me know if you are interested.

kick it on DotNetKicks.com

Authors

  RSS Feed Bill Fugina

Bill is Director of Technology for Coleman Insights. He enjoys programming, software design, walking, reading, dining out and watching movies, most of which he enjoys even more when he doing them with his wife, Deb, and or his son, Isaac.  Bill and Isaac are working on a video game, but they haven't made very much progress yet.

  RSS Feed Debra Hill

Deb dabbled in Project Management in the Advertising industry for (too) many years. She has happily ditched that and is taking some time to decide what is next career-wise. She enjoys gardening, knitting, sewing and various other crafty things. She also enjoys vegetating on the weekends with the family.

RSS Feed Isaac Hill-Fugina

Isaac has his own blog called Isaac's Place.

Recent Comments

Comment RSS

Bill's Run.GPS Stats

Training Sessions 16
Total Distance 50.17 mi
Total Time 0.11:50:02
Calories 6961 kcal
Average Speed 4.24 mph
Min Altitude -157 ft
Max Altitude 590 ft
Total Ascent 226 ft
Total Descent 236 ft