User Eduardo - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T22:36:57Zhttp://stackoverflow.com/feeds/user/9823http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1704775/can-the-dialog-x-be-disabled-from-jquery-ui-1-7-dialog-boxes/1800126#18001260Answer by Eduardo for Can the Dialog X be disabled from jquery UI 1.7 dialog boxes?Eduardo2009-11-25T21:35:36Z2009-11-25T21:35:36Z<p>Changing the CSS will affect other dialogs.</p>
<p>I'm using the following in the dialog definition, which is executed when it's opened:</p>
<pre><code>open: function() {
$(this).parent().children(':first').children('a').remove();
},
</code></pre>
http://stackoverflow.com/questions/826628/javascript-changing-the-value-of-onclick-with-or-without-jquery/1676697#16766970Answer by Eduardo for JavaScript: changing the value of onclick with or without jQueryEduardo2009-11-04T21:18:28Z2009-11-04T21:18:28Z<p>BTW, without JQuery this could also be done, but obviously it's pretty ugly as it only considers IE/non-IE:</p>
<pre><code>if(isie)
tmpobject.setAttribute('onclick',(new Function(tmp.nextSibling.getAttributeNode('onclick').value)));
else
$(tmpobject).attr('onclick',tmp.nextSibling.attributes[0].value); //this even supposes index
</code></pre>
<p>Anyway, just so that people have an overall idea of what can be done, as I'm sure many have stumbled upon this annoyance.</p>
http://stackoverflow.com/questions/826628/javascript-changing-the-value-of-onclick-with-or-without-jquery/1676610#16766100Answer by Eduardo for JavaScript: changing the value of onclick with or without jQueryEduardo2009-11-04T21:03:09Z2009-11-04T21:03:09Z<p>Note that following gnarf's idea you can also do:</p>
<p>var js = "alert('B:' + this.id); return false;";<br/>
var newclick = eval("(function(){"+js+"});");<br/>
$("a").get(0).onclick = newclick;</p>
<p>That will set the onclick without triggering the event (had the same problem here and it took me some time to find out).</p>
http://stackoverflow.com/questions/1591041/http-preauthorization0HTTP PreauthorizationEduardo2009-10-19T20:44:29Z2009-10-28T20:18:46Z
<p>At <a href="http://localhost/tmp/" rel="nofollow">http://localhost/tmp/</a> I have a form that asks for the user and password (authentication).
After the user posts (hits OK) I want to redirect the user to <a href="http://localhost/test/" rel="nofollow">http://localhost/test/</a> which uses Apache's Basic AuthType. Happens that the user and password just typed in the form are exactly the credentials to authenticate at <a href="http://localhost/test/" rel="nofollow">http://localhost/test/</a>
What I want is the solution so that the user is not asked for the password in the second address. So far I was able to pass the 'Authorization: Basic "base64_encoded user and password"' with CURL (using GET), and get the response I want (contents of test/index.html, for example). However, that's curl getting the info instead of my browser redirecting there with preauthorization. That is, if I type <a href="http://localhost/test/" rel="nofollow">http://localhost/test/</a> in the address bar it asks for the password again. Any ideas? Any clarification needed?</p>
http://stackoverflow.com/questions/1422812/access-database-performance/1422845#14228450Answer by Eduardo for Access database performanceEduardo2009-09-14T17:14:41Z2009-09-14T17:14:41Z<p>You can use indexes on the fields you search for (aren't you already?).
<a href="http://www.google.com.br/search?q=microsoft+access+indexes" rel="nofollow">http://www.google.com.br/search?q=microsoft+access+indexes</a></p>
http://stackoverflow.com/questions/957507/lightweight-persistent-message-queue-for-linux/958926#9589260Answer by Eduardo for Lightweight persistent message queue for Linux?Eduardo2009-06-06T03:33:29Z2009-06-06T03:33:29Z<p>I've installed and used ActiveMQ. Definitely a great choice!</p>
http://stackoverflow.com/questions/754948/dbf-large-char-field/958920#9589200Answer by Eduardo for DBF Large Char Field...Eduardo2009-06-06T03:28:48Z2009-06-06T03:28:48Z<p>Have you tried this (it's C# code, not C): <a href="http://www.aspcode.net/Reading-DBF-files-in-C.aspx" rel="nofollow">http://www.aspcode.net/Reading-DBF-files-in-C.aspx</a>
?</p>
http://stackoverflow.com/questions/763413/architecture-for-a-machine-database/924408#9244080Answer by Eduardo for Architecture for a machine databaseEduardo2009-05-29T04:40:28Z2009-05-29T04:40:28Z<p>I believe you are looking for Zabbix. It's open source, easy to install and use.
I've installed for a client a few years ago, and if I remember right it has a client application that connects to the zabbix server to update it with the requested information.
I really recommend it: <a href="http://www.zabbix.com" rel="nofollow">http://www.zabbix.com</a></p>
http://stackoverflow.com/questions/853757/how-do-i-start-a-command-from-terminal-so-that-terminal-is-not-the-parent/854293#8542930Answer by Eduardo for How do I start a command from terminal so that terminal is not the parent?Eduardo2009-05-12T18:56:12Z2009-05-12T18:56:12Z<p>Run: example-command</p>
<p>Press: Control-Z</p>
<p>Run: bg</p>
http://stackoverflow.com/questions/309825/what-is-the-best-way-today-to-maintain-clipper-5-3-code/854263#8542630Answer by Eduardo for What is the best way today to maintain clipper 5.3 code?Eduardo2009-05-12T18:50:15Z2009-05-12T18:50:15Z<p>I've been using FlagShip since 2001. Since then I migrated CA-Clipper applications to Linux and also developed web-based applications using the Clipper language and the FlagShip compiler.
If you want an open-source option I'd suggest CLIP.</p>
http://stackoverflow.com/questions/256459/populate-a-ms-access-database-in-linux/548171#5481710Answer by Eduardo for Populate a MS Access database in LinuxEduardo2009-02-14T00:03:02Z2009-02-14T00:03:02Z<p>Take a look here:
<a href="http://menkou.homelinux.net/serendipity/index.php?/archives/21-Access-a-mdb-database-from-a-php-web-site.html" rel="nofollow">http://menkou.homelinux.net/serendipity/index.php?/archives/21-Access-a-mdb-database-from-a-php-web-site.html</a></p>
http://stackoverflow.com/questions/511683/bash-get-list-of-commands-starting-with-a-given-string/511709#5117090Answer by Eduardo for bash: get list of commands starting with a given stringEduardo2009-02-04T14:58:55Z2009-02-04T14:58:55Z<p>What is listed when you hit are the binary files in your PATH that start with that string. So, if your PATH variable contains:
PATH=/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/java/bin:/usr/lib/java/jre/bin:/usr/lib/qt/bin:/usr/share/texmf/bin:.</p>
<p>Bash will look in each of those directories to show you the suggestions once you hit . Thus, to get the list of commands starting with "ls" into a variable you could do:
MYVAR=$(ls /usr/local/bin/ls* /usr/bin/ls* /bin/ls*)
Naturally you could add all the other directories I haven't.</p>
http://stackoverflow.com/questions/154247/how-do-i-configure-ie7-to-download-filetype-instead-of-opening-in-browser/154459#1544590Answer by Eduardo for How do I configure IE7 to download filetype instead of opening in browserEduardo2008-09-30T19:00:15Z2009-02-04T00:50:23Z<p>For PHP, try using these headers:</p>
<p>header("Content-Type: application/force-download");</p>
<p>header("Content-Type: application/octet-stream");</p>
<p>header("Content-Type: application/download");</p>
<p>header("Content-Disposition: attachment; filename=".basename($filename).";");</p>
<p>Naturally you can make use of the same headers in whatever language you are using.</p>
http://stackoverflow.com/questions/507515/how-do-i-manually-set-an-identity-field-in-linq-to-sql-identity-insert/509635#5096351Answer by Eduardo for How do I MANUALLY set an Identity field in LINQ-To-SQL (IDENTITY INSERT)Eduardo2009-02-04T00:35:52Z2009-02-04T00:35:52Z<p>Take a look here: <a href="http://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/566e9540-911e-48b4-ac31-f69c0ab9f7fb/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/566e9540-911e-48b4-ac31-f69c0ab9f7fb/</a>
Last reply here: <a href="http://forums.asp.net/t/1208607.aspx" rel="nofollow">http://forums.asp.net/t/1208607.aspx</a></p>
http://stackoverflow.com/questions/367559/good-datagridview-tutorial/509577#5095770Answer by Eduardo for Good DataGridView tutorialEduardo2009-02-04T00:16:17Z2009-02-04T00:16:17Z<p>You can take a look here: <a href="http://msdn2.microsoft.com/en-us/library/k39d6s23.aspx" rel="nofollow">http://msdn2.microsoft.com/en-us/library/k39d6s23.aspx</a></p>
<p>But the best one might be this: <a href="http://www.macoratti.net/08/08/c_pdgv1.htm" rel="nofollow">http://www.macoratti.net/08/08/c_pdgv1.htm</a>
I think you can get the idea from the code, since the comments are in portuguese (you can try google translate).</p>
http://stackoverflow.com/questions/456900/syncronize-two-databases-schema-in-mysql/509542#5095420Answer by Eduardo for Syncronize two databases schema in MySQLEduardo2009-02-04T00:00:44Z2009-02-04T00:00:44Z<p>For a long-term, professional solution, you should keep an eye on Schemamatic (<a href="http://versabanq.com/products/schemamatic.php" rel="nofollow">http://versabanq.com/products/schemamatic.php</a>). This link shows a GUI app but all it does is manipulate a command-line software. In this page there is link to its google code site where the C# .Net version of Schemamatic can be found. Your perfect solution would be to add support for MySQL to Schemamatic. For SQL Server, it's perfect and does exactly what you mentioned.</p>
<p>Now, for a short-term solution I would suggest dumping the data you want with MySQL's command-line tools like:
mysqldump -A -c -uroot -ppassword >bkpmysql.sql</p>
<p>And play with it, although it should take quite some time to achieve what you want. Schemamatic really seems to me your best choice. Let me know if you need any clarification when/if trying Schemamatic.</p>
http://stackoverflow.com/questions/73958/change-ip-address-via-shellscript-on-slackware/220745#2207450Answer by Eduardo for Change IP address via shellscript on SlackwareEduardo2008-10-21T04:10:36Z2008-10-21T04:10:36Z<p>In one line, e.g.: ifconfig eth0 192.168.10.12 netmask 255.255.255.0</p>
http://stackoverflow.com/questions/220719/passing-a-string-to-an-already-running-instance-of-an-application/220739#2207391Answer by Eduardo for Passing a string to an already running instance of an applicationEduardo2008-10-21T04:05:06Z2008-10-21T04:05:06Z<p>Why don't you use DDE?
Take a look at the links returned by this search: <a href="http://www.google.com/search?q=delphi+dde" rel="nofollow">http://www.google.com/search?q=delphi+dde</a></p>
http://stackoverflow.com/questions/173070/2-9999999999999999-5/173130#1731306Answer by Eduardo for 2.9999999999999999 >> .5?Eduardo2008-10-06T03:35:42Z2008-10-06T03:35:42Z<p>If you wanna go deeper, read "What Every Computer Scientist Should Know About Floating-Point Arithmetic": <a href="http://docs.sun.com/source/806-3568/ncg_goldberg.html" rel="nofollow">http://docs.sun.com/source/806-3568/ncg_goldberg.html</a></p>
http://stackoverflow.com/questions/166607/how-do-i-find-the-version-of-apache-running-without-access-to-the-command-line/166829#1668290Answer by Eduardo for How do I find the version of Apache running without access to the command line?Eduardo2008-10-03T13:25:46Z2008-10-03T13:25:46Z<p>Your best option is through PHP:
All version requests from the client side cannot be trusted since your Apache could be configured with ServerTokens Prod and ServerSignature Off. See: <a href="http://www.petefreitag.com/item/419.cfm" rel="nofollow">http://www.petefreitag.com/item/419.cfm</a></p>
http://stackoverflow.com/questions/154549/migrate-sql2000-database-to-sql2005-on-another-machine/154621#1546210Answer by Eduardo for Migrate SQL2000 Database to SQL2005 on another machineEduardo2008-09-30T19:38:54Z2008-09-30T19:38:54Z<p>The answer is right here, from Microsoft: <a href="http://support.microsoft.com/kb/224071" rel="nofollow">http://support.microsoft.com/kb/224071</a></p>
http://stackoverflow.com/questions/154441/set-up-an-http-proxy-to-insert-a-header/154552#1545520Answer by Eduardo for Set up an HTTP proxy to insert a headerEduardo2008-09-30T19:25:08Z2008-09-30T19:25:08Z<p>Use <a href="http://www.proxomitron.info" rel="nofollow">http://www.proxomitron.info</a> and set up the header you want, etc.</p>
http://stackoverflow.com/questions/139389/should-i-use-qt-jambi-in-java/139480#1394801Answer by Eduardo for Should I use Qt Jambi in Java ?Eduardo2008-09-26T13:23:19Z2008-09-26T13:23:19Z<p>If you think being familiar with Qt would be useful in the future, when you might want to develop in C++ (or change some Qt-based software), I think it would be nice.</p>
http://stackoverflow.com/questions/15190/changing-current-save-default-directory-in-delphi-2007-without-using-save-as/73948#739480Answer by Eduardo for Changing CURRENT save/default directory in Delphi 2007 without using Save-AsEduardo2008-09-16T16:01:29Z2008-09-16T16:01:29Z<p>I believe it gets that info from Tools -> Options -> Environment Options -> Environment Variables.
Try to play with those (Add override).</p>
http://stackoverflow.com/questions/237/distributed-source-control-options/66785#667851Answer by Eduardo for Distributed source control optionsEduardo2008-09-15T20:47:24Z2008-09-15T20:47:24Z<p>I use Git on Windows daily to do version control of a Delphi software' source code. Just use Cygwin to install it: <a href="http://www.cygwin.com/setup.exe" rel="nofollow">http://www.cygwin.com/setup.exe</a> </p>
<p><a href="http://www.advogato.org/person/apenwarr/diary/371.html" rel="nofollow">http://www.advogato.org/person/apenwarr/diary/371.html</a></p>
http://stackoverflow.com/questions/66363/get-external-ip-address-over-remoting-in-c/66522#665220Answer by Eduardo for Get external IP address over remoting in C#Eduardo2008-09-15T20:18:23Z2008-09-15T20:18:23Z<p>I believe theoretically you are unable to do such a thing while being behind a router (e.g. using invalid ip ranges) without using an external "help".</p>
http://stackoverflow.com/questions/1598558/testing-strategies-generating-a-xml-file/1598564#1598564Comment by Eduardo on testing strategies: generating a XML fileEduardo2009-10-21T03:33:42Z2009-10-21T03:33:42ZI must agree here with XSD validation. You were "supposed" to have the XSD anyway, so just validate the XML using the XSD. If you don't have already, it would certainly save you time.http://stackoverflow.com/questions/1591041/http-preauthorization/1591078#1591078Comment by Eduardo on HTTP PreauthorizationEduardo2009-10-19T20:53:32Z2009-10-19T20:53:32ZNo because test/ uses webdav, so I want to pre-authenticate at tmp/ (to do some other stuff) and have test/ already accessible at the time of redirection.http://stackoverflow.com/questions/154247/how-do-i-configure-ie7-to-download-filetype-instead-of-opening-in-browser/154459#154459Comment by Eduardo on How do I configure IE7 to download filetype instead of opening in browserEduardo2008-12-10T20:56:15Z2008-12-10T20:56:15ZNot really, I just missed the 'F' before the 'or' in the beginning of the answer. But I totally understood it.