Carson Myers
|
Registered User
|
I'm an aspiring young software developer, with some experience in web design/development, and writing small projects.
Right now I know C and PHP well, and know some assembly, C++, VB6, Perl, and JavaScript. I've dabbled in Lisp and Haskell a little, but not very much. I haven't got into .net yet, but I certainly plan to. I used to have a lot of trouble getting very far into my own projects--I would just, start from the beginning, and keep writing until it all got out of joint and too messy to continue. But I've spent the last 2-3 years doing a *lot* of reading books, blogs, and question-answer sites (especially SO) trying to improve and be great at programming. Some of my past projects include small online user systems, small chat applications, a backup management utility, and various script interpreters (haven't attempted a compiler yet). I can't wait for university, and to start on a career. As of yet I haven't really done any professional work. My main coding philosophy is that it should read like prose. As for other conventions (different arrangements of abstractions, or paradigms, for example) depend on the problem domain. |
|
7h |
comment |
is it possible to ignore a fatal error in PHP? will fatal errors go through the error handler? From reading further, it seems like you can only get a-hold of them by registering a shutdown function... |
|
8h |
asked | is it possible to ignore a fatal error in PHP? |
|
14h |
revised |
Jquery: Unmasking/Revealing Corner edited body |
|
2d |
comment |
deltified document revision control in PHP thanks, this will help with the diff, but what about the sematics of storing revisions? |
|
2d |
comment |
deltified document revision control in PHP it'll be like what wikipedia and other wiki sites do. I believe there's a way to do it in wordpress as well, it's for a CMS. I want to have the whole system exist on one server, and have as few dependencies as possible since it'll be distributed |
|
2d |
asked | deltified document revision control in PHP |
|
2d |
revised |
What is wrong with this JOIN query? added 387 characters in body |
|
2d |
comment |
What is wrong with this JOIN query? true, changing the OR clause to an AND fixed this |
|
2d |
comment |
What is wrong with this JOIN query? yes, you're right there |
|
2d |
asked | What is wrong with this JOIN query? |
|
Dec 14 |
revised |
Is GOTO in PHP evil? then -> than. Srs pet peeve, sorry. |
|
Dec 14 |
comment |
Is GOTO in PHP evil? I'm scared to use goto because anyone who reads my code might completely lose faith in me |
|
Dec 14 |
comment |
Is GOTO in PHP evil? 'always' usually implies a bad answer |
|
Dec 11 |
comment |
securely dealing with client ‘sessions’ in PHP that's a good point, but I think zombats session handler class makes the database portion of sessions a little more seamless. |
|
Dec 11 |
comment |
securely dealing with client ‘sessions’ in PHP I think the IP address is good enough, specifically because most people are behind routers anyway, and that IP usually doesn't (in my experience) refresh unless the router is reset, usually along with some internal mechanism to refresh the IP. Also, even if the user's IP refreshing were a serious factor, all it would mean is that the user must log back in -- plus, in my own implementations, I usually make the session expire in around three or four hours. |
|
Dec 11 |
asked | securely dealing with client ‘sessions’ in PHP |
|
Dec 11 |
comment |
how much server space do I need for a subversion repository? thanks, I am the only developer at the moment and my friend wants to look at my code since he's learning programming, but he eventually wants to contribute a little -- I'm not sure if there'll be anymore than one serious developer for a long time, but I'll probably just ask for a gig and that will last for a while. |
|
Dec 11 |
comment |
how much server space do I need for a subversion repository? I love throwing gigs at things! Actually that's a good point though |
|
Dec 11 |
asked | how much server space do I need for a subversion repository? |
|
Dec 10 |
answered | making a php function that If mysql returns 0 rows, return false |
|
Dec 10 |
comment |
PHP if-then-else statement not working. sql injection won't work in this case, because he checks that the get variable exists in an array. Unless the OP put year;drop database etc into the array. |
|
Dec 10 |
comment |
PHP if-then-else statement not working. I find that using $_GET['...'] can get ugly sometimes, like when you're using get variables as indexes to arrays and have nested []'s. |
|
Dec 10 |
revised |
PHP if-then-else statement not working. etc'd; added 72 characters in body |
|
Dec 10 |
answered | PHP if-then-else statement not working. |
|
Dec 6 |
awarded | ● Mortarboard |
|
Nov 29 |
revised |
Wordpress.. Is it a CMS? edited body |
|
Nov 28 |
answered | (Java newbie) Instantiating unknown number of objects |
|
Nov 26 |
comment |
getting the “include path” to a file in PHP nevermind, it was already posted. |
|
Nov 26 |
comment |
getting the “include path” to a file in PHP actually, I found something, I'll post it as an answer |
|
Nov 26 |
comment |
getting the “include path” to a file in PHP ah, thanks, that's perfect |
|
Nov 26 |
comment |
getting the “include path” to a file in PHP it seems like this will just give you the full path minus the file name, and using it multiple times will give you one less top directory... I'm trying to turn /var/www/vhosts/.../httpdocs/some/path/to/file.php into some/path/to/file.php |
|
Nov 26 |
comment |
getting the “include path” to a file in PHP this just gives me the name of the file, and excludes the directories leading up to it that are relative to the include path. |
|
Nov 26 |
asked | getting the “include path” to a file in PHP |
|
Nov 26 |
comment |
Get the __FILE__ constant for a function’s caller in PHP alright, so I suppose the PHP stack trace utility is friendlier than I expected it to be, and this seems to be the cleanest way to do what I want. |
|
Nov 26 |
asked | Get the __FILE__ constant for a function’s caller in PHP |
|
Nov 24 |
comment |
Best algorithm to count the number of set bits in a 32-bit integer? I previewed Hacker's Delight on Amazon and now it's on its way here. Thanks for the recommendation! :D |
|
Nov 23 |
comment |
Great programming quotes @stringer your analogy became lost on me as soon as you called those blocks "tetrominoes." |
|
Nov 23 |
comment |
Great programming quotes calling him by wrong-value? |
|
Nov 22 |
comment |
Analogy? A programming language without namespaces is like (…) I don't think this analogy really fits |
|
Nov 20 |
comment |
Width of <table> and <tr>? why would you re-post the same question with even less detail? |
|
Nov 19 |
comment |
Why does this compile with the Dev-C++ compiler and not Visual Studio’s one ? I fixed the formatting (I think, I did it from my phone) |
|
Nov 19 |
revised |
Why does this compile with the Dev-C++ compiler and not Visual Studio’s one ? added 28 characters in body |
|
Nov 19 |
comment |
accessing private variable from member function in PHP nevermind, I was setting $message in the parent constructor instead of $this->message. Also, I realized I provided no actual implementation details of how I was setting the message in the first place. My bad |
|
Nov 19 |
revised |
accessing private variable from member function in PHP added 259 characters in body; deleted 259 characters in body |
|
Nov 19 |
comment |
accessing private variable from member function in PHP alright, I did this -- but now I can't use $this->message -- no error, it just displays nothing... why? |
|
Nov 19 |
comment |
accessing private variable from member function in PHP your extra point causes a fatal error, I tried that already -- __toString() MUST return a string |
|
Nov 19 |
comment |
accessing private variable from member function in PHP sure, but then if I changed the (php) class name I'd have to change the (css) class name, and also, if I want to use more information in the exception template file, I would probably add it the same way I added the "type" property. |
|
Nov 19 |
asked | accessing private variable from member function in PHP |
|
Nov 16 |
comment |
Anti-Joel Test @mike, "right code" as in right a wrong, or as in "I can right code but not english?" :P |
|
Nov 15 |
asked | How do I check out a subversion repository from a network share? |
