User Gilles - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T18:20:33Zhttp://stackoverflow.com/feeds/user/10024http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1170266/list-as-a-named-parameter-in-jpa-query-using-toplink0List as a named parameter in JPA query using TopLinkGilles2009-07-23T07:46:37Z2009-10-28T15:00:04Z
<p>In the following JPA query, the :fcIds named parameter needs to be a list of integer values:</p>
<pre><code>@NamedQuery(name = "SortTypeNWD.findByFcIds", query = "SELECT s FROM SortTypeNWD s WHERE s.sortTypeNWDPK.fcId IN (:fcIds)")
</code></pre>
<p>Quite logically, this is what is done when the named query is called:</p>
<pre><code>Query findByDatesPlFcIds = em.createNamedQuery("SortTypeNWD.findByFcIds");
findByDatesPlFcIds.setParameter("fcIds", fcIds);
</code></pre>
<p>Where the variable fcIds is an ArrayList containing integers.</p>
<p>All the above code works fine with Hibernate but doesn't with TopLink:</p>
<pre><code>Caused by: java.lang.IllegalArgumentException: You have attempted to set a value of type class java.util.ArrayList for parameter fcIds with expected type of int from query string SELECT s FROM SortTypeNWD s WHERE s.sortTypeNWDPK.fcId IN (:fcIds).
</code></pre>
<p>Is there a workaround to use a List as a named parameter in TopLink? Can the type of the named parameter be forced?</p>
http://stackoverflow.com/questions/1205247/toplink-java-persistency-mystery-time-sink0Toplink/java persistency mystery time sinkGilles2009-07-30T08:40:27Z2009-10-03T14:00:03Z
<p>I have a servlet calling a session bean via a local interface. There is a 3 second pause between the last statement of the session method and the statement following that method call in the servlet. </p>
<p>I have identified what statement in the session bean causes the extra delay upon method return, but I just have no idea why there is such a pause and what is happening:</p>
<p><strong>The session bean method:</strong></p>
<pre><code>public void getXMLByDatesPlCtry(PrintWriter out, Date dateStart, Date dateEnd, int plId, String ctry) throws ParserConfigurationException {
Query findCtry = em.createNamedQuery("Ctry.findByCtry");
findCtry.setParameter("ctry", ctry);
Ctry country = (Ctry) findCtry.getSingleResult();
findByDatesPlFcIds = em.createNamedQuery("SortTypeInv.findByDatesPlCtry");
findByDatesPlFcIds.setParameter("dateStart", dateStart);
findByDatesPlFcIds.setParameter("dateEnd", dateEnd);
findByDatesPlFcIds.setParameter("plId", plId);
findByDatesPlFcIds.setParameter("ctry", country);
inventoryList = findByDatesPlFcIds.getResultList(); // statement causing pain
logger.warning("about to return");
}
</code></pre>
<p><strong>The servlet calling the session bean:</strong></p>
<pre><code>protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
[...]
sortTypeInvFacade.getXMLByDatesPlCtry(out, lastSunday.getTime(), yesterday.getTime(), pl_id, request.getParameter("ctry"));
Logger.getLogger(InventoryServlet.class.getName()).warning("just received");
} catch (ParserConfigurationException ex) {
Logger.getLogger(InventoryServlet.class.getName()).log(Level.SEVERE, null, ex);
} finally {
out.close();
}
}
</code></pre>
<p><strong>So the 3 seconds pause happens between the "about to return" log message in the session bean and the "just received" log message in the servlet.</strong> It only does that long pause if at some stage the incriminating statement (gathering data into a collection) is called. What's really surprising is that the wasted time is not spent building the collection, but rather upon method return. And in this instance nothing is returned by the method.</p>
<p>Whether the collection is a private variable of the session class or a local variable doesn't change anything. Same goes with making the session bean stateful or stateless.</p>
<p>What is happening? How can that long pause be avoided?</p>
http://stackoverflow.com/questions/166132/maximum-length-of-the-textual-representation-of-an-ipv6-address4Maximum length of the textual representation of an IPv6 address? [closed]Gilles2008-10-03T09:51:51Z2009-09-21T15:19:42Z
<p>I want to store the data returned by <code>$_SERVER["REMOTE_ADDR"]</code> in PHP into a DB field, pretty simple task, really. The problem is that I can't find any proper information about the maximum length of the <strong>textual representation</strong> of an IPv6 address, which is what a webserver provides through <code>$_SERVER["REMOTE_ADDR"]</code>. </p>
<p>I'm not interested in converting the textual representation into the 128 bits the address is usually encoded in, I just want to know how many characters maximum are needed to store any IPv6 address returned by <code>$_SERVER["REMOTE_ADDR"]</code>.</p>
http://stackoverflow.com/questions/90758/fastest-way-to-determine-image-resolution-and-file-type-in-php-or-unix-command-li1Fastest way to determine image resolution and file type in PHP or Unix command line?Gilles2008-09-18T07:43:10Z2009-02-17T18:57:24Z
<p>I'm currently using ImageMagick to determine the resolution of images uploaded to the website. By calling ImageMagick's "identify" on the command line it takes about 0.42 seconds to determine a 1MB JPEG's resolution along with the fact that it's a JPEG. I find that a bit slow.</p>
<p>Using the Imagick PHP library is even slower as it attemps to load the whole 1MB in memory before doing any treatment to the image (in this case, simply determining its size and type).</p>
<p>Are there any solutions to speed up this process of determining which file type and which image resolution an arbitrary image file has? I can live with it only supporting JPEG and PNG. It's important to me that the file type is determined by looking at the file's headers and not simply the extension.</p>
<p><strong>Edit: The solution can be a command-line tool UNIX called by PHP, much like the way I'm using ImageMagick at the moment</strong></p>
http://stackoverflow.com/questions/233621/os-x-file-duplication-converts-text-encoding-by-default0OS X file duplication converts text encoding by defaultGilles2008-10-24T13:54:32Z2008-10-25T21:37:38Z
<p>All the PHP files in my workspace are encoded in <strong>Unicode (UTF-8, no BOM)</strong>. I often duplicate an existing source file to use as a base for a new script. Invariably (with Path Finder or the original Finder), OS X will convert the encoding of the duplicate file to <strong>Western (Mac OS Roman)</strong>.</p>
<p>Is there any way to make OS X behave and not convert the text encoding when duplicating a text file? Or make it use a specific text encoding (other than Western!) by default for all files with .php extension?</p>
http://stackoverflow.com/questions/229269/why-is-post-sometimes-empty-when-a-textarea-is-posted-in-php/229280#2292800Answer by Gilles for Why is _POST sometimes empty when a textarea is posted in PHPGilles2008-10-23T10:42:18Z2008-10-23T10:42:18Z<p>It sounds like an Apache or Apache/PHP integration problem. If $_POST is empty it would hint that the http server is not giving the POST information to PHP. If I were you I'd investigate the Apache configuration.</p>
http://stackoverflow.com/questions/168114/best-flash-audio-video-interactivity-server/175757#1757574Answer by Gilles for Best Flash Audio/Video + Interactivity server?Gilles2008-10-06T19:16:43Z2008-10-07T14:03:40Z<p>Give <a href="http://www.wowzamedia.com/" rel="nofollow">Wowza</a> a try! I've only used it for webcam recording, but the experience was very seamless, a far cry from Red5. Plus as a developer you can use the full Wowza for free AFAIK, so you don't have to take my word for it. It's easy to install, they have good code samples, it really gave me a good impression.</p>
<p>Another interesting fact is that Wowza is made by ex-Adobe/Macromedia engineers who used to work on FMS.</p>
http://stackoverflow.com/questions/98669/scriptaculous-not-working-with-the-latest-prototype/170280#1702800Answer by Gilles for Scriptaculous not working with the latest Prototype.Gilles2008-10-04T12:47:44Z2008-10-04T12:47:44Z<p>Get the latest script.aculo.us version driectly from their source code repository. The zipped version provided on their website is ancient. I'm running the latest script.aculo.us taken from their repo last week with the latest Prototype (1.6.0.3) without a glitch.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168519#1685193Answer by Gilles for What's your #1 way to be careful with a live database?Gilles2008-10-03T19:32:43Z2008-10-03T19:32:43Z<p>Maybe consider not using any deletes or drops at all. Or maybe reduce the user permissions so that only a special DB user can delete/drop things.</p>
http://stackoverflow.com/questions/168303/how-to-enforce-locking-workstation-when-leaving-is-this-important/168457#1684572Answer by Gilles for How to enforce locking workstation when leaving? Is this important?Gilles2008-10-03T19:19:43Z2008-10-03T19:19:43Z<p>I used to work at a very large corp where the workstation required your badge to be inserted inside it to work. You weren't allowed to move in the building (you needed the badge to open the doors anyway) without that badge on you. Taking the badge out of the workstation's smartcard reader logged you out automatically. </p>
<p>Off topic but even neater, the workstations were more like "networkstations" (note that it is not a necessity to use the system I've just described, though) and the badge held your session. Pop it into another workstation in another building and here's your session just as you left it when you pulled the badge on the other computer.</p>
<p>So they basically solved the issue by physically forcing people to log off their workstation, which I think is the best way to enforce any kind of security-critical policy. People forget, it's human nature.</p>
http://stackoverflow.com/questions/167106/how-do-i-limit-which-countries-can-view-my-website-php/167115#16711511Answer by Gilles for How do I limit which countries can view my website ( PHP ) Gilles2008-10-03T14:24:04Z2008-10-03T14:24:04Z<p>Use an IP geolocation database (some are free) and $_SERVER["REMOTE_ADDR"] to get the visitor's IP address.</p>
<p><a href="http://www.maxmind.com/app/geolitecity" rel="nofollow">http://www.maxmind.com/app/geolitecity</a> is a free (less accurate) version of a commercial one.</p>
http://stackoverflow.com/questions/166620/geolocated-version-control7Geolocated version control?Gilles2008-10-03T12:40:34Z2008-10-03T14:05:28Z
<p>Much like it's possible to geotag pictures, I wonder if there is a way to automatically geolocate the code associated with a commit - or any changes - in a version control system like SVN? </p>
<p>I couldn't find any information about this and I don't know if for example SVN stores the IP address used by the committers, which in most situations would be enough to differentiate the different places the changes were made from.</p>
<p>Even in a situation where I use a repository on my own I would find it useful to know which portions of code were written at home, which at the office and which while traveling. That way one could maybe make some statistics about their performance depending on where they are.</p>
<p>So do you know any tool or plugin that lets one do that? </p>
<p>Using a different user account for each location wouldn't be a satisfactory solution, I'm really looking for something that would store the IP or use whatever other technique there might be to locate a user at the time he/she's doing changes.</p>
http://stackoverflow.com/questions/166899/language-showdown-convert-string-of-digits-to-array-of-integers/166927#1669276Answer by Gilles for Language showdown: Convert string of digits to array of integers?Gilles2008-10-03T13:42:11Z2008-10-03T13:42:11Z<pre><code><?php
$array = str_split("124890");
?>
</code></pre>
<p>It's hard to beat a built-in method :)</p>
http://stackoverflow.com/questions/166623/php-utf8-problem/166640#1666403Answer by Gilles for PHP utf8 problemGilles2008-10-03T12:45:54Z2008-10-03T13:33:50Z<p>First of all, and I'll get to UTF-8 later if nobody else answers, iterating like you are is a very bad way to search through an array. PHP has built-in functions just for that:</p>
<p><a href="http://fr.php.net/array_search" rel="nofollow">http://fr.php.net/array_search</a></p>
<p>So you might want to give that a try and see if it helps with your problem. Also make sure that the PHP file you're writing is also encoded in UTF-8!</p>
<p><strong>UPDATE:</strong></p>
<p>Try the following code, which works just fine on my server. If it doesn't work check that PHP is configured to work with UTF-8 by default, or add the necessary ini_set calls.</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head><title>norvegian utf-8 test</title>
<meta http-equiv="Content-type" value="text/html; charset=UTF-8" />
</head>
<body>
<?php
function isSpecial($char) {
$special_chars = array("æ", "ø", "å", "か");
return (array_search($char, $special_chars) !== false);
}
if (isset($_REQUEST["char"])) {
echo $_REQUEST["char"].(isSpecial($_REQUEST["char"])?" (true)":" (false)");
}
?>
<form method="POST" accept-charset="UTF-8">
<input type="text" name="char">
<input type="submit" value="submit">
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/166132/maximum-length-of-the-textual-representation-of-an-ipv6-address/166143#1661436Answer by Gilles for Maximum length of the textual representation of an IPv6 address?Gilles2008-10-03T09:56:32Z2008-10-03T09:56:32Z<p>Answered my own question: </p>
<blockquote>
<p>IPv6 addresses are normally written as eight groups of four hexadecimal digits, where each group is separated by a colon (:).</p>
</blockquote>
<p>So that's 39 characters max.</p>
http://stackoverflow.com/questions/115728/working-in-a-startup-or-a-small-company/133512#1335120Answer by Gilles for Working in a Startup (or a small company)Gilles2008-09-25T14:00:40Z2008-09-25T14:00:40Z<p>I think that the difference is irrelevant, the people are key. Not to mention that some big companies are structured in a way that some programmers only work on product-specific small teams with an atmosphere similar to startups, yet surrounded by the framework of the big corp.</p>
<p>Work for people who treat you well and don't look like they're heading into a wall. I've worked for big and small companies alike who took very bad decisions/had retarded business plans and wouldn't listen. A single very stubborn project manager can be just as damaging as the administrative complications of many people having to share power in a hierarchy-oriented big company.</p>
<p>While there seems to be quite a correlation between startups and management assuming that they have the right to force bad working conditions on their employees, I've experienced great and bad working conditions in both big and small shops.</p>
<p>To me the ideal company would be one run by smart people who have experience in delivering quality products. It doesn't matter if it's their first shot at running a company, as long as they have experience in <em>making great products</em>. I avoid people fresh out of school with "the best idea ever" like the plague. </p>
<p>Actually I've been approached by even worse once, a guy out of school still living with his parents who wanted to "have smart people on his team" (unpaid) to "build the next google". He didn't have any idea of a product or service though. He just wanted to be <strong>the next google</strong>. While this is a pathetic extreme, unrealistic goals and lack of focus are indeed signs of a bad place to work for, big or small.</p>
http://stackoverflow.com/questions/114814/count-non-blank-lines-of-code-in-bash/114870#1148707Answer by Gilles for count (non-blank) lines-of-code in bashGilles2008-09-22T13:28:48Z2008-09-22T13:28:48Z<pre><code>#!/bin/bash
find . -path './pma' -prune -o -path './blog' -prune -o -path './punbb' -prune -o -path './js/3rdparty' -prune -o -print | egrep '\.php|\.as|\.sql|\.css|\.js' | grep -v '\.svn' | xargs cat | sed '/^\s*$/d' | wc -l
</code></pre>
<p>The above will give you the total count of lines of code (blank lines removed) for a project (current folder and all subfolders recursively).</p>
<p>In the above "./blog" "./punbb" "./js/3rdparty" and "./pma" are folders I blacklist as I didn't write the code in them. Also .php, .as, .sql, .css, .js are the extensions of the files being looked at. Any files with a different extension are ignored.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/106027#1060270Answer by Gilles for What was your first home computer?Gilles2008-09-19T22:05:21Z2008-09-19T22:05:21Z<p>Thomson MO-6. There's very little chance that you know what this machine if you didn't live in France at the time. Awesome computer in any case:</p>
<p><img src="http://www.freemind-tobe.com/content/computers/Thomson-MO6.jpg" alt="alt text" /></p>
<p>As you can see it used standard audio tapes for storing the software. Copying one was as easy as having a double tape deck (which wasn't that common at the time) and making a copy of the audio track. I think it was a bit of a problem for all the software vendors at the time :)</p>
http://stackoverflow.com/questions/100084/what-is-a-good-gui-text-editor-for-the-mac/100096#10009610Answer by Gilles for What is a good GUI text editor for the Mac?Gilles2008-09-19T06:46:31Z2008-09-19T06:54:25Z<p><a href="http://www.barebones.com/products/bbedit/" rel="nofollow">BBEdit</a> is the best editor I know, hands down, but it's not free. Well worth the money if you spend most of your day in a text editor.</p>
<p>On the free side the best I've used is most likely <a href="http://www.barebones.com/products/textwrangler/" rel="nofollow">TextWrangler</a>, unsurprisingly it's created by the same people as BBEdit.</p>
http://stackoverflow.com/questions/97198/webdev-what-is-the-best-way-to-do-a-multi-file-upload/97205#972056Answer by Gilles for WebDev: What is the best way to do a multi-file upload?Gilles2008-09-18T21:31:28Z2008-09-18T21:31:28Z<p><a href="http://www.swfupload.org" rel="nofollow">swfupload</a>, the best tool I know that lets you do that. Simple, easy to use and even has a fallback mechanism for the 1% web users that don't have flash 8+.</p>
http://stackoverflow.com/questions/96898/what-is-the-hardest-technical-question-you-have-had-to-answer-in-an-interview/97191#971913Answer by Gilles for What is the hardest technical question you have had to answer in an interview?Gilles2008-09-18T21:29:31Z2008-09-18T21:29:31Z<p>I've had quite tricky ones when interviewing with Google but unfortunately this is all covered by NDA :( I'm afraid it will be the same for others who've had hard/interesting interview questions with big companies.</p>
<p>Anyway, Facebook's <a href="http://www.facebook.com/jobs_puzzles/index.php" rel="nofollow">preliminary puzzles</a> seem quite hard in my opinion. I think that they use those to screen candidates. </p>
<p>Google's screening questions on the other hand were way way easier. I guess it's simply different recruiting strategies.</p>
http://stackoverflow.com/questions/97065/how-do-you-help-a-non-technical-client-or-boss-understand-why-something-takes-so/97110#971100Answer by Gilles for How do you help a non-technical client or boss understand why something takes so long?Gilles2008-09-18T21:21:29Z2008-09-18T21:21:29Z<p>Use analogies to describe the underlying tasks that take time. The more you practice the "explain technical things to grandma in a language she understands" the easier it will get.</p>
http://stackoverflow.com/questions/96501/perks-for-new-programmers/97066#9706622Answer by Gilles for Perks for new programmersGilles2008-09-18T21:16:10Z2008-09-18T21:16:10Z<p>Invite your whole team to the restaurant of their choice every Friday for lunch. A former boss of mine used to do just that and it really helped team bonding. </p>
<p>If budget doesn't allow it, you can do it once every two weeks or once a month. But think of the value of having closer team members.</p>
http://stackoverflow.com/questions/19995/is-there-some-way-to-push-data-from-web-server-to-browser/97038#970382Answer by Gilles for Is there some way to PUSH data from web server to browser?Gilles2008-09-18T21:13:21Z2008-09-18T21:13:21Z<p>An interesting alternative to Comet is to use sockets in Flash. </p>
http://stackoverflow.com/questions/92985/using-drools-in-a-heavy-batch-process/96996#969962Answer by Gilles for Using Drools in a heavy batch processGilles2008-09-18T21:08:33Z2008-09-18T21:08:33Z<p>I haven't worked with the latest version of Drools (last time I used it was about a year ago), but back then our high-load benchmarks proved it to be utterly slow. A huge disappointment after having based much of our architecture on it.</p>
<p>At least something good I remember about drools is that their dev team was available on IRC and very helpful, you might give them a try, they're the experts after all: <strong>irc.codehaus.org #drools</strong></p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/90933#909330Answer by Gilles for What is the single most effective thing you did to improve your programming skills?Gilles2008-09-18T08:25:48Z2008-09-18T08:25:48Z<p>I took a developer job in a field I didn't have any particular interest in prior to being hired.</p>
<p>The specific issues encountered in this line of business that I had to solve changed the way I approach solving programming problems. </p>
<p>I think the lesson here is that I was taken out of my comfort zone and had to tackle issues I would never have had to solve in programming projects in fields I've already worked on in the past.</p>
http://stackoverflow.com/questions/68675/why-did-you-become-a-programmer/70337#703370Answer by Gilles for Why did you become a programmer?Gilles2008-09-16T08:24:24Z2008-09-16T08:24:24Z<p>Because it's the most unlimited creative medium. It's a very direct mind-to-result path.</p>
http://stackoverflow.com/questions/69602/proxy-settings-in-firefox-dont-stick/69610#696101Answer by Gilles for Proxy settings in Firefox don't "stick"Gilles2008-09-16T05:32:54Z2008-09-16T05:32:54Z<p>Use <a href="http://foxyproxy.mozdev.org/" rel="nofollow">FoxyProxy</a>, much more flexible to configure</p>
http://stackoverflow.com/questions/69568/how-do-you-go-about-setting-up-a-virtual-ip-address/69583#695830Answer by Gilles for How do you go about setting up a virtual IP address?Gilles2008-09-16T05:23:48Z2008-09-16T05:23:48Z<p>From what I understand a virtul IP can let you abstract the address from the physical interface(s) the traffic actually goes through. If your server has two network cards it can have a single virtual IP and have the traffic go through either network physical interface. If hardware failure occurs on one of the two network cards, the traffic can keep going with the second one as a backup. I assume that this is more relevant on servers where such parts can be hotswapped.</p>
http://stackoverflow.com/questions/67794/what-skills-are-worth-learning-for-a-programming-career-and-or-resume/67839#678391Answer by Gilles for What skills are worth learning for a programming career and/or resume?Gilles2008-09-15T23:09:09Z2008-09-15T23:09:09Z<p>It depends on what you're looking for. Enjoying yourself while doing your work or making a lot of money? Skills like J2EE are very demanded and thus more worthwhile to get if money is the only concern. Having worked with the JBoss J2EE suite for a year, I can safely say it was the most painful programming experience ever. I can go on and on in a rant about the specifics, but for me in the end it's not worth the extra money. </p>
<p>Maybe there will be some J2EE jockeys to contradict me, but where were they when I hit countless walls and discovered bugs that are still not fixed 1,5 years later?</p>
<p>My advice would be, learn what you like. IMHO the current demand in IT is big enough that you'll find work in whatever you enjoy doing.</p>
http://stackoverflow.com/questions/1205247/toplink-java-persistency-mystery-time-sink/1205523#1205523Comment by Gilles on Toplink/java persistency mystery time sinkGilles2009-07-30T10:07:35Z2009-07-30T10:07:35ZI've followed your advice, but garbage collection is not the answer, the time spent on it was very small.http://stackoverflow.com/questions/1205247/toplink-java-persistency-mystery-time-sink/1205491#1205491Comment by Gilles on Toplink/java persistency mystery time sinkGilles2009-07-30T09:37:50Z2009-07-30T09:37:50ZCommenting that statement removes the 3 seconds pause, that's precisely why I know that this is where the problem comes from.http://stackoverflow.com/questions/203296/colour-blindness-simulatorComment by Gilles on Colour blindness simulatorGilles2008-11-05T08:35:22Z2008-11-05T08:35:22ZAny luck with finding such a plugin? I'd be very happy to find a ffox plugin that can render everything in black and white (which is actually an extreme form of colour blindness that does exist).http://stackoverflow.com/questions/233621/os-x-file-duplication-converts-text-encoding-by-default/234714#234714Comment by Gilles on OS X file duplication converts text encoding by defaultGilles2008-10-24T21:25:42Z2008-10-24T21:25:42ZAnd by the way it was BBEdit and by digging in I saw it switched to Roman whenever it "couldn't guess" the actual encoding of the file.http://stackoverflow.com/questions/233621/os-x-file-duplication-converts-text-encoding-by-default/234714#234714Comment by Gilles on OS X file duplication converts text encoding by defaultGilles2008-10-24T21:24:42Z2008-10-24T21:24:42ZThanks for clearing that up! Does linux behave the same way in terms of text file encoding information (not associating it with the content)?http://stackoverflow.com/questions/216970/are-game-developers-paid-well/216983#216983Comment by Gilles on Are game developers paid well ?Gilles2008-10-20T10:06:56Z2008-10-20T10:06:56ZActually from what I've heard about Rockstar games (which would fall in your AAA company category), there aren't that many programmers there that get premium pay. They use their reputation to underpay all newcomers, only after a few years in the shop do you start getting higher pay than elsewhere.http://stackoverflow.com/questions/216970/are-game-developers-paid-well/217075#217075Comment by Gilles on Are game developers paid well ?Gilles2008-10-20T09:56:40Z2008-10-20T09:56:40ZI'm still baffled at how much shit programmers are willing to take from bad employers. People fought so that you have the right to say no to working 50+ hours and the right to sue your employer if they dare fire you because of it. There shouldn't be "crunch times" if management was doing its job.http://stackoverflow.com/questions/170152/prevent-users-from-starting-multiple-accounts/170209#170209Comment by Gilles on Prevent users from starting multiple accounts?Gilles2008-10-06T19:47:59Z2008-10-06T19:47:59Zthat list was really helpful, cookies are a nice trick I'm going to implement right now, thanks :)http://stackoverflow.com/questions/3385/mac-addresses-in-javascriptComment by Gilles on MAC addresses in JavaScriptGilles2008-10-04T12:38:15Z2008-10-04T12:38:15ZAny particular reason why you didn't accept any of the answers?http://stackoverflow.com/questions/147636/best-way-to-detect-when-user-leaves-a-web-page/147765#147765Comment by Gilles on Best way to detect when user leaves a web pageGilles2008-10-04T08:06:46Z2008-10-04T08:06:46ZThanks for the tip! Thanks to you I was able to achieve a new JS magic trick :)http://stackoverflow.com/questions/166695/is-it-possible-to-select-a-specific-tab-in-osx-terminal-app-using-keyboard-shortcComment by Gilles on Is it possible to select a specific tab in OSX Terminal.app using keyboard shortcuts?Gilles2008-10-03T19:49:02Z2008-10-03T19:49:02ZWell I find that interesting to ask since the information is hard to find and the terminal is indeed something most programmers are expected to use on a daily basis. It's not another "what's your favorite algorithm" entertainment-only poll.http://stackoverflow.com/questions/37887/how-do-you-update-your-web-application-on-the-server/37908#37908Comment by Gilles on How do you update your web application on the server?Gilles2008-10-03T19:36:09Z2008-10-03T19:36:09ZI'll add that a more optimal way of doing it is to rsync to a folder A while folder B contains your live website and then do the switch form A to B by overwriting a symlink that points to the current live version. And then next time, rsync to B.http://stackoverflow.com/questions/37887/how-do-you-update-your-web-application-on-the-server/37908#37908Comment by Gilles on How do you update your web application on the server?Gilles2008-10-03T19:34:33Z2008-10-03T19:34:33ZI'm doing the same but lately it got me thinking that this is really not atomic. Not optimal for a website used constantly (people might access it at a broken stage where not all files have been rsynced yet).http://stackoverflow.com/questions/167106/how-do-i-limit-which-countries-can-view-my-website-php/167348#167348Comment by Gilles on How do I limit which countries can view my website ( PHP ) Gilles2008-10-03T16:07:28Z2008-10-03T16:07:28ZI'm afraid many laws are flawed thinking :)http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164451#164451Comment by Gilles on What real life bad habits has programming given you?Gilles2008-10-03T15:35:55Z2008-10-03T15:35:55ZI wish I could CTRL+F the supermarket for what I'm looking for...