User nicudotro - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T22:53:25Zhttp://stackoverflow.com/feeds/user/14635http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers17What is the easiest or fastest way to make CSS render the same in all browsersnicudotro2008-09-17T16:13:01Z2009-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-coordinates6calculate distance between 2 gps coordinatesnicudotro2008-12-13T22:12:33Z2009-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-fullscreen1Is there a way to make html5 video fullscreennicudotro2009-06-28T16:38:10Z2009-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-mysql1How to generate a range of numbers in Mysqlnicudotro2008-10-09T11:03:40Z2008-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-server6Best way to backup MySQL data on Linux servernicudotro2008-09-25T21:28:56Z2008-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#1387414Answer by nicudotro for Programming with ADD/ADHDnicudotro2008-09-26T11:00:34Z2008-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#873290Answer by nicudotro for How to build a website with a backendnicudotro2008-09-17T20:32:56Z2008-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#846470Answer by nicudotro for How do I make a POST request with curlnicudotro2008-09-17T15:40:55Z2008-09-17T15:40:55Z<p>curl -d "param=value&param2=value2" "http://www.mysite.com/page.php"</p>
http://stackoverflow.com/questions/84243/how-to-force-browser-to-reload-updated-xml-file/84283#842831Answer by nicudotro for How to force browser to reload updated XML file?nicudotro2008-09-17T15:11:13Z2008-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#794302Answer by nicudotro for SQL Text Searching, AND Orderingnicudotro2008-09-17T02:48:10Z2008-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#795200Answer by nicudotro for linux uptime historynicudotro2008-09-17T03:02:21Z2008-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#791183Answer by nicudotro for What's your Interactive Voice Response Platform?nicudotro2008-09-17T01:55:18Z2008-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#791410Answer by nicudotro for What is the best way to get started using Asterisk?nicudotro2008-09-17T01:58:50Z2008-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-mysqlComment by nicudotro on How to generate a range of numbers in Mysqlnicudotro2008-10-09T11:10:40Z2008-10-09T11:10:40ZThis 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#84940Comment by nicudotro on What is the easiest or fastest way to make CSS render the same in all browsersnicudotro2008-09-17T16:19:21Z2008-09-17T16:19:21ZNot necessarily all but the major ones