Wedge

6,363
reputation
360 views

Registered User

name Wedge
member for 1 year
seen 8 hours ago
website
location Redmond, WA
age 33
Dec
7
awarded  Populist
Dec
6
awarded  Mortarboard
Dec
3
answered Intel has just unveiled a new 48 core CPU. What will this move to many cores imply for us programmers?
Nov
30
comment What is the most important thing you weren’t taught in school?
@rascher There's a great book called "Crucial Conversations" which describes techniques of maintaining useful communication in difficult situations: amazon.com/Crucial-Conversations-Tools-Talking-St…
Nov
11
answered I need to learn C.
Nov
11
awarded  Nice Answer
Nov
6
answered Making email addresses safe from bots on a webpage?
Nov
4
accepted Death of the Cell processor
Nov
2
answered Death of the Cell processor
Nov
2
comment Why .NET and Java on server side?
@steven claiming that .Net is a "good attempt" at object orientation is either flamebait, ignorance, or just silliness. But it is not neutral.
Nov
2
answered Variable Scope in C#
Nov
2
answered What is the need for validation of forms in php?
Nov
2
comment Why .NET and Java on server side?
I should point out that I mean entirely in-browser, client-side javascript applications, server side javascript has been around for a while (though isn't very popular currently).
Nov
2
comment Why .NET and Java on server side?
That's not true actually, using a database with a REST API you could implement an application entirely in javascript (which has been done). The only problem with this is that you can't make an application secure (at least not yet) when you write it in such a way.
Nov
2
comment Why .NET and Java on server side?
Java may be a more robust cross-platforms language than .Net but this list does not provide sufficient support for that viewpoint. This is a very amateurish post that seems to do little other than dress up opinions and prejudice as facts. That's not the way to have a technical discussion, in my opinion.
Nov
2
comment how to prevent your javascripts being stolen,copied, and viewed ?
Time spent worrying about people stealing your invaluable ingenious javascript code would be better spent actually delivering worthwhile features to your users.
Nov
2
comment how to prevent your javascripts being stolen,copied, and viewed ?
@Jesper such listeners already exist and are easy to use. Set up a caching web proxy (such as squid) or an http traffic sniffer like fiddler and you're good to go.
Nov
2
comment What is a Value Class and what is a reference Class in C#?
Reference types are passed by value, but the reference is passed. This is a subtle but important distinction.
Nov
1
revised what is difference between Superscaling and pipelining ?
deleted 17 characters in body
Nov
1
revised what is difference between Superscaling and pipelining ?
Rewrite to concentrate more on a more accessible analogy; added 62 characters in body; added 1 characters in body; added 3 characters in body
Nov
1
revised what is difference between Superscaling and pipelining ?
added 632 characters in body
Nov
1
comment what is difference between Superscaling and pipelining ?
@Ankit vector processing is lock-step and explicit, one instruction with multiple data. Add these 5 numbers to those 5 numbers, etc. To take advantage of different degrees of parallelism (e.g. 12 simultaneous additions) you'd need to recompile and/or redesign your code. A superscalar processor determines on its own how to run code in parallel, so it can run unmodified scalar code or code written for other superscalar processors with different degrees of parallelism.
Nov
1
answered what is difference between Superscaling and pipelining ?
Nov
1
comment what is difference between Superscaling and pipelining ?
I'd vote this up but the description of superscalar CPUs is incorrect. You're describing a vector processor, superscalar processors are subtly different.
Nov
1
accepted Google Chrome rendering XML as text for RSS feed
Nov
1
answered Google Chrome rendering XML as text for RSS feed
Nov
1
comment Generating unique tracking numbers
If you want to have some degree of date information embedded in the tracking number you could prefix your random hash with the first several digits of unix-time in decimal form. The first 6 digits will uniquely identify time down to about a 3 hour period. This would have the added effect of making your tracking codes semi-sequential (which would provide useful properties in sorting records, for example).
Oct
25
revised How can I sort a linked list in C ?
edited tags
Oct
12
awarded  Guru
Oct
7
comment How to restrict to add an item to List<T> ?
@Matthew, thanks for pointing that out. Actually, this reminded me that AsEnumerable() is just a cast of the reference to the List, client code could simply cast back to List<Person> and mutate the "private" List at will. I've updated the example code appropriately.
Oct
7
revised How to restrict to add an item to List<T> ?
deleted 2 characters in body; deleted 11 characters in body
Oct
7
revised What happens if I lock an object while another thread use that variable?
added 180 characters in body
Oct
7
comment What happens if I lock an object while another thread use that variable?
@Marc, yes, that's true, under the hood lock() uses a Monitor, which uses a (little-m) mutex, but this shouldn't be confused with the (big-m) Mutex class which is usually used for cross-process synchronization.
Oct
7
revised How to restrict to add an item to List<T> ?
added 11 characters in body
Oct
7
answered How to restrict to add an item to List<T> ?
Oct
7
revised Frequency extraction
edited tags
Oct
7
answered What happens if I lock an object while another thread use that variable?
Oct
7
answered Better way to design this loop?
Oct
7
comment C# Antipatterns
We can make this better: if (something == true) { somethingelse = true; } else { somethingelse = false; } return somethingelse;
Oct
7
comment C# Antipatterns
Binary compatibility and data-binding are reasons you might need to use public properties, but those don't apply here. There are several advantages to properties. You can put a debug breakpoint on access. You can easily change their read/write access level. And they can often be useful in refactoring, migrate null checks paired with default values into the property itself, for example. Given the tiny difference in effort needed to create auto-implemented properties, I'd say it's a wash whether properties or fields are the better default.
Oct
7
comment C# Antipatterns
I don't see a problem with this, and I think it can often be a worthwhile design choice. Though, of course, it can be abused.
Oct
7
comment C# Antipatterns
There are sometimes valid reasons for this pattern, but it usually indicates a design flaw.
Oct
7
comment C# Antipatterns
For the record, the correct usage is: DateTime date = DateTime.Now;
Oct
5
comment I’ve learnt jQuery, should I go back and learn “proper js”?
I couldn't disagree more. If you are modifying the DOM you really should be using a framework like jQuery or prototype. You gain a great deal in terms of cross-browser compatibility that would take ages to work out/test on your own.
Sep
25
comment Why won’t this XML deserialize properly?
It's not that long, you should paste the code example inline in your question.
Sep
25
comment How do I automatically clean up code in C++?
Code formatting is a necessary skill in the software industry. If the students aren't able to format their code correctly, they don't deserve even a passing grade.
Sep
25
comment Cleaning up C# code
Yes, it'c called a compiler. It's built into your C# IDE.
Sep
25
answered Is it acceptable to only use the ‘else’ portion of an ‘if-else’ statement?
Aug
29
comment reading an application’s manifest file?
This is somewhat incorrect (the help is misleading). Typically .exes have an embedded manifest in resource #1, while .dlls have the manifest in resource #2. In any event, if you don't find a manifest resource in #1, check #2 rather than assuming it doesn't exist.
Aug
26
awarded  Enlightened