rplant

Stories kicked by rplant

C# 4.0 Optional Parameters and Named Parameters(blog.johnplant.net)

submitted by rplantrplant(750) 2 years, 1 month ago

I have been resisting the new Optional Parameter feature of C# 4.0 due to the way I thought it would implement rather then diving into it and finding out. read more...

add a comment |category: |Views: 6

tags: another

Silverlight 4 - Trim Text in a TextBlock and display Ellipses instead (www.devcurry.com)

submitted by flyingkickflyingkick(331) 2 years, 1 month ago

What happens when you have text that does not fit its container? Let’s see. <Grid x:Name="LayoutRoot" Background="White" Margin="40"> <TextBlock Name="tb" Height="20" HorizontalAlignment="Left" Text="This sentence is too long to fit in here" Width="100"> </Grid> read more...

add a comment |category: |Views: 90

tags: another

Getting started with Visual Studio 2008 Remote Debugging(tyronedavisjr.com)

submitted by tdavisjrtdavisjr(335) 4 years, 1 month ago

In the past, Visual Studio Remote Debugging was not the easiest thing to set up. Using VS 2008 this process is much simpler. read more...

add a comment |category: |Views: 398

tags: another

Code Isn't Beautiful(codinghorror.com)

submitted by rplantrplant(750) 4 years, 3 months ago

I was thrilled to see the book Beautiful Code: Leading Programmers Explain How They Think show up in my Amazon recommendations. It seems like exactly the type of book I would enjoy. So of course I bought a copy. Unfortunately, Beautiful Code wasn't nearly as enjoyable of a read as I had hoped it would be. It is by no means a bad book, but there's something about it that's not quite right. read more...

add a comment |category: |Views: 1

tags: another

SQL is the assembly language of the modern world(lostechies.com)

submitted by chadmyerschadmyers(840) 4 years, 3 months ago

I really would like to challenge the conventional wisdom that stored procedures are the best and/or that hand-crafted SQL is the only way to achieve good performance. I once heard someone say that "SQL is the assembly language of the business application world" and I totally agree with this (I linked to Jett Attwood's post above, but I heard it somewhere else first and my Google-fu is failing me tonight). read more...

add a comment |category: |Views: 4

tags: another

Object Initializers(blog.jrpsoftware.com)

submitted by rplantrplant(750) 4 years, 3 months ago

A new feature of Visual Studio 2008 and it's C# 3.0 is Object Initalizers. This compiler feature can be used to set the values of properties without the need to create a special constructors. Even though you must have 2008 to use this feature, you don't have to target the 3.0 or 3.5 framework as it works just fine with the 2.0 framework. read more...

add a comment |category: |Views: 2

tags: another

C#.NET or VB.NET?(programmersheaven.com)

submitted by pheavenpheaven(430) 4 years, 3 months ago

Recently we got a question from a user asking which of C# and VB.NET was best suited to developing commercial applications like Payroll systems. In this post we look at the similarities and differences between the languages and pick out some of the things that may be worth considering when making the decision. read more...

add a comment |category: |Views: 7

tags: another

dnrTV Aggregator Part 2 - LINQ to XML(blog.jrpsoftware.com)

submitted by rplantrplant(750) 4 years, 3 months ago

In Part 1 of this series I went over the creation of a Windows Service and it's remote client. For this installment, I will be covering the use of "LINQ to XML" to gather the feed, and the saving and loading of the XML configuration files. I'll also show some code to download and unzip the videos using SharpZipLib from ic#code. read more...

add a comment |category: |Views: 10

tags: another

RESX file Web Editor(blog.lavablast.com)

submitted by EtienneTremblayEtienneTremblay(5008) 4 years, 3 months ago

A collaboration tool to enable your translators to do their job right on your ASP.NET website! read more...

add a comment |category: |Views: 276

tags: another

Outerglow / Outline Text with GDI+ in C#(blog.jrpsoftware.com)

submitted by rplantrplant(750) 4 years, 3 months ago

My previous job required a bit of multimedia programming and involved the use of a lot of different graphics techniques. One day we ran across a bit of code to give drawn text either an outerglow or an outline around it. It turns outs to be much simpler to do than I previously thought and only goes to show that you can always learn a new tricks. read more...

add a comment |category: |Views: 317

tags: another

Agile PM Tools(weblogs.asp.net)

submitted by bradygasterbradygaster(4897) 4 years, 3 months ago

Nice list of Agile project management tools. read more...

1 comment |category: |Views: 16

tags: another

TDD for Beginners Series(buddylindsey.com)

submitted by omar.qadanomar.qadan(275) 4 years, 3 months ago

Series of posts geared towards the beginner developer to TDD. These are meant to be as simple as possible to get the understanding across about TDD. read more...

2 comments |category: |Views: 92

tags: another

dnrTV Aggregator Part 1 - Windows Services(blog.jrpsoftware.com)

submitted by rplantrplant(750) 4 years, 3 months ago

It is time for another personal project for me and this time I thought I would put together a dnrTV feed aggregator. Rather than watch each episode on my home computer, I prefer to watch them on the big screen TV in the living room. They are very viewable and I can sit in my lazy boy with the remote, a beer and maybe the laptop. ( mostly the remote and a beer ) read more...

add a comment |category: |Views: 3

tags: another

Confessions of a Software Developer(aaronlerch.com)

submitted by aaronlerchaaronlerch(1670) 4 years, 3 months ago

Has anybody else ever felt overwhelmed with the sheer mass of "stuff" involved with software development? read more...

add a comment |category: |Views: 5

tags: another

Top 5 Attributes of Highly Effective Programmers(philosophicalgeek.com)

submitted by JanVanRyswyckJanVanRyswyck(2724) 4 years, 3 months ago

Just an essential article. I would like to add "discipline" to this list. read more...

1 comment |category: |Views: 9

tags: another

ASP.NET Custom Errors: Preventing 302 Redirects To Custom Error Pages(colincochrane.com)

submitted by ColinCochraneColinCochrane(235) 4 years, 4 months ago

Defining custom error pages is a convenient way to show users a friendly page when they encounter an HTTP error such as a 404 Not Found, or a 500 Server Error. Unfortunately ASP.NET handles custom error pages by responding with a 302 Temporary redirect to the error page that was defined. In this post I explain how to create a custom HttpModule that allows you to use custom error pages while preserving the original HTTP status code and avoiding the 302 redirect to the error page. read more...

add a comment |category: |Views: 204

tags: another