Carlos Rendon

373
reputation
79 views

Registered User

name Carlos Rendon
member for 1 year
seen 12 hours ago
website
location California, USA
age 24
Interested in Logic, Probability, Statistics.
Dec
6
awarded  Yearling
Dec
5
comment Set default file open path in Emacs?
Clearly I'm not very good at searching. Please vote to close as this is a dupe as kronoz has pointed out.
Dec
5
answered What is the difference between a Generative and Discriminative Algorithm?
Dec
5
asked Set default file open path in Emacs?
Dec
5
comment string user function
I don't see why a regular function would not be acceptable in this case.
Nov
23
comment How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?
Your StringToByteArray() fails if you have an odd number of hex characters. This is easily fixed by padding odd strings with a "0" at the front.
Oct
13
comment Visual Studio 08 Spell Check Addin?
Just kidding, the new version 2.2 does!!!! blogs.msdn.com/webdevtools/archive/…
Oct
13
comment Visual Studio 08 Spell Check Addin?
Doesn't check C# strings!!! Only seems to check stuff that looks like HTML
Oct
12
answered WinDbg, How to display version control file path in stack trace with source server?
Oct
1
comment WinDbg, How to display version control file path in stack trace with source server?
I know that. But I am storing the version control information in the .pdb's as well. WinDbg uses this info to automagically download the source file if I click on a stack frame. I want to know how to display the version control path.
Oct
1
asked WinDbg, How to display version control file path in stack trace with source server?
Sep
23
answered The single most useful Emacs feature
Sep
3
comment AddWithValue difficulty
I agree that this would be correct had I pasted the correct string for the sp_executesql call. However I did not, I have edited my post. With the edits I still have the same problem
Sep
3
revised AddWithValue difficulty
Fixed typo in sp_executesql
Sep
3
asked AddWithValue difficulty
Aug
25
comment best way to statistically detect anomalies in data
Or even a well-posed question. Just what exactly do you mean by anomalous anyways?
Aug
25
answered best way to statistically detect anomalies in data
Aug
25
comment Graphviz for documentation.
Yes, I suppose the point is that the graph layouts in Graphviz are much better than you tend see in other programs. Also, it gives you control of the layout when you want or need it.
Aug
19
comment How do I view ‘git diff’ output with visual diff program?
Also, any idea of how to get the -s option (open several diffs in one winmerge window) to work in this scheme?
Aug
19
comment How do I view ‘git diff’ output with visual diff program?
I had to escape the $, for $LOCAL and $REMOTE to prevent them from becoming "" and "". I would edit to say git config --globla difftool.winmerge.cmd "winmerge.sh \"\$LOCAL\" \"\$REMOTE\""
Aug
9
comment Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)?
@Shannon thanks for the comprehensive edit
Aug
7
comment Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)?
But what about the performance? Doesn't this require the DB to run the big query that I wanted to avoid in the first place with TOP(X)
Aug
7
awarded  Scholar
Aug
7
revised Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)?
fixed syntax error in sql
Aug
7
comment Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)?
@Beth, thanks! that was my problem
Aug
7
revised Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)?
added 29 characters in body
Aug
7
comment Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)?
@KM I added code to the post
Aug
7
revised Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)?
edited to show syntax with Shannon's solution
Aug
7
comment Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)?
mssql gives me a syntax error with this query on the last ')' any ideas?
Aug
7
comment Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)?
but what about the GROUP BY problem mentioned in the question?
Aug
7
asked Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)?
Aug
5
comment receiving a broadcast message in c#
I think your question is answered here: stackoverflow.com/questions/746519/…
Aug
5
comment Udp Receiving
It would be nice if you edit the title to something more descriptive. For example, "UdpClient recieve on broadcast address". It is the same problem I was having.
Jul
22
comment Does anyone know of a good diff tool for C#?
Thanks for sharing
Jul
22
comment Does anyone know of a good diff tool for C#?
Maybe it would be a whole "project" or "solution" diff.. Your compiler already takes care of this so it shouldn't be too hard to figure out. It would also be neat to make it language agnostic if possible.. So other langs could be added easily. I'm sure quite a few people would pay for it as a product.
Jul
21
answered Does anyone know of a good diff tool for C#?
Jun
12
comment How to copy file from local system to other system in C# (windows app)?
found it, stackoverflow.com/questions/766033/…