Peter M

850
Reputation
202 views

Registered User

Name Peter M
Member for 1 year
Seen 2 days ago
Website
Location
Age
Nov
16
answered Would it be so tragic not to Obfuscate my product?
Nov
15
comment Accents on numbers in HTML (like a ^ over 1)
Doesn't work with Firefox 3.5.5 on my Leopard either
Nov
15
comment Accents on numbers in HTML (like a ^ over 1)
On Safari 4.0.3 on OS X leopard I see a square box next to the "1" and the smiley face. I guess that it doesn't work for my setup for some reason.
Nov
15
accepted C# Correct way to design/implement this UI?
Nov
4
comment What Is The Use Of Brainfuck
Pet rant here .. why bother trying to protect people from seeing "fuck" by saying "brainf*ck" in the title, but then tag it as "brainfuck"??? And as if people can't put 1+1=2 and figure out what the * means in the first place.
Nov
2
comment Proving that replacing hardware will improve developer performance…
@vdh_ant .. then cannibalize another machine for its RAM to prove that inserting it into the first machine will speed up that machine.
Nov
1
answered Using F1 Help (CHM format) With WPF
Oct
30
comment What are good grep tool for Windows?
As per what I found with GNU Grep, it seems that FindStr doesn't like 10Mb text files either.
Oct
30
comment What are good grep tool for Windows?
I just started looking for a replacement for Gnu Grep as the windows version doesn't seem to be able to handle my 10 Mb text files. It just sits there and pretends not to have found anything. If I cut down the file size it starts to work.
Oct
27
comment Is using underscore suffix for members beneficial?
I may be crazy, but it seems that putting he underscore at the end is violating other style guides that state the most important variations in a name should be at the start. To me dividing variables into regions (member vs non-member etc) is about as major as you can get - but then again I favour hierarchal conventions.
Oct
27
comment Is using underscore suffix for members beneficial?
@Luke there is always the case of member setter functions where the incoming parameter can then just be the member name minus the underscore. That kind of style aids in overall comprehension.
Oct
26
answered Why are C, C++, and LISP so prevalent in embedded devices and robots?
Oct
25
awarded  Yearling
Oct
20
accepted Answer modem using voip
Oct
18
comment how to draw 3d sphere?
Those examples are amazing. Although they suggest viewing them in Chrome, the waving flag picture and the iPhone (default renderer) worked pretty well in Safari.
Oct
14
revised What’s the worst security hole you’ve ever seen?
added 145 characters in body
Oct
14
answered What is the cost of an unused sproc
Oct
14
answered What’s the worst security hole you’ve ever seen?
Oct
14
comment Most horrifying line of code you have ever seen?
@Austin .. to add to the pain in general there is some commercial code I work with that uses the .VB extension for VBScript files :-((
Oct
14
comment Most horrifying line of code you have ever seen?
I know what PI is, but I also know that the more times I have to explicitly type in 3.14159264 the more likely it is that I will get a typo and hence a very subtle programming error
Oct
14
comment Most horrifying line of code you have ever seen?
The only thing that I don't like about it is that the initialisation of r and c is not visible. Otherwise it is a perfectly fine piece of code.
Oct
14
comment Most horrifying line of code you have ever seen?
@Austin .. then that makes the language design horrible .. not the line of code itself.
Oct
13
accepted Marketing a Point of Sale Solution
Oct
13
comment From MS .NET to Web development options on OSX
@Andy .. I am basically with PeyloW on this. But I have to ask you why you bought a Mac in the first place if you want to continue your Windows coding experience? OS X sits firmly in the *nix camp and the manner of programming things on it has a different philosophy to the Windows world - and I say this from developing software on both and having one of each system sitting on my desk right now.
Oct
12
comment Most horrifying line of code you have ever seen?
Except that in VBScript (Not VB) that is the only error flow control that you have :-((
Oct
12
accepted Photo Storage Quandry
Oct
12
answered Best way to create an Environment object in C++
Oct
11
answered book for advanced c++ learning
Oct
7
answered Photo Storage Quandry
Oct
6
answered Has C#/.NET builtin conversion routines for length units?
Oct
4
revised Coming from a Visual Studio background, what do you recommend I use to start my VERY FIRST Python project?
added 126 characters in body; added 2 characters in body
Oct
4
comment Coming from a Visual Studio background, what do you recommend I use to start my VERY FIRST Python project?
@Papuccino - well you can blame other people for .Net on Linux and Mac :D
Oct
4
answered Coming from a Visual Studio background, what do you recommend I use to start my VERY FIRST Python project?
Oct
2
comment White noise sources for concentration while programming
Similar to SO question stackoverflow.com/questions/1505514/… Which was closed for some reason
Oct
1
answered How do I query XML stored as text?
Oct
1
comment Marketing a Point of Sale Solution
@Daniel I was amused by my rep when it hit 666 a few days ago! Since then I have had a devil of a time finding a means of adding to my rep!
Oct
1
answered Marketing a Point of Sale Solution
Sep
30
comment WPF/LINQ data layer design question
Does IEnumerable<T> return the data all at once, or does it act like IQueryable<T> and only process the data when it is accessed?
Sep
25
comment Most regrettable design or programming decision you made?
@jacob - I agree with your sentiment that exceptions should be used for things that you can predict (ie exceptional conditions) but from what I have seen (and not being a Java programmer) Java seems to use exceptions for everything under the sun. So not using exceptions in Java code could be considered going against the flow of the language.
Sep
24
comment C# class design without using “Internal” or “Static”?
I am not sure a generic interface would do me, but I am ignoring the problem for now.
Sep
22
comment C# class design without using “Internal” or “Static”?
Thanks for the reply. I had never considered using FxCop in the manner suggested, but my question is more about not having to manually generate a bunch of code than coming after the fact and having FxCop tell me that "you haven't don't this". As to the complexity of the question. The "simple" version and example #1 are identical - they only differ by the use of partial classes to distribute code over separate files. The other two examples use/abuse simple inheritance to achieve the desired outcome - not something that I would consider needs explaining in depth.
Sep
22
comment Protecting Scripting Language Source Code
IMO all you need to do is make breaking into your system (slightly) more expensive than buying a new license from you then thats about as best as you can do on an adhoc basis. After that you have to start investing in all sorts of other technologies that will screw around with things [ie Port your php to C++ ]
Sep
22
comment Protecting Scripting Language Source Code
@Ted Wong - I have had the same problem with my boss for some .Net systems .. so I feel you pain .. lol
Sep
22
comment MSAccess query taking too long to execute.
Given that you have an SQL backend, would it be possible to move the query there and break it up into more manageable chunks (views, SP etc) and leverage what the server can do for you?
Sep
22
comment How to prevent (junior)developers making the wrong decisions/bad code?
@ChrisW .. The simple fact is that people of all levels make mistakes or have oversights, and that past performance does not let you off checking future work. Would you disable unit tests for a developer (of any level) because in the past 12 months you noted that their defect rate dropped to zero? What you are suggesting with code reviews amounts to the same thing. There is an adage that comes from Islam - "Trust in God but tie your camel"
Sep
21
comment Can Microsoft Visual SourceSafe 2005 be used for free?
@Mehrdad - The scary thing is that I work with a commercial product that layers itself over the top of VSS and is tightly bound to it. So I have no choice but to use VSS. And the product I work with is about the only solution in the industry - so I have no choice but to use VSS
Sep
21
comment How to prevent (junior)developers making the wrong decisions/bad code?
@ChrisW - it is a sign of arrogance to assume that you know all and that what you do is perfect.
Sep
21
comment How to prevent (junior)developers making the wrong decisions/bad code?
@ChrisW - While senior people (and I am one) can perform things own their own, they still operate under their own set of assumptions as to what is the correct way of doing things. Part of a code review is to shine the light on those assumptions and see if they are valid.
Sep
21
comment How to prevent (junior)developers making the wrong decisions/bad code?
@ChrisW - In other words you will never stop code doing reviews
Sep
21
revised C# class design without using “Internal” or “Static”?
added 96 characters in body