Godeke
|
Registered User
|
I am currently the CIO of a small insurance company. I still love to keep my hands dirty with the technical side of things, both as my passion and to keep myself from becoming the "pointy hair boss" from Dilbert.
|
|
Nov 26 |
awarded | ● Enlightened |
|
Nov 26 |
awarded | ● Nice Answer |
|
Nov 17 |
awarded | ● Self-Learner |
|
Nov 16 |
comment |
Efficient queue in Haskell. I highly recommend Purely Functional Datastructures mentioned by Apocalisp. There are quite a few "aha" moments in that book. |
|
Nov 16 |
answered | Calculating a product recursively only using addition |
|
Nov 16 |
accepted | Non-exponential formatted float |
|
Nov 14 |
revised |
Non-exponential formatted float deleted 13 characters in body |
|
Nov 14 |
comment |
Non-exponential formatted float True. I whipped it up in LINQPad and didn't make it a function. To be honest I think it would read better as result = (signPos > decimalPos) ? string.Concat(...) : test; |
|
Nov 13 |
revised |
Non-exponential formatted float added 220 characters in body |
|
Nov 13 |
comment |
Non-exponential formatted float Cleaned up the sample to use LastIndexOfAny. I was expecting that to slow it down to be honest. |
|
Nov 13 |
revised |
Non-exponential formatted float Remove early dump. |
|
Nov 13 |
revised |
Non-exponential formatted float deleted 17 characters in body |
|
Nov 13 |
comment |
Non-exponential formatted float Hmmm. I'm not seeing anything close to that much slowdown vs standard concatenation, although it is slower. Nevertheless, edited to concatenation. |
|
Nov 13 |
revised |
Non-exponential formatted float added 204 characters in body; deleted 6 characters in body |
|
Nov 13 |
answered | Non-exponential formatted float |
|
Nov 13 |
accepted | Simple XNA 2d physics library |
|
Nov 13 |
answered | Simple XNA 2d physics library |
|
Nov 12 |
comment |
Why doesn’t CTRL-D send EOF in mono? Hmmm, I never made that distinction... ending input on each operating system was just D (in *nix) or Z (in DOS and Win). This link seems to think CTRL-D is EOF in *nix as well: uwyo.edu/askit/… |
|
Nov 12 |
answered | Why doesn’t CTRL-D send EOF in mono? |
|
Nov 9 |
comment |
Is R language interpreted? Two downvotes for providing links to incomplete compilers (which make the point that it is interpreted pretty clear)? Is "read the FAQ" really the new gold standard round here? |
|
Nov 9 |
accepted | LINQ: Using a pivot table in linq |
|
Nov 7 |
awarded | ● Enlightened |
|
Nov 7 |
awarded | ● Nice Answer |
|
Nov 6 |
comment |
Is it OK for a process to be CPU intensive for a prolonged period of time? What kind of processor are we talking about: is it a modern multicore? If so, are you generating threads to tie down all of the cores? Jurily is correct that CPU-bound processes (unless they are heavily treaded and raising priority) tend to be handled just fine by the operating system. |
|
Nov 6 |
comment |
Is it OK for a process to be CPU intensive for a prolonged period of time? Another agreement: when I see someone claim they are CPU bound and slowing the operating system down, I have to wonder if they haven't already been playing with priority OR something else is the cause. In general I have found that modern machines have far more chances of becoming I/O bound (either through direct file activity or swapping). |
|
Nov 6 |
accepted | ReSharper Warning - Access to Modified Closure |
|
Nov 6 |
revised |
ReSharper Warning - Access to Modified Closure added 40 characters in body; added 799 characters in body; added 117 characters in body |
|
Nov 6 |
answered | ReSharper Warning - Access to Modified Closure |
|
Nov 4 |
answered | Is R language interpreted? |
|
Nov 4 |
answered | Architecture and patterns for developing a custom GUI designer via C# & WinForms. |
|
Nov 4 |
answered | Access denied when loading dependancy .dll .NET |
|
Nov 4 |
revised |
Utility classes.. Good or Bad? deleted 6 characters in body |
|
Nov 4 |
answered | Utility classes.. Good or Bad? |
|
Oct 30 |
comment |
Is there ever a time where using a database 1:1 relationship makes sense? Yes. It depends on the database (modern designs are storing blobs in the filesystem just by using the correct type) and even with such support one has to be careful to exclude the columns (in SQL explicit column lists are normal, but some ORMs want to drag the entire record). The trick is to know your use pattern: if most of the time the actual data is ignored I would use a 1:1 blob table. If most accesses are downloads of the data I would use the native storage mechanism. |
|
Oct 27 |
comment |
CSharp: Not all code paths return a value. The code checker doesn't know that... you are giving it credit for understanding algorithms. It only understands code paths (one of which was left out as pointed out by Karim). |
|
Oct 27 |
comment |
Using SQRT in a Linq EF Query LINQ queries actually operate in the sequence they are constructed. FROM defines the source, which the LET augments with a computed value. The WHERE clause now has the item it needs (via the sub-query constructed from the FROM+let) to filter and finally the SELECT feeds values on as the result. Putting the computation in the SELECT would be "too late" for the WHERE clause to act upon without explicitly using that result as a sub-query). |
|
Oct 24 |
answered | Using SQRT in a Linq EF Query |
|
Oct 24 |
comment |
#region/#endregion vs sub functions? Agree totally. Each method should fit on a printed page where possible and hiding the length in #regions is just bad mojo. |
|
Oct 22 |
comment |
Easier way to prevent numbers from showing in exponent notation To answer the "why" question... the default formatter (which is what ToString() uses) happens to flip to scientific outside a fairly narrow range. That is why you have to use an explicit format to get what you want. (You aren't actually converting from one thing to another, they are simply different output representations of the same thing.) |
|
Oct 21 |
comment |
Easier way to prevent numbers from showing in exponent notation Obviously what you have found is simpler. Double is not as "precise" as Decimal (which is designed for dealing with decimal currency amounts without binary rounding issues). If you only cast on display, I suspect in most cases it will work. However, double does suffer from problems if you do computations where you get 0.9999999 type results instead of 1.0 . If this isn't a problem, the casts would be sufficient. Still, having a "percent" and "currency" dedicated control takes a lot of guesswork and redundancy out of the issue. |
|
Oct 21 |
answered | Easier way to prevent numbers from showing in exponent notation |
|
Oct 16 |
accepted | C# Callback problems |
|
Oct 16 |
answered | C# Callback problems |
|
Oct 15 |
revised |
LINQ: Using a pivot table in linq added 721 characters in body |
|
Oct 15 |
comment |
LINQ: Using a pivot table in linq Where do we learn the correct IdTarrif? If it is in v (the base table) then the subquery's missing piece is simply t.IdTariff = v.IdTariff. In your original query it would be best obtained by join's of the same nature. If you can provide that information I can whip up an example. |
|
Oct 15 |
revised |
LINQ: Using a pivot table in linq added 12 characters in body |
|
Oct 15 |
answered | LINQ: Using a pivot table in linq |
|
Oct 15 |
comment |
return column values as IEnumerable I think Skeet is on the right track. Yes, calling ToList() requires more knowledge, but if you are doing any LINQ coding the lazy nature of LINQ has probably already bit you a few times and you know to add the ToList() prior to disposing of the connection (and it is true you want to get rid of that as soon as possible, so you normally will call ToList() as soon as you are done with the LINQ operations. Our coding standards require all data access to be in a USING for the connection and they learn pretty quickly when to make the list. |
|
Oct 15 |
revised |
Display lookup value based on foreign-key in bindingsource added 160 characters in body; added 134 characters in body |
|
Oct 15 |
comment |
C# / Windows Forms - Display a PowerPoint slide-show without Office installed? I use Aspose and will confirm that you can create images from it. We upload the images to a web server in plain HTML wrappers with next/prev links. Obviously this won't work with animated/interactive slides though, in which case I would suggest the viewer Rubens Farias links to (which I have also used). |
