User D4V360 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T11:13:17Zhttp://stackoverflow.com/feeds/user/3215http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/132233/what-to-use-for-xml-parsing-reading-in-php40What to use for XML parsing / reading in PHP4D4V3602008-09-25T09:00:10Z2009-11-22T15:26:13Z
<p>Unfortunatly I have to work in a older web application on a PHP4 server;
It now needs to parse a lot of XML for calling webservices (custom protocol, no SOAP/REST);</p>
<p>Under PHP5 I would use SimpleXML but that isn't available;
There is Dom XML in PHP4, but it isn't default any more in PHP5.</p>
<p>What are the other options?
I'm looking for a solution that still works on PHP5 once they migrate.</p>
<p>A nice extra would be if the XML can be validated with a schema.</p>
http://stackoverflow.com/questions/194542/programmers-career-path/194549#1945491Answer by D4V360 for Programmer's career pathD4V3602008-10-11T20:09:37Z2008-10-11T20:09:37Z<p>You should do what you like most,
You can try something different but keep the option open to switch back.
I did the management thingy a while back, I didn't like it and I switched back. Now I'm a happy programmer again.</p>
http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/191853#1918530Answer by D4V360 for Reading/Writing a MS Word file in PHPD4V3602008-10-10T15:25:06Z2008-10-10T15:25:06Z<p>I don't know what you are going to use it for, but I needed .doc support for search indexing; What I did was use a little commandline tool called "catdoc"; This transfers the contents of the Word document to plain text so it can be indexed. If you need to keep formatting and stuff this is not your tool.</p>
http://stackoverflow.com/questions/175993/what-is-the-best-way-to-migrate-data-in-django/176057#1760571Answer by D4V360 for What is the best way to migrate data in djangoD4V3602008-10-06T20:28:28Z2008-10-06T20:34:43Z<p>Look with manage.py sqlall what the parameters are for the new columns and manually add them in your database with Alter table statements. This way you don't have to redo your database; It requires some SQL knowledge though...</p>
<p>Take a look <a href="http://www.djangobook.com/en/1.0/chapter05/" rel="nofollow">here</a> (Scroll down to "Making Changes to a Database Schema")</p>
http://stackoverflow.com/questions/175545/worst-technobabble-youve-ever-heard/175646#17564623Answer by D4V360 for Worst technobabble you've ever heardD4V3602008-10-06T18:42:09Z2008-10-06T18:58:11Z<p>Customer: We want RSS for the news on our site.</p>
<p>Me: Ok, cool, we'll do that.</p>
<p>Few days later...</p>
<p>Me: The RSS is done.</p>
<p>Customer: Were can I find it? wait, what exactly IS rss?</p>
<p>Me: Rss is bla bla bla...</p>
<p>Customer: No, we don't need that, we need a newsletter.</p>
<p>:')</p>
http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175594#17559411Answer by D4V360 for What's the most egregious pop culture perversion of programming?D4V3602008-10-06T18:30:50Z2008-10-06T18:30:50Z<p>There was this episode of The X-Files (S01E07) called <a href="http://en.wikipedia.org/wiki/Ghost_in_the_Machine_(The_X-Files)" rel="nofollow">Ghost in the Machine</a>.
It was all about a AI computer that killed people to prevent shutting it down. The computer was able to put electricity on a door lock in a building when it detected people with the security camera. It was also able to crush a car by lowering the parking garage gate at the right moment. Oh yeah, it could also talk :)</p>
http://stackoverflow.com/questions/175488/us-phone-number-verification/175551#1755510Answer by D4V360 for US Phone Number VerificationD4V3602008-10-06T18:22:58Z2008-10-06T18:22:58Z<p>In Django there is a nice little contrib package called localflavor wich has a lot of country specific validation code, for example postal codes or phone numbers. You can look in the source too see how django handles these for the country you would like to use; For example: <a href="http://code.djangoproject.com/browser/django/tags/releases/1.0/django/contrib/localflavor/us/forms.py" rel="nofollow">US Form validation</a>. This can be a great recourse for information about countries you know little of as well.</p>
http://stackoverflow.com/questions/174535/google-maps-overlays/174634#1746340Answer by D4V360 for Google Maps OverlaysD4V3602008-10-06T14:57:33Z2008-10-06T14:57:33Z<p>I don't know how fare you are with your project but maybe you can take a look at <a href="http://www.geodjango.org" rel="nofollow">GeoDjango</a>? This modified Django release includes all kinds of tools to store locations; convert coordinates and display maps, the easy way. Offcourse you need some Python experience and a server to run it on, but once you've got the hang of Django it works fast and good.</p>
<p>If you just want a solution for your problem try grouping your results at lower zoom levels, a good example of this implementation can be found <a href="http://www.moviq.nl/zoeken/woningen?q=Amsterdam" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/173955/what-makes-you-leave-the-job-after-two-years/174589#1745892Answer by D4V360 for What makes you leave the job after two years?D4V3602008-10-06T14:45:37Z2008-10-06T14:45:37Z<ul>
<li>2006 - Wanted to make something i'm proud of</li>
<li>2008 - Company didn't made top notch stuff, moved for more innovation</li>
<li>2008 - Company didn't made top notch stuff, moved to a startup with the newest techniques</li>
</ul>
http://stackoverflow.com/questions/26763/when-do-you-decide-to-walk/174136#1741361Answer by D4V360 for When do you decide to walk?D4V3602008-10-06T12:55:06Z2008-10-06T12:55:06Z<p>If you:</p>
<ul>
<li>Don't learn much new stuff anymore</li>
<li>Don't enjoy going to work anymore (if you don't, take a chance! enough nice jobs out there!)</li>
<li>You have better offers laying around with a nicer work environment</li>
</ul>
<p>Actualy it quite depends on your personal situation; With a family to feed the step is a lot higher. Most important is that you enjoy your job, and if you don't please look out for something new.</p>
http://stackoverflow.com/questions/173727/how-to-save-encrypted-data-in-cookie-using-php/173731#1737315Answer by D4V360 for How to save encrypted data in cookie (using php)?D4V3602008-10-06T09:55:35Z2008-10-06T09:55:35Z<p>If you don't want your users to read it don't put it in a cookie;
In stead use Session's with a cookie that stays for a longer time. This way the data stays on the server and not at the computer of the user.</p>
<p><a href="http://www.paulsrichards.com/2008/07/29/persistent-sessions-with-php/" rel="nofollow">See this article about persistant sessions</a></p>
http://stackoverflow.com/questions/166744/best-linux-distribution-for-running-mono/166754#1667541Answer by D4V360 for Best Linux distribution for running MonoD4V3602008-10-03T13:09:54Z2008-10-03T13:09:54Z<p>If you are a linux beginner I would start with Ubuntu Linux Server;
I installed Mono on a Gentoo server a couple of weeks ago, just to find out that it can't run precompiled ASP.net sites :') You be warned, Linux ain't made for .NET. You should be able to set up the server in a day or 2, configuring Mono to work might take some time...</p>
http://stackoverflow.com/questions/165999/zend-php5-certification-does-it-matter/166018#1660181Answer by D4V360 for Zend PHP5 Certification, does it matter?D4V3602008-10-03T07:43:39Z2008-10-03T07:43:39Z<p>It won't help you very much on finding a PHP job;
But it will help you if you want to know every function, syntax and what it does without having to look it up.</p>
<p>I did the PHP4 certification a couple of years ago; Nobody ever said or asked something about it in the interviews I had.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/163894#1638943Answer by D4V360 for PHP templates - with PHPD4V3602008-10-02T18:39:07Z2008-10-02T18:39:07Z<p>It ain't pure PHP (the templating syntax then), but it works realy nice; <a href="http://www.smarty.net" rel="nofollow">Smarty</a>.</p>
<p>For loops you can do:</p>
<pre><code>
<ul>
{foreach from=$var name=loop item=test}
{if $smarty.foreach.loop.first}<li>This is the first item</li>{/if}
<li class="{cycle values="odd,even"}">{$var.name}</li>
{if $smarty.foreach.loop.last}<li>This was the last item</li>{/if}
{/foreach}
</ul>
</code></pre>
http://stackoverflow.com/questions/148538/what-is-a-great-tool-for-remote-pair-development/148577#1485770Answer by D4V360 for What is a great tool for remote pair development?D4V3602008-09-29T13:10:08Z2008-09-29T13:10:08Z<p>If you program over a SSH connection in a terminal (for example with VIM) a good solution is to use screen. User 1 logs in with the same user as user 2; User 1 start screen (by typing in "screen" ;)) and user 2 types in "screen -x". Now you are both sharing the same screen and you can work together in the shell, both controlling the input. Offcourse this doesn't support VNC features but it works very quick for programming.</p>
http://stackoverflow.com/questions/148251/css-centering-tricks/148374#1483745Answer by D4V360 for CSS centering tricksD4V3602008-09-29T11:52:47Z2008-09-29T11:52:47Z<p>Stick with Margin: 0 auto; for horizontal alignment;
If you need vertical alignment as well use position: absolute; top: 50%; margin-top: -(width/2)px; Be aware though, If your container has more width than your screen a part of it will fall off screen on the left side using the Position: absolute method.</p>
http://stackoverflow.com/questions/146505/can-someone-recommend-a-reliable-cvs-or-svn-hosting-service/146525#1465250Answer by D4V360 for Can someone recommend a reliable CVS or SVN hosting service?D4V3602008-09-28T19:18:01Z2008-09-28T19:18:01Z<p>I use <a href="http://www.webfaction.com/" rel="nofollow">webfaction</a> for my hosting, It not only supports Subversion, it also supports allmost every available open source webhosting platform (PHP, Django, Ruby on Rails, Zope, Plone, etc). It has some great plans with your own place on their servers; Just like virtual hosting; only without needing to keep it up-to-date.</p>
http://stackoverflow.com/questions/134845/href-for-javascript-links-or-javascriptvoid0/135248#1352489Answer by D4V360 for Href for Javascript links: "#" or "javascript:void(0)"?D4V3602008-09-25T18:59:47Z2008-09-25T18:59:47Z<p>Neither if you ask me;</p>
<p>If your "link" has the sole purpose of running some javascript it doesn't qualify as a link; rather a piece of text with a javascript function coupled to it. I would recommend to use a <span> tag with an onclick handler attached to it and some basic CSS to immitate a link. Links are made for navigation, and if your javascript isn't for navigation it should not be an <a> tag.</p>
<p>Example:</p>
<pre>
<code>
<style type="text/css">
.jsAction {
cursor: pointer;
color: #00f;
text-decoration: underline;
}
</style>
<p>I wanna call a JS function <span class="jsAction" onclick="callFunction();">here</span></p>
</code></pre>
http://stackoverflow.com/questions/135044/how-much-should-i-pay-an-intern-while-still-in-college/135142#1351421Answer by D4V360 for How much should I pay an intern while still in college?D4V3602008-09-25T18:40:46Z2008-09-25T18:40:46Z<p>I think the only way these days to get good people at your software company is by recruiting them early; Internships are a great way to do this. Most important is that they like what they do; Have a project they can work on and be proud of at the end of their internship and a reasonable salary. </p>
<p>The reason you take interns is so they can stay with the company if they are good employee's. If you underpay them and threat them like interns (by giving them "make coffee" and "find red swingline stapler" tasks) they certainly won't stay with your company and you will never get good new employee's.</p>
<p>Start them off just under a basic programmer salery so they make a nice piece of money but you can still do them a good offer with a nice raise when they are done with their internship. No way they will resign if they like their jobs.</p>
http://stackoverflow.com/questions/130771/what-tips-do-you-have-to-keep-developers-happy/135103#1351032Answer by D4V360 for What tips do you have to keep developers happy?D4V3602008-09-25T18:32:52Z2008-09-25T18:32:52Z<p>There are a lot of thing here you should do;
Here is a list what not to do:</p>
<ul>
<li>Block off access to certain sites / ports (like messenger)</li>
<li>Monitor your employees constantly and confront them with the fact that they are not "working" all the time</li>
<li>Publicly embarace your employees buy telling them what they do wrong in front of their collegue's.</li>
<li>Buy the cheapest pc's you can get with Vista licenses for your employees; no choises for them.</li>
<li>Set the deadlines so tight that every day is a rush to be done</li>
<li>If a task is done well reward your employees with a old legacy crap-project to finish</li>
<li>Accept all client requests (like create this superduper webshop, I need it tomorrow) and let your employees deal with it.</li>
<li>Say your company is inovative but let your employees do all the inovative stuff in their own time</li>
<li>Shout at your developers when a too tight deadline hasn't been made</li>
<li>Saddle up your employee's with work they hate (I hate to work with Flash, guess who get's all of the Flash jobs)</li>
<li>Say you are willing to change and make things better but don't spend any time or money on it</li>
<li>Make your employees think the yare much less good at what they do so you don't have to pay them the same as your rival company's.</li>
</ul>
<p>These are things I experience every day at my current job; Fortunatly for me my contract ends by next week and I'm out of there. Don't let this happend to you! The most important thing in a software company is to keep your employees happy all the time; Give them no reason too leave; the market is too small for that.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127804#1278044Answer by D4V360 for PHP Optimization TipsD4V3602008-09-24T15:17:10Z2008-09-24T15:17:10Z<p>There are dozens of small preformance tweaks;
For example:</p>
<p>$text = 'test'; is faster as $text = "test"; (because the double quote's parse variables)
BUT: $text = "testing: $text"; is faster as $text = 'testing: ' . $text;</p>
http://stackoverflow.com/questions/94101/how-to-type-faster/94472#944720Answer by D4V360 for How to type fasterD4V3602008-09-18T17:00:59Z2008-09-18T17:00:59Z<p>IRC-ing a lot helpen a great deal with me;
Especially playing those Trivia like games where the fastest one gets the points.
You can also try "typespeed" on Linux.
If you really need more speed and you think you've mastered the technique you can also consider using the <a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard" rel="nofollow">Dvorak keyboard layout</a>; It will help you type fast but you really need to adapt to it.</p>
http://stackoverflow.com/questions/91846/rails-or-django-or-something-else/91868#918681Answer by D4V360 for Rails or Django? (or something else?)D4V3602008-09-18T11:56:15Z2008-09-18T11:56:15Z<p>I'm a PHP developer as well and I really like Django;
I have no experience with Ruby on Rails though;</p>
<p>You can also use a PHP Framework offcourse, a good candidate is <a href="http://www.symfony-project.org" rel="nofollow">Symfony</a></p>
http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/91847#918470Answer by D4V360 for Confessions of your worst WTF Moment. (What not to do.)D4V3602008-09-18T11:52:23Z2008-09-18T11:52:23Z<p>One time is was helping out a new collegue with checking in his code to SVN;
He had just build a new module he was working on for the last 2 months and now he wanted it in Subversion. </p>
<p>So I checked in his module, removed the original files and checked the directory out again; Then the aweful truth hit me; I just checked in a symlink and removed the original directory! </p>
<p>Lucky for me the network admin could recover the backup home directory of the user from that night but all the changes he did that day were gone.</p>
<p>Moral of the story: Use SVN from the beginning and doublecheck if you are deleting something :)</p>
http://stackoverflow.com/questions/82653/is-there-any-list-of-blog-engines-written-in-django/82753#827530Answer by D4V360 for Is there any list of blog engines, written in Django?D4V3602008-09-17T12:46:38Z2008-09-17T12:46:38Z<p>Django's powerful admin interface and easy ORM makes it a 30 minute job to build a blog that propably fits your needs; Why look for a 3rd party product when you can make it yourself very quickly?</p>
http://stackoverflow.com/questions/70587/what-are-your-most-important-console-aliases/70646#706460Answer by D4V360 for What are your most important console aliases?D4V3602008-09-16T09:16:06Z2008-09-16T09:16:06Z<pre><code>
alias ll="ls -al --color=auto"
</code></pre>
<p>The first thing I do when entering a new server; Gives much better readable dirlistings :)</p>
http://stackoverflow.com/questions/59105/are-you-fluent-in-unicode-yet/59150#591506Answer by D4V360 for Are you fluent in Unicode yet? D4V3602008-09-12T14:38:56Z2008-09-12T14:44:14Z<p>Since I read the Joel article and some other I18n articles I always kept a close eye to my character encoding; And it actually works if you do it consistantly. If you work in a company where it is standard to use UTF-8 and everybody knows this / does this it will work.</p>
<p>Here some interesting articles (besides Joel's article) on the subject:</p>
<ul>
<li><a href="http://www.tbray.org/ongoing/When/200x/2003/04/06/Unicode" rel="nofollow">http://www.tbray.org/ongoing/When/200x/2003/04/06/Unicode</a></li>
<li><a href="http://www.tbray.org/ongoing/When/200x/2003/04/26/UTF" rel="nofollow">http://www.tbray.org/ongoing/When/200x/2003/04/26/UTF</a></li>
</ul>
<p>A quote from the first article; Tips for using Unicode:</p>
<ul>
<li>Embrace Unicode, don't fight it; it's probably the right thing to do, and if it weren't you'd probably have to anyhow.</li>
<li>Inside your software, store text as UTF-8 or UTF-16; that is to say, pick one of the two and stick with it.</li>
<li>Interchange data with the outside world using XML whenever possible; this makes a whole bunch of potential problems go away.</li>
<li>Try to make your application browser-based rather than write your own client; the browsers are getting really quite good at dealing with the texts of the world.</li>
<li>If you're using someone else's library code (and of course you are), assume its Unicode handling is broken until proved to be correct.</li>
<li>If you're doing search, try to hand the linguistic and character-handling problems off to someone who understands them.</li>
<li>Go off to Amazon or somewhere and buy the latest revision of the printed Unicode standard; it contains pretty well everything you need to know.</li>
<li>Spend some time poking around the Unicode web site and learning how the code charts work.</li>
<li>If you're going to have to do any serious work with Asian languages, go buy the O'Reilly book on the subject by Ken Lunde.</li>
<li>If you have a Macintosh, run out and grab Lord Pixel's Unicode Font Inspection tool. Totally cool.</li>
<li>If you're really going to have to get down and dirty with the data, go attend one of the twice-a-year Unicode conferences. All the experts go and if you don't know what you need to know, you'll be able to find someone there who knows.</li>
</ul>
http://stackoverflow.com/questions/58825/javascript-syntax-highlighting-in-vim/58840#588400Answer by D4V360 for Javascript syntax highlighting in vimD4V3602008-09-12T12:42:16Z2008-09-12T12:42:16Z<p>Closing the file and reopening it usually helps;
But i'm interested in a real solution as well!</p>
http://stackoverflow.com/questions/58694/how-do-i-html-encode-all-the-output-in-a-web-application/58773#587730Answer by D4V360 for How do I HTML Encode all the output in a web application?D4V3602008-09-12T11:57:59Z2008-09-12T11:57:59Z<p>A nice way I used to escape all user input is by writing a modifier for smarty wich escapes all variables passed to the template; except for the ones that have |unescape attached to it. That way you only give HTML access to the elements you explicitly give access to. </p>
<p>I don't have that modifier any more; but about the same version can be found here:</p>
<p><a href="http://www.madcat.nl/martijn/archives/16-Using-smarty-to-prevent-HTML-injection..html" rel="nofollow">http://www.madcat.nl/martijn/archives/16-Using-smarty-to-prevent-HTML-injection..html</a></p>
<p>In the new Django 1.0 release this works exactly the same way, jay :)</p>
http://stackoverflow.com/questions/58584/in-vim-what-is-the-best-way-to-select-delete-or-comment-out-large-portions-of/58586#585862Answer by D4V360 for In Vim, what is the best way to select, delete, or comment out large portions of multi-screen text?D4V3602008-09-12T10:01:37Z2008-09-12T10:01:37Z<p>Use Shift+V to go in visual mode, then you can select lines and delete / change them.</p>
http://stackoverflow.com/questions/1495595/what-is-the-best-way-to-post-a-date-time-into-a-django-view/1495825#1495825Comment by D4V360 on What is the best way to post a date/time into a django view?D4V3602009-10-02T20:29:49Z2009-10-02T20:29:49ZI would consider using a GET instead of a POST;
It will screw up your clean URL a bit but at least it's copy/pastablehttp://stackoverflow.com/questions/1493874/django-accessing-the-requestcontext-from-within-a-custom-filter/1511457#1511457Comment by D4V360 on Django - accessing the RequestContext from within a custom filterD4V3602009-10-02T20:01:55Z2009-10-02T20:01:55ZHe is; Look at what he is doing, that filter describes exactly what you are telling.http://stackoverflow.com/questions/175462/places-where-computers-are-used-correctly-in-movies/175484#175484Comment by D4V360 on Places where computers are used correctly in moviesD4V3602008-10-06T18:16:29Z2008-10-06T18:16:29ZPC Load Letter, WTF DOES THAT MEAN? That movie is brilianthttp://stackoverflow.com/questions/163834/php-templates-with-php/163894#163894Comment by D4V360 on PHP templates - with PHPD4V3602008-10-02T19:26:37Z2008-10-02T19:26:37ZAnd why is it one of the worst public libraries?http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha/163043#163043Comment by D4V360 on What is your (least) favorite syntax gotcha?D4V3602008-10-02T15:49:32Z2008-10-02T15:49:32Zwhat? I don't see any problem here, am I blind?http://stackoverflow.com/questions/156872/how-does-one-create-an-api/156977#156977Comment by D4V360 on How does one create an API?D4V3602008-10-01T19:32:02Z2008-10-01T19:32:02ZTrue, but it gives a good idea of what transport layers you can use for your webservice; I agree, the REST implementation of Flickr is poor but it gives a nice idea.http://stackoverflow.com/questions/127765/php-optimization-tips/127804#127804Comment by D4V360 on PHP Optimization TipsD4V3602008-09-24T21:45:41Z2008-09-24T21:45:41ZJust try it out with a microtime check; You'll see, parsing a string is faster as concatenating.http://stackoverflow.com/questions/62567/ignore-case-in-python-stringsComment by D4V360 on Ignore case in Python stringsD4V3602008-09-15T13:04:05Z2008-09-15T13:04:05ZPhp Equivalent: strcasecmp - <a href="http://nl3.php.net/strcasecmp" rel="nofollow">nl3.php.net/strcasecmp</a>