Weekly Link Post 131

February 7, 2010 Rhonda 1 comment

Here is the latest installment of links that I have found interesting in the past week. Way to go Saints!

Application Development/Design

SQL Server, Compliance and PowerShell

  • More Free SQL Server DBA Training Videos OnlineThe SQLBits conference in Great Britain videotapes their sessions and makes them available for public viewing. This weekend, they announced that last fall’s sessions are online now – and it’s all free!
  • SSIS: Make your output files dynamicI wanted to build a little more flexibility into my packages. Wouldn’t it be great if we could simply modify a stored procedure to include additional columns, and these changes would be reflected in the output files, with no further work required? Here’s an outline of my first steps towards achieving this.
  • SQL Server Table VariablesA table variable provides functionality similar to a standard variable and a local temporary table combined.

 Community/Technology Events & Training

Internet, Software and General Technology

Self-Improvement, Productivity and Career

Sports, Entertainment and Everything Else

  • Icy Saturn Moon Burps Up Heat and IceThe icy crust of Saturn’s moon Enceladus appears to occasionally belch up blobs of warm ice, findings that help explain the mysterious heat seen there, scientists now suggest.
  • ‘Lost’ recap: What’s Your Worldview? - This was forwarded to me by a co-worker. You are advised not to read this if you have not seen the Lost season premier.
  • Our best look yet at PlutoHere’s what astronomers say about the new set of Pluto images: Hubble’s view isn’t sharp enough to see craters or mountains, if they exist on the surface, but Hubble reveals a complex-looking and variegated world with white, dark-orange, and charcoal-black terrain.
  • Dilbert comics I Found Funny: 02-01
  • Movie Trailers:  The Last Airbender

Great Link Blog Sources

Happy Surfing.

^..^

Categories: Links

Generating Getters and Setters in Eclipse

February 7, 2010 Rhonda 1 comment

I am taking Software Development with Java this semester, so not only am I learning a new language, but a new IDE. Eclipse is one of the most popular of the Java Integrated Development Environments.

eclipse_ide

There is a nice feature in Eclipse that saves a lot typing. It is the Generate Getters and Setters… option on the Source menu.

In the lab we did in class last week there were three main variables.

GenGettersAndSetters1-Eclipse 

 

In Eclipse, go to the Source menu and select Generate Getters and Setters…

GenGettersAndSetters-Eclipse

 

In the Getters and Setters dialog, select which fields you want to create the getter/setter for. In this case, I want all three, so I click the [Select All] button and then click [ok].

GenGettersAndSetters3-Eclipse

 

Magically, all of the getters and setter code is generated for you.

GenGettersAndSetters4-Eclipse

 

Java Lab Source Code 

This works well for straight forward variables. I’m sure it is not the best approach for more advanced situations, but it sure saves a lot of typing.Whew

^..^

Categories: Java

Houston C# SIG Meeting – 01/19/10 – Recap

February 2, 2010 Rhonda Leave a comment

A couple of weeks ago I attended the Houston C# SIG meeting. Ken Getz did presentations on both Silverlight and LINQ to Objects.

Silverlight

Ken defined Silverlight as a programmable browser plugin that supports animations, vector graphics and videos.

Some features include –

  • Works on Mac/Linux/Windows
  • Client-side technologies
  • Uses XAML for declarative design
  • Expression Blend – best software to use for Silverlight/XAML design
  • Visual Studio 2010 includes the components needed to build Silverlight apps out of the box

The following site allows you to verify if your pc is able to run Silverlight applications http://www.microsoft.com/silverlight/get-started/install/default.aspx

Silverlight is basically an HTML page with an <object> tag.

LINQ to Objects

There are several LINQ providers –

  • Objects
  • SQL
  • DataSets
  • XML
  • Entities

Example Usage

string[] geeks = { “Sheldon”, “Leonard”, “Howard”, “Raj”};

var myQuery = from g in geeks
              orderby g
              select g;

Console.WriteLine(“My Favorite Geeks”);

foreach (var x in myQuery)
{
    Console.WriteLine(x);
}

image

Ken provided a very informative presentation on LINQ to Objects and I am glad I was able to catch it.

Ken’s LINQ demo code

^..^

Categories: .NET General, C#, Community

Weekly Link Post 130

January 31, 2010 Rhonda 1 comment

Here is the latest installment of links that I have found interesting in the past week.

Application Development/Design

SQL Server, Compliance and PowerShell

 Community/Technology Events & Training

Internet, Software and General Technology

Blogging and Social Networking

Self-Improvement, Productivity and Career

  • How to Find Meaning In Your WorkHere’s how to find meaning in your work, and to get your motivation back.
  • LiveMeeting Presentation TutorialWant to give a presentation over the web with Microsoft LiveMeeting? It’s quick and easy, and with my tips in this six-minute video, you can give a high-quality presentation that attendees will enjoy.
  • How Not to Hurry – Great advice for slowing down and enjoying life.

Sports, Entertainment and Everything Else

Great Link Blog Sources

Happy Surfing.

^..^

Categories: Links

