Thursday, February 03, 2011
It would be ideal if they would make a Community or Express version, with/without ads, with/without restrictions on business use. At the very least, they should make an old version perpetually free, as some other vendors have done.
If something useful but somewhat niche goes commercial, can MySql be far behind? Is Oracle any less profit-driven than RedGate?
Thursday, March 05, 2009
The problem with “You are not your code”
There is a commonly expressed idea (a recent example here) that can be summed up as “you are not your code”. In short, if someone tells you “this is bad code”, you should rejoice, because it’s an opportunity for improvement.
When expressed, everyone rushes to agree with this sentiment. And so do I. It is very difficult to improve if you cannot listen to criticism and make changes based on it.
But there is a another side to this that is rarely expressed. When someone delivers this message, you are actually the person who wrote the code. You are not the code, but you are a person who wrote bad code.
When you receive this message, it should be not only a time for rejoicing in the learning opportunity, it should also be a red flag. You do not want to continue to be the person who writes bad code.
Consider the situation where this message is delivered in a code review session. The team is gathered, the code you wrote is being projected on the wall, and, well, it’s baaaaad. People are snickering behind their hands or WTF-ing all over the place. How many times do you want to hear “this is bad code”? Put another way, how many times would it take before you would begin to be labeled as “the guy who writes bad code”?
No team wants that guy as a member for long, whether learning is taking place or not. It’s a drag on everyone else’s attitude and on the team’s output – someone is going to have to write the good code to replace the mess you wrote (or take the time to supervise your rewrite).
So, go ahead and use constructive criticism to improve. But don’t let yourself be in a position where you keep receiving such criticism.
You’ve got to learn, and not just from code reviews. Take the initiative to get out of this penalty box. Take some time to study the code of team members who don’t get criticized, because they write good code the first time. Read a book, subscribe to some RSS feeds on coding, do some code katas. Refactor, using some better or clearer techniques from the language.
Monday, February 09, 2009
The basic syntax of F#
Here is a nice, concise overview of the minimum syntactical constructs you need to get a decent F# program up and running.
There are a couple of links to other posts that describe some features in more detail.
Monday, November 24, 2008
Visual learning
Sometimes a simple visual makes an abstract concept more understandable. I find more and more that I like watching short webcasts about new concepts instead of just reading prose about them.
If you haven't tried it, check out Dimecasts for a collection of just that kind of presentation. I find it great to not only see code, but also to hear why it is being written that particular way.
Here's one I just ran across that explains pointers succinctly and clearly.
Wednesday, August 20, 2008
The Future of Reflector is Red Gate
In an interview with Lutz Roeder and James Moore entitled The Future of Reflector, we find out that development of Reflector is being taken over by Red Gate Software. The promise is that Reflector will continue to be "available for free downloading". Will source code still be available? Not discussed in the brief transcript of the interview.
It will be interesting to see what happens to such a widely-used tool. How will the community of add-in writers react? Will there be a hue and cry from the Open Source community at large?
Tuesday, August 19, 2008
Monday, May 19, 2008
Unit testing static classes
Cibrax describes a method to unit test static classes. The example given applies to WCF, but it can be applied to anything that would otherwise be difficult to mock.
Monday, April 07, 2008
Unified SCC - a universal source control integration plugin
This plugin could be useful if you are looking to use Subversion (or CVS) as your source control management system. It claims to handle Delphi as well as Visual Studio, with other development systems in the works.
Wednesday, March 26, 2008
Source Control in a .NET World
Scott Kuhl blogs about finding a source control system to replace SourceSafe and comes up with a surprising new contender.
Monday, March 17, 2008
Tuesday, January 08, 2008
The Mythical 5%
Bruce Eckel's commencement address at Neumont University in Salt Lake City. The school is geared toward teaching Comp. Sci. Some excerpts:
We are in a young business. Primitive, really -- we don't know much about what works, and we keep thinking we've found the silver bullet that solves all problems. As a result, we go through these multi-year boom and bust cycles as new ideas come in, take off, exceed their grasp, then run out of steam. But some ideas seem to have staying power. For example, a lot of the ideas in agile methodologies seem to be making some real impacts in productivity and quality. This is because they focus more on the issues of people working together and less on technologies.
People issues. In software as well as life, People Issues rule. To condense further...
A man I've learned much from, Gerald Weinberg, wrote his first couple of books on the technology of programming. Then he switched, and wrote or coauthored 50 more on the process of programming, and he is most famous for saying "no matter what they tell you, it's always a people problem."
A third way to look at this:
...there's one more very important maxim from Gerald Weinberg which doesn't really answer anything as much as gives you a way to understand what happens. He says: "Things are the way they are because they got that way ... one logical step at a time." It's the legendary frog in the saucepan. So from your fresh new perspective things might look ridiculous, but remember that each decision on the way was made by someone weighing the issues and making what seemed like the best choice at the time. This viewpoint doesn't solve the problem but it can make you more compassionate about the people who are stuck there.
Amen.
This is worth taking the time to read.
Thursday, December 13, 2007
Icon Restore
This is a nifty thing for those of you who change resolutions from time to time (or have them changed for you without your permission, if you know you know what I mean).
Icon Restore is free and does just what it says it will do. Note that if you move things around after saving your icon locations, you will have to remember to save your new position.
If you like your desktop the way you like it, this is for you.
Tuesday, December 11, 2007
Two, Two, Two Mints In One
My employer, Alogent Corporation, is developing an API to interface to an existing piece of code I'll call Deposit Server. It normally runs as a Windows service, which I'll call DepositServer.exe. The API (WebApi) is designed to be called via the web, so it runs under IIS within the aspnet_wp.exe process. Each of these has its own Visual Studio solution file, each with numerous projects.
If you happen to be coding and debugging on both sides of the fence (the Windows service and the IIS process), you can use one Visual Studio instance to attach to both processes at once in order to trace between the web API and the Deposit Server as traffic flows back and forth.
What I did was create a single solution, let's call it DualSolution, by merging the contents of the existing WebApi and DepositServer .sln files. Rather than try to figure out which Project entries were common to both solutions, and there are quite a number, I just copied the entire contents of each .sln file into the new one, back to back.
When you open the resulting solution in VS, you will get a bunch of notifications that 'project xxxx cannot be added because it already exists in the solution'. You just click OK, and VS will take care of the cleanup when you save the solution the first time.
(At first I thought I needed to merge the contents of the Global sections and have only one Global, but VS appears to take care of that as well. Just append one .sln file after the other, open up the result, and you're good to go.)
When you want to debug, attach to process DepositServer.exe, then turn right around and attach to aspnet_wp.exe. Now, you can set breakpoints from end to end.
Of course you can do something similar by having two copies of VS running, one with the WebApi solution, the other handling DepositServer. But it seems to me there are two upsides of the combined solution method:
- You save memory by having only one copy of VS running rather than two
- You save memory by not having the projects common to both solutions open twice
Devenv.exe (the guts of the Visual Studio IDE) tends to get pretty hefty as you ask it to do things; here are the Working Set sizes on my machine, as reported by Process Explorer. Your mileage will vary, based on what's open in the solution, the add-ins you've got installed, moon phase, how VS feels at the moment, etc.
Each of these measurements was taken with all projects collapsed, no source files open, no Start Page open. I let things "settle" for a while, as I notice the WS size creeps up a bit for a few minutes after the solution is open for business in the IDE. The solutions are (for the moment) VS2005.
| Solution opened and its state | Working Set size (in KB) |
| Visual Studio with no solution open | 57,016 |
| DualSolution, after opening | 400,256 |
| DualSolution, after attaching to both processes | 421,404 |
| WebApi, after opening | 196,384 |
| WebApi, after attaching to aspnet_wp.exe | 212,228 |
| DepositServer, after opening | 403,508 |
| DepositServer, after attaching to DepositServer.exe | 427,004 |
| Memory to debug with combined solution: | 421,404 kb |
| Memory to debug with two VS instances: | 639,232 kb |
| Not having to swivel your head between two sets of breakpoints in two different windows: | priceless |
Tuesday, December 04, 2007
Hurry! Act now!!
Repent! The End is Near!
It has been announced that Virtual Server 2005 will no longer be supported after 2014. Plan now to migrate your virtual images, before it's too late.
You know your company's getting big when it announces that an already outmoded product will see its sunset seven years from now.
Thursday, November 15, 2007
Sysinternals Suite - New and Improved Packaging!
All of the good stuff in one package. This is a great idea for a newly-paved machine.
Windows cannot open this file
This has been an annoyance for a long time. When you open a file with an "unknown" extension, you get the dialog asking you if you want to search the Interweb to find an appropriate program. Like the author of this post, I have never, ever found anything through this. I automatically choose "Select the program from a list".
Now you can perform some registry hackery to bypass this dialog and always go to the "Select from a list" step.
Tuesday, October 30, 2007
Buy 1, Donate 1 Laptop for $399 - The One Laptop Per Child Project
A while back, I saw a 60 Minutes interview with Nicholas Negroponti about the One Laptop Per Child Project, and it was very interesting. These things really are useful in an African village. Kids, as kids do, were taking to them like ducks on a pond. It's a cool box, too.
Now we have a chance to both satisfy our lust for curiosity about the technology and help a child. Come November 12th, there is a two week program where you can buy one of these babies and have one donated. Sign up here to be notified when it officially starts.
Rob Walling has blogged about it.
Wednesday, October 24, 2007
WCF Performance Comparisons
Ken Brubaker points to a summary by Clemens Vasters of a white paper comparing various existing distributed communication technologies with WCF. The bottom line - WCF is
- %25 - %50 faster than ASMX
- %25 faster than .NET Remoting
- %100 faster - %25 slower than .NET Enterprise Services (DCOM)
Also in his summary, Clemens remarks (italics his):
For WSE 2.0/3.0 implementations, migrating them to WCF will obviously provide the most significant performance gains of almost 4x.
The performance differences alone make WCF a technology worth exploring.
Team Foundation Server Version Control
Jeff Levinson provides a brief overview of how you could set up and do change management for development using TFS. The approach is a bit different than I've seen in the past.
