Roger Lipscombe

10,204
Reputation
532 views

Registered User

Name Roger Lipscombe
Member for 1 year
Seen 14 mins ago
Website
Location 53CspR7
Age 34

I've been programming since I can remember (my dad bought a Sinclair ZX81 shortly after it came out). I'm currently working (and playing) in C++, C# and T-SQL, using Visual Studio 2005/2008 and SQL Server 2005.

Along the way, I've done a bit of QuickBasic and QuickC for DOS, a lot of C and C++ for Windows (from real mode Windows 3.0 to Windows ME, and from Windows NT 3.51 to Windows Vista and Windows Server 2008), a reasonable slice of C/C++ programming on Linux, learnt (and mostly forgotten) a reasonable selection of assembly language dialects, and more recently dabbled with PHP, Python and Ruby.

4h
awarded  Nice Answer
5h
comment Why do win32 API functions don’t have overloads and instead use Ex as suffix?
@jalf: True, but since __stdcall is part of the Win32 API, you could use it for limited overloading. It would be a really bad idea. I've expanded my original aside to clarify that.
5h
revised Why do win32 API functions don’t have overloads and instead use Ex as suffix?
Expand my random aside
6h
answered Why do win32 API functions don’t have overloads and instead use Ex as suffix?
7h
comment How do I resolve a canonical filename in Windows?
+1... also the file index is only unique w.r.t. the volume, so you need the volume serial number as well, assuming that it's available remotely.
18h
answered How do I resolve a canonical filename in Windows?
22h
revised WPF “flying” combobox
escape angle brackets
2d
revised OO Javascript: good way to combine prototypal inheritance with private vars.
fix tags
Nov
26
comment Is it possible to write code to write code?
That doesn't necessarily mean that it's a good, idea, though :-)
Nov
25
answered Automating Clickonce deployment with security ( certificates etc. ) such that client installs the application without any prompt.
Nov
24
comment How do I safely stop a C# .NET thread running in a Windows service?
You don't need an event to tell you when the thread stops; just call Thread.Join.
Nov
21
accepted Visual studio postbuild - changing to the solution drive
Nov
21
answered Visual studio postbuild - changing to the solution drive
Nov
21
comment Password hashing at client browser
Granted that it would make the hash unique to the site -- useful if the user uses the same password on multiple sites; doesn't prevent replay against the same site. And, surely if the hash is salted, then either the salt has to go from the client to the server -- no more secure than before; or the other way, in which case it is challenge/response.
Nov
21
comment Is a gaming machine better for software development?
RAID 0 is fine for a development workstation, provided that your source code repository is on something more reliable (e.g. RAID5 on a separate server, with regular backups).
Nov
21
answered wake up a service, communication with services.
Nov
21
answered open file dialog not working in vista and 2008 environment
Nov
21
comment Password hashing at client browser
I hope you're planning to either send the hash over a secure channel, or this is part of a challenge/response mechanism. Otherwise, this is no more secure than sending the password itself in plain text...
Nov
19
answered How do I safely stop a C# .NET thread running in a Windows service?
Nov
17
comment Get handle of a window that has no title.. (C#)
You're assuming that the OP wants to include the child windows (probably not). OTOH (as you imply) not every top-level window is the MainWindow of a process...
Nov
17
revised Increasing timeout for LINQ to SQL stored procedure call
more details
Nov
17
asked Increasing timeout for LINQ to SQL stored procedure call
Nov
17
answered Why use CComBSTR instead of just passing a WCHAR*?
Nov
16
comment Dealing with large data sets in WCF?
The client also makes changes to the data. It could be two-way replication, except that -- because I can assume that it's always connected -- it seemed easier to do some kind of write-through caching. We're kinda already committed to WCF, as well.
Nov
16
revised Dealing with large data sets in WCF?
it's read/write
Nov
16
accepted Using LINQ to find a common prefix?
Nov
16
comment Programmatically getting per-process network statistics on Windows?
I'll take your word that you looked at this problem and decided that "write a custom TDI filter driver" was the best solution. I assumed that if you have some code you could have published, you would have done, and I'm not one of those people that says "show m3 the c0deZ!". Pointing me in the right direction is plenty, thanks.
Nov
16
asked Dealing with large data sets in WCF?
Nov
16
asked Enumerating open tabs in Internet Explorer?
Nov
13
comment Visual Studio detaches from application as soon as debugging starts
Doing my bit for least privilege: VS can debug fine on Vista w/o admin privileges -- as long as the process to be debugged is running under the same account.
Nov
13
accepted Use of Attributes… INotifyPropertyChanged
Nov
12
comment Visual Studio: Varying tab width/options by .VCPROJ or .SLN file?
This could be useful, combined with handling project load events and looking in the project for a marker property or file to control the settings. Hmmm...
Nov
12
comment Using LINQ to find a common prefix?
@Matt: Tried that; works except that you need to ensure that 'y' is the longer of the two sequences...
Nov
12
answered Using LINQ to find a common prefix?
Nov
12
asked Using LINQ to find a common prefix?
Nov
10
comment Use a SQL Server 2008 database on a NAS share
To clarify: your SVN working copy is on the NAS share?
Nov
10
revised How does WINVER or WIN32_WINNT affect operating system version as shown by dumpbin
Found the right switch.
Nov
10
answered How does WINVER or WIN32_WINNT affect operating system version as shown by dumpbin
Nov
10
awarded  Notable Question
Nov
9
revised Can AWE use >4GB RAM on SQL Server 2005 dev edition on Windows XP 32-bit
Correct spelling mistake; decided I prefer Windows 7
Nov
9
revised Formatting a number with leading zeros in PHP
It's not rounding; it's formatting
Nov
4
revised How can I suppress javac warnings about deprecated api?
OP actually means suppress or hide (not avoid)
Nov
2
answered Use of Attributes… INotifyPropertyChanged
Nov
2
comment Travelling Visual Studio developers
Visual Studio 2008 is just-about-usable on my Samsung NC10 (with 2GB RAM), but I certainly wouldn't want to use it daily.
Nov
2
accepted How to prevent VS2008 from saving bookmarks?
Oct
30
comment Linq to SQL: Queries don’t look at pending changes
Putting SubmitChanges inside the loop would result in extra round-trips to the database. This is undesirable.
Oct
30
comment Linq to SQL: Queries don’t look at pending changes
Because 'names' might also contain "Alice" and "Chuck". I just left them out for brevity.
Oct
30
comment Linq to SQL: Queries don’t look at pending changes
I can't use names.Distinct, because names (in my real code) is also a Linq-to-SQL query from another database. But I take your point about the fact that L2S can't do this in the general case.
Oct
30
asked Linq to SQL: Queries don’t look at pending changes
Oct
30
comment Linq to SQL case sensitivity causing problems
ToLower and ToUpper do translate to LOWER() and UPPER(), though.