User deadprogrammer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T07:34:41Z http://stackoverflow.com/feeds/user/556 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/7492/how-do-you-stress-test-a-web-application 40 How do you stress test a web application? deadprogrammer 2008-08-11T03:00:26Z 2009-12-08T21:28:44Z <p>Stress testing is something that gets very little love in most death mar.., er I mean web projects. It's usually done at the last minute (or not at all), next to no time gets allocated to it, etc.</p> <p>In the past I've picked a tool, installed it on my machine first, hit the home page, upping the concurrency settings. Then I'd write a simple login script, a simple site walkthrough (in an ecommerce site adding a few items to a cart and checkout). Then I'd rope in as many developers as I could, install the stress test tool on their machines and do a massive attack. If nothing broke I'd give up and wait for the actual traffic to kill the site for real. </p> <p>Just hitting the homepage hard almost always would locate a major problem. More scalability problems would surface at the second stage, and even more - after the launch.</p> <p>The tools I used were Microsoft Homer (aka <a href="http://www.microsoft.com/downloads/details.aspx?familyid=e2c0585a-062a-439e-a67d-75a89aa36495&amp;displaylang=en" rel="nofollow">Microsoft Web Application Stress Tool</a>) and <a href="http://www.pylot.org/" rel="nofollow">Pylot</a>.</p> <p>The reports that these tools generated never made much sense to me, and I spent many hours trying to figure out what kind of concurrent load the site would be able to support. It was always worth it because the stupidest bugs and bottlenecks would always come up (like web server misconfigurations, for instance).</p> <p>What have you done, what tools have you used, and what success have you had with your approach? The part that is most interesting to me is coming up with some kind of a meaningful formula for calculating the number of concurrent users an app can support from the numbers reported by the stress test application.</p> http://stackoverflow.com/questions/4101/where-do-you-store-your-code-snippets 18 Where do you store your code snippets? deadprogrammer 2008-08-06T23:09:40Z 2009-11-30T12:46:11Z <p>I used to use <a href="http://www.softcircuits.com/snippets/" rel="nofollow">Snippets Text Database</a>, but now I switched to <a href="http://www.evernote.com" rel="nofollow">Evernote</a>. At some point I need to migrate all of my old stuff there too. What about you?</p> http://stackoverflow.com/questions/67093/how-do-i-quickly-rename-a-mysql-database-change-schema-name 6 How do I quickly rename a mysql database (change schema name)? deadprogrammer 2008-09-15T21:22:00Z 2009-11-18T21:32:26Z <p>Usually I just dump the database and reimport it with a new name. This is not an option for very big databases. Apparently RENAME {DATABASE | SCHEMA} db_name TO new_db_name; <a href="http://dev.mysql.com/doc/refman/5.1/en/rename-database.html" rel="nofollow">does bad things, exist only in a handful of versions, and is a bad idea overall</a>. </p> <p>Oh, one more thing - this needs to work with InnoDB, which stores things very differently than MyISAM.</p> http://stackoverflow.com/questions/3746/whats-in-your-bashrc 16 what's in your .bashrc ? deadprogrammer 2008-08-06T17:36:32Z 2009-11-12T12:18:24Z <p>.bashrc modifications are like nesting for developers. All I have right now is a few aliases and some PATH modifications. What's in yours?</p> http://stackoverflow.com/questions/240333/how-do-you-measure-page-load-speed 10 How do you measure page load speed? deadprogrammer 2008-10-27T15:38:08Z 2009-11-12T04:56:01Z <p>I am trying to quantify "site slowness". In the olden days you just made sure that your HTML was lightweight, images optimized and servers not overloaded. In high end sites built on top of modern content management systems there are a lot more variables: third party advertising, trackers and various other callouts, the performance of CDN (interestingly enough sometimes content delivery networks make things worse), javascript execution, css overload, as well as all kinds of server side issues like long queries.</p> <p>The obvious answer is for every developer to clear the cache and continuously look at the "net" section of the Firebug plugin. What other ways to measure "site dragging ass" have you used?</p> http://stackoverflow.com/questions/690521/how-to-add-additional-headers-to-302-redirects-in-apache 1 How to add additional headers to 302 redirects in Apache? deadprogrammer 2009-03-27T16:43:04Z 2009-11-04T11:36:27Z <p>I have a redirect in Apache config like </p> <p>Redirect temp /foo.xml <a href="http://www.baz.com/foo.xml" rel="nofollow">http://www.baz.com/foo.xml</a></p> <p>I am trying to add an Expire and m-cache headers for a CDN to this 302. This would be trivial in php, but I need to do this in Apache config files.</p> <p>Normally this is done like this:</p> <p> ExpiresActive On ExpiresDefault "access plus 10 minutes" </p> <p>but this only seems to not work for 302 redirects. Any suggestions?</p> http://stackoverflow.com/questions/6009/how-do-you-deal-with-configuration-files-in-source-control 21 How do you deal with configuration files in source control? deadprogrammer 2008-08-08T14:44:25Z 2009-10-20T09:03:42Z <p>Let's say you have a typical web app and with a file configuration.whatever. Every developer working on the project will have one version for their dev boxes, there will be a dev, prod and stage versions. How do you deal with this in source control? Not check in this file at all, check it with different names or do something fancy altogether?</p> http://stackoverflow.com/questions/284679/manipulating-giant-mysql-dump-files 2 Manipulating giant MySQL dump files deadprogrammer 2008-11-12T17:24:29Z 2009-10-20T08:25:58Z <p>What's the easiest way to get the data for a single table, delete a single table or break up the whole dump file into files each containing individual tables? I usually end up doing a lot of vi regex munging, but I bet there are easier ways to do these things with awk/perl, etc. The first page of Google results brings back a bunch of non-working perl scripts.</p> http://stackoverflow.com/questions/1500668/zrm-recovery-into-a-file-instead-of-a-database-from-a-snapshot 0 zrm recovery into a file instead of a database from a snapshot deadprogrammer 2009-09-30T21:06:19Z 2009-09-30T21:06:19Z <p>We have ZRM backups that are created using LVM snapshots. When we need to recover a database or two, we use mysql-zrm restore like this:</p> <p>mysql-zrm --action restore --backup-set backupSet1 \ --source-directory /var/lib/mysql-zrm/backupSet1/20060829140710 \ --databases "db1 db2"</p> <p>Is it possible to restore into a file instead of an actual database?</p> http://stackoverflow.com/questions/128480/recovering-browser-textareas 0 Recovering browser textareas deadprogrammer 2008-09-24T17:22:49Z 2009-09-08T15:31:03Z <p>Is there a way to recover the contents of a browser textarea? Say, you've typed a long post and then accidentally clicked on a link. Then when you come back, the textfields tantalizingly retain the text you typed in, but the textarea is blank. Where does IE and Firefox store the stuff that prepopulates? Can textareas be brought back? </p> http://stackoverflow.com/questions/853405/what-does-the-subversion-status-symbol-mean/1380307#1380307 0 Answer by deadprogrammer for What does the Subversion status symbol "~" mean? deadprogrammer 2009-09-04T16:33:07Z 2009-09-04T16:33:07Z <p>The easiest way to fix this is to backup, then delete the folder or file that has this status and then do "svn up": it's not necessarily a folder relplaced by a file, it might be just that .svn folder is missing or corrupted.</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/3959#3959 109 Answer by deadprogrammer for Keyboard for programmers deadprogrammer 2008-08-06T20:40:06Z 2009-09-03T16:34:09Z <p>I really like <a href="http://www.apple.com/keyboard/" rel="nofollow">the new Mac keyboard</a>. In the past I've used <a href="http://www.dansdata.com/ibmkeyboard.htm" rel="nofollow">the one true keyboard</a>, <a href="http://www.logitech.com/index.cfm/keyboards/keyboard/devices/3498&amp;cl=us,en" rel="nofollow">Logitech G15</a>, Microsoft Natural keyboard and many others.</p> <p>I also started to like the mighty mouse, so you should probably not listen to me - after switching to Mac I probably went soft in the head a little bit.</p> <p><img src="http://images.apple.com/keyboard/images/wired%5Fkeyboard20070813.gif" alt="" title="" /> <img src="http://images.apple.com/keyboard/images/wired%5Fkeyboard20090306.gif" alt="" title="" /></p> http://stackoverflow.com/questions/128150/finding-a-partner-for-a-for-profit-software-project 5 Finding a partner for a for-profit software project deadprogrammer 2008-09-24T16:17:28Z 2009-09-01T21:07:23Z <p>It's great when you have friends that have the skills necessary to do a project with you. But what if all the ones with skills are too busy, and the ones that have free time and want to work with you don't have the skills? </p> <p>Where would you start looking for partners?</p> http://stackoverflow.com/questions/223656/untar-ungz-gz-tar-how-do-you-remember-all-the-useful-options 7 Untar, ungz, gz, tar - how do you remember all the useful options? deadprogrammer 2008-10-21T21:56:42Z 2009-08-08T15:53:47Z <p>I am pretty sure I am not the only one with the following problem: every time I need to uncompress a file in *nix I can't remember all the switches, and end up googling it, which is surprizing considering how often I need to do this.</p> <p>Do you have a good compression cheat sheet? Or how about a mnemonic for all those nasty switches in tar? </p> <p>I am making this article a wiki so that we can create a nice cheat sheet here.</p> <p>Oh, and about man pages: is there's one thing they are not helpful for, it's for figuring out how to uncompress a file.</p> http://stackoverflow.com/questions/971279/how-is-the-sausage-made-tour-of-apache-php-mysql-interaction 18 How is the sausage made tour of apache/php/mysql interaction deadprogrammer 2009-06-09T16:55:51Z 2009-07-16T18:32:10Z <p>I am having trouble understanding how apache/php/mysql stack works on a low level (including interaction with the browser). Is there a good description somewhere (a book, a website, etc) that will walk me through the whole path and explaining how starting with a browser reqesting a url, http requests is being sent, how apache talks to php, how php talks to mysql (persistant and non-persistant connections), etc, etc. I want to understand what waits for what in this chain, where timeouts are handled, how long sockets are opened and closed. A book, an article maybe? There is a lot of documentation on each individual component, but I can't find a "walkthrough".</p> <p>The explanations I se so far are very high-level: look, here's a happy cow, it goes to Bovine University, look - it's all shrink wrapped on the supermarket shelf. What I need is the sausage farm/slaughterhouse/truck/factory tour, starting with cow insemenation :)</p> http://stackoverflow.com/questions/259610/profanity-filtering-profanity-dictionaries-scunthorpe-problem-profanity-gen 12 Profanity Filtering / Profanity Dictionaries / Scunthorpe Problem / Profanity Generation deadprogrammer 2008-11-03T19:11:09Z 2009-06-20T04:33:59Z <p>Here's a <a href="http://www.urbandictionary.com/define.php?term=clbuttic" rel="nofollow">clbuttic</a> question. I collect code that attempts to do profanity filtering. I personally like profanity, and whenever possible try to talk everyone out of using profanity filters. The filters always run into the very embarrassing <a href="http://en.wikipedia.org/wiki/Scunthorpe_Problem" rel="nofollow">Scunthorpe Problem</a> which tends to make things worse. Of course there are sites that legitemately need profanity filters - mostly sites for children which have to answer to certain governmental guidelines, etc.</p> <p>I just find reading profanity-detecting regexes and lists absolutely hilarious. I'll put my collection online once I get it ready, but meanwhile, do you have some profanity-related code/dictionary/tool/whatever to share? How about a profanity generator?</p> <p>If you have a good long sample, please <a href="http://pastebin.com/" rel="nofollow">pastebin it here</a>, if it's short, just put it in comments.</p> http://stackoverflow.com/questions/281538/zrm-snapshot-vs-innodb-hot-backup-for-mysql 0 ZRM snapshot vs InnoDB hot backup for MySQL deadprogrammer 2008-11-11T17:20:01Z 2009-05-08T18:43:27Z <p>Are there major advantages to <a href="http://www.innodb.com/hot-backup/features/" rel="nofollow">InnoDB hot backup</a> vs ZRM <a href="http://www.zmanda.com/backup-mysql.html" rel="nofollow">snapshots</a> in terms of disruption to the running site, the size of compressed backup files, and speed of backup/restore on a medium-sized to largish all-InnoDB database? My understanding is that InnoDB's approach is more reliable, faster, does not cause a significant outage when running, etc. </p> http://stackoverflow.com/questions/131089/how-big-of-a-security-risk-is-checking-out-an-svn-project-right-into-production-s 4 How big of a security risk is checking out an svn project right into production site? deadprogrammer 2008-09-25T02:00:46Z 2009-05-05T14:34:49Z <p>Not that I'm doing something like that, but I am kind of interested how bad a practice like that is.</p> http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general 4 Php code formatter / beautifier and php beautificaton in general deadprogrammer 2008-09-29T16:53:53Z 2009-04-30T04:29:08Z <p>Do you know any good tools for nicely formatting messy php code? Preferably a script for Aptana/Eclipse, but a standalone tool will do too.</p> http://stackoverflow.com/questions/6047/what-to-do-with-a-video-wall 14 What to do with a video wall deadprogrammer 2008-08-08T15:06:15Z 2009-04-21T23:32:54Z <p>At work we have a 2 X 4 24 inch monitor video wall served by a single Mac Pro with a bunch of video cards. It's an architectural feature of the office and not a particularly good way to use those nice 24 inch dells.</p> <p>We mostly put a few of our websites on some screens and run <a href="http://www.fudgie.org/" rel="nofollow">gltail</a> on some for watching traffic. Sometimes we <code>tail -f</code> error logs.</p> <p>My question is this: what other pretty log analyzers except <code>gltail</code> are there? All those bouncing balls in <code>gltail</code> seem to slow down the rendering significantly, and it seems impossible to turn it off. What other things we can stick on there?</p> <p>You'd be surprised as to how useful this thing is - yesterday we noticed that one of the three virtual servers was a lot slower than usual. It was still up and serving and because of that did not trip our monitoring, but was slow enough to warrant a restart.</p> http://stackoverflow.com/questions/194821/batch-node-operations-in-drupal-5 1 Batch node operations in Drupal 5 deadprogrammer 2008-10-11T23:25:16Z 2009-04-15T10:46:50Z <p>What is the most efficient way to go through and update every single node in a drupal site, to, for instance mechanically add tags? Drupal 6 has a shiny new batch API, but what to do in Drupal 5?</p> <p>I started writing a script that keeps a pointer and then goes around all nodes on a cron, loads them and then saves them, but I wonder what else could be done.</p> http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/743257#743257 23 Answer by deadprogrammer for What are the worst working conditions you have written code in? deadprogrammer 2009-04-13T07:23:32Z 2009-04-14T16:15:55Z <p>This chair is as uncomfortable as it looks (I had chronic leg pain that went away once I got a better chair), yet more comfortable than the rest of the chairs at one of the places I worked at. My boss had an Aeron though.</p> <p><img src="http://www.deadprogrammer.com/photos/worst-chair-ever.jpg"></p> <p>Oh, also, I had to implement Sharepoint.</p> http://stackoverflow.com/questions/745595/performance-implications-of-php-output-buffering-with-apache-and-mysql 3 performance implications of php output buffering with Apache and MySQL deadprogrammer 2009-04-13T22:16:57Z 2009-04-13T23:07:55Z <p>I am a bit confused about how php buffering works. </p> <p>Let's say you have a php page foo.php and output_buffering = 4096 in php.ini, and Apache recieves a get request for foo.php. foo.php starts executing, and as soon as 4096 bytes are ready, they are sent to Apache. Apache starts sending those 4096 bytes to the client. </p> <p>Here's what I don't understand: what happens when there's a some nasty tracker callout, a javascript or an image that was sent to the browser. The browser gets hung up and is not talking back to Apache for a while, holding it up. Apache is not releasing MySQL thread, which is showing up as a "sleeper". Is this correct or am I completely off base here?</p> http://stackoverflow.com/questions/103944/real-time-history-export-amongst-bash-terminal-windows 9 Real-time history export amongst bash terminal windows deadprogrammer 2008-09-19T17:36:11Z 2009-02-26T04:21:18Z <p>Is it possible to share the same bash history file instance amongst all the terminal windows in real time? I want commands executed in one window to be available to all other terminal windows without having to restart them. </p> http://stackoverflow.com/questions/546645/web-page-download-automation-in-vbscript 1 Web page download automation in vbscript deadprogrammer 2009-02-13T16:38:38Z 2009-02-13T16:46:10Z <p>How would you automate logging into a website and downloading a page using vbscript?</p> http://stackoverflow.com/questions/543105/what-is-the-best-way-to-assign-different-default-content-filters-to-different-use 1 What is the best way to assign different default content filters to different user roles in Drupal 5 deadprogrammer 2009-02-12T20:34:36Z 2009-02-13T01:19:48Z <p>The situation is this: I want one user group to have one filter as default on blogs, while another group - another filter, without having an effect on filter defaults for other content types. I know there are a few modules for this, but how would you solve this problem?</p> http://stackoverflow.com/questions/512580/language-detection-in-php-utf-8 2 Language detection in PHP ( UTF-8 ) deadprogrammer 2009-02-04T18:10:10Z 2009-02-04T22:05:16Z <p>What code snippets are out there for detecting the language of a chunk of UTF-8 text? I basically need to filter a large amount of spam that happens to be in Chinese and Arabic. There's a PECL extension for that, but I want to do this purely in PHP code. I guess I need to loop through a Unicode string with a unicode version of ord() and then create some kind of a range table for different languages. </p> http://stackoverflow.com/questions/3667/what-is-your-favorite-web-app-deployment-workflow-with-svn 9 What is your favorite web app deployment workflow with SVN? deadprogrammer 2008-08-06T16:48:24Z 2009-02-04T14:17:08Z <p>We are currently using a somewhat complicated deployment setup that involves a remote SVN server, 3 SVN branches for DEV, STAGE, and PROD, promoting code between them through patches, etc. I wonder what do you use for deployment in a small dev team situation?</p> http://stackoverflow.com/questions/141312/pronouncing-dictionaries 7 Pronouncing dictionaries deadprogrammer 2008-09-26T19:04:12Z 2009-02-03T18:17:56Z <p>Are there any alternatives to <a href="http://www.speech.cs.cmu.edu/cgi-bin/cmudict" rel="nofollow">The CMU Pronouncing Dictionary</a>, commercial or open source?</p> http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/4704#4704 145 Answer by deadprogrammer for Recommended Fonts for Programming? deadprogrammer 2008-08-07T13:28:17Z 2009-01-27T20:54:43Z <p>Either Consolas <a href="http://www.microsoft.com/downloads/details.aspx?familyid=22e69ae4-7e40-4807-8a86-b3d36fab68d3&amp;displaylang=en" rel="nofollow">(download)</a> or Andale Mono <a href="http://prdownloads.sourceforge.net/corefonts/andale32.exe?download" rel="nofollow">(download)</a>. I mostly use Andale Mono. I wrote an article about programming fonts <a href="http://www.deadprogrammer.com/the-programmers-font" rel="nofollow">a long time ago</a>, I think Consolas wasn't even out yet.</p> <p><img src="http://www.deadprogrammer.com/photos/fonts.gif" alt="" title="" /></p> <p>I find that typing <code>Illegal1 = O0</code> is a good test of suitability.</p> http://stackoverflow.com/questions/971279/how-is-the-sausage-made-tour-of-apache-php-mysql-interaction Comment by deadprogrammer on How is the sausage made tour of apache/php/mysql interaction deadprogrammer 2009-06-10T19:37:03Z 2009-06-10T19:37:03Z Yep, that's exactly what I'm looking for. http://stackoverflow.com/questions/971279/how-is-the-sausage-made-tour-of-apache-php-mysql-interaction/971396#971396 Comment by deadprogrammer on How is the sausage made tour of apache/php/mysql interaction deadprogrammer 2009-06-10T19:33:14Z 2009-06-10T19:33:14Z well, it doesn't really. It's just some very high level hand-pointing. http://stackoverflow.com/questions/281538/zrm-snapshot-vs-innodb-hot-backup-for-mysql/841236#841236 Comment by deadprogrammer on ZRM snapshot vs InnoDB hot backup for MySQL deadprogrammer 2009-05-13T22:15:54Z 2009-05-13T22:15:54Z don't always believe what you read. http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/741975#741975 Comment by deadprogrammer on What are the worst working conditions you have written code in? deadprogrammer 2009-04-13T12:23:22Z 2009-04-13T12:23:22Z I feel ya. Sharepoint drove me straight out of using Wintel, probably forever. There are a lot of Sharepoint lovers here at SO though, and they downvote like crazy. http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/741614#741614 Comment by deadprogrammer on What are the worst working conditions you have written code in? deadprogrammer 2009-04-13T07:28:37Z 2009-04-13T07:28:37Z you were in the Time Life building, weren't you? http://stackoverflow.com/questions/262657/the-coolest-server-names Comment by deadprogrammer on The Coolest Server Names deadprogrammer 2009-02-05T22:15:48Z 2009-02-05T22:15:48Z Yeah, I think this went on long enough. http://stackoverflow.com/questions/512580/language-detection-in-php-utf-8/513092#513092 Comment by deadprogrammer on Language detection in PHP ( UTF-8 ) deadprogrammer 2009-02-05T11:46:33Z 2009-02-05T11:46:33Z It does not have to be words, just single characters in a certain range are enough to identify Arabic and Chinese. http://stackoverflow.com/questions/4101/where-do-you-store-your-code-snippets/485574#485574 Comment by deadprogrammer on Where do you store your code snippets? deadprogrammer 2009-02-03T19:33:27Z 2009-02-03T19:33:27Z This is a vastly better idea than the most upvoted one, so the bounty goes to it http://stackoverflow.com/questions/259610/profanity-filtering-profanity-dictionaries-scunthorpe-problem-profanity-gen/494363#494363 Comment by deadprogrammer on Profanity Filtering / Profanity Dictionaries / Scunthorpe Problem / Profanity Generation deadprogrammer 2009-01-30T03:26:29Z 2009-01-30T03:26:29Z Sure, Markov chains are great for generating pseudo gibberish, but the question is more about where to get the sample text to feed it. http://stackoverflow.com/questions/6047/what-to-do-with-a-video-wall/488501#488501 Comment by deadprogrammer on What to do with a video wall deadprogrammer 2009-01-29T19:01:29Z 2009-01-29T19:01:29Z Well, I would love to replace smaller 20 inch monitors for all of our devs with these 24 inchers, but they are a part of office architecture and such, and thus off limits to my grabby hands. http://stackoverflow.com/questions/281538/zrm-snapshot-vs-innodb-hot-backup-for-mysql/396072#396072 Comment by deadprogrammer on ZRM snapshot vs InnoDB hot backup for MySQL deadprogrammer 2009-01-16T22:45:51Z 2009-01-16T22:45:51Z Hey, Gary! You might rember me after a mishap last year that happened when our admin tried to restart replication and killed the master instead :) This sounds like a great idea in general, but the dang replication was breaking so often that I gave up on it completely. http://stackoverflow.com/questions/284679/manipulating-giant-mysql-dump-files/285089#285089 Comment by deadprogrammer on Manipulating giant MySQL dump files deadprogrammer 2008-11-12T23:01:41Z 2008-11-12T23:01:41Z The output of head can be simply piped to tail - this is not a bad idea http://stackoverflow.com/questions/259610/profanity-filtering-profanity-dictionaries-scunthorpe-problem-profanity-gen Comment by deadprogrammer on Profanity Filtering / Profanity Dictionaries / Scunthorpe Problem / Profanity Generation deadprogrammer 2008-11-03T22:44:34Z 2008-11-03T22:44:34Z that's totally clbuttic http://stackoverflow.com/questions/248553/reponsibilities-of-biztalk-consultant/255583#255583 Comment by deadprogrammer on Reponsibilities of Biztalk Consultant deadprogrammer 2008-11-03T22:41:16Z 2008-11-03T22:41:16Z Oh my god - they even have a book on how to interview for Biztalk positions. Questions to ask for idiot managers and answers to give for developers looking to make the big bucks. A closed shit cycle. http://stackoverflow.com/questions/259610/profanity-filtering-profanity-dictionaries-scunthorpe-problem-profanity-gen/259655#259655 Comment by deadprogrammer on Profanity Filtering / Profanity Dictionaries / Scunthorpe Problem / Profanity Generation deadprogrammer 2008-11-03T21:14:32Z 2008-11-03T21:14:32Z do you have any code samples?