Marcus Griep

960
Reputation
81 views

Registered User

Name Marcus Griep
Member for 1 year
Seen 2 hours ago
Website
Location Lexington, MA
Age 24
Developer and contributor to several projects, including Boo programming language, C5, Git, Mono, and Tor.
Nov
6
answered Custom Collection extends List<T> Add method
Nov
5
awarded  Organizer
Nov
5
revised Mapping an sFTP connection to a Windows drive ?
edited tags
Nov
5
answered Does a sorted queue exist in .NET?
Nov
5
answered AddRange to a Collection
Nov
5
answered Is there a List<T> in .NET 2 that raises events when the list changes?
Nov
5
answered Calculating frequency distribution of a collection with .Net/C#
Nov
5
comment browse anonymously or used to bypassed firewall
If you are using any website as the basis for your anonymous browsing, you are already risking your anonymity as you have just created a single entry/exit point, which uniquely defines you. The answer below for the Tor network is one of the best tools for anonymous browsing.
Nov
5
comment Exposing collection through interface
An example that could be thought of here is the ability to swap in another collections library that implements IList, such as C5.
Nov
5
answered How can I fire event before item is added to collection in C#?
Nov
5
answered .NET collection that throws an exception when a duplicate is added
Oct
17
awarded  Yearling
Aug
24
accepted someDictionary.ContainsKey(someDictionary.Keys.First)… is False???
Jul
19
comment are there non-CLI implementations (esp, JVM) of the Boo programming language?
Yep. Boojay was started by the creator of Boo. It was started after a challenge was made to allow Boo to multi-target.
Jul
14
answered Calculate Energy Used on Server
Jul
14
answered Why does MySQL not use an index when executing this query?
Jul
14
comment How can I create a temp file with a specific extension with .net ?
GetTempFileName guarantees that the path it returns will be unique. Not that the path it returns + ".csv" will be unique. Changing the extension in this way could fail as David said.
Jul
14
comment C# arrays , Getting a sub-array from an existing array.
This is nice. And it especially good to point out that ICloneable is unreliable, because oh, is it ever.
Jul
14
comment bash/cygwin/$PATH: Do I really have to reboot to alter $PATH?
The above, noting that ". .bashrc" is a bash shorthand for "source .bashrc"
Jul
12
accepted Defining operators in Boo
Jul
12
comment C++ using NOT (~) on char for encryption…
No, what you're using it as is part of the cipher, not as a random number generator (the key is used as the basis for the "generator"; this can be reduced to being, in effect, a simple seed). In cryptography, a random number generator has special conditions and significance to be cryptographically secure. Your friend may have written a pseudo-random number generator, but again, there are very proven methods for generating both random and pseudo-random numbers.
Jul
12
comment C++ using NOT (~) on char for encryption…
"Not invented here" syndrome is a big deadly spike that many individuals and companies run themselves upon. In a field as complex as this, you're more likely to invent a square wheel and have a false sense of security than you are to get the round wheel right on your first go. en.wikipedia.org/wiki/Reinventing_the_wheel/…
Jul
11
answered Unexcpected result when comparing values retrieved with PropertyInfo.GetValue()
Jul
11
comment (C#) Arrays, heap and stack and value types
I think that you meant to assign i to arr[0]. The constant assignment will still cause boxing of "42", but you created i, so you may as well use it ;-)
Jul
11
answered How do I get around the Twitter API caching problem?
Jul
11
answered Contract of ICollection<T>.IsReadOnly
Jul
11
answered someDictionary.ContainsKey(someDictionary.Keys.First)… is False???
Jul
11
comment How do I detect if a request is a callback in the Global.asax?
I see that you've tagged the question as ASP.NET, but don't forget to be explicit about the technologies you are using in your question.
Jul
11
answered How do I detect if a request is a callback in the Global.asax?
Jul
11
comment Sendmail path error?
This may be a better question over on Server Fault?
Jul
10
answered Subversion - Moving files
Jul
10
answered How to get git-status of a single subfolder?
Jul
10
comment Proving simple addition
Riddled with is probably too strong of a statement, to be sure. Most mathematics, especially that field called "real mathematics" attempt to start from as few axioms as possible. I was more intending to point that "basic arithmetic" is actually built on a significant set of assumptions. Even Euclidian geometry has 5 assumptions. Change that set of assumptions, as you've noted, and in a non-Euclidian geometry, my same example could be composed so that 1 + 1 is <, =, or > 2.
Jul
10
revised Why can’t a DataMember in WCF return Type?
Correct, expand.
Jul
10
comment Why can’t a DataMember in WCF return Type?
This is incorrect. The nature of web services allows one to transform serializable objects into the appropriate format: msdn.microsoft.com/en-us/library/…; Just because it is Type doesn't make it special. The problem is that the runtime object is actually an internal type, which can't be wired: social.msdn.microsoft.com/Forums/en-US/…. Java could do whatever it wanted with the XML representation of something coming from .NET.
Jul
10
comment Why can’t a DataMember in WCF return Type?
This deflects the question rather than attempting to answer it.
Jul
10
answered Why can’t a DataMember in WCF return Type?
Jul
10
comment Regular expression for numeric range 0000 to 9999
Very humorous. Though, I'm afraid of what will happen when you validate 9999 and get back I'm sick of typing. :-P
Jul
10
answered Proving simple addition
Jul
10
comment How do I find a matching subtree?
Not sure that I understand the full context of this question. It appears that this is a homework question. If it is, please retag the question to add a homework tag. Thanks.
Jul
10
answered How to find out whether two ICollection<T> collections contain the same objects
Jul
10
answered Defining operators in Boo
Jul
10
answered Can .NET code compiled with the unsafe tag run in Mono?
Jul
8
answered Nginx location directive doesn’t seem to be working. Am I missing something?