I noticed this as soon as I started using my Realforce at work. If you're like me and you work on a very large software system, you probably often have to set a lot of breakpoints in a lot of different areas of the code, then step over a lot of them in order to get to a places where you want to step into the code. Because of the capacitive switch, if you hold down F5 (in Visual Studio) it FLIES over those breakpoints - probably at least twice as fast as a rubber dome board. This is because of the capacitive switch triggering the keypress before you bottom out. This has actually made me more productive! More proof that Topre switches kick ass!
Real programmers use logging. Needs far less breakpoints and can be extracted from running code.
Unless it's code made by your ignorant co-workers who don't know how to code well.
Show Image(http://geekhack.org/attachment.php?attachmentid=13112&stc=1&d=1287754991)
Edit: If only I could get a 103UB 55g in my preferred layout, I'd have even less money...keyboardlover, do you know if that's even possible?
In that case, I know of no way other than somehow modding it yourself...
We already log at runtime...how many breakpoints you have depends on how large the software is more than anything else. Unless you're talking about something else? Like logging at compile time (no clue why you'd want to do that).Logging is the poor man's debugger. Consider that every time you need a breakpoint to figure out what your code is doing, some poor schmuck might cuss later on when he's sitting at a customer's office and trying to find out what goes wrong.
Edit: since logging occurs at runtime, it's more useful in the maintenance phase than when you're doing new development, so I still don't understand your point =)