User nicudotro - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:53:25Z http://stackoverflow.com/feeds/user/14635 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers 17 What is the easiest or fastest way to make CSS render the same in all browsers nicudotro 2008-09-17T16:13:01Z 2009-11-11T14:26:38Z <p>Making a web page display correctly im all major browsers today is a very time consuming task.</p> <p>Is there a easy way to make a CSS style that looks identical in every browser? Or at least do you have some tips to make this work easier?</p> http://stackoverflow.com/questions/365826/calculate-distance-between-2-gps-coordinates 6 calculate distance between 2 gps coordinates nicudotro 2008-12-13T22:12:33Z 2009-09-13T05:46:03Z <p>How do I calculate distance between two gps coordinates (lang,long)</p> http://stackoverflow.com/questions/1055214/is-there-a-way-to-make-html5-video-fullscreen 1 Is there a way to make html5 video fullscreen nicudotro 2009-06-28T16:38:10Z 2009-07-01T20:55:35Z <p>Is there a way to play a video fullscreen using the html5 video tag.</p> <p>And if this is not possible does anybody know if there is a reason for this decision. </p> http://stackoverflow.com/questions/186756/how-to-generate-a-range-of-numbers-in-mysql 1 How to generate a range of numbers in Mysql nicudotro 2008-10-09T11:03:40Z 2008-10-09T14:04:20Z <p>How do I generate a range of consecutive numbers (one per line) from a mysql query so that I can insert them into a table?</p> <p>for example :</p> <pre><code>nr 1 2 3 4 5 </code></pre> <p>I would like to use only mysql for this (not php or other languages)</p> http://stackoverflow.com/questions/136269/best-way-to-backup-mysql-data-on-linux-server 6 Best way to backup MySQL data on Linux server nicudotro 2008-09-25T21:28:56Z 2008-09-26T18:18:29Z <p>What is the best method to backup large (4 GB) MySQL databases.</p> <p>I currently use a cron job every night that mysqldumps everything and I keep 3 days of backups.</p> <p>Also what backup mechanism allows me to restore a backup faster.</p> http://stackoverflow.com/questions/138715/programming-with-add-adhd/138741#138741 4 Answer by nicudotro for Programming with ADD/ADHD nicudotro 2008-09-26T11:00:34Z 2008-09-26T11:00:34Z <p>Try organizing your time into small and simple tasks </p> http://stackoverflow.com/questions/87305/how-to-build-a-website-with-a-backend/87329#87329 0 Answer by nicudotro for How to build a website with a backend nicudotro 2008-09-17T20:32:56Z 2008-09-17T20:32:56Z <p>You could use php <a href="http://www.php.net/" rel="nofollow">http://www.php.net/</a></p> http://stackoverflow.com/questions/84619/how-do-i-make-a-post-request-with-curl/84647#84647 0 Answer by nicudotro for How do I make a POST request with curl nicudotro 2008-09-17T15:40:55Z 2008-09-17T15:40:55Z <p>curl -d "param=value&amp;param2=value2" "http://www.mysite.com/page.php"</p> http://stackoverflow.com/questions/84243/how-to-force-browser-to-reload-updated-xml-file/84283#84283 1 Answer by nicudotro for How to force browser to reload updated XML file? nicudotro 2008-09-17T15:11:13Z 2008-09-17T15:11:13Z <p>Use "Pragma: no-cache" header in HTTP response.</p> <p><a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9" rel="nofollow">http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9</a></p> http://stackoverflow.com/questions/79367/sql-text-searching-and-ordering/79430#79430 2 Answer by nicudotro for SQL Text Searching, AND Ordering nicudotro 2008-09-17T02:48:10Z 2008-09-17T14:58:21Z <pre><code>SELECT * FROM Items WHERE column LIKE '%foo%' OR column LIKE '%bar%' ORDER BY (IF(column LIKE '%foo%',1,0) + IF(column LIKE '%bar%',1,0)) DESC </code></pre> <p>The syntax for if is </p> <p><code>IF ( condition, true_value, false_value )</code></p> http://stackoverflow.com/questions/79490/linux-uptime-history/79520#79520 0 Answer by nicudotro for linux uptime history nicudotro 2008-09-17T03:02:21Z 2008-09-17T03:02:21Z <p>You could record the uptime in a db or file every 5 minutes and print it in your graph so if the server restarts you could see the uptime in graph as a peak</p> http://stackoverflow.com/questions/10575/whats-your-interactive-voice-response-platform/79118#79118 3 Answer by nicudotro for What's your Interactive Voice Response Platform? nicudotro 2008-09-17T01:55:18Z 2008-09-17T02:02:49Z <p>I have successfully tried Asterisk with Lumenvox for a speech recognition IVR. Asterisk is very flexible when it comes to IVRs and not just that. It also supports a wide range of VoIP protocols (SIP, H323, IAX ... ) and also classical telephony (T1, E1, FXO, FXS, etc) with the help of interface cards from Digium and other suppliers (Sangoma, Rhino, etc). You can find more info about Asterisk at <a href="http://www.voip-info.org/wiki/view/Asterisk" rel="nofollow">http://www.voip-info.org/wiki/view/Asterisk</a></p> <p>Asterisk is an open source software PBX that runs primarily on Linux. <a href="http://www.asterisk.org/" rel="nofollow">http://www.asterisk.org/</a></p> <p>Lumenvox speech engine is a commercial speech recognition solution <a href="http://www.lumenvox.com/" rel="nofollow">http://www.lumenvox.com/</a></p> <p>Digium, Sangoma, and Rhino are telephony card manufacturers that are compatiible with Asterisk. <a href="http://www.digium.com/" rel="nofollow">http://www.digium.com/</a> <a href="http://www.sangoma.com/" rel="nofollow">http://www.sangoma.com/</a> <a href="http://www.rhinoequipment.com/" rel="nofollow">http://www.rhinoequipment.com/</a></p> http://stackoverflow.com/questions/62017/what-is-the-best-way-to-get-started-using-asterisk/79141#79141 0 Answer by nicudotro for What is the best way to get started using Asterisk? nicudotro 2008-09-17T01:58:50Z 2008-09-17T01:58:50Z <p>I started using Asterisk for my house with a X100p clone and a PAP2 that I bought from ebay for ~20$ each and they work pretty well for a home system.</p> <p>Also the best site find documentation and guides for asterisk is <a href="http://www.voip-info.org/" rel="nofollow">http://www.voip-info.org/</a></p> http://stackoverflow.com/questions/186756/how-to-generate-a-range-of-numbers-in-mysql Comment by nicudotro on How to generate a range of numbers in Mysql nicudotro 2008-10-09T11:10:40Z 2008-10-09T11:10:40Z This will be new reccords. http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/84940#84940 Comment by nicudotro on What is the easiest or fastest way to make CSS render the same in all browsers nicudotro 2008-09-17T16:19:21Z 2008-09-17T16:19:21Z Not necessarily all but the major ones