StingyJack
|
Registered User
|
|
|
1d |
awarded | ● Mortarboard |
|
Dec 2 |
comment |
Quote needed: Preprocessor usage is bad OO practice OOHHH I made "magic" =) |
|
Nov 4 |
comment |
Connection Time out Expire Please be more specific. Post the error message and any other specific details. |
|
Nov 3 |
awarded | ● Popular Question |
|
Oct 13 |
comment |
EDITED: Why does object.ToString() exist? @itay... You are basically advocating a TryCast every time you want to output the value of an object. All of that casting is not necessary, because with .TOString() the instance is guaranteed to produce output. |
|
Oct 13 |
comment |
What are five things you hate about your favorite language? What about "On Error Resume Next"... thats like saying "this code is F**KED, but lets keep running it anyway. =) |
|
Oct 13 |
comment |
What are five things you hate about your favorite language? @wefwfwefwe - I have, but I just see it abused too much. |
|
Oct 1 |
revised |
Convert and Display IP Address to Binary form? edited title |
|
Sep 30 |
comment |
Fast Lightweight .NET Client Encryption -> Server Decryption Re: Googling for a solution... Yes, but make sure you dont copy a bad one =) (codinghorror.com/blog/archives/…) |
|
Sep 30 |
comment |
Fast Lightweight .NET Client Encryption -> Server Decryption Winforms or Web app? |
|
Sep 30 |
comment |
Windows equivalent of /dev/random So I give a crypto friendly answer, and advice to look into the PL's rand functions to see if there is an equivalent (would you blindly trust one MS has supplied?) and thats bad? |
|
Sep 28 |
comment |
Error logging in C# EL can even send out emails as part of the logging. Very handy when reporting prod errors. |
|
Sep 25 |
comment |
Firefox CSS Against me? ? spamming butthole |
|
Sep 25 |
comment |
Distributed transaction completed. Either enlist this session in a new transaction or the NULL transaction. Did you find anything out about this? I get it when inserting larger datasets (> 10K rows). |
|
Sep 25 |
comment |
Is css-sprite a good technique? You could change the filename (version it?) to defeat that caching problem. |
|
Sep 21 |
comment |
comparing a column to a list of values in t-sql Erland to the rescue! sommarskog.se/arrays-in-sql.html#iterative/…. The functions on his page are very popular for doing what you are looking to do. |
|
Sep 21 |
revised |
Which is the fastest javascript engine, and does it really matter? edited tags; edited title |
|
Sep 21 |
comment |
Which is the fastest javascript engine, and does it really matter? Does it matter to you? |
|
Sep 21 |
comment |
Caching Large Datasets This is good if you have application code that is shared between several platforms (ASP.NET / winforms / class libraries). |
|
Sep 21 |
answered | Caching Large Datasets |
|
Sep 18 |
comment |
How do I check whether File.Delete() will succeed without trying it, in C#? Are you sure that just using a try/catch for the specific exceptions is not the correct way to handle this? It seems like you are trying to re-invent the wheel here. |
|
Sep 18 |
comment |
Biggest performance improvement you’ve had with the smallest change? @tsilb - I see it mostly in application developers who work with SQL after only working in their app code. "Use what you know" |
|
Sep 18 |
comment |
Biggest performance improvement you’ve had with the smallest change? Hang a sign outside your cube/office that says "NO LOITERING". It actually worked for me =) |
|
Sep 18 |
awarded | ● Yearling |
|
Sep 17 |
comment |
What is SQL Azure? glad to know that "pain in the ass" is a technical term. =) |
|
Sep 17 |
revised |
TFS: Merging back into main branch added 136 characters in body |
|
Sep 16 |
answered | TFS: Merging back into main branch |
|
Sep 5 |
accepted | Repeated cookie query or Storing in viewstate? Which is the better practice? |
|
Sep 4 |
comment |
Get a list of dates between two dates using a function What about exec time? % of total batch is used to identify a bottleneck, not throughput. Are you benchmarking the actual function call or everything else with it? Comparing the results of small and large batches? |
|
Sep 4 |
revised |
Get a list of dates between two dates using a function fixed extra space |
|
Sep 4 |
comment |
Get a list of dates between two dates using a function WOW...you found a space between the @ and the variable name. I'm impressed. |
|
Sep 4 |
comment |
ASP .NET Development Server not serving everything all the time They may be in the same locations in the project, but the webservers serve them differently. IIS from a virtual, local dev from root. This causes issues with pathing some times. |
|
Sep 4 |
comment |
Get a list of dates between two dates using a function @KM.. there is certainly a loop in your code. Do me a favor before you bash me... test how long it takes to create the table of numbers using yours and my method for 10000 numbers. You will see the one I borrowed from Moden will beat the looped op by several orders of magnitude. Now after that, test how long each function takes. I am willing to bet that the solution I provided will perform better than the one you got. Next time you want to DV someone, you better make sure that your reasons are well founded. |
|
Sep 4 |
comment |
Get a list of dates between two dates using a function @KM - at risk of starting a flame war here, you should know that SQL is not designed to handle procedural ops, and performs poorly with them. If you need to do something like that, its best handled by application code. |
|
Sep 4 |
comment |
Get a list of dates between two dates using a function because calculating them on the fly can cause poor performance, especially if they are used inline and evaluated for each row accessed by the statement. |
|
Sep 4 |
comment |
Get a list of dates between two dates using a function Looping performance in SQL is going to S U C K. Please keep that in mind when trying out these answers. |
|
Sep 4 |
comment |
Get a list of dates between two dates using a function A single row is still a set. |
|
Sep 4 |
comment |
Get a list of dates between two dates using a function Where there's a "WHILE" there's a loop! |
|
Sep 4 |
comment |
ASP .NET Development Server not serving everything all the time You mean IIS for debugging? Of course the local dev server is weak. |
|
Sep 4 |
answered | ASP .NET Development Server not serving everything all the time |
|
Sep 4 |
answered | Get a list of dates between two dates using a function |
|
Sep 4 |
comment |
Get a list of dates between two dates using a function -1 for using loops |
|
Sep 4 |
answered | Wait for all worker threads to end |
|
Sep 1 |
answered | Are globals still bad? |
|
Sep 1 |
answered | Why do I get a thrown exception when I run Response.Redirect()? |
|
Aug 31 |
accepted | ASP.net permissions to root certificate store |
|
Aug 31 |
revised |
ASP.net permissions to root certificate store deleted 28 characters in body |
|
Aug 28 |
revised |
Creating your own component in vb.net 2008 resp comments |
|
Aug 27 |
answered | Creating your own component in vb.net 2008 |
|
Aug 24 |
revised |
Confused about Base class libary and Framework Class Library resp; added 4 characters in body |
