BobbyShaftoe

12,483
reputation
914 views

Registered User

name BobbyShaftoe
member for 1 year
seen 15 hours ago
website
location
age
Dec
17
revised How to identify whether the current data network is Edge or 3G on iPhone
removed "edge-detection," which refers to the class of algorithms
Dec
17
answered how do i monitor network systems?
Dec
17
comment What computer science research topics are new, interesting and/or relatively easy to get results?
This is good advice but I'd also caution that you should assume those "Future Work" sections have already be done and think about what would be necessary beyond that work. This is because that work has probably already been done; it takes awhile to get a finished paper published.
Dec
17
comment Have you ever restricted yourself to using a subset of language features?
Honestly, I have mixed feelings about this. If your fellow developers do not have a good understanding of the language then they really need to fix that. Of course, this doesn't mean you should go out of your way to make very contorting logic but if we're just talking about the use of language constructs then I tend to disagree. Some languages have constructs that probably shouldn't be used (i.e. Javascript) but this is a different issue. As well, C# actually has the goto keyword. I agree with you about the XML stuff though.
Dec
15
comment structure on a heap memory
It looks like you thought this question was about C# and not C. I'd just delete the answer or edit it for C.
Dec
15
answered How do I use an IF statement with a condition from variableOne through VariableTwo?
Dec
11
accepted Best way to make sure the user dont upload images more than 1MB in size.
Dec
6
awarded  Mortarboard
Dec
3
accepted Easiest way to implement an online order tracking database
Nov
30
comment How can I create a LINQ-to-SQL statement when I have table name as string?
I suppose you could use reflection here to get a handle on the right Table class.
Nov
23
comment How to get MAC address of your machine using a C program?
Also, this isn't going to compile in any C compiler I know of.
Nov
23
accepted Pros and cons of MS Ajax vs. jQuery in an ASP.NET MVC app?
Nov
19
comment How to: Consume MS CRM Web Services from C#?
Glad to hear it!
Nov
19
awarded  Yearling
Nov
18
accepted How to: Consume MS CRM Web Services from C#?
Nov
14
comment How to get instance from string in C#?
I wouldn't say it's really slow. I mean many, many frameworks are based around using Reflection extensively; much of databinding stuff utilizes reflection on properties.
Nov
12
awarded  
Nov
11
comment Setting an address and Initialization of a pointer
Welcome to SO. :)
Nov
11
answered Setting an address and Initialization of a pointer
Nov
11
comment What is your opinion on google go?
Thanks for the heads up this is interesting. Maybe I'll let some undergrads play around with this. :)
Nov
10
comment Always using custom data types
@Martin, your complaint is almost interesting but I did address those issues by saying there may be some circumstances, such as in the case of an Email class or whatever. There is no question that what you propose would "solve 1 and 3" but to provide benefit you need to solve a real problem that can actually impact you. The fact that you are asking suggests you think it may not be beneficial enough. Typedefs are used for this sort of thing but they don't solve 1 and 3 no; they aren't meant to solve the "I accidentally passed in the wrong type" problem.
Nov
10
accepted can there be 2 webmethods with same name inside a web service in c#
Nov
10
comment clear code for counting from 0 to 255 using 8-bit datatype
Yeah, this is definitely not ANSI C.
Nov
10
comment can there be 2 webmethods with same name inside a web service in c#
But this is about overloading.
Nov
10
comment can there be 2 webmethods with same name inside a web service in c#
@leppie, I'm not sure this makes any sense to me whatsoever. If you have two functions with the same name and aren't doing function overloading then you have the same signature. Now, there's something else interesting about this. Having such a thing will not compile and thus will not work. So, this doesn't make much sense to me either.
Nov
10
answered Always using custom data types
Nov
10
answered can there be 2 webmethods with same name inside a web service in c#
Nov
9
comment convert any file into pdf format for .net?
Obviously, you need a certain scope of file formats right? Do you want mp3's to be converted as well? :)
Nov
9
comment Graphics library in C
The site says "DISLIN is free for non-commercial use." Just my two cents.
Nov
9
comment How can I improve my C coding process on OS X?
Ok, I just wanted to make it clear than an Objective-C compiler is not an ANSI C compiler
Nov
9
comment Stack memory fundamentals
This works but I recommend against doing this. Define your constants somewhere else. Although, it depends on your situation, there might be a time when this is an ok design. Just think about it a little bit.
Nov
8
revised How can I improve my C coding process on OS X?
added 8 characters in body
Nov
8
comment When there is two for() loop, the second one doesn’t work.
First, why are you just swallowing the ArrayIndexOutOfBoundsException. If this is happening, typically you may have an issue.
Nov
8
answered Difference between “system” and “exec” in Linux?
Nov
8
comment How can I improve my C coding process on OS X?
I guess I should just go try but my question was really rather wouldn't the compiler be an Objective-C compiler rather than an ANSI C compiler?
Nov
8
comment How can I improve my C coding process on OS X?
Wouldn't this be Objective-C by default?
Nov
8
answered How can I improve my C coding process on OS X?
Nov
7
comment Problem with piping commands in C
Well, if you are implementing a shell to provide this piping mechanism then you do need to use pipes or some similar mechanism. I think the asker knows these issues; he's asking about why it isn't working.
Nov
7
comment How to make window application in ANSI C?
It is debatable but I don't think its bad.
Nov
7
comment How to make window application in ANSI C?
Why don't you tell Microsoft that. heh. If someone wants to program GUI applications in C that is their choice. Also, C++ isn't ANSI C just FYI.
Nov
7
comment How to make window application in ANSI C?
This doesn't make any sense. How do you use C# in C when the question is clearly marked ANSI C. There is so much anti-C propaganda on this site already; I don't think we need more!
Nov
7
comment crafting a class representing a fraction
It depends on what you are doing exactly. What do you want to do with this class?
Nov
7
comment Is NHibernate still in active development for .NET
No, this is not true. In fact, the NHibernate Mafia essentially drafted a petition or vote of "no confidence" in the Entity Framework.
Nov
7
comment In floating point is 0.1 the same as 1/10?
The issue is a bit more complex than that though.
Nov
7
comment What am I missing in the following program?
@Heath Hunnicutt, isn't what you're talking about #define TOTAL_ELEMENTS(a) (sizeof(a) / sizeof(a[0])) rather than what was posted above? The original has the define depending on a variable name that is declared after the the #define is written.
Nov
6
comment Learning C: Online resources
I wouldn't use those changes from ten years ago anyway. Stick with the 20 year old variety. :)
Nov
6
comment Learning C: Online resources
Is that the "Angry C" article?
Nov
6
answered In visual studio, as I am stepping through code, is there a way to execute a method call without stepping into it?
Nov
5
answered How can I establish a TCP connection between many computers behind two firewalls?
Nov
5
answered Detecting database tampering, is it possible?