User Luca - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T01:21:25Zhttp://stackoverflow.com/feeds/user/11530http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/71199/what-makes-you-lose-motivation29What makes you lose motivation?Luca2008-09-16T10:57:17Z2009-10-15T21:53:01Z
<p>What environmental factors make you lose your motivation?</p>
http://stackoverflow.com/questions/180586/does-anyone-have-experience-with-zfs4Does anyone have experience with ZFS?Luca2008-10-07T21:46:58Z2009-10-15T19:03:42Z
<p>I am considering to adopt <a href="http://opensolaris.org/os/community/zfs/" rel="nofollow">ZFS</a> and I would be happy to know your experience in both production and testing environment.</p>
http://stackoverflow.com/questions/168805/what-real-life-good-habits-has-programming-given-you12What real life good habits has programming given you?Luca2008-10-03T20:43:08Z2009-07-09T00:21:17Z
<p>Following <a href="http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you">this question</a>, what real life good habits has programming given you?</p>
http://stackoverflow.com/questions/962955/adjustments-needed-in-a-rails-app-to-use-datamapper-instead-of-activerecord/963044#9630441Answer by Luca for Adjustments needed in a Rails app to use Datamapper instead of ActiveRecordLuca2009-06-07T23:43:21Z2009-06-07T23:43:21Z<p>Today Rails plays well with ActiveRecord; changing ORM will surely give you some troubles. Rails 3.0 will be ORM agnostic so I expect a switch like the one you are describing to be easier in the future.</p>
<p>Unless you are craving to understand Rails inside-out and you are going to have the time to fix the glitches that your application will expose, stick with ActiveRecord.</p>
<blockquote>
<p>Am I likely to encounter many more examples of functionality like this that will require adjustments in my app?</p>
</blockquote>
<p>It depends on the code you have already wrote. For what you have reported in your question I'd say <em>yes</em>.</p>
<blockquote>
<p>Is this project doable or is it likely to involve a lot of complicated hackery?</p>
</blockquote>
<p>It is doable and will involve a lot of complicated hackery. The downside is that most of what you are going to learn from this hackery will be likely outdated by Rails 3.0.</p>
http://stackoverflow.com/questions/932160/model-types-and-sorting-in-rails/932485#9324851Answer by Luca for Model types and sorting in Rails?Luca2009-05-31T17:17:07Z2009-05-31T17:17:07Z<p>Please take a look at the section called "Single table inheritance" on <a href="http://api.rubyonrails.org/classes/ActiveRecord/Base.html" rel="nofollow">this page</a> and let us know if it solves your problem.</p>
http://stackoverflow.com/questions/282654/recommendations-for-a-spidering-tool-to-use-with-lucene-or-solr/282702#2827021Answer by Luca for Recommendations for a spidering tool to use with Lucene or Solr?Luca2008-11-12T01:19:12Z2008-11-12T01:19:12Z<p>I suggest you to check out <a href="http://lucene.apache.org/nutch/about.html" rel="nofollow">Nutch</a> to get some inspiration:</p>
<blockquote>
<p>Nutch is open source web-search software. It builds on Lucene Java, adding web-specifics, such as a crawler, a link-graph database, parsers for HTML and other document formats, etc.</p>
</blockquote>
http://stackoverflow.com/questions/182194/should-new-web-applications-follow-the-mvc-or-mvp-pattern/182220#1822202Answer by Luca for Should new web applications follow the MVC or MVP pattern?Luca2008-10-08T11:20:13Z2008-10-08T11:20:13Z<p>Both are great options.</p>
<p>I'd go for MVC as it has a wider adoptions and its easier to understand and use to frontend (HTML / CSS) developers.</p>
<p>Also, given the number of frameworks adopting the MVC pattern, chanches are talking with your coworkers in MVC you will talk a well knew language.</p>
http://stackoverflow.com/questions/180649/elegant-way-to-determine-total-size-of-website/180712#1807123Answer by Luca for Elegant way to determine total size of website?Luca2008-10-07T22:38:02Z2008-10-07T23:08:47Z<p>Firebug and HttpFox are two Firefox plugin that can be used to determine the size of data downloaded from a website <strong>for one single page</strong>. While <a href="http://www.getfirebug.com/" rel="nofollow">Firebug</a> is a great tool for any web developer, <a href="https://addons.mozilla.org/en-US/firefox/addon/6647" rel="nofollow">HttpFox</a> is a more specialized plugin to analyze HTTP requests / responses (with relative size).</p>
<p>You can install both and try them out, just be sure to disable the one while enabling the other.</p>
<p>If you need <strong>a website wide measurement</strong>:</p>
<ul>
<li>If the website is made of plain HTML and assets (like CSS, images, flash, ...) you can check how big the folder containing the website is on the server (this assumes you can login on the server)</li>
<li>You can mirror the website locally using wget, curl or some GUI based application like Site Sucker and check how big the folder containing the mirror is</li>
<li>If you know the website is <em>huge</em> but you don't know how much, you can estimate its size. i.e. www.mygallery.com has 1000 galleries; each gallery has an average of 20 images loaded; every image is stored in 2 different sizes (thumbnail and full size) an average of for _n_kb / image; ...</li>
</ul>
<p>Keep in mind that if you download / estimating a dynamic websites, you are dealing with what the website produces, not with the real size of the website on the server. A small PHP script can produce tons of HTML.</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/180696#1806963Answer by Luca for Change Theme / CSS based on userLuca2008-10-07T22:28:19Z2008-10-07T22:28:19Z<p>I've been there some months ago. While using dynamic CSS generated by a dedicated handler / servlet has been the first solution, to improve performances a customized CSS is now produced on file overrinding the basic elements of the standard CSS:</p>
<pre><code><link rel="stylesheet" href="standard.css" />
<link rel="stylesheet" href="<%= customer_code %>/custom_style.css" />
...
<img scr="<%= customer_code %>/logo.png" />
</code></pre>
<p>Each custom CSS will have its own URL, so you can make the browser caching them.</p>
<p>This will make you saving <strong>for each request</strong> the users will make:</p>
<ol>
<li>traffic from the database to the application layer</li>
<li>traffic from the application layer to the browser</li>
<li>some computing at the application layer</li>
</ol>
<p>I'll second the idea the user should have to fill out a web-form detailing what customizations they want to make.</p>
http://stackoverflow.com/questions/178734/what-do-you-consider-to-be-the-most-promising-open-source-project-in-the-long-ter1What do you consider to be the most promising Open Source project in the long term?Luca2008-10-07T14:33:44Z2008-10-07T16:59:31Z
<p>Time to time we stumble upon an interesting Open Source project still in its embryonic stage. Have you found one of such projects lately, and why you consider it worth to be followed or supported?</p>
<p>Please provide one project per answer; vote up and add a comment exposing your motivations if the project you intend to endorse is already listed.</p>
http://stackoverflow.com/questions/171643/what-was-your-worst-client-request-specification/171775#1717750Answer by Luca for What was your worst client request/specification?Luca2008-10-05T09:58:37Z2008-10-05T09:58:37Z<p>An Excel file to translate in web app with errors in it.</p>
http://stackoverflow.com/questions/171431/most-amusing-job-self-description/171746#1717461Answer by Luca for Most amusing job self-description?Luca2008-10-05T09:21:16Z2008-10-05T09:21:16Z<p>me?</p>
<p>"The Mine Clearer".</p>
http://stackoverflow.com/questions/171237/apache-webserver-security-and-optimization-tips/171255#1712557Answer by Luca for Apache Webserver security and optimization tipsLuca2008-10-05T00:32:36Z2008-10-05T08:34:40Z<h2>Basic</h2>
<ol>
<li><strong>Be sure to have the latest stable version installed</strong>. Running old or unstable version of Apache could expose your system to security flaws or untested solutions</li>
<li><strong>Be sure only the intended requests are actually processed</strong>. You should consider <em>who</em> has to access the web resources exposed by Apache and <em>how</em>.</li>
<li><strong>Avoid running Apache as root</strong>. This is a must.</li>
<li><strong>Handle your logs</strong>. Logs tend to become bigger and bigger; consider to setup logrotate or to clean your log periodically.</li>
<li><strong>Monitor Apache health with a monitoring system</strong>. I like to couple munin and monit, both easy to setuo and to maintain. Nagios and others are worth a look.</li>
<li>If Apache is serving web apps (i.e. PHP, Perl, Rails) <strong>be sure the requests are handled by the right module in the right order</strong>.</li>
<li><strong>Write a nice 404 and 500 message</strong>. Sooner or later your visitors will catch an error.</li>
<li><strong>Stop and restart Apache</strong>, so you can be sure both the shoutdown and start procedure is working flawlessy.</li>
<li>Use <strong>mod_security</strong></li>
</ol>
<h2>Security</h2>
<ol>
<li>Protect Apache against DOS.</li>
<li>Load only the modules really needed.</li>
<li>Monitor your log to figure out if something strange is happening.</li>
</ol>
<h2>Performance</h2>
<ol>
<li>If you are compiling Apache from source code, be sure to use MPM (Multi-Processing Modules).</li>
<li>Load only the modules really needed.</li>
<li>Check the MaxClients setting so that your server does not spawn so many children it starts swapping.</li>
<li>Use the mod_deflate module, it provides the DEFLATE output filter that allows output from your server to be compressed before being sent to the client over the network.</li>
</ol>
http://stackoverflow.com/questions/171202/developing-during-the-weekend3Developing during the weekend?Luca2008-10-04T23:58:35Z2008-10-05T00:48:07Z
<p>Do you allocate some hours during the weekend to code? If so, are you developing for self-improving, personal side projects, for the community (i.e. Open Source projects) or just because you can't stop doing it?</p>
http://stackoverflow.com/questions/70913/which-python-framework-is-best-for-web-development-in-google-app-engine/70959#709597Answer by Luca for Which python framework is best for web development in google app engine?Luca2008-09-16T10:15:48Z2008-09-18T14:48:45Z<p>If you are looking for a full stack framework Django is probably what you are looking for. <a href="http://code.google.com/appengine/articles/django.html" rel="nofollow">Here</a> you can find an article about Running Django on Google App Engine.</p>
http://stackoverflow.com/questions/91846/rails-or-django-or-something-else/92589#925890Answer by Luca for Rails or Django? (or something else?)Luca2008-09-18T13:37:28Z2008-09-18T13:37:28Z<p>A lot of PHP developers migrated to Rails successfully (have a look at <a href="http://www.pragprog.com/titles/ndphpr/rails-for-php-developers" rel="nofollow">Rails for PHP Developers</a>).</p>
http://stackoverflow.com/questions/84007/curl-command-line-for-consuming-webservices/84046#840462Answer by Luca for Curl command line for consuming webServices?Luca2008-09-17T14:49:30Z2008-09-17T14:49:30Z<p>Posting a string:</p>
<pre><code>curl -d "String to post" "http://www.example.com/target"
</code></pre>
<p>Posting the contents of a file:</p>
<pre><code>curl -d @soap.xml "http://www.example.com/target"
</code></pre>
http://stackoverflow.com/questions/83242/mysqldump-mysql-yields-too-many-open-files-error-why/83385#833853Answer by Luca for mysqldump | mysql yields 'too many open files' error. Why?Luca2008-09-17T13:46:11Z2008-09-17T14:14:38Z<p>mysqldump has been reported to yeld that error for larger databases (<a href="http://bugs.mysql.com/bug.php?id=26026" rel="nofollow">1</a>, <a href="http://bugs.mysql.com/bug.php?id=26114" rel="nofollow">2</a>, <a href="http://bugs.mysql.com/bug.php?id=27763" rel="nofollow">3</a>). Explanation and workaround from <a href="http://bugs.mysql.com/bug.php?id=26026" rel="nofollow">MySQL Bugs</a>:</p>
<blockquote>
<p>[3 Feb 2007 22:00] Sergei Golubchik
This is not really a bug.</p>
<p>mysqldump by default has --lock-tables enabled, which means it tries to lock all tables to
be dumped before starting the dump. And doing LOCK TABLES t1, t2, ... for really big
number of tables will inevitably exhaust all available file descriptors, as LOCK needs all
tables to be opened.</p>
<p>Workarounds: --skip-lock-tables will disable such a locking completely. Alternatively,
--lock-all-tables will make mysqldump to use FLUSH TABLES WITH READ LOCK which locks all
tables in all databases (without opening them). In this case mysqldump will automatically
disable --lock-tables because it makes no sense when --lock-all-tables is used.</p>
</blockquote>
<p><em>Edit</em>: Please check Dave's workaround for InnoDB in the comment below.</p>
http://stackoverflow.com/questions/71786/windows-ide-editor-for-a-beginner/71829#718291Answer by Luca for Windows IDE / editor for a beginnerLuca2008-09-16T12:47:43Z2008-09-16T12:47:43Z<p>Eclipse or Jedit, if Eclipse is too complicated. <a href="http://www.jedit.org/" rel="nofollow">jEdit</a> is cross platform, free and supports a number of different languages.</p>
http://stackoverflow.com/questions/71775/can-unix-shell-script-be-used-to-manipulate-databases/71804#71804-1Answer by Luca for Can Unix shell script be used to manipulate databases?Luca2008-09-16T12:44:46Z2008-09-16T12:44:46Z<p>Shell scripting (Bash or similar) primary intention is not to deal with databases. Go for Java or even better, ride this opportunity to learn the basics of a scripting language like Python or Ruby.</p>
http://stackoverflow.com/questions/71100/tool-to-test-website-accessibility/71117#711171Answer by Luca for Tool to test Website accessibilityLuca2008-09-16T10:42:39Z2008-09-16T10:42:39Z<p><a href="http://www.w3.org/WAI/ER/tools/" rel="nofollow">Here</a> you will find a complete list compiled by W3C. Most are platform indipendent.</p>
http://stackoverflow.com/questions/68601/svn-hosting-and-defect-tracking/71098#710981Answer by Luca for SVN hosting (and defect tracking)Luca2008-09-16T10:40:03Z2008-09-16T10:40:03Z<p>I reccomend Assembla. SVN, GIT, Trak, custom bug / ticketing system, Milestone, fine grained user permission, wiki.</p>
http://stackoverflow.com/questions/70946/which-javascript-framework-is-best-for-web-development/71020#710200Answer by Luca for Which JavaScript framework is best for web development?Luca2008-09-16T10:26:32Z2008-09-16T10:26:32Z<p>jQuery has a powerful community. Yahoo yui is more complex but well documented.</p>
http://stackoverflow.com/questions/70797/python-and-user-input/70814#708144Answer by Luca for Python and User inputLuca2008-09-16T09:48:16Z2008-09-16T09:48:16Z<pre><code>var = raw_input("Enter something: ")
print "you entered ", var
</code></pre>
http://stackoverflow.com/questions/70446/which-ruby-interpreter-are-you-looking-forward-to/70622#706223Answer by Luca for Which ruby interpreter are you looking forward to?Luca2008-09-16T09:13:24Z2008-09-16T09:13:24Z<p><a href="http://jruby.codehaus.org/" rel="nofollow">jRuby</a> is stable and reliable today. <a href="http://ruby.gemstone.com/" rel="nofollow">Maglev</a> is very promising.</p>
http://stackoverflow.com/questions/932160/model-types-and-sorting-in-rails/932485#932485Comment by Luca on Model types and sorting in Rails?Luca2009-05-31T19:47:13Z2009-05-31T19:47:13ZI had, then I recreated the scenario you described following the page has been pointed to you, having no issues.
I'd check how the variable are named from view to controller (params[...]) to be sure they are mapped in the right way.http://stackoverflow.com/questions/171655/lightweight-web-app-server-for-php/171671#171671Comment by Luca on Lightweight web app server for PHP?Luca2008-10-05T09:29:49Z2008-10-05T09:29:49Z
hide comments
I'll second this. easy to setup and easy to forget as it works perfectly. I have managed an instance of Nginx handling 2 Mongrels, PHP and serving static assets in the last 3 years. I just had to take care of upgrades time to time, everything works nice and fast.