User codebunny - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T16:48:02Zhttp://stackoverflow.com/feeds/user/13667http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/179014/how-to-change-envelope-from-address-using-php-mail3How to change envelope from address using PHP mail?codebunny2008-10-07T15:23:28Z2009-10-14T03:22:49Z
<p>I am using PHP with Apache on Linux, with sendmail. I use the PHP mail() function. The email is sent, but the envelope has the Apache_user@localhostname in MAIL FROM (example nobody@conniptin.internal) and some remote mailservers reject this because the domain doesn't exist (obviously). Using PHP mail(), can I force change the envelope MAIL FROM?</p>
<p>EDIT: If I add a Header in the fourth field of the mail() function, that changes the From field in the headers of the body of the message, and DOES NOT change the envelope MAIL FROM.</p>
<p>I can force it by spawning sendmail with "sendmail -t -odb -oi -frealname@realhost" and piping the email contents to it. Is this a better approach?</p>
<p>Is there a better, simpler, more PHP appropriate way of doing this?</p>
<p>EDIT: The bottom line is I should have RTFM. Thanks for the answers folks, the fifth parameter works and all is well.</p>
http://stackoverflow.com/questions/193593/php-money-string-conversion-to-integer-error2PHP money string conversion to integer errorcodebunny2008-10-11T01:59:35Z2009-07-04T05:39:17Z
<p>I have a small financial application with PHP as the front end and MySQL as the back end. I have ancient prejudices, and I store money values in MySQL as an integer of cents. My HTML forms allow input of dollar values, like "156.64" and I use PHP to convert that to cents and then I store the cents in the database.</p>
<p>I have a function that both cleans the dollar value from the form, and converts it to cents. I strip leading text, I strip trailing text, I multiply by 100 and convert to an integer. That final step is</p>
<p><code>$cents = (integer) ($dollars * 100);</code></p>
<p>This works fine for almost everything, except for a very few values like '156.64' which consistently converts to 15663 cents. Why does it do this?</p>
<p>If I do this:</p>
<p><code>$cents = (integer) ($dollars * 100 + 0.5);</code></p>
<p>then it consistently works. Why do I need to add that rounding value?</p>
<p>Also, my prejudices about storing money amounts as integers and not floating point values, is that no longer needed? Will modern float calculations produce nicely rounded and accurate money values adequate for keeping 100% accurate accounting?</p>
http://stackoverflow.com/questions/1071318/php-variable-inside-another-variable/1071333#10713331Answer by codebunny for php variable inside another variablecodebunny2009-07-01T20:52:39Z2009-07-01T20:52:39Z<p>Needs a semi-colon at the end of the first line, before the comment.</p>
http://stackoverflow.com/questions/133626/how-do-you-return-from-gf-in-vim/133895#1338952Answer by codebunny for How do you return from 'gf' in Vimcodebunny2008-09-25T15:12:10Z2009-06-19T15:04:16Z<p>I don't know the answer to part 2 of your question, but I can help with part 1. Use</p>
<pre><code>:e#
</code></pre>
<p>Vim maintains a list of files (buffers) that it's editing. If you type</p>
<pre><code>:buffers
</code></pre>
<p>it will list all the files you are currently editing. The file in that list with a % beside it is the current file. The one with the # beside it is the alternate file. :e# will switch between the current and alternate file. Rather than type that much, I map F2 to :e# so I can easily flip between the current and alternate files. I map the command to F2 by adding this to .vimrc</p>
<pre><code>nmap `<F2> :e#<CR>`
</code></pre>
http://stackoverflow.com/questions/980668/renaming-files-in-a-folder/980695#9806951Answer by codebunny for renaming files in a foldercodebunny2009-06-11T11:59:32Z2009-06-11T15:18:57Z<p>A long time ago, I found a small snippet of code in the back of the Programming Perl 4 O'Reilly book that let you rename files using regular expressions. I have used that ever since. Being able to use Perl regular expressions, especially tr and s, has made file renaming so easy. So cut this out, paste it into a file called rename on your path, make it executable "chmod ugo+x rename" and keep it as part of your regular arsenal of tools. Check where your perl is with "which perl" and adjust the first line appropriately. This assumes you're on a Unix system with access to Perl.</p>
<pre><code>#!/usr/bin/perl
# Usage: rename perlexpr [files]
($op = shift) || die "Usage: rename perlexpr [filenames]\n";
if (!@ARGV)
{
@ARGV = <STDIN>;
chop (@ARGV);
}
for (@ARGV)
{
$was = $_;
eval $op;
die $@ if $@;
rename ($was,$_) unless $was eq $_;
}
</code></pre>
<p>So for your example, you could do</p>
<pre><code>rename "s/_old//" *_old.php
</code></pre>
<p>Oops. The tag for this question is ftp. If your access is via ftp, then this is not going to work, because you are not going to have shell access.</p>
http://stackoverflow.com/questions/954164/choosing-between-java-and-python10Choosing between Java and Pythoncodebunny2009-06-05T03:33:58Z2009-06-09T14:26:07Z
<p>My team is faced with change. We develop on Unix, on backend servers. We do no GUI development. We are the business logic between another team's Java front end (XML interface) and the database. Currently our codebase is large, and it's all in C. We are held back by having to work with a very primitive ancient home-made non-relational non-distributed database with a very primitive C-only library (we inherited it from the previous wave of programmers 12 years ago). We have to do a major rewrite of everything to get away from this database and on to Postgresql. With such a major rewrite coming, it has been decided that we may as well change language at the same time because it would make the conversion simpler than doing it in C. We are enthusiastic about this, career-wise. We want to move to unit testing, frameworks, rapid development, as long as we maintain our accuracy and minimal bug count.</p>
<p>However, there is another team in our company, led by one developer who is an enthusiastic Java developer. He has strong influence over our manager. He wants us to move to Java for his own reasons, mainly so we can do some of his work, something we wish to avoid at all costs because his work is an abomination. One of our most important elements in choosing a language to switch to, is to maintain our independence and not become part of the Java pusher's world.</p>
<p>The database conversion has started, in that we now mirror the home-grown database into Postgresql, and the two are in sync and stay in sync. We are careful to proceed in stages, so it's not a big-bang conversion. Now we can start converting individual processes to pull from Postgresql instead of the home-grown database. We will start with the smaller and simpler processes, convert them, get the conversion experience, develop our libraries, and then slowly tackle the more complex processes. The temptation is to just do it in Python and not tell them until we are too far down the conversion process.</p>
<p>By now, our manager is aware that there are two desires in the department - Java and Python. Our manager is technical, up to a point, but he is strongly influenced by the Java developer. We must gather our arguments and present them and argue our case. We have no actual Java experience, but we have some Python experience and are gaining more rapidly in our own time. We have examined Java and think that it is wordy and similar to C in many ways and will not help us do the rewrite quickly and will not help us with future rapid development. We have begun working in Python and love the simplicity, the terseness, the rapid development. We believe we could maintain our accuracy and achieve rapid development by moving to Python.</p>
<p>So, in the interests of our careers, should we give in and do it in Java, or should we push ahead and argue for Python? What would be best for the business, and what would be best for us?</p>
<p>I wanted to know what the community thought.</p>
<p>[Edited to include more of the circumstances.]
[And edited some more]</p>
<p>[Thanks for all the replies, folks, you've given me lots to think about, and you've been a great help.]</p>
http://stackoverflow.com/questions/967038/on-gnu-linux-systems-where-should-i-load-application-data-from/967229#9672290Answer by codebunny for On GNU/Linux systems, Where should I load application data from?codebunny2009-06-08T21:59:36Z2009-06-08T21:59:36Z<p>I don't think there is a standard way of placing files. I build it into the program, and I don't limit it to one location.</p>
<p>It depends on how much customising of the config file is going to be required.</p>
<p>I start by constructing a list of default directories and work through them until I find an instance of glade.xml and stop looking, or not find it and exit with an error. Good candidates for the default list are /etc, /usr/share/app-name, /usr/local/etc.</p>
<p>If the file is designed to be customizable, before I look through the default directories, I have a list of user files and paths and work through them. If it doesn't find one of the user versions, then I look in the list of default directories. Good candidates for the user config files are ~/.glade.xml or ~/.app-name/glade.xml or ~/.app-name/.glade.xml.</p>
http://stackoverflow.com/questions/527238/need-disk-based-priority-queue-library-preferably-for-c1Need disk based priority queue library, preferably for Ccodebunny2009-02-09T06:20:02Z2009-02-09T06:53:33Z
<p>I have a queuing mechanism in C on Unix. It accepts XML transactions. Some transactions contain records to be stored. Other transactions request those transactions. The transactions get stored in a file, which is a home-grown queue. First in, first out, very simple. Header area at start of file, keeps track of next position to read from, and next position to write to. We use file locking, but not semaphores as retrieval is polled from remote systems. And there's only one program that accesses the queues. It's in C. Been working fine for years.</p>
<p>Now we have to expand the system. The transactions will contain an extra XML tag. We have to selectively retrieve based on the values of that tag. We are going from a simple queue to a priority queue. There can be many different values in the tag. Say AX, BX, CX, FL and TS. Transactions get added to the queue in order received. We need to be able to retrieve them either in order they were received, or retrieve the next transaction where the tag is FL. Or TS. Or (CS or FL). Or not AX.</p>
<p>How best to do this?</p>
<p>Simple and fast are what we need. Several options come to mind:</p>
<ol>
<li>Use something like Berkely DB to turn the queue into a database of sorts.</li>
<li>Tap into a PostgreSQL database, create a table that can be used as a priority queue.</li>
<li>Find a C library that will do what we want.</li>
<li>Write our own disk-based priority queue.</li>
</ol>
<p>We have some constraints. Time is ticking away and this needs to be done in a few weeks. C for fast insertion into the system. Maybe Python if we can tapdance fast enough to convert all the other business logic in the program that accesses the queue. Prefer not to use PostgreSQL as we have no control over the database system and the DBA has nasty habits over what he considers "his" and we have no reliability of uptime even though this is a critical system. Politics, huh!! DBA has also said that using a PostgreSQL table is not an efficient way of doing it. We prefer something that is localized so we can control it. Got to be lightning fast to handle a lot of transactions per minute.</p>
<p>I'm open to any suggestions, even far-out ones. The more suggestions the better.</p>
http://stackoverflow.com/questions/523868/should-you-learn-a-new-programming-language-if-there-are-no-jobs-in-your-area-tha/524026#5240260Answer by codebunny for Should you learn a new programming language if there are no jobs in your area that want it?codebunny2009-02-07T16:09:24Z2009-02-07T16:09:24Z<p>You joined a Ruby group but haven't been to any meetings yet? That's a waste. User groups are about networking and meeting people in the field and showing your face and being recognised. It's a way in. Go to the meetings regularly. Don't show job desperation or naked hunger, but show enthusiasm and join in everything. You have a good chance of getting advance notice of job openings, and if you get an interview, you have an IN.</p>
http://stackoverflow.com/questions/523939/what-do-you-do-when-a-library-you-use-is-no-longer-maintained/523994#5239941Answer by codebunny for What do you do when a library you use is no longer maintained?codebunny2009-02-07T15:47:54Z2009-02-07T15:47:54Z<p>We prefer to roll our own for that very reason. We end up with full control over it, full knowledge of how it works, and we can change it any way we want. When our ass is on the line when the blame game is played, we prefer to reduce the risk and do it ourselves.</p>
<p>We had a situation once where we did use an external library, and it got rewritten and repurposed by the author and no longer did what we expected. We rolled over that, wrote our own version, and continued safely.</p>
<p>The bottom line is safety, and minimization of risk.</p>
http://stackoverflow.com/questions/116354/what-fun-things-do-you-do-to-release-stress-at-the-office/523981#5239810Answer by codebunny for What fun things do you do to release stress at the office?codebunny2009-02-07T15:42:35Z2009-02-07T15:42:35Z<p>Office politics.</p>
<p>It isn't a good day unless someone in another department leaves in tears. Or resigns.</p>
<p>Our IT department has other ways to relieve stress. That had to stop when a client went to the bathroom and found our main IT guy deep into our lead tester.</p>
http://stackoverflow.com/questions/497422/php-library-to-read-pdfs/497436#4974361Answer by codebunny for PHP library to read PDFs ?codebunny2009-01-30T22:03:28Z2009-01-30T22:03:28Z<p>If your webserver is Unix, use the pdftotext utlity to dump the PDF to text, then display it how you want it. It's not going to have the formatting, but the text will be available.</p>
http://stackoverflow.com/questions/496713/how-do-i-correct-a-subversion-project-where-i-omitted-trunk1How do I correct a Subversion project where I omitted trunk?codebunny2009-01-30T18:52:49Z2009-01-30T20:36:14Z
<p>I have a project in subversion, called inboundem. It was my first, and when I created it, I omitted trunk. I need to get it into the correct structure as inboundem/trunk. I had another project like this, but as there were no revisions, I did <code>svn delete</code> and then <code>svn import</code> and that worked well. But I have a lot of revisions with inboundem and I do not want to lose the history.</p>
<p>I cannot do <code>svn move</code>, as svn will not let me move a project into itself.</p>
<p>I suspect that I need to go down the svnadmin dump/load path, so I have done:</p>
<pre><code>svnadmin dump /subversion/active | svndumpfilter include inboundem > inboundem.dump
</code></pre>
<p>and that has created a dump file with all my history for inboundem. But what do I do now?</p>
<p>I suspect that I should do <code>svn delete</code> and erase the project, then manually edit the dump file and change Node-path everywhere from inboundem to inboundem/trunk, and then do</p>
<pre><code>svnadmin load /subversion/active < inboundem.dump
</code></pre>
<p>Is this safe? Is there an easier way? Maybe I should just brute force it, and check out all the revisions one by one, delete the project and then recreate the project revision by revision.</p>
http://stackoverflow.com/questions/270651/what-guidelines-do-you-adhere-to-for-writing-good-logging-statements/270720#2707202Answer by codebunny for What guidelines do you adhere to for writing good logging statementscodebunny2008-11-06T23:10:58Z2008-11-06T23:10:58Z<p>In my logs, I need the date and the time, the process that creates the logs, and the PID. There's nothing worse than looking at logs and wondering whether they came in five minutes ago, or whether they were left behind 5 years ago before your changes. Date and time are important.</p>
<p>When I report errors, I state concisely what was called, what happened, and what error codes came back. If it's errno, I also report back strerror(errno). I'm reading this to find a problem, and usually I'm in a screaming hurry to find the problem. I don't want to look stuff up. I want it to tell me what happened, and I prefer verbose to useless. If I'm debugging, and often even when I'm not, I'll log all the data like the SQL statement or the low-level record, keys, anything that will help me find the problem ASAP.</p>
<p>Sometimes we log insanely, and it can slow the system slightly. But when shit goes down and we get a subpoena and there's a lawsuit on the loose and accusations of baby-killer are being thrown around, we love that we have enough logs on tap to show exactly what happened and why and who caused it. It's Blame Management.</p>
http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform/230070#2300706Answer by codebunny for What's the best way to check if a file exists in C? (cross platform)codebunny2008-10-23T15:00:53Z2008-10-23T15:00:53Z<p>Use stat like this:</p>
<pre><code>int file_exist (char *filename)
{
struct stat buffer;
return (stat (filename, &buffer) == 0);
}
</code></pre>
http://stackoverflow.com/questions/229671/c-for-loop-implemented-differently-than-other-languages/229915#2299153Answer by codebunny for C for loop implemented differently than other languages?codebunny2008-10-23T14:21:37Z2008-10-23T14:30:34Z<p>If all you want is a simple counting loop, then</p>
<pre><code>for (i=0; i<100; i++) dostuff();
</code></pre>
<p>will be fine, and the compiler can optimize it.</p>
<p>If you use a function in the continue part of the for statement, like</p>
<pre><code>for (i=0; i<strlen(s); i++) dostuff();
</code></pre>
<p>then the function will be evaluated every time and this is usually not a good idea as the function overheads will slow your process. Sometimes it can slow your process to the point of unusability.</p>
<p>If the function's return value will not change during the iteration, extract it from the loop:</p>
<pre><code>slen = strlen(s);
for (i=0; i<slen; i++) dostuff();
</code></pre>
<p>But there are times when the function will be returning different values each call, and then you do not want it extracted from the loop:</p>
<pre><code>for (isread(fd, &buffer, ISFIRST);
isstat(fd) >= 0;
isread(fd, &buffer, ISNEXT)
{
dostuff(buffer);
}
</code></pre>
<p>and you want it evaluated each time. (That is a slightly contrived example based on work that I do, but it shows the potential).</p>
<p>C gives you the raw ability to roll your loop any way you can. You have to know how your loop is supposed to work, and you optimize it as best you can, depending on your needs.</p>
<p>That last example could have been expressed as a while loop:</p>
<pre><code>isread(fd, &buffer, ISFIRST);
while (isstat(fd) >= 0)
{
dostuff(buffer);
isread(fd, &buffer, ISNEXT);
}
</code></pre>
<p>but it's not as neat, and if I use a continue in the loop, then I have to call the iterating isread again. Putting the whole thing in a for loop makes it neater, and ensures that the iterating isread is called each loop.</p>
<p>I write lower-level functions so they can be used in for loops like this. It brings all elements of the while loop together so you can understand it more easily.</p>
http://stackoverflow.com/questions/212389/size-difference-between-email-and-ftp-text-message-eol-characters/212469#2124691Answer by codebunny for size difference between email and ftp text message - EOL characters?codebunny2008-10-17T14:48:58Z2008-10-17T14:48:58Z<p>During SMTP, you're supposed to end each line with CR LF. If your original email ends each line with a newline, after it's transferred, the mailers might have converted each newline to a CR LF, which would add one extra byte for each line.</p>
<p>On the other hand, it might be coincidence. Have you looked to see if the mail programs at either end added extra header lines, like From lines?</p>
http://stackoverflow.com/questions/193551/can-you-code-while-drunk/193600#1936001Answer by codebunny for Can you code while drunk?codebunny2008-10-11T02:07:03Z2008-10-16T10:37:52Z<p>Depends on circumstances. And how drunk.</p>
<p>After a few drinks, maybe, as long as it's for myself and not for work. I can code small, simple C or Perl or Python functions or a small shell script, or some small PHP and have it work. Maybe. I wouldn't attempt it at work, but for myself, I'll occasionally do it. And forget about coding something large and consistent.</p>
<p>But roaring drunk? No chance. I can't focus enough. And if I manage to write anything, it will not work and it will be crap and I will be ashamed of it.</p>
http://stackoverflow.com/questions/181279/how-does-tcp-ip-report-errors/181308#1813080Answer by codebunny for How does TCP/IP report errors?codebunny2008-10-08T04:09:42Z2008-10-08T04:09:42Z<p>In C, if you write to a socket that has failed with send(), you will get back the number of bytes that were sent. If this does not match the number of bytes you meant to send, then you have a problem. But also, when you write to a failed socket, you get SIGPIPE back. Before you start socket handling, you need to have a signal handler in place that will alert you when you get SIGPIPE.</p>
<p>If you are reading from a socket, you really should wrap it with an alarm so you can timeout. Like "alarm(timeout_val); recv(); alarm(0)". Check the return code of recv, and if it's 0, that indicates that the connection has been closed. A negative return result indicates a read failure and you need to check errno.</p>
http://stackoverflow.com/questions/167003/need-a-regular-expression-to-match-three-character-strings/167010#1670102Answer by codebunny for Need a regular expression to match three character stringscodebunny2008-10-03T13:58:40Z2008-10-03T14:04:22Z<p>Perl /^[1-9ondOND][1-3][0-9]$/</p>
<p>^ = at the start of the string, $ = end of string</p>
http://stackoverflow.com/questions/133821/the-best-tail-gui/133839#1338391Answer by codebunny for The best Tail GUIcodebunny2008-09-25T15:00:31Z2008-09-25T15:00:31Z<p>Marc Lehmann's improved root-tail - <a href="http://www.goof.com/pcg/marc/root-tail.html" rel="nofollow">http://www.goof.com/pcg/marc/root-tail.html</a></p>
<p>It lets you tail multiple system log files, and other log files, on your root window, combine them, colour the text. It's simple, powerful and very useful. Runs on Linux, and probably runs on other Unix systems.</p>
http://stackoverflow.com/questions/89710/what-fundamental-skills-are-needed-for-programming/89992#8999213Answer by codebunny for What fundamental skills are needed for programming?codebunny2008-09-18T04:23:22Z2008-09-18T21:18:23Z<p>The original question is about what fundamentals are necessary for a person to be able to program. This question was discussed in 2006 on <a href="http://www.codinghorror.com/blog/archives/000635.html" rel="nofollow">Coding Horror</a>. A study was done at <a href="http://www.cs.mdx.ac.uk/research/PhDArea/saeed/" rel="nofollow">Middlesex University</a>, UK, to find what were the pre-requisites, what were the fundamental mental abilities necessary, before a person could program. The three fundamental abilities they came up with were</p>
<ol>
<li>assignment and sequence</li>
<li>recursion and iteration</li>
<li>concurrency</li>
</ol>
<p>If you couldn't do this, you couldn't program. I've seen this in classes, and in schools, and with co-workers and friends. Even just the first one is a show-stopper. Some people can do algebra, but assignment just floors them. Their mental models do not allow it, and they cannot grasp assignment. Nothing wrong with that, they make fine dentists and accountants and fit into other useful and worthy professions, but they can't program because they can't grasp the fundamentals.</p>
<p>At one time, I believed that everyone could program, it was just that they weren't taught right. After many, many futile attempts to teach right, I have given up. Some folks required a lot of effort and still never got it. Many adults have completely forgotten algebra and need a lot of revision to understand the concept of variables. When it comes to assignment, it becomes obvious that their algebraic abilities are so minimal that their schooling was monkey-see-monkey-do. They weren't able to consistently apply assignment. They guess, they take wild stabs, their minds are slippery little fishes that swim all over the place and they cannot consistently apply assignment. I suspect that the mental model of variables is lacking in their brains. I used to have a number of visualisation techniques for imagining variables, little holes that held objects, that sort of thing. I don't need the visualisation nowadays, but that visualisation seems to be a prerequisite to programming.</p>
<p>I also suspect that the people who taught memory tricks before computers became prevalent, could have been programmers. They had mental models and visualisation techniques and could consistently do assignments, even if it was shoving facts in imaginary boxes in their brains and pulling those facts back years later.</p>
<p>If you find someone who can handle the idea of assignment, and can apply it consistently, the next big barrier is iteration. So many people go to pieces with iteration. Again, the mental models appear to be missing, or are the wrong sort. They can visualise a static model of data storage, but allowing change to those mental models is beyond them. They cannot set up a mental framework of variables, and then be able to follow a loop and change the variables as the loop progresses.</p>
<p>I don't believe recursion is a barrier to the ability to program. I know many fine robust, plodding programmers who function quite adequately churning out reports and data entry screens who are completely unable to understand recursion. I don't believe that recursion is a fundamental programming skill, but I do believe that it's a big separator between the lower programmers and the higher programmers. I like having lower programmers around. They get to do the boring donkey work while I get to do the experimental and the new and lay the patterns for the lower programmers. But recursion, it also depends on a mental model understanding. The more I explore these ideas, the more I come to believe that the other answerers who said "mental models" were right. Programming is all about the ability to form mental models and be able to manipulate those models. Without that ability, you can't program.</p>
<p>Persistence and curiosity and logical thinking and all the other suggestions might be the separators between barely adequate programmers and great programmers, but they aren't the separators between non-programmers and programmers.</p>
http://stackoverflow.com/questions/91870/how-to-use-apostrophes-in-array-key/91924#919240Answer by codebunny for how to use apostrophes in array key?codebunny2008-09-18T12:08:04Z2008-09-18T12:08:04Z<p>It looked okay to me, so I tested it. It produces "Answer". It's working.</p>
<p>What I do is escape certain characters in variables so they don't cause problems. If I find ' or ", I escape them so they don't give me any problems. These variables usually come from user input, so while I sanitise them against nasties, I escape the characters at the same time.</p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/84112#841121Answer by codebunny for What is the single most effective thing you did to improve your programming skills?codebunny2008-09-17T14:55:02Z2008-09-17T14:55:02Z<p>There isn't one single thing that improves your programming skills. It's a never-ending process of refinement using many, many inputs.</p>
<p>Reading books, magazine articles, blogs, other code, lots and lots of other code both good and bad, doing peer code reviews, having your peers review your code, getting fired occasionally, changing jobs to improve your skills, thinking, trying new tasks, experimenting, absorbing new languages, accepting challenges, challenging yourself, accepting that you aren't the best, working to get better, acknowledging your failures and working to improve them.</p>
<p>Programmer, refine thyself.</p>
http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/83333#833331Answer by codebunny for What is the strangest programming language you have used?codebunny2008-09-17T13:41:20Z2008-09-17T13:41:20Z<p>Using Fortran to read data obtained from Datatakers, and produce HTML and graphs for an almost-realtime website. I wrote the comments in Latin, and when asked about it, I said I was documenting one dead language with another. Had to change jobs to escape.</p>
http://stackoverflow.com/questions/954164/choosing-between-java-and-python/954269#954269Comment by codebunny on Choosing between Java and Pythoncodebunny2009-06-05T15:27:09Z2009-06-05T15:27:09ZThe C code is extensive, but much of the bulk of the C is in handling the home-grown database. Going to Postgresql will remove about one third of the code. And much of the C will disappear as we will be able to dump our home-made libararies for Python/Java built-ins. We have worked on the C for 10 years, rewriting it to Ansi C standards, rewwriting it for new libraries we developed. We know this code so well, and have rewritten it so often, we are eager to rewrite it again to get the business moving faster, and kickstart our careers.http://stackoverflow.com/questions/954164/choosing-between-java-and-pythonComment by codebunny on Choosing between Java and Pythoncodebunny2009-06-05T04:16:53Z2009-06-05T04:16:53ZOur manager is technical, up to a point. He is heavily influenced by a developer in another group who has a vested interest in going Java. We want to move to unit testing, frameworks, and rapid development, while maintaining our accuracy and minimal bug count, and maintain our independence. We have examined Java and it is wordy and similar to C in many ways. We have begun working in Python and love the simplicity, the terseness, the rapid development. I wanted to know what the community thought.http://stackoverflow.com/questions/527238/need-disk-based-priority-queue-library-preferably-for-c/527269#527269Comment by codebunny on Need disk based priority queue library, preferably for Ccodebunny2009-02-09T07:01:16Z2009-02-09T07:01:16ZI agree it should be a WTF, but I had to change it. I've been thinking and I believe I'll go with your suggestion. Thanks. Long-term, we'll do something sensible (sure, we'll be given the time) but this will get me going now.http://stackoverflow.com/questions/527238/need-disk-based-priority-queue-library-preferably-for-c/527269#527269Comment by codebunny on Need disk based priority queue library, preferably for Ccodebunny2009-02-09T06:45:32Z2009-02-09T06:45:32Zmark records as null, yes. This might actually be the fastest way to do it, Minimal code changes. Nice.http://stackoverflow.com/questions/527238/need-disk-based-priority-queue-library-preferably-for-c/527269#527269Comment by codebunny on Need disk based priority queue library, preferably for Ccodebunny2009-02-09T06:44:02Z2009-02-09T06:44:02Zsqllite, yeah, good thought. Bound to be faster than rolling it ourselves.http://stackoverflow.com/questions/527238/need-disk-based-priority-queue-library-preferably-for-c/527269#527269Comment by codebunny on Need disk based priority queue library, preferably for Ccodebunny2009-02-09T06:34:51Z2009-02-09T06:34:51ZI'll edit the question to explain the tag a bit better.
Tell the truth, we do use file locking just in case.http://stackoverflow.com/questions/496713/how-do-i-correct-a-subversion-project-where-i-omitted-trunk/496734#496734Comment by codebunny on How do I correct a Subversion project where I omitted trunk?codebunny2009-01-30T19:17:55Z2009-01-30T19:17:55ZAnd it works. Thanks.http://stackoverflow.com/questions/179014/how-to-change-envelope-from-address-using-php-mail/179042#179042Comment by codebunny on How to change envelope from address using PHP mail?codebunny2008-10-07T15:30:29Z2008-10-07T15:30:29ZThat changes the From field in the body of the message, and does not change the envelope MAIL FROM.http://stackoverflow.com/questions/179014/how-to-change-envelope-from-address-using-php-mail/179027#179027Comment by codebunny on How to change envelope from address using PHP mail?codebunny2008-10-07T15:26:50Z2008-10-07T15:26:50ZThat changes the header in the body of the email and does not change the envelope MAIL FROM.http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102729#102729Comment by codebunny on What was your first home computer?codebunny2008-09-19T19:23:15Z2008-09-19T19:23:15ZLooks more like an Apple II+ CPU with an Apple III monitor.