Robert

906
reputation
235 views

Registered User

name Robert
member for 1 year
seen 12 hours ago
website
location Chicago IL USA
age 33
Just a programmer doing my best to not write any code that will someday become part of a rampant, self-aware AI which attempts to destroy the world.
16h
comment Creating a stack of strings in C
@John Bode: Agreed. It does work out better that way. Fixed.
16h
comment Creating a stack of strings in C
@Roger Pate: yes, macros and global state, blasphemous! I only would recommend something like this for rapid-prototyping or a single-source file throwaway/assignment/excercise, which could later be reworked into something non-blasphemous if needed.
16h
comment Creating a stack of strings in C
@Alok: On both issues all I can say is, indeed!
16h
revised Creating a stack of strings in C
Modified/fixed sample per suggestions
1d
answered Creating a stack of strings in C
Dec
15
comment Powershell: how to tell Copy-Item to unconditionally copy files
No "Use the -Force" jokes?
Dec
15
answered How Do I copy the files and the Folder Tree to Remote Machine?
Dec
4
comment Parsing a CSV file problems C#
Murph, have you (or anyone else here) used FileHelpers? Would you recommend it for processing large (~10-50GB) delimited files that may possibly contain malformed records (e.g. quote mismatches, incorrect number of fields per record, etc)?
Nov
11
comment help in implementing a team overall rating system
That should have been, "Please rephrase as an actual question."
Nov
11
comment help in implementing a team overall rating system
The way you currently have your "question" structured, it's hard to tell what exactly you need help with. Please rephrase as an actually question.
Oct
31
comment Coping strategies for when your totally awesome project is unfairly canceled for stupid reasons beyond your control
That would be a sad loop.
Oct
27
awarded  Notable Question
Oct
22
revised What is Haskell actually useful for?
Clarified and fixed grammar.
Oct
22
revised What is Haskell actually useful for?
additional comments
Oct
22
answered What is Haskell actually useful for?
Oct
22
comment How do I move from being a software developer to being a software architect?
Just don't end up like this guy: youtube.com/watch?v=4YBxeDN4tbk
Oct
17
answered How to write an evaluator for a string like “(1+3 * ( 5 / 4)) and get a numeric result.
Oct
17
comment When is it time to move from an in-IDE build system to a script-based build?
BTW, nice blog. I've added you to my reader.
Oct
17
comment When is it time to move from an in-IDE build system to a script-based build?
Thanks for your answer. As far as language goes I'm speaking mainly of compiled languages where you are building binaries; not scripting languages. Why do you say it depends on the IDE and OS? Do you mean from a tool availability standpoint? I'm looking for general guidelines on when you should or shouldn't be using build scripts (like what you've listed in bullet-points) not what specific tools one could use.
Oct
17
revised When is it time to move from an in-IDE build system to a script-based build?
spelling correction
Oct
17
asked When is it time to move from an in-IDE build system to a script-based build?
Oct
14
comment Programmer, not a blogger
@DVK +1 for launching all zigs; even though the proper dialect should be: Somebody set us up the blog!
Oct
12
comment Why can’t the Nodes be linked together?
@derrdji: The argument should be passed as needed by the function. As a general rule, your functions should be well defined and should exhibit expected behaviour. A function which returns the size of a stack would not be expected to modify the stack; therefore the stack argument should not be passed by reference to that function. On the flip-side, functions like push/pop should modify the stack and will need the stack argument passed by reference.
Oct
11
comment Best .NET Podcasts
This thread would be a better resource if answers were limited to one podcast per answer (use multiple answers for different podcasts) and vote up existing entries instead of duplicating.
Oct
3
revised Does Microsoft have a best practices document regarding the storage of App Data vs User Data on different Windows Platforms?
Add additional resource link
Oct
2
asked Does Microsoft have a best practices document regarding the storage of App Data vs User Data on different Windows Platforms?
Sep
30
comment Screen scraping a mainframe screen in C# *without* 3rd Party Utilities
That open3270.net link is worse than dead... its now the home of "Dr. Pooter treats computers."
Sep
24
comment Converting array characters in C Programming
@metashockwave s[3] is a character refrence so you need to change the %s to %c to print just that character.
Sep
24
comment Initialization between types “const int** const” and “int**” is not allowed, why?
Pavel and Charles have made it perfectly clear why the compiler is warning me. I upvoted both of you, but gave the credit to Charles for breaking it down from C point of view (although both answers are very similar and show why the warning is issued).
Sep
23
asked Initialization between types “const int** const” and “int**” is not allowed, why?
Sep
23
comment How do I code a watchdog timer to restart a Windows service?
Windows users, escaping the hung since 1985.
Sep
23
accepted FTP error in powershell
Sep
23
answered FTP error in powershell
Sep
22
comment Remove extra white space from inside a C string?
Careful for buffer overflow using fscanf.
Sep
22
answered Remove extra white space from inside a C string?
Sep
19
revised How to use the C socket API in C++ on z/OS
Removed dead link.
Sep
19
comment How to use the C socket API in C++ on z/OS
Try this one. www-01.ibm.com/software/awdtools/… You'll have to search for "Programming Guide".
Sep
8
awarded  Nice Question
Aug
30
awarded  Yearling
Aug
22
comment Why is it that Internet Explorer is STILL the most popular browser?
I didn't know that counted as one of my wishes. Now how many do I have left?
Aug
22
answered Why is it that Internet Explorer is STILL the most popular browser?
Aug
20
awarded  
Aug
15
revised Can I do this in powershell? Read the Registry, write out binary contents to file.
added a more consise example
Aug
15
comment Can I do this in powershell? Read the Registry, write out binary contents to file.
+1 I didn't know about Set-Content. Nice!
Aug
15
answered Can I do this in powershell? Read the Registry, write out binary contents to file.
Aug
15
comment Can I do this in powershell? Read the Registry, write out binary contents to file.
Note: out-file will not keep the data in binary format. It will take the byte array and write each byte out as a display number.
Jul
25
revised C++ array excercise-help needed
rewording
Jul
25
revised C++ array excercise-help needed
added 36 characters in body; added 102 characters in body; added 6 characters in body
Jul
25
answered C++ array excercise-help needed
Jul
3
awarded  Scholar