Thom

185
reputation
136 views

Registered User

name Thom
member for 1 year
seen Dec 10 at 14:33
website
location
age
17h
awarded  Necromancer
Nov
24
comment Is it safe to store user object in a cookie?
@R.Bemrose: and that comes at the cost of hitting your session store each request - I suspect in PHP's default setup that means reading and writing a file, so you've got additional disk IO to worry about. All I'm saying is storing stuff in a cookie is a valid thing to do if it floats your boat, and any decisions you make about performance should be based on things you've measured and not assumptions you've made. :)
Nov
24
comment Forcing WinForms AutoResize to happen
PerformLayout() does the trick! Thank you. :)
Nov
23
comment Is it safe to store user object in a cookie?
Or, it could have a positive effect on page loading times, as it allows you to eliminate a database round-trip. You'll only know by measuring. :)
Nov
23
answered Is it safe to store user object in a cookie?
Nov
23
comment Capturing VPN usage statistics
This turns out not to be widely supported. We ended up using a third-party RAS library.
Nov
23
asked Forcing WinForms AutoResize to happen
Nov
4
comment How to disable Javascript when using Selenium?
I wrote that article - unfortunately, that method only works inside the Selenium IDE extension in Firefox. Trying to disable JavaScript from the Selenium JavaScript runner (which I assume your NUnit tests use under the hood) would result in a security exception, so I'm afraid this method isn't of use to you. mfn's suggestions below are what I'd generally consider these days.
Oct
9
comment Exposing a function from Java to Rhino
Superb, that looks perfect. Thanks!
Oct
9
comment JQuery scrolling issue when submiting a form
Just to be clear - is the desired behaviour that the form scrolls back to the top of the page when submitted?
Oct
9
comment Exposing a function from Java to Rhino
Sorry if I wasn't clear. While I can expose an object, which allows me to call foo.bar(), I'd ideally like to just call bar(). So, by 'top-level function' I mean a function that's a property of the Rhino Scope that's currently executing, if that makes more sense.
Oct
9
answered Controlling other windows from C# app
Oct
9
asked Exposing a function from Java to Rhino
Oct
8
comment Why do I need an IoC container as opposed to straightforward DI code?
Jamie - the real work is generally done by something like DynamicProxy that lets you easily intercept calls to (virtual or interface) members on your objects. This has little to do with IoC - in fact, in the example above, we're talking about an entity anyway, so you'd never be resolving that from your container. You'd have to muck about with your ORM, which is entirely separate. I don't want to sound anti-IoC - I'm using Castle and a ton of custom facilities in my current project, but the above example is a poor one (which doesn't work as written, or as described).
Oct
7
comment Why do I need an IoC container as opposed to straightforward DI code?
Oops, you forgot to make all the properties virtual, and it didn't work. Is the time you needed to spend debugging this stealing from your client too? (Apologies if you're not using DynamicProxy. :P)
Oct
3
awarded  Yearling
Sep
18
answered How to check if C# class has security attribute used
Sep
17
comment How to check if C# class has security attribute used
Interesting that GetCustomAttributes throws a TypeLoadException though. Presumably you're not expected to have any extra data on a CAS attribute that you might want to access?
Aug
29
comment UIAutomation with ToolStripStatusLabel
Ah, interesting. I'll try this next week! Any idea why it might be being exposed as an edit control? This is fine for me, but it seems like it would be misleading to a screen reader.
Aug
10
awarded  Popular Question
Jul
30
awarded  Commentator
Jul
30
comment Autorun a CD from Process.Start
Just results in Notepad opening with the contents of the file, for me.
Jul
28
asked Autorun a CD from Process.Start
Jul
21
comment Win32_PerfFormattedData_RemoteAccess_RasPort WMI class on Windows XP
So how do I query it with the classes available in the System.Management namespace in .NET?
Jun
26
accepted UIAutomation with ToolStripStatusLabel
Jun
26
answered UIAutomation with ToolStripStatusLabel
Jun
24
awarded  Tumbleweed