Awesome Blogs of the Month – JAN ‘10

January 29, 2010 Rhonda 1 comment

blogging_101

There are tons of great blogs out there. Each month I will shine a spotlight on blogs that I access often and find useful. Hopefully, you will find something of use too.

I pick one blog from each category. The categories include Application Development, Database Development, Science/Technology, Productivity and Health.

Application DevelopmentZain Naboulsi’s Blog | Zain is Developer Evangelist for Microsoft. His site is a great source for all things Visual Studio.

Database DevelopmentMladen Prajdić Blog | Mladen is the creator of the very cool SSMS Tools Pack and provides lots of great code samples on his blog.

Science/TechnologyAstronomy | Great overall blog on the world of Astronomy.  

Productivity/LifeHacksQuick and Dirty Tips | Great resource for tips on numerous topics including: Grammar, Productivity, and Public Speaking.

Health/FitnessMyRecipes | Good recipe site. Contains recipes for quick dinners, budget menus and healthy diets.

Until next month…

^..^

Categories: Links

Weekly Link Post 129

January 24, 2010 Rhonda 1 comment

Here is the latest installment of links that I have found interesting in the past week.

Application Development/Design 

SQL Server, Compliance and PowerShell

 Community/Technology Events & Training

Internet, Software and General Technology

Self-Improvement, Productivity and Career

Health, Fitness and Recipes

Sports, Entertainment and Everything Else

Great Link Blog Sources

Happy Surfing.

^..^

Categories: Links

New Visual Studio Tips Series

January 22, 2010 Rhonda Leave a comment

A long time ago, I wrote a blog post on Sara Ford’s book Microsoft Visual Studio Tips as well as her very nice Tip of the Day series.

She has since ended her series and passed the "reins" to Zain Naboulsi who has done a wonderful job with a series of tips for Visual Studio 2010.

I highly recommend checking out Zain’s series…lots of great tips to be absorbed.

Additional Information

^..^

Categories: Visual Studio

Weekly Link Post 128

January 18, 2010 Rhonda 1 comment

Here is the latest installment of links that I have found interesting in the past week.

Application Development/Design

    SQL Server, Compliance and PowerShell
    Community/Technology Events & Training
    Internet, Software and General Technology
    Self-Improvement, Productivity and Career
    Health, Fitness and Recipes
    Sports, Entertainment and Everything Else

Great Link Blog Sources

Happy Surfing.

^..^

Categories: Links

HDNUG – January 2010 Meeting – Recap

January 18, 2010 Rhonda Leave a comment

I attended the January 2010 Houston .NET User Group meeting and there was a great turnout (about 100 people in attendance)  to see Rob Vettor speak on Visual Studio 2010.

Announcements

2010 Officers

  • President – John Hellman
  • Vice President – J Sawyer
  • Treasurer – Michael Steinberg
  • Secretary – Justin ???

2010 Houston Techfest – Saturday, 10/09/2010 @ University of Houston

Markus Egger will be the speaker at the February 2010 meeting

New and long awaited website design at http://www.hdnug.org

Zain Naboulsi announced the Windows 7 "Windows @ Work" Article Contest. A contest that he is putting on in conjunction with The Code Project.

Submit a great article explaining how you built an app for Windows 7 – complete with code – and if yours is the highest rated article by both The Code Project community and our judges, you could win a fully loaded HP Touchsmart tx2z Notebook!

Visual Studio 2010 is slated for release 4/22/2010

hdnug-jan1

The main presentation was given by Rob Vettor. He talked about Visual Studio 2010 and the history of how it came about as well as some of the new features.

Some New and Extended Features in VS 2010

  • CLR 4.0
  • Cloud Computing
  • Parallel Computing
  • Visual F#
  • VS UI is built in WPF
  • DLR – Dynamic Language Runtime
  • MEF – Managed Extensibility Framework (for building plugins for VS)
  • All the normal languages have been extended (C#, VB.NET, AJAX, etc)
  • Entity Framework 4.0
  • Multi-Targeting – Capability of dealing with previous versions of the Framework (2.0+)

Sku Versions

The number of Visual Studio versions has been reduced. Now there are only 4 main skus to remember :-)

Here is a comparison of the old sku setup to the new sku setup.

vsskus-comp

Below is what is included in each of the new skus.

vs2010skus

 

Roadmap

  • Beta 1 has come and gone
  • Beta 2 is now available
  • March 2010 – Release Candidate
  • April 22/2010 – Official Release

Rob gave a great high-level overview of what is  coming in Visual Studio 2010.  As always, there were some good magazines given away. :-)

hdnug-jan2

Until next month…

^..^

Weekly Link Post 127

January 10, 2010 Rhonda 1 comment

Here is the latest installment of links that I have found interesting in the past week.

Application Development/Design

    SQL Server, Compliance and PowerShell

     Community/Technology Events & Training

Internet, Software and General Technology

Self-Improvement, Productivity and Career

Health, Fitness and Recipes

Sports, Entertainment and Everything Else

Great Link Blog Sources

Happy Surfing.

^..^

Categories: Links