Shane MacLaughlin
|
Registered User
|
Husband and father of two, into walking, music, martial arts and of course beer. Oh yeah, and avid computer enthusiast for 30 years, 25 years professionally as a developer, 20 as the owner of a small software house.
|
|
Dec 18 |
asked | Any good C or C++ libraries out there for dealing with large point clouds? |
|
Dec 17 |
comment |
Is there an easy way to push variables onto the stack for later retrieval Knew there had to be something blindingly obvious that I'd missed. Extra object for recursive branch it is. Thanks for that. |
|
Dec 17 |
asked | Is there an easy way to push variables onto the stack for later retrieval |
|
Dec 7 |
awarded | ● Good Answer |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 5 |
answered | When you decide to stop writing code, what will be your next move? |
|
Nov 25 |
answered | Using a “take-home” coding component in interview process |
|
Nov 20 |
awarded | ● Nice Answer |
|
Nov 11 |
awarded | ● Good Answer |
|
Nov 6 |
accepted | How to know when a controls is going to be hidden |
|
Oct 30 |
awarded | ● Popular Question |
|
Oct 25 |
comment |
How do i know if a thread is suspended under Windows CE +1, after much tedious debugging, I ended up removing all Suspend/Resume calls, and reducing all the sync objects to a single mutex associated with a communications stack use between the two threads in question. |
|
Oct 14 |
awarded | ● Nice Answer |
|
Oct 13 |
answered | how to read NMEA sentences in windows Vista using c++ |
|
Oct 13 |
comment |
When should I use __forceinline instead of inline? +1, clever thinking and an idea I'll borrow. |
|
Oct 10 |
answered | how to create minidump for my process when it crashes |
|
Oct 10 |
answered | What does 128-bit OS mean to a software developer?? |
|
Oct 1 |
accepted | Best Practice for Cross-Platform Browser Testing for Intranet site for small team? |
|
Sep 30 |
awarded | ● Good Answer |
|
Sep 27 |
awarded | ● Yearling |
|
Sep 8 |
accepted | Formats for Saving Vector-based 3D Graphics |
|
Sep 4 |
revised |
How do I find a source code position from an address given by a crash in Window CE added 966 characters in body; added 211 characters in body |
|
Sep 4 |
asked | How do I find a source code position from an address given by a crash in Window CE |
|
Sep 2 |
accepted | How to load string of array in to combobox faster in MFC? |
|
Aug 25 |
awarded | ● Enlightened |
|
Aug 12 |
comment |
How to partition a plane With a grid, you might get empty cells, or all points in one cell. With a radial array you can overcome this with a solution that is quick and easy to implement. |
|
Aug 12 |
revised |
How to partition a plane added 197 characters in body |
|
Aug 12 |
answered | How to partition a plane |
|
Aug 10 |
asked | Using CreateCompatibleDC with mapping modes other than MM_TEXT |
|
Aug 7 |
comment |
Migrating from Stingray Objective Toolkit Out of interest, what were the reasons for moving from Stingray to bcgsoft. I had a scan of the bcgsoft website, and it looks like a nice enough set of tools, but I can't see what huge extra value they add to Stingray that would warrant the expense of migration. n.b. I use Crystal for reporting, so the report tools are no significant in my case. |
|
Aug 7 |
revised |
Migrating from Stingray Objective Toolkit added content |
|
Aug 7 |
comment |
Do programmers peak? This is a marvellous observation which i suspect is true for many, and not just in programming. |
|
Aug 7 |
comment |
How to show available windows in the Window menu This is pretty much what I did, which isolated the problem as happening only in Stingray based projects. I have since been on to their tech support and got a fix. Thanks for the feedback. |
|
Aug 6 |
asked | How to show available windows in the Window menu |
|
Aug 5 |
comment |
What does refactoring mean to you? It's a good point, but I like to try to find a way that the refactoring will return real value other than just improving the code quality, particularly if the app has already been tested. Too easy to fix something that isn't broken, and maybe even break it in the process, while spending money at the same time. |
|
Aug 5 |
answered | What does refactoring mean to you? |
|
Jul 31 |
asked | Any OSTN02 libraries for Windows CE |
|
Jul 27 |
comment |
Can StandardSDK 4.0 under EVC++ be used to debug on a remote device? My experience is that the SDK required is dependant on the OS deployed on the device. On the device I am targetting, if I go into System Properties, it Windows CE version 5.0 Using CE SDK 5 or 4.2 works ok on the device. Using the SDKs for PocketPC derived CE versions do not work, the MFC UI objects such as CCeCommandBar don't work properly. |
|
Jul 20 |
revised |
Can I target CE 4.2 or CE 5.0 using C++ on VS2008 deleted 8 characters in body; edited title |
|
Jul 20 |
comment |
Can I target CE 4.2 or CE 5.0 using C++ on VS2008 My mistake, yes CE 4.2 or CE 5.0. |
|
Jul 20 |
asked | Can I target CE 4.2 or CE 5.0 using C++ on VS2008 |
|
Jul 17 |
asked | Can StandardSDK 4.0 under EVC++ be used to debug on a remote device? |
|
Jul 16 |
comment |
Is excessive use of this in C++ a code smell @Newtopian this->x = x is an explicit pointer dereference which is more code than _x =x, even if the latter includes a similar dereference implicitly and ends up in the same result once compiled. For example, say I accidentally typed thos->x instead of this->x where thos was a NULL pointer of type MyClass. Unlikely sure, but still scope for more bugs. |
|
Jul 15 |
asked | Are there any generic C++ APIs or SDKS for cameras that work on CE and Win32 |
|
Jun 29 |
comment |
When should you start optimising code? @Phil - As i sit in front of Visual Studio 2008, which is bigger and slower than VS 2005, which was bigger and slower than VS 2003, which was way bigger and slower than VS6, I find myself increasingly frustrated that so many modern programmers consider performance requirements as secondary to functional requirements. Bigger, fatter, slower seems to be the order of the day for so many mainstream applications. I blame this on failing to optimise to meet performance requirements at design stage. Why wait until you've got the code, Knuth certainly didn't. |
|
Jun 29 |
comment |
When should you start optimising code? The implication with this post is that all optimisation relates to speed. You could equally well be optimising memory or storage usage, bandwidth, or even ay a pinch UI efficiency. Optimisation is simply meeting performance requirements as opposed to purely functional requirements. Given you suggest meeting performance requirements falls under 'Make it Right', why would you ever want to 'Make it Fast'. I assume if it is made right it would also work, so maybe your answer should just read 'Make it work' :) |
|
Jun 29 |
comment |
When should you start optimising code? @Beska, thanks for the feedback. The issue that I have with "optimise only when you know there's a problem" suggests to me you have already carried out a lot of coding that you may have to dump because it doesn't meet performance requirements. It's a bit like trying to get somewhere, driving down a road that seems to lead in the right direction, and only taking the map out when you're lost, then going cross country to try and get back on track. If performance is a requirement, it must be designed for much like a functional requirement. |
|
Jun 29 |
comment |
When should you start optimising code? If you look at your first three points in order, carrying out each in turn means you are less likely to have to expend as much resource on the next. The implication of this is that you are advocating early optimisation, prior to coding, which would also be my stance on the issue. The 'dont optimise before measuring' is a bit crafty, as many will assume the model you are measuring against is executing code and the measuring tool is a profiler, whereas the the model could be an abstract alogorithm design or network capacity and usage design and the tool pen and paper. I'm only saying'... ;) |
|
Jun 29 |
revised |
When should you start optimising code? added 2 characters in body |
|
Jun 29 |
answered | What next to reinvigorate a love of programming? |
