User thesmallprint - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T04:19:01Z http://stackoverflow.com/feeds/user/12765 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/195019#195019 39 Answer by thesmallprint for What should a developer know before building a public web site? thesmallprint 2008-10-12T02:46:11Z 2009-11-03T13:25:29Z <p><strong>Security</strong></p> <ul> <li>Filter and validate incoming user input ('amount' does not need to accept alphabetical characters) and escape outgoing user input (a ' in user input, is NOT the same as an SQL '). <br /><strong>Never trust any data given by the user.</strong></li> <li>And the above will help with protecting against SQL injection.</li> <li>Understand SSL </li> <li>Keep your systems up to date with the latest patches.</li> <li>Protect yourself from cross site scripting </li> <li>How to resist session hijacking</li> <li>Find out about HTTPOnly cookies</li> <li>How to handle authentication/permissions</li> <li>Understand PKI (public keys)</li> <li>Keep up to date! This is the most important thing, make sure to follow all the latest information about possible security issues and vulnerabilities that affect your platform. </li> </ul> <p><strong>SEO</strong></p> <ul> <li>Create SEO friendly URLs - example.com/articles/rampaging-bull-tramples-unicorn NOT example.com?article=45</li> <li>Use an XML sitemap so that site engines can crawl your site more intelligently</li> <li>Set up Google Analytics (or another analytics package) from the start</li> <li>Learn the difference between 301 and 302 redirects: it's not the same for search engines.</li> <li>Set up a robots.txt file</li> </ul> <p><strong>Performance</strong></p> <ul> <li>How to cache</li> <li>What <em>not</em> to cache</li> <li>How to gzip</li> <li>Make regular backups. Don't just rely on your hosting provider - have another backup source in case something critical is destroyed (like a database table)</li> <li>Read Yahoo's best practices (<a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">http://developer.yahoo.com/performance/rules.html</a>) for information on improving performance</li> <li>Set up an Operation Database (<a href="http://ayende.com/Blog/archive/2008/05/13/DevTeach-Home-Grown-Production-System-Monitoring-and-Reports.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/05/13/DevTeach-Home-Grown-Production-System-Monitoring-and-Reports.aspx</a>) to quickly identify bottlenecks.</li> <li>Look into performance monitoring</li> </ul> <p><strong>Productivity</strong></p> <ul> <li>Documentation!</li> <li>Code from the beginning with maintainability in mind</li> <li>Have a good deployment strategy - don't save it to the very end to figure this out.</li> <li>URLs designed with REST in mind could save you a headache in the future. </li> <li>Use patterns like MVC to seperate your application flow from your database logic.</li> <li>Be aware of the many frameworks out there that will speed up your development</li> <li>Use staging and a version control system to deploy updates so that your users won't be affected</li> <li>Set up an error logging system. No matter how well coded your website will have errors when it is released. Don't wait for the user to let you know; be proactive in identifying errors and bugs</li> <li>Have a bug tracker</li> <li>Know your environment. Your OS, language, database. When you need to debug it will be important to understand how these things work at a basic level in the least.</li> </ul> <p><strong>User experience</strong></p> <ul> <li>Be aware of accessibility. This is a legal requirement for some programmers in some jurisdictions. Even if it's not, you should bear it in mind. </li> <li>Never put email addresses in plain text, or they will be spammed to death.</li> <li>Have some method for users to submit their comments and suggestions</li> <li>Catch errors and don't display them to the user; display something they can understand instead</li> <li>Remember that cell phones and other mobile devices with browsers are becoming more common. Sometimes they have very poor javascript support. Will your site look okay on one of these?</li> </ul> <p><strong>Core Web technologies</strong></p> <ul> <li>Understand HTTP, and things like GET, POST, cookies and sessions. </li> <li>How to work with absolute and relative paths</li> <li>Realize that web applications are inherently multi-threaded, you will have lots of visitors (typically much more than in non-public websites), and threads are not unlimited.</li> </ul> http://stackoverflow.com/questions/257339/how-do-you-generate-an-rss-feed 4 How do you generate an RSS feed? thesmallprint 2008-11-02T20:48:34Z 2009-10-10T02:45:11Z <p>I've never done it myself, and I've never subscribed to a feed, but it seems that I'm going to have to create one, so I'm wondering. The only way that seems apparent to me is that when the system is updated with a new item (blog post, news item, whatever), a new element should be written to the rss file. Or alternatively have a script that checks for updates to the system a few times a day and writes to the rss file is there is. There's probably a better way of doing it though.</p> <p>And also, should old elements be removed as new ones are added? </p> <p><strong>Edit</strong>: I should have mentioned, I'm working in PHP, specifically using CodeIgniter, with a mySQL database.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73759#73759 12 Answer by thesmallprint for What should a developer know before building a public web site? thesmallprint 2008-09-16T15:44:21Z 2009-09-12T12:50:35Z <p>Well, everyone else has already mentioned most things I thought of - but one thing I always forget is a <strong><a href="http://www.w3.org/2005/10/howto-favicon" rel="nofollow">favicon</a></strong>. Sounds stupid, I know, but I think it's one of those little things that helps to emphasise your brand, and I never seem to remember it. Please check Scott Hanselman's post about how to use it <a href="http://www.hanselman.com/blog/FavIconicoCanBeABandwidthHog.aspx" rel="nofollow">carefully</a>.</p> <p>I agree with some of the rest too - I think it's important to know as much as possible about your chosen language, so that you can code it with best practices and maintainability in mind. I've come across functions and patterns that I wish I'd known about when I did my first few crappy, amateur projects, as it would have saved me writing some retarded WTF-ey workarounds!</p> http://stackoverflow.com/questions/194544/delphi-for-php 5 Delphi for PHP thesmallprint 2008-10-11T20:08:00Z 2009-06-12T11:12:50Z <p>I just came across <a href="http://www.codegear.com/products/delphi/php" rel="nofollow">Delphi for PHP</a> and my immediate response was "oh, <i>no</i>", but I think maybe I was being too hasty. Has anyone tried it? What do you think?</p> http://stackoverflow.com/questions/180147/can-anyone-give-me-any-ideas-on-my-layout/180281#180281 1 Answer by thesmallprint for Can anyone give me any ideas on my layout? thesmallprint 2008-10-07T20:32:00Z 2008-12-05T19:03:01Z <p>You need more space on the left, as people have said. The line along the bottom needs to line up with the left side of the text too. The right 'about' header could use more padding/margin on the bottom to move the blurb underneath away. You also really need to get a bit of colour in there! :)</p> <p>Oh, also the headings on the right need to have a little left padding so they dont touch the left side of their background. But the text should still line up with the text underneath. I think you need to make the backgrounds of the headings a little paler too.</p> <p>The topic titles should also probably be a bit more distinguished, like, in bold, a diff colour, a diff size, something like that.</p> <p>Just my $0.02!</p> <p>P.S. The font of the main text is a little hard to read on my screen</p> http://stackoverflow.com/questions/210645/restricting-file-downloads 4 Restricting file downloads thesmallprint 2008-10-16T23:31:57Z 2008-10-17T07:37:10Z <p>Hi, I'm currently creating a website for a client that will basically involve selling various files. This is obviously a really common thing to do, which is making me feel kind of foolish for not thinking of a method for doing it.</p> <p>Once the purchase has been made the customer should be taken to a page containing the download link, as well as receiving emails that contain a download link and an email with information about an account that will be created for them (they will also be able to download from their account's control panel). What I'm trying to figure out is how I can hide/obscure the file's location on my server so that one person who buys it can't simply copy and paste the direct link to the file elsewhere. Even if I make the request to download a file a link of the format <a href="http://example.com/blah/download/454643" rel="nofollow">http://example.com/blah/download/454643</a>, a URL which does not correspond to the actual location of the file, I think it might still be possible to locate the file on the server? I don't really understand too much about how permissions work on my server, which is why I ask. Thanks in advance :)</p> http://stackoverflow.com/questions/210770/what-data-type-do-you-use-for-storing-ids 3 What data type do you use for storing IDs? thesmallprint 2008-10-17T00:49:50Z 2008-10-17T02:00:25Z <p>Why is there a minimum character count for posting questions? o.O</p> <p>Anyway, my question is as clear as can be from the title. Do you use int, bigint, tinyint, whatever. </p> <p>It seems like a small thing I guess, I was just wondering what the usual practice is. </p> http://stackoverflow.com/questions/125230/mysql-search-and-replace-some-text-in-a-field/125243#125243 1 Answer by thesmallprint for Mysql search and replace some text in a field thesmallprint 2008-09-24T03:22:45Z 2008-10-15T02:32:14Z <p>UPDATE table_name SET field = replace(field,'[string-to-find]','[string-that-will-replace-it]');</p> http://stackoverflow.com/questions/139017/learning-a-programming-language-at-an-elderly-age/139057#139057 1 Answer by thesmallprint for Learning a programming language at an elderly age? thesmallprint 2008-09-26T12:18:16Z 2008-10-15T02:31:55Z <p>As most people get into their late sixties/seventies, their memory will become increasingly faulty and they will find it slower to think and learn new tasks. A 75 year old dropped out of one of my math classes last year because of this - he was a great mathematician but he couldn't hold onto the knowledge for long enough to store it. This is not necessarily a barrier to learning how to program, and even with an impaired memory it will still be possible, but it may be too slow or frustrating for it to be worth the while. At the end of the day, however, it will depend on the individual and their motivation to learn. If the language is relatively simple then I think most people of most ages would be able to understand it. There's no reason why an older person should be put off from learning a programming language completely. </p> <p>BASIC is a really easy language for beginners to use and is written in a more user-friendly syntax. One thing to bear in mind is that learning processes will differ from the way that young people learn, and so approaching it in the sort of quick-paced intensive style that young people are used to would probably not be productive. Pick something simple and stick at it.</p> http://stackoverflow.com/questions/109858/php-awasp/109881#109881 2 Answer by thesmallprint for PHP + AWASP thesmallprint 2008-09-21T00:29:15Z 2008-10-15T02:31:42Z <p>I downloaded it a while ago and tried it out, but as the documentation is pretty terrible at the moment (consisting of some auto-generated 'documentation' that was useless) I gave up pretty quickly. I think one of the most important things to have in a framework is clear, thorough documentation - if you have to spend time digging through the code of the framework to find out if a class you want exists, the point of using a framework is lost. WASP does not seem to be ready for production environments just yet, as even their website admits that its not ready for enterprise applications.</p> <p>If you're looking for a PHP framework I would recommend CodeIgniter, which has excellent documentation and a helpful community, or Zend, which is pretty mature.</p> http://stackoverflow.com/questions/133341/improve-web-design-skills/133403#133403 2 Answer by thesmallprint for Improve web design skills? thesmallprint 2008-09-25T13:40:59Z 2008-10-15T02:31:37Z <p>I have no recommendations re: books, but I'm in the same boat as you, and I find the following resources helpful:</p> <p><a href="http://www.bestwebgallery.com" rel="nofollow">http://www.bestwebgallery.com</a><br /> <a href="http://www.colourlovers.com" rel="nofollow">http://www.colourlovers.com</a><br /> <a href="http://www.webdesignerwall.com/" rel="nofollow">http://www.webdesignerwall.com/</a><br /> <a href="http://www.csszengarden.com/" rel="nofollow">http://www.csszengarden.com/</a><br /> <a href="http://alistapart.com/" rel="nofollow">http://alistapart.com/</a><br /> <a href="http://veerle.duoh.com/" rel="nofollow">http://veerle.duoh.com/</a></p> http://stackoverflow.com/questions/135909/is-there-a-built-in-method-for-converting-radians-to-degrees/135927#135927 2 Answer by thesmallprint for Is there a built in method for converting radians to degrees? thesmallprint 2008-09-25T20:43:39Z 2008-10-15T02:31:30Z <p>x rads in degrees - > x*180/pi<br/> x degrees in rads -> x*pi/180<br/></p> <p>I guess if you wanted to make a function for this [in PHP]:</p> <pre><code>function convert($type, $num) { if ($type == "rads") { $result = $num*180/pi(); } if ($type == "degs") { $result = $num*pi()/180; } return $result; } </code></pre> <p>Yes, that could probably be written better.</p> http://stackoverflow.com/questions/123957/who-is-responsible-for-your-ui-user-experience/124440#124440 0 Answer by thesmallprint for Who is responsible for your UI / User Experience? thesmallprint 2008-09-23T22:55:54Z 2008-10-15T02:30:40Z <p>I currently work in a small-ish web development company. All our UI design is done by an "interactive designer", who in theory is responsible for how everything looks, and the 'flow' of the application for the end user. Our guy has a degree in 'interactive design', and (I think) his background is mostly working with HTML/CSS/JavaScript as well as Photoshop and the other designer-type programs (I think Illustrator is one). All he does is the design of the UI, so yeah he doesn't have any other responsibilities. He does the overall design as well as the specifics of each feature/piece of functionality. </p> <p>It usually works along the lines of; the developers create all the core functionality outlined in the specs, the designer dude creates a big plan of how he wants everything to come together, we all argue about it for a bit, the developers create a bare-bones version of what he wants, and then our designer pretties everything up. </p> http://stackoverflow.com/questions/84282/what-can-you-use-to-get-an-application-to-be-able-to-receive-sms-message/84377#84377 1 Answer by thesmallprint for What can you use to get an application to be able to receive SMS message? thesmallprint 2008-09-17T15:19:55Z 2008-10-15T02:30:31Z <p>I'm not up with Java, so here's a nice guide on how to do it in Ruby on Rails: <a href="http://www.lukeredpath.co.uk/2007/8/29/sending-sms-messages-from-your-rails-application" rel="nofollow">http://www.lukeredpath.co.uk/2007/8/29/sending-sms-messages-from-your-rails-application</a></p> <p>If you want to send 'true' SMS you'll need to use an SMS gateway, (use of one is outlined in the above guide). </p> <p>You can use MMS to send messages, to an email address that looks something like 1234567890@ messages.whatever.com. You can use mail functions to do this. There's some information about that here: <a href="http://contentdeveloper.com/2006/06/open-source-sms-text-messaging-application/" rel="nofollow">http://contentdeveloper.com/2006/06/open-source-sms-text-messaging-application/</a></p> http://stackoverflow.com/questions/84378/div-class-vs-id/84472#84472 0 Answer by thesmallprint for div class vs id thesmallprint 2008-09-17T15:26:46Z 2008-10-15T02:30:29Z <p>Classes are for styles you may use multiple times on a page, IDs are unique identifiers that define special cases for elements. The standards say that IDs should only be used once in a page. So you should use classes for when you want to use a style on more than one element in a page, and an ID when you just want to use it once. </p> <p>Another thing is that for classes you can use multiple values (by putting spaces in between each class, a la "class='blagh blah22 blah') wheras with IDs, you can only use on ID per element. </p> <p>Styles defined for IDs override styles defined for classes, so in , the style settings of #uniquething will override the style of .whatever if the two conflict. </p> <p>So you should probably use IDs for things like, the header, your 'sidebar' or whatever, and so on - things that only appear once per page.</p> http://stackoverflow.com/questions/175969/which-php-based-cms-or-framework-has-the-best-documentation/176026#176026 1 Answer by thesmallprint for Which PHP-based CMS or framework has the best documentation? thesmallprint 2008-10-06T20:21:36Z 2008-10-15T02:30:25Z <p>Don't use Joomla. I was going to write a long description of why you shouldn't, but I always feel mean criticising open source stuff (it's free after all), but seriously, it's really horrible. I feel the same about Wordpress.</p> <p>There's not much point using a framework to build a CMS from scratch when you could easily cannibalize another CMS and save yourself a lot of effort re-inventing the wheel. Drupal has awesome documentation. </p> http://stackoverflow.com/questions/194427/what-do-you-think-about-using-the-project-euler-website-as-a-candidate-profiling/194455#194455 4 Answer by thesmallprint for What do you think about using the Project Euler website as a candidate profiling tool? thesmallprint 2008-10-11T19:08:26Z 2008-10-15T02:30:02Z <p>No, this is a really bad idea. You've said yourself that the job is about CRUD and DB logic; mathematical ability is mostly irrelevant and Project Euler problems (suprise, suprise) require at least a working knowledge of number theory. Some of the developers I've hired recently probably wouldn't get more than one or two of Project Euler problems straight-off (especially not in an interview!), but are good developers nonetheless. Why not test them on something related to the job? There are plenty of programming questions out there that involve databases, web interfaces and whatnot.</p> <p>Either way, you should read <a href="http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html" rel="nofollow">http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html</a> and <a href="http://headrush.typepad.com/creating_passionate_users/2007/02/dont_ask_employ.html" rel="nofollow">http://headrush.typepad.com/creating_passionate_users/2007/02/dont_ask_employ.html</a>. I think they both get across the point quite clearly that character and intelligence is far more important than whether they're able to grok problems that are mostly about prime numbers and suchlike. </p> http://stackoverflow.com/questions/112351/recommendations-for-starting-web-programming/112428#112428 2 Answer by thesmallprint for Recommendations for starting web programming? thesmallprint 2008-09-21T22:47:23Z 2008-10-15T02:29:37Z <p>I think it depends on what kind of websites you want to create, and what kind of support you need. </p> <p>PHP has by far and away the best documentation of all languages I've used. There's also a lot of support out there for web apps written in PHP; a lot of open-source projects, a lot of code snippets, a lot of tutorials. As always though, the good comes with the bad, and there's also a lot of really shite code out there that will hinder rather than help you. There are quite a few frameworks for PHP so that you can write your code in an OOP manner and shorten down the time it takes to write something. PHP gets a lot of stick, but is really easy to pick up, and will give you a good primer on writing code for the web.</p> <p>Ruby (on Rails) has been getting a lot of hype lately, but personally I don't think the documentation is quite there yet. Ruby is also considered quite slow by some, which I guess isn't a factor if you're looking to learn, but perhaps something to consider. Ruby has a better reputation than PHP.</p> <p>I see someone recommended Django above; I really love Python, and the Django framework is excellent. If you started off with that the learning curve might be a little higher, but in my opinion it would be well worth it as Django makes it really fun and easy to code. </p> <p>I don't really have an opinion on the .NET languages. I've been working as a web developer for ten years or so and have never had occasion to use them.</p> <p>At the end of the day, it probably isn't going to matter much which language you learn, as most of them can be used for most purposes (I stress the <em>most</em>, obviously not every language is a good tool for every job). </p> <p>As well as the language, you should consider other aspects of web development that may not be present in software development. For example, relational databases, security, and presentation standards. You might also want to look into learning JavaScript, which is similar to a lot of languages, and will help you when presenting content.</p> http://stackoverflow.com/questions/129085/what-would-you-write-if-you-wanted-to-learn-a-new-language/129117#129117 1 Answer by thesmallprint for What would you write if you wanted to learn a new language? thesmallprint 2008-09-24T18:56:59Z 2008-10-15T02:29:30Z <p>I only really use web-development languages, and my first steps in new languages (after finding out basic syntax and so forth) is usually to create a simple blog application. </p> http://stackoverflow.com/questions/75882/what-in-your-mind-is-the-best-php-mvc-framework 3 What, in your mind, is the best PHP MVC framework? thesmallprint 2008-09-16T19:14:13Z 2008-10-15T02:29:18Z <p>There are quite a few PHP frameworks out there, from CodeIgniter to Zend to CakePHP to symfony.. which do you think is the best? I'd prefer answers that say <em>why</em>, rather than just <em>which</em>. Which features make your preferred framework stand out as the best?</p> http://stackoverflow.com/questions/194803/automatic-two-columns-with-css-or-javascript 2 Automatic two columns with CSS or JavaScript thesmallprint 2008-10-11T23:12:59Z 2008-10-15T02:29:13Z <p>I'm currently developing a website and my client wants the text of various articles to overflow into two columns. Kind of like in a newspaper? So it would look like:</p> <pre><code>Today in Wales, someone actually Nobody was harmed in did something interesting. the incident, although one Authorities are baffled by this elderly victim is receiving development and have arrested the counselling. perpetrator. </code></pre> <p>[my really bad attempt at coming up with something to write] </p> <p>Is there a way I can do this with just CSS alone? I'd prefer not to have to use multiple divs. I'm open to using JavaScript too, but I'm -really- bad at that, so help would be appreciated. I was thinking maybe JavaScript could count how many &lt;p>'s there are in the content div, and then move the second half of them to be floated right based on that? Maybe? Advices would be appreciated :D </p> http://stackoverflow.com/questions/196500/configuring-wordpress-htaccess-to-view-subfolders -1 Configuring wordpress .htaccess to view subfolders thesmallprint 2008-10-13T01:58:07Z 2008-10-15T02:29:03Z <p>I have a WordPress install and a .htaccess that looks like this:</p> <pre><code># BEGIN WordPress &lt;IfModule mod_rewrite.c&gt; RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] &lt;/IfModule&gt; # END WordPress </code></pre> <p>I tried installing a fresh install of WordPress into a subdirectory for a seperate blog and am getting 404's within the root WordPress when I try to view it. I'm assuming this is because of the htaccess, and what I want to know is, how do I change it so that I can view the subfolder? Thanks :)</p> http://stackoverflow.com/questions/196020/javascript-slider -1 JavaScript slider thesmallprint 2008-10-12T20:36:17Z 2008-10-15T02:29:00Z <p>I need to create a 'slider' for a client's site. The slider should allow people to select how many items they want of x item, and show what the price will be based on that. The weird(ish) part is that the ratio of the price increase will go down as the amount of items goes up:</p> <ul> <li>1 item: $100</li> <li>2 items: +90 = $190</li> <li>3 items: + 80 = $270</li> <li>4 items: + 70 = $340</li> <li>5 items: + 60 = $400</li> <li>6 items: + 50 = $450</li> <li>7 items: + 50 = $500</li> </ul> <p>And all increases from then on are +50. This probably seems like an overly simplistic question, but does anyone know how I could go about doing this? I have almost no experience with JavaScript :( </p> http://stackoverflow.com/questions/134375/conferences-symposiums-courses-in-britain 0 Conferences/Symposiums/Courses in Britain thesmallprint 2008-09-25T16:30:48Z 2008-10-15T02:28:55Z <p>I see lots of advertisements for cool looking conferences based on the latest web technologies on tech-ey sites all the time, but they all seem to be based in the USA - which is too far away to justify the expense :( So, does anyone know of some cool/fun/interesting events for web developers occurring in the UK? Or any sites that would list such events? I'm mostly interested in PHP/Ruby on Rails/C++/AJAX stuff, but more generalised things would rock too. </p> http://stackoverflow.com/questions/109861/converting-postgresql-database-to-mysql 2 Converting PostgreSQL database to MySQL thesmallprint 2008-09-21T00:16:27Z 2008-10-15T02:28:51Z <p>I've seen questions for doing the reverse, but I have an 800MB PostgreSQL database that needs to be converted to MySQL. I'm assuming this is possible (all things are possible!), and I'd like to know the most efficient way of going about this and any common mistakes there are to look out for. I have next to no experience with Postgre. Any links to guides on this would be helpful also! Thanks. </p> http://stackoverflow.com/questions/130313/which-chemical-stimulation-do-you-require-while-coding/130418#130418 12 Answer by thesmallprint for Which chemical stimulation do you require while coding? thesmallprint 2008-09-24T22:48:32Z 2008-10-15T02:28:08Z <p>Tea. I'm very English.</p> http://stackoverflow.com/questions/195651/any-open-sourced-websites/195661#195661 5 Answer by thesmallprint for Any open sourced websites? thesmallprint 2008-10-12T16:27:22Z 2008-10-15T02:28:02Z <p>Pastebin: <a href="http://pastebin.com/" rel="nofollow">http://pastebin.com/</a></p> <p>The wiki behind Wikipedia et al: <a href="http://www.mediawiki.org/wiki/MediaWiki" rel="nofollow">http://www.mediawiki.org/wiki/MediaWiki</a></p> <p>GrailsCrowd: <a href="http://grailscrowd.com/" rel="nofollow">http://grailscrowd.com/</a></p> <p>Slashcode [slashdot engine]: <a href="http://www.slashcode.com/" rel="nofollow">http://www.slashcode.com/</a></p> <p>The reason that not as many people do it is because it would be easy for someone to set up a complete clone of your website without making any useful changes. OK, that's strictly allowed with true 'open source' code, but it's not quite within the spirit of the thing (IMO) and if the site became even moderately popular there would be a <em>lot</em> of useless clones. The site would become essentially worthless.</p> <p>Those are -websites- that are open source. There is a huge amount of web application software that is open source [some of it shitty]</p> <ul> <li>WordPress</li> <li>InkType</li> <li>Joomla</li> <li>osCommerce</li> <li>ZenCart</li> <li>Drupal </li> </ul> http://stackoverflow.com/questions/134202/whos-using-ruby-on-rails-in-production/134205#134205 10 Answer by thesmallprint for Who's using Ruby on Rails in production? thesmallprint 2008-09-25T16:01:11Z 2008-10-15T02:27:59Z <p>Twitter, although it's been said that they're abandoning that framework (as it turns out that RoR is hard to scale). If you're building a website that gets heavy traffic you may want to check out some of the interviews/articles related to the problems they've been having (as it might help you in development :): </p> <p><a href="http://www.radicalbehavior.com/5-question-interview-with-twitter-developer-alex-payne/" rel="nofollow">http://www.radicalbehavior.com/5-question-interview-with-twitter-developer-alex-payne/</a><br /> <a href="http://www.techcrunch.com/2008/05/01/twitter-said-to-be-abandoning-ruby-on-rails/" rel="nofollow">http://www.techcrunch.com/2008/05/01/twitter-said-to-be-abandoning-ruby-on-rails/</a><br /> <a href="http://www.texasstartupblog.com/2007/04/12/twitter-blaming-ruby-on-rails-for-failures/" rel="nofollow">http://www.texasstartupblog.com/2007/04/12/twitter-blaming-ruby-on-rails-for-failures/</a><br /> <a href="http://www.slideshare.net/Blaine/scaling-twitter" rel="nofollow">http://www.slideshare.net/Blaine/scaling-twitter</a><br /><br /></p> <p>More sites: <br/> <a href="http://basecamphq.com/" rel="nofollow">Basecamp</a><br /> <a href="http://43things.com/" rel="nofollow">43 things</a><br /> <a href="http://www.pitchforkmedia.com/" rel="nofollow">pitchfork media</a><br/> <a href="http://www.penny-arcade.com/" rel="nofollow">penny arcade</a><Br/> <a href="http://alistapart.com/" rel="nofollow">a list apart</a><br /> <a href="http://www.yellowpages.com/" rel="nofollow">the yellow pages</a></p> <p>There are some big sites listed here: <a href="http://www.mslater.com/2006/11/17/sites-built-with-ruby-on-rails" rel="nofollow">http://www.mslater.com/2006/11/17/sites-built-with-ruby-on-rails</a><br /></p> <p>And you can view Ruby on Rails sites listed by traffic here: <a href="http://rankedindex.com/rails" rel="nofollow">http://rankedindex.com/rails</a></p> http://stackoverflow.com/questions/127448/if-php-isnt-a-good-language-what-should-i-use-instead/127504#127504 19 Answer by thesmallprint for If PHP isn't a "good" language, what should I use instead? thesmallprint 2008-09-24T14:25:00Z 2008-10-15T02:27:56Z <p>PHP runs Wikipedia and Facebook. If the language can run the #5th and #8th most popular websites in the world reliably, then you don't have much to worry about. Don't learn a new language just because some people are idiotic enough to judge an application by the language it's written in rather than the quality of the code therein. Unless we're talking about COBOL, of course. Every language has its flaws and its critics; any new language you pick up is going to be looked down on by some. That's just the way the cookie crumbles :D </p> <p>That said, Python rocks, and Django (a Python framework) is Python on acid, so I highly recommend that you look there. Check out Dive Into Python (<a href="http://diveintopython.org/" rel="nofollow">http://diveintopython.org/</a>) a free online book that gives beginners a great primer on using Python. And then check out Django : <a href="http://www.djangoproject.com/" rel="nofollow">http://www.djangoproject.com/</a></p> http://stackoverflow.com/questions/134393/can-you-add-html-tags-to-the-author-user-profile-text-field-on-wordpress/134565#134565 -1 Answer by thesmallprint for Can you add html tags to the author/user profile text field on wordpress? thesmallprint 2008-09-25T17:05:17Z 2008-10-14T07:00:04Z <p>When writing in the editor you can tab between 'visual' and 'HTML' writing mode. Is the HTML mode not working? I tested it using div tags, which worked.</p> http://stackoverflow.com/questions/257339/how-do-you-generate-an-rss-feed/257355#257355 Comment by thesmallprint on How do you generate an RSS feed? thesmallprint 2008-11-02T21:02:26Z 2008-11-02T21:02:26Z I'm working in PHP. http://stackoverflow.com/questions/196476/as-a-software-developer-what-are-the-traits-that-you-look-for-in-a-manager Comment by thesmallprint on As a software developer, what are the traits that you look for in a manager? thesmallprint 2008-10-13T02:00:01Z 2008-10-13T02:00:01Z And because he already posted a very similar question a few minutes previously. I would downvote but I'm all out of votes for today :( http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt Comment by thesmallprint on What is your favorite "programmer" t-shirt? thesmallprint 2008-10-10T19:58:08Z 2008-10-10T19:58:08Z Thomas: My thoughts exactly. http://stackoverflow.com/questions/192088/personal-code-library/192160#192160 Comment by thesmallprint on Personal Code Library thesmallprint 2008-10-10T16:52:33Z 2008-10-10T16:52:33Z Wow, I totally agree with Chris. Your own perogative of course, but it would be very kind :) http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182131#182131 Comment by thesmallprint on What are some funny loading statements to keep users amused? thesmallprint 2008-10-10T01:32:27Z 2008-10-10T01:32:27Z this one made me irlol http://stackoverflow.com/questions/60436/what-is-the-benefit-of-using-only-openid-authentication-on-a-site/60534#60534 Comment by thesmallprint on What is the benefit of using ONLY OpenId authentication on a site? thesmallprint 2008-10-05T23:35:05Z 2008-10-05T23:35:05Z I really don't think that's true. I've known about OpenID since its release, and only got an account with it a few weeks ago to access this site. I won't be using it anywhere else. And I'm a pretty techy type; they're going to have a much harder type convincing newbies. http://stackoverflow.com/questions/60436/what-is-the-benefit-of-using-only-openid-authentication-on-a-site/60454#60454 Comment by thesmallprint on What is the benefit of using ONLY OpenId authentication on a site? thesmallprint 2008-10-05T23:32:37Z 2008-10-05T23:32:37Z So the reason to make OpenID mandatory is to force more people to use it? Wow, what shitty reasoning. There should at least be a 'pro' in there somewhere. http://stackoverflow.com/questions/165106/what-does-the-perfect-status-report-look-like/165147#165147 Comment by thesmallprint on What does the perfect status report look like? thesmallprint 2008-10-03T00:17:14Z 2008-10-03T00:17:14Z i dont think that would work for off site contractors. http://stackoverflow.com/questions/135909/is-there-a-built-in-method-for-converting-radians-to-degrees Comment by thesmallprint on Is there a built in method for converting radians to degrees? thesmallprint 2008-09-25T20:53:11Z 2008-09-25T20:53:11Z I don't see why people are downvoting this; some people aren't mathematically inclined. http://stackoverflow.com/questions/135909/is-there-a-built-in-method-for-converting-radians-to-degrees/135925#135925 Comment by thesmallprint on Is there a built in method for converting radians to degrees? thesmallprint 2008-09-25T20:48:40Z 2008-09-25T20:48:40Z No, 180 degrees = Pi.