User fmsf - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T01:44:54Z http://stackoverflow.com/feeds/user/26004 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/583076/c-c-changing-the-value-of-a-const 0 c/c++ changing the value of a const fmsf 2009-02-24T18:55:20Z 2009-11-27T05:58:58Z <p>I had an article, but i lost it, it showed and described a couple of c/c++ tricks that ppl should be careful. One of them interested me but now that i am trying to replicate it I'm not being able to put it to compile.</p> <p>The concept was that it is possible to change by accident the value of a const in c/c++</p> <p>It was something like this:</p> <pre><code>const int a = 3; // I promisse i won't change a const int *ptr_to_a = &amp;a; // I still promiss i won't change a; int *ptr; ptr = ptr_to_a; (*ptr) = 5; // I'm a liar, a is now 5 </code></pre> <p>I wanted to show this to a friend but now I'm missing a step, does anyone know what's missing for it to start compiling and working?</p> <p>ATM I'm getting <strong>invalid conversion from 'const int*' to 'int*'</strong> but when i read the article i tried and it worked great.</p> http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat 0 Can't connect to MySQL database from tomcat fmsf 2009-11-14T19:03:02Z 2009-11-16T04:46:58Z <p>Hey, I'm getting this error:</p> <pre><code>com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up. </code></pre> <p>I'm just trying to connect to the database. With this code</p> <pre><code>&lt;%@page import="java.sql.*"%&gt; &lt;% try{ // Class.forName("com.mysql.jdbc.Driver"); Class.forName("org.gjt.mm.mysql.Driver"); out.println("found"); } catch (ClassNotFoundException ex){ out.println("Erro&lt;br/&gt;"); out.println(ex.toString()); } catch (Exception e){ out.println(e.toString()); } Connection ocon; try{ ocon = DriverManager.getConnection("jdbc:mysql://localhost/cpjcoimbra?autoReconnect=true", "*****", "*****"); //password matches out.print("connected"); } catch (Exception e){ out.println(e.toString()+"&lt;br/&gt;"); } %&gt; </code></pre> <p>It does find the driver but I'm getting that error when i try to connect to the database.</p> <p>I have this permission on catalina 50.local.policy</p> <pre><code>grant codeBase "file:/var/lib/tomcat6/WEB-INF/lib/-" { permission java.security.AllPermission; }; </code></pre> <p>Anyone has any idea why that error shows up?</p> <p>Edit: service mysql status gives this:</p> <pre><code> * /usr/bin/mysqladmin Ver 8.42 Distrib 5.1.37, for debian-linux-gnu on i486 Copyright 2000-2008 MySQL AB, 2008 Sun Microsystems, Inc. This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to modify and redistribute it under the GPL license Server version 5.1.37-1ubuntu5 Protocol version 10 Connection Localhost via UNIX socket UNIX socket /var/run/mysqld/mysqld.sock Uptime: 1 hour 32 min 21 sec Threads: 1 Questions: 103 Slow queries: 0 Opens: 171 Flush tables: 1 Open tables: 41 Queries per second avg: 0.18 </code></pre> http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat/1740103#1740103 0 Answer by fmsf for Can't connect to MySQL database from tomcat fmsf 2009-11-16T04:46:58Z 2009-11-16T04:46:58Z <p>I downgraded MySQL from 5.1 to 5.0 and everything is working now. Must be some sort of bug in the 5.1 version.</p> <p>Well thanks for the help :)</p> http://stackoverflow.com/questions/1735389/joomla-or-drupal/1735409#1735409 0 Answer by fmsf for JOOMLA or DRUPAL? fmsf 2009-11-14T19:54:09Z 2009-11-14T19:54:09Z <p>Well that's entirely up to you. I have more experience with joomla so I would go for joomla. But it entirely depends on what you think you can develop faster on.</p> http://stackoverflow.com/questions/1735271/web-services-security/1735297#1735297 0 Answer by fmsf for Web services Security fmsf 2009-11-14T19:23:08Z 2009-11-14T19:23:08Z <p>I would go with a REST web service over HTTPS it would take your problems away. I dunno anything about blackberry apps so I can't give u any pointers on how to use HTTPS in that platform.</p> http://stackoverflow.com/questions/1733106/tomcat-6-cant-find-mysql-driver 0 Tomcat 6 can't find mysql driver fmsf 2009-11-14T03:17:38Z 2009-11-14T08:47:29Z <p>Hey,</p> <p>There is a similar question here but regarding the class path. <a href="http://stackoverflow.com/questions/1585811/classnotfoundexception-com-mysql-jdbc-driver">http://stackoverflow.com/questions/1585811/classnotfoundexception-com-mysql-jdbc-driver</a></p> <p>I've had everything working great until some days ago. Suddenly my little application can't find the mysql driver. And i don't understand why (really I've checked everything)</p> <p>I got the driver jar in the WEB-INF/lib, but tomcat just seems unable to find it.</p> <p>Anyone got any ideas why? I'm using Ubuntu with tomcat 6 and mysql installed from the synaptics packadge manager</p> <p>The error that is giving is:</p> <pre><code>ClassNotFoundException: com.mysql.jdbc.Driver </code></pre> <p>I've even changed the permissions into 777 to see if it could be invisibile, but it isn't :(</p> http://stackoverflow.com/questions/951021/javascript-sleep 8 Javascript sleep fmsf 2009-06-04T14:41:10Z 2009-11-10T06:06:23Z <p>Is any better way than this function to make a sleep in javascript, or should I just use that function? <a href="http://www.sean.co.uk/a/webdesign/javascriptdelay.shtm" rel="nofollow">(taken from here)</a></p> <pre><code>function pausecomp(millis) { var date = new Date(); var curDate = null; do { curDate = new Date(); } while(curDate-date &lt; millis); } </code></pre> <p>This is not a dupe of <a href="http://stackoverflow.com/questions/758688/sleep-in-javascript">http://stackoverflow.com/questions/758688/sleep-in-javascript</a> I want a real sleep in a middle of a function, not a delay for a piece of code;</p> http://stackoverflow.com/questions/590136/clone-detectors 4 Clone detectors fmsf 2009-02-26T11:25:14Z 2009-11-07T11:31:19Z <p>Anyone know some good clone detectors? </p> <p>I'm searching for examples and algorithms on how they work to study them.</p> <p>A clone detector is a program that detect repeated code in the src file.</p> <p>An example of a clone detector I already found, was this for eclipse: <a href="http://www.cs.mcgill.ca/~swevo/clonetracker/" rel="nofollow">http://www.cs.mcgill.ca/~swevo/clonetracker/</a></p> <p>But I'm really interested is in documentation about how the algorithms they use works.</p> <p>Can anyone show me some links?</p> <p>For the reference i just found this one, seems to be cool: <a href="http://pmd.sourceforge.net/cpd.html" rel="nofollow">http://pmd.sourceforge.net/cpd.html</a></p> http://stackoverflow.com/questions/927626/how-do-you-deal-with-internet-explorer 20 How do you deal with Internet Explorer? fmsf 2009-05-29T19:07:36Z 2009-10-22T00:12:49Z <p>I am aware that there are probably other questions regarding this topic. I guess that every web developer goes through this with IE.</p> <p><hr /></p> <h3>My problem:</h3> <p>I am developing a web-based application fully based on Javascript. I am a Mac user. I was really happy that everything worked great in Safari, Firefox and Opera. I then asked a friend with Windows to check it with Internet Explorer, and things don't work as well. My application is very sensitive to the HTML standards.</p> <p>The main problem is the CSS layout. The JavaScript itself seems to be working properly thanks to jQuery for portability.</p> <p><hr /></p> <h3>My question:</h3> <p>How do you deal with Internet Explorer? Should I create a new CSS that is only loaded on Internet Explorer? Should I create a new version of the application only for Internet Explorer? How do you normally handle this? The application is pretty big both in feature design and in layout design.</p> <p><hr /></p> <h3>Edit:</h3> <p>Using the CSS reset as suggested by Nosredna, already removed almost half of the problems. I guess it really is a good practice. I noticed that SO also uses it.</p> http://stackoverflow.com/questions/262271/where-did-foo-and-bar-come-from 13 Where did "Foo" and "Bar" come from? fmsf 2008-11-04T16:12:06Z 2009-10-06T04:19:12Z <p>I've used it, I've read examples using it, I've tried to search why people use it... but still?</p> <p>Why do you use Foo and Bar when writing an example?</p> <p>And specially, where did Foo and Bar come from?</p> http://stackoverflow.com/questions/353786/beginner-javascript-must-be-on-header-to-run-does-the-declaration-order-of-the 0 Beginner: Javascript must be on header to run? Does the declaration order of the functions matter? fmsf 2008-12-09T18:45:01Z 2009-09-29T18:58:57Z <p>I have this function in my head:</p> <pre><code>&lt;head&gt; window.onload = function(){ var x = new Array(0,2,3,4,5,6,7,8); var y = new Array(20,10,40,30,60,50,70,10); drawGraph(y,x); } &lt;/head&gt; </code></pre> <p>Can I declare the function drawGraph() somewhere in the body? Do I need to declare it before it is called?</p> http://stackoverflow.com/questions/212321/anyone-know-a-simple-way-using-java-calendar-to-subtract-x-days-to-a-date 2 Anyone know a simple way using java calendar to subtract X days to a date? fmsf 2008-10-17T14:14:06Z 2009-09-25T09:30:16Z <p>Anyone know a simple way using java calendar to subtract X days to a date?</p> <p>Sry not being able to find any function which allows me to directly subtract X days to a date in java, if anyone could point me into the correct direction.</p> http://stackoverflow.com/questions/603835/mysql-simple-way-to-toggle-a-value-of-an-int-field 3 MySQL: Simple way to toggle a value of an int field fmsf 2009-03-02T20:19:09Z 2009-09-22T16:27:25Z <p>I know how to do this, but i think I'll overcomplicate it with double selects and so on.</p> <p>How can you do this (example in pseudo-sql)</p> <pre><code>UPDATE some_table SET an_int_value = (an_int_value==1 ? 0 : 1); </code></pre> <p>It must be an int value due to some other functionality, but how do you do it in a simple way?</p> http://stackoverflow.com/questions/1351966/is-there-a-pure-css-way-to-make-an-input-transparent 1 Is there a pure CSS way to make an input transparent? fmsf 2009-08-29T17:44:34Z 2009-08-31T11:56:18Z <p>How can I make this input transparent?</p> <pre><code>&lt;input type="text" class="foo"&gt; </code></pre> <p>I've tried this but it doesn't work.</p> <pre><code>background:transparent url(../img/transpSmall.png) repeat scroll 0 0; </code></pre> http://stackoverflow.com/questions/1197408/why-is-this-json-not-being-parsed-correctly -1 Why is this JSON not being parsed correctly? fmsf 2009-07-29T00:03:33Z 2009-08-01T00:23:25Z <p>My problem is that this JSON is not being parsed by JavaScript or the jQuery API. I am including the code below and a URL where the JSON output is.</p> <p>This JSON is being parsed in JavaScript as nothing:</p> <pre><code>//something like this: alert(data); // gives an object alert(data.horas[0].hora; // gives undefined </code></pre> <p>The JSON itself:</p> <pre><code>{"horas": [{"hora": "13:20","filmes":[{ "tittle": "A Idade do Gelo 3 - Despertar dos Dinossauros VP3D ", "description": "", "image_url": "images/cartazes/img/a_idade_do_gelo_3_despertar_dos_dinossauros.jpg"}]},{"hora": "15:50","filmes":[{ "tittle": "A Idade do Gelo 3 - Despertar dos Dinossauros VP3D ", "description": "", "image_url": "images/cartazes/img/a_idade_do_gelo_3_despertar_dos_dinossauros.jpg"}]},{"hora": "18:00","filmes":[{ "tittle": "A Idade do Gelo 3 - Despertar dos Dinossauros VP3D ", "description": "", "image_url": "images/cartazes/img/a_idade_do_gelo_3_despertar_dos_dinossauros.jpg"}]},{"hora": "21:05","filmes":[{ "tittle": "A Idade do Gelo 3 - Despertar dos Dinossauros VP3D ", "description": "", "image_url": "images/cartazes/img/a_idade_do_gelo_3_despertar_dos_dinossauros.jpg"}]},{"hora": "13:40","filmes":[{ "tittle": "Igor ", "description": "", "image_url": "images/cartazes/img/igor.jpg"}]},{"hora": "16:10","filmes":[{ "tittle": "Igor ", "description": "", "image_url": "images/cartazes/img/igor.jpg"}]},{"hora": "21:30","filmes":[{ "tittle": "Bruno ", "description": "", "image_url": "images/cartazes/img/bruno.jpg"}]},{"hora": "13:00","filmes":[{ "tittle": "Harry Potter e o príncipe Misterioso ", "description": "", "image_url": "images/cartazes/img/harry_potter_e_o_principe_misterioso.jpg"}]},{"hora": "16:30","filmes":[{ "tittle": "Harry Potter e o príncipe Misterioso ", "description": "", "image_url": "images/cartazes/img/harry_potter_e_o_principe_misterioso.jpg"}]},{"hora": "20:30","filmes":[{ "tittle": "Harry Potter e o príncipe Misterioso ", "description": "", "image_url": "images/cartazes/img/harry_potter_e_o_principe_misterioso.jpg"}]},{"hora": "00:15","filmes":[{ "tittle": "O Barco do Rock ", "description": "", "image_url": "images/cartazes/img/o_barco_do_rock.jpg"}]},{"hora": "12:30","filmes":[{ "tittle": "O Barco do Rock ", "description": "", "image_url": "images/cartazes/img/o_barco_do_rock.jpg"}]},{"hora": "15:25","filmes":[{ "tittle": "O Barco do Rock ", "description": "", "image_url": "images/cartazes/img/o_barco_do_rock.jpg"}]},{"hora": "18:20","filmes":[{ "tittle": "O Barco do Rock ", "description": "", "image_url": "images/cartazes/img/o_barco_do_rock.jpg"}]},{"hora": "00:20","filmes":[{ "tittle": "Harry Potter e o príncipe Misterioso ", "description": "", "image_url": "images/cartazes/img/harry_potter_e_o_principe_misterioso.jpg"}]},{"hora": "13:30","filmes":[{ "tittle": "Harry Potter e o príncipe Misterioso ", "description": "", "image_url": "images/cartazes/img/harry_potter_e_o_principe_misterioso.jpg"}]},{"hora": "17:10","filmes":[{ "tittle": "Harry Potter e o príncipe Misterioso ", "description": "", "image_url": "images/cartazes/img/harry_potter_e_o_principe_misterioso.jpg"}]},{"hora": "13:10","filmes":[{ "tittle": "Cinco Minutos de Paz ", "description": "", "image_url": "images/cartazes/img/cinco_minutos_de_paz.jpg"}]},{"hora": "16:00","filmes":[{ "tittle": "Cinco Minutos de Paz ", "description": "", "image_url": "images/cartazes/img/cinco_minutos_de_paz.jpg"}]},{"hora": "18:30","filmes":[{ "tittle": "Cinco Minutos de Paz ", "description": "", "image_url": "images/cartazes/img/cinco_minutos_de_paz.jpg"}]},{"hora": "21:40","filmes":[{ "tittle": "Cinco Minutos de Paz ", "description": "", "image_url": "images/cartazes/img/cinco_minutos_de_paz.jpg"}]},{"hora": "00:00","filmes":[{ "tittle": "A Proposta ", "description": "", "image_url": "images/cartazes/img/a_proposta.jpg"}]},{"hora": "12:50","filmes":[{ "tittle": "A Proposta ", "description": "", "image_url": "images/cartazes/img/a_proposta.jpg"}]},{"hora": "15:40","filmes":[{ "tittle": "A Proposta ", "description": "", "image_url": "images/cartazes/img/a_proposta.jpg"}]},{"hora": "18:10","filmes":[{ "tittle": "A Proposta ", "description": "", "image_url": "images/cartazes/img/a_proposta.jpg"}]}]} </code></pre> <p>I've run it in JSONLint and it gives "valid JSON"</p> <p>You can check it out at:</p> <blockquote> <p><a href="http://www.my-clock.net/vodafone/getCinema.php?cinemaid=W5" rel="nofollow">http://www.my-clock.net/vodafone/getCinema.php?cinemaid=W5</a></p> </blockquote> <p>When I call it via <code>$.post</code> or <code>$.get</code> in JSON, I always get empty data in the callback. Can anyone explain to me what it is wrong?</p> <p><hr /></p> <h3>Note:</h3> <p>This is not because of the "same origin policy")</p> <p><hr /></p> <h3>Code:</h3> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="js/jquery-1.3.2.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $.post("http://localhost/getCinema.php", { cinemaid: 'W5'}, function(data){ alert(data); alert(data.horas[0]); } ,"json"); alert("fim"); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1203509/how-can-i-get-an-html-page-as-a-string-via-php 1 How can I get an HTML page as a string via PHP? fmsf 2009-07-29T22:44:16Z 2009-07-31T02:02:21Z <p>I am fetching some info via PHP from a webpage using <code>simple_php_dom</code> and curl. The problem is that the page is not built correctly so the DOM object contains erroneous info.</p> <p>How can I get the HTML file as a string in a PHP var so that I can run a regular expression through it?</p> <p>Curl doesn't work as it is ignoring the bad part.<br /> <code>simple_html_dom.php</code> has the same issue.<br /> <code>wget</code> doesn't work since I don't have permissions for it on the server.</p> http://stackoverflow.com/questions/517532/writing-long-and-double-is-not-atomic 2 Writing long and double is not atomic?!?! fmsf 2009-02-05T19:31:24Z 2009-07-28T00:47:19Z <p>Reading and writing of a single variable is atomic (language guarantee!), unless the variable is of type long or double. </p> <p>I was reading a course slides and i found that written. The class was about concurrency.</p> <p>Can anyone explain me why writing a long or a double is not an atomic operation? It really got me by surprise.</p> http://stackoverflow.com/questions/255534/remove-the-default-browser-header-and-footer-when-printing-html 2 Remove the default browser header and footer when printing HTML. fmsf 2008-11-01T04:31:19Z 2009-07-22T16:50:33Z <p>I got an HTML with the <code>&lt;body onload="window.print()"&gt;</code>. </p> <p>The question I'm trying to ask is:</p> <ul> <li>Is there any way to remove the strings that the web browsers add to the printed page?</li> <li>Such as: <ul> <li>Web site from where the page was printed</li> <li>Page count</li> <li>Title of the web page</li> <li>Date of printing </li> </ul></li> </ul> http://stackoverflow.com/questions/1128599/is-there-any-equivalent-function-that-returns-the-character-at-position-x-in-ph 0 Is there any equivalent function that returns the character at position `X` in PHP? fmsf 2009-07-14T23:15:32Z 2009-07-15T13:59:57Z <p>Is there any equivalent function that returns the character at position <code>X</code> in PHP?</p> <p>I went through the documentation but couldn't find any. I am looking for something like:</p> <pre><code>$charAtPosition20 = strCharAt(20, $myString); </code></pre> http://stackoverflow.com/questions/1128599/is-there-any-equivalent-function-that-returns-the-character-at-position-x-in-ph/1128608#1128608 0 Answer by fmsf for Is there any equivalent function that returns the character at position `X` in PHP? fmsf 2009-07-14T23:17:46Z 2009-07-14T23:17:46Z <p>Nevermind found it :)</p> <pre><code>echo $str[1]; </code></pre> <p>// so obvious</p> http://stackoverflow.com/questions/208103/ubiquitous-computing-and-magnetic-interference 1 Ubiquitous computing and magnetic interference fmsf 2008-10-16T10:57:23Z 2009-07-12T21:59:46Z <p>Imagine the radio of a car, does the electro magnetic fields through which the car goes through, have interference in the processing? It's easy to understand that a strong field can corrupt data. But what about the data under processment? Can it also be changed?</p> <p>If so how could you protect your code against this? (without electrial protections just code ones)</p> http://stackoverflow.com/questions/1070257/how-can-i-define-a-functions-prototype-in-javascript 0 How can I define a function's prototype in JavaScript? fmsf 2009-07-01T17:01:35Z 2009-07-06T17:48:45Z <p>How can I define a function's prototype in JavaScript? I want to do this like I would do it in C where you would do something like:</p> <pre><code>void myfunction(void); void myfunction(void){ } </code></pre> <p>So is there any way to do this in JavaScript? I'm asking this because of the function declaration order that is required in JavaScript.</p> <p><hr /></p> <h3>Edit:</h3> <p>I have an object:</p> <pre><code>function something(){ var anArrayOfSomethingObjects; aPrivateFunction(){ // does some stuff anArrayOfSomethingObjects[3].aPublicFunction(); } return { functionA: function() { }, aPublicFunction: function() { }, functionC: function() { } } } </code></pre> <p><code>privateFunction</code> needs to access <code>publicFunction</code> which is declared afterwards. </p> <p>How can I do this?</p> http://stackoverflow.com/questions/1057917/is-there-a-debugger-inspector-like-firebug-for-internet-explorer 6 Is there a debugger/inspector like firebug for Internet Explorer? [closed] fmsf 2009-06-29T11:56:39Z 2009-06-29T20:17:30Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/572608/ie-and-its-problem-no-firebug-like-debug-tool">IE and its problem (No Firebug-like Debug tool)</a> </p> </blockquote> <p>Is there a debugger/inspector like firebug for Internet Explorer?</p> http://stackoverflow.com/questions/717204/is-it-possible-to-develop-with-silverlight-on-a-mac 2 Is it possible to develop with Silverlight on a Mac? fmsf 2009-04-04T14:43:48Z 2009-06-28T06:48:51Z <p>I've been searching through the Microsoft Silverlight site, and I am guessing the answer to my question will be no.</p> <p>But is there any non official or official version of the Silverlight development SDK for Mac OS?</p> <p>I want to avoid installing Windows, but I want to develop in Silverlight.</p> http://stackoverflow.com/questions/941150/trigger-an-event-on-a-specific-part-of-an-image/941228#941228 0 Answer by fmsf for Trigger an event on a specific part of an image fmsf 2009-06-02T18:46:59Z 2009-06-25T23:47:43Z <p>I suggest putting an invisible <code>div</code> in the place where you want to check for <code>mouse_over</code> in the image. (In the case that the area you want is rectangular of course). And then trigger on <code>mouse_over</code> for this <code>div</code>.</p> <p>If you want to check for non rectangular areas (that can't be a <code>div</code>), I would suggest that you put a <code>div</code> of the same size of the image on top of it. Check mouse position on that <code>div</code>, and use it to compare with a mask image.</p> <h3>Example:</h3> <pre><code>MousePosOnGhostDiv_X = 76; MousePosOnGhostDiv_Y = 145; if(CheckColorOfMaskImage(MousePosOnGhostDiv_X,MousePosOnGhostDiv_Y)=="orange") do something. </code></pre> <p>By knowing which color it is on the mask image you can set multiple events.</p> http://stackoverflow.com/questions/940045/how-to-suppress-the-file-corrupt-warning-at-excel-download/940075#940075 0 Answer by fmsf for How to suppress the file corrupt warning at excel download? fmsf 2009-06-02T15:05:19Z 2009-06-25T23:46:00Z <p>I don't believe you can hide it from the user. Those kinds of warnings are external to your browser.</p> http://stackoverflow.com/questions/939595/recovery-from-page-refresh-in-web-applications/939629#939629 2 Answer by fmsf for Recovery from page refresh in Web Applications? fmsf 2009-06-02T13:42:00Z 2009-06-25T23:45:14Z <p>My suggestion would be keeping a state machine for each user on server side which changes states with the AJAX calls. That way on the refresh, you'll already know in which state position the user was in, allowing you to recover from this.</p> <p>This might bring you a problem with scalability if you are not careful while coding it.</p> <p>Another solution might be storing the state variable in the cookie (assuming the user has active cookies). And on page load, the state variable would be submitted to your web application, allowing you to recover.</p> http://stackoverflow.com/questions/1043706/is-it-worth-using-core-data-for-a-simple-sqlite-app-on-the-iphone-with-one-table/1043712#1043712 -1 Answer by fmsf for is it worth using core data for a simple sqlite app on the iphone with one table and no relationships or complicated subtable/views? fmsf 2009-06-25T12:49:47Z 2009-06-25T23:36:47Z <p>I guess it really depends on the application you're trying to build. Although SQLite is known for being a "soft/small" database engine, not over-complicating the database structure might be advisable.</p> http://stackoverflow.com/questions/1021947/how-can-i-make-an-average-of-dates-in-mysql 3 How can I make an average of dates in MySQL? fmsf 2009-06-20T16:22:05Z 2009-06-25T23:36:05Z <p>How can I make an average between dates in MySQL? I am more interested in the time values, hours and minutes.</p> <p>On a table with:</p> <pre><code>| date_one | datetime | | date_two | datetime | </code></pre> <p>Doing a query like:</p> <pre><code> SELECT AVG(date_one-date_two) FROM some_table WHERE some-restriction-applies; </code></pre> <p><hr /></p> <h3>Edit:</h3> <p>The <code>AVG(date1-date2)</code> works but I have no clue what data it is returning.</p> http://stackoverflow.com/questions/1023784/php-filter-for-non-standard-characters/1023845#1023845 -1 Answer by fmsf for PHP filter for non standard characters fmsf 2009-06-21T12:59:51Z 2009-06-24T14:23:59Z <p>Use the function: </p> <pre><code>$htmlEntitiesString = htmlentities($inputString); </code></pre> <p>It will turn all characters like é í ä and so on into HTML entities, ensuring you don't get problems like 'é' turning into 'Á@' or something like that.</p> http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat/1735294#1735294 Comment by fmsf on Can't connect to MySQL database from tomcat fmsf 2009-11-14T19:59:05Z 2009-11-14T19:59:05Z java version &quot;1.6.0_15&quot; Java(TM) SE Runtime Environment (build 1.6.0_15-b03) Java HotSpot(TM) Client VM (build 14.1-b02, mixed mode, sharing) http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat/1735294#1735294 Comment by fmsf on Can't connect to MySQL database from tomcat fmsf 2009-11-14T19:42:53Z 2009-11-14T19:42:53Z yes to question one and to question 2 that's why i'm getting desperate :S http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat/1735294#1735294 Comment by fmsf on Can't connect to MySQL database from tomcat fmsf 2009-11-14T19:39:34Z 2009-11-14T19:39:34Z It gives the same error with both drivers http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat/1735294#1735294 Comment by fmsf on Can't connect to MySQL database from tomcat fmsf 2009-11-14T19:38:47Z 2009-11-14T19:38:47Z ah ok lol you had tiped &quot;org.mysql&quot; that's why i couldn't find it :) and i have been googling for some hours now. http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat/1735294#1735294 Comment by fmsf on Can't connect to MySQL database from tomcat fmsf 2009-11-14T19:35:48Z 2009-11-14T19:35:48Z yeah i had found that some hours ago and added it to the hosts.allow, but still did nothing, i'm starting to get desperated :S http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat/1735294#1735294 Comment by fmsf on Can't connect to MySQL database from tomcat fmsf 2009-11-14T19:34:36Z 2009-11-14T19:34:36Z And I can't find that driver inside the mysql-connector-java-5.1.6-bin.jar nor anywhere else :\ +1 for the help though http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat/1735294#1735294 Comment by fmsf on Can't connect to MySQL database from tomcat fmsf 2009-11-14T19:29:33Z 2009-11-14T19:29:33Z The only i could find was this one: unix 2 [ ACC ] STREAM LISTENING 4787 /var/run/mysqld/mysqld.sock I triedchanging the connect to :4787 but still gives the same error. And yup i did create the users correctly http://stackoverflow.com/questions/1733106/tomcat-6-cant-find-mysql-driver/1733405#1733405 Comment by fmsf on Tomcat 6 can't find mysql driver fmsf 2009-11-14T19:04:48Z 2009-11-14T19:04:48Z I changed it and now it finds the driver in web-inf/lib ty http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat Comment by fmsf on Can't connect to MySQL database from tomcat fmsf 2009-11-14T19:03:44Z 2009-11-14T19:03:44Z I've tried with both those drivers and the error is the same for both http://stackoverflow.com/questions/1733106/tomcat-6-cant-find-mysql-driver Comment by fmsf on Tomcat 6 can't find mysql driver fmsf 2009-11-14T03:40:25Z 2009-11-14T03:40:25Z typing error, i was copying this by hand from another computer. http://stackoverflow.com/questions/1197408/why-is-this-json-not-being-parsed-correctly Comment by fmsf on Why is this JSON not being parsed correctly? fmsf 2009-08-02T14:43:47Z 2009-08-02T14:43:47Z yup it is already accepted http://stackoverflow.com/questions/1197408/why-is-this-json-not-being-parsed-correctly Comment by fmsf on Why is this JSON not being parsed correctly? fmsf 2009-07-31T02:29:53Z 2009-07-31T02:29:53Z just curious why am i getting downvoted? http://stackoverflow.com/questions/1203509/how-can-i-get-an-html-page-as-a-string-via-php/1203514#1203514 Comment by fmsf on How can I get an HTML page as a string via PHP? fmsf 2009-07-29T23:06:12Z 2009-07-29T23:06:12Z You can test it with this: <a href="http://www.zonlusomundo.pt/txt_geral.php?Gid=1579830&amp;zona=filme" rel="nofollow">zonlusomundo.pt/txt_geral.php?Gid=1579830&amp;zon&hellip;</a> compare the size of wget and the size with that http://stackoverflow.com/questions/1203509/how-can-i-get-an-html-page-as-a-string-via-php/1203514#1203514 Comment by fmsf on How can I get an HTML page as a string via PHP? fmsf 2009-07-29T23:05:39Z 2009-07-29T23:05:39Z It also ignores part of the file :S The only one so far that really gets the file correctly is wget, which i can't use :S http://stackoverflow.com/questions/1197408/why-is-this-json-not-being-parsed-correctly/1197451#1197451 Comment by fmsf on Why is this JSON not being parsed correctly? fmsf 2009-07-29T02:00:42Z 2009-07-29T02:00:42Z it works ty. You'll get the correct answer in 2 days