ConcernedOfTunbridgeWells
|
Registered User
|
Data warehouse contractor in London. Mostly I work with SQL Server on Insurance clients.
|
|
6h |
comment |
Why use Ruby instead of Smalltalk? Technically it's called 'Seaside' (www.seaside.st) and runs fairly quickly on the Gemstone VM which has a JIT compiler. There'a also a port of Ruby to the Gemstone VM, called Maglev. |
|
21h |
comment |
What is the difference between multicore programming in Erlang and other language? Erlang also comes with (fairly transparent) parallelism built into the runtime engine in a way that Haskell or Scheme implementations typically don't. |
|
1d |
comment |
Your thoughts on “Large Scale C++ Software Design” C++ is no longer flavour of the month so you can probably get a secondhand copy quite cheaply. Amazon Marketplace is your friend ;^) |
|
1d |
comment |
Your thoughts on “Large Scale C++ Software Design” CAD software often runs into millions of lines. While a large deskdop application like Excel is just as complex (if not more so) I don't think it's fair to belittle the scale of the code bases. His introduction mentions software with thousands of staff-years worth of development effort. The biggest system I ever worked on went into hundreds and was (at the time) the largest J2EE application that had been built in Australasia. Lakos was working on systems an order of magnitude bigger than that. |
|
1d |
revised |
Your thoughts on “Large Scale C++ Software Design” deleted 6 characters in body |
|
1d |
answered | Your thoughts on “Large Scale C++ Software Design” |
|
1d |
awarded | ● Mortarboard |
|
2d |
comment |
When good programmers go bad! There are professionals who do this sort of thing - industrial psychologists and various species of mental health types like psychiatrists that do burnout counselling. |
|
Nov 30 |
accepted | Is there a quick way to report database metadata in SQL Server 2005? |
|
Nov 21 |
awarded | ● Nice Answer |
|
Nov 20 |
revised |
Dealbreakers for new programming jobs? added 522 characters in body |
|
Nov 5 |
comment |
MySQL - best storage engine for constantly changing data Status is probably quite low cardinality which means that query optimiser may still not use that index. Take a look at the query plans and see if the index is actually being used. |
|
Nov 5 |
comment |
MySQL - best storage engine for constantly changing data See if putting an index on (Status, ID) helps (if such an index is not already present) |
|
Nov 5 |
revised |
MySQL - best storage engine for constantly changing data added 130 characters in body |
|
Nov 5 |
comment |
MySQL - best storage engine for constantly changing data At the very least, the DB logs should be on a physically separate disk (see above), so you should add another mirrored pair to the server for the logs. You might also check your query plans to see if the database is doing something silly or needs an index added. |
|
Nov 5 |
revised |
MySQL - best storage engine for constantly changing data added 290 characters in body; added 292 characters in body |
|
Nov 5 |
answered | MySQL - best storage engine for constantly changing data |
|
Nov 5 |
revised |
Optimal OFF THE SHELF development machine added 351 characters in body |
|
Nov 2 |
awarded | ● Enlightened |
|
Oct 30 |
comment |
How to code Jon Skeet’s Singleton in C++? Perhaps I missed something, the OP gave the impression he was after a generic behaviour. I remember trying to make an inheritable singleton in an early JDK and finding out that Java could not do it; IIRC trad C++ won't either, although you could probably do it with templates. Now I look at the article again it's not specifically mentioned, so maybe he's just looking at how to implement a Singeton. The GOF book might have an example in C++. |
|
Oct 30 |
answered | How to code Jon Skeet’s Singleton in C++? |
|
Oct 30 |
accepted | Execute stored procedure in a view? |
|
Oct 27 |
comment |
Dealbreakers for new programming jobs? Don't knock MUMPS - the syntax might not be anything special but the architecture did spawn an awful lot of imitators. Many, many 4GLs of the 1970s and even later owe a lot of their fundamental architecture to MUMPS. Highly influential and very much unsung. |
|
Oct 27 |
awarded | ● Popular Question |
|
Oct 23 |
accepted | Buisness Rule and Process Management? |
|
Oct 21 |
comment |
Database Development Mistakes Made by AppDevelopers +1 - Database programming involves optimising the behaviour of mechanical components. Note, however, that Knuth says premature optimisation is the root of all evil about 97% of the time (or words to that effect). Database design is one area where you really do have to think about this up front. |
|
Oct 20 |
comment |
Database Development Mistakes Made by AppDevelopers From time to time I do too, although these days I tend to be drifting further into the dark abyss of consultancy (Your anger will make you strong ...). However, all too often I see operational systems designed with no thought to actually doing MIS off them. |
|
Oct 19 |
revised |
Datamining models in FORTRAN or C (or managed code)? added 26 characters in body; added 219 characters in body; added 69 characters in body |
|
Oct 19 |
revised |
Datamining models in FORTRAN or C (or managed code)? added 204 characters in body; added 158 characters in body |
|
Oct 19 |
revised |
Datamining models in FORTRAN or C (or managed code)? added 806 characters in body; added 9 characters in body |
|
Oct 19 |
revised |
Datamining models in FORTRAN or C (or managed code)? added 849 characters in body |
|
Oct 19 |
revised |
Datamining models in FORTRAN or C (or managed code)? added 685 characters in body |
|
Oct 19 |
answered | Datamining models in FORTRAN or C (or managed code)? |
|
Oct 16 |
answered | Lossless PDF rotation |
|
Oct 15 |
comment |
Nice book on SQL Server Analysis Services? I guess he probably knows, but mosha.com could be redirected to any hosting provider. |
|
Oct 12 |
comment |
How to approach an ETL mission ? Why thank you ;-) I'm not entirely sure it's appropriate to upvote you just for endorsing my answer but I agree that the points made are indeed good advice - if I say so myself ... |
|
Oct 12 |
comment |
I need a good programming discussion board.. (Systems Design) : Edited Not quite true. SO is intended to be strictly a Q&A; discussion forum functionality is avoided - by design - to keep signal-noise ratio up. |
|
Oct 12 |
comment |
Should developers have administrator permissions on their PC Less common than one might think. In most cases the underlying issue is sensitive data - for example, Swiss banking confidentiality laws tend to preclude developers from seeing actual customer data (accounts reconciliation is left as an exercise for the reader). In this case the problem is not locking down the machines but providing sanitized data sets for development work. Most other situations are either regulatory requirements (e.g. working with classified data) or self-serving CYA. |
|
Oct 8 |
comment |
How to get similar ones like these ٩(•̮̮̃•̃)۶ This is more appropriate to superuser.com |
|
Oct 6 |
answered | Migrating BO Reports between environments |
|
Oct 6 |
comment |
Is it possible to programmatically construct a Python stack frame and start execution at an arbitrary point in the code? Sadly the OP has shelved the problem for the moment as the original project never went ahead :^p |
|
Oct 5 |
accepted | Need Binary Tree Control in VB6 |
|
Oct 1 |
revised |
Why use Ruby instead of Smalltalk? Minor grammar fixes |
|
Oct 1 |
accepted | Is it OK to nest database views? |
|
Oct 1 |
accepted | sql query distinct on multiple columns |
|
Oct 1 |
answered | sql query distinct on multiple columns |
|
Sep 30 |
accepted | Page margins change in pdflatex |
|
Sep 30 |
answered | Page margins change in pdflatex |
|
Sep 29 |
comment |
Is it OK to nest database views? 'in' is semantically equivalent to a series of 'or' operators. 'Or' predicates are not sarg-able (a SQL Server term meaning that a predicate can be resolved using an index), although modern optimisers are getting better at translating them into something that can be resolved in this way. |
|
Sep 29 |
answered | Is it OK to nest database views? |
