User Milan Babuškov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T21:06:09Zhttp://stackoverflow.com/feeds/user/14690http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1837184/is-it-possible-to-replace-a-function-in-php-such-as-mail-and-make-it-do-somethi/1837302#18373024Answer by Milan Babuškov for Is it possible to replace a function in php (such as mail) and make it do something else?Milan Babuškov2009-12-03T02:40:33Z2009-12-03T02:40:33Z<p>There is an extension that allows you to override functions. It is meant to be used for debugging, but I guess you can use it for your needs. Take a look:</p>
<p><a href="http://www.php.net/manual/en/function.override-function.php" rel="nofollow">http://www.php.net/manual/en/function.override-function.php</a></p>
<p>If you wish to call the original function within your version, make sure you read this comment:
<a href="http://www.php.net/manual/en/function.override-function.php#50821" rel="nofollow">http://no.php.net/manual/en/function.override-function.php#50821</a></p>
http://stackoverflow.com/questions/577243/is-there-any-reason-to-use-this2Is there any reason to use this->Milan Babuškov2009-02-23T11:03:43Z2009-12-02T11:42:00Z
<p>I programmed in C++ for many years and I still have doubt about one thing. In many places in other people code I see something like:</p>
<pre><code>void Classx::memberfunction()
{
this->doSomething();
}
</code></pre>
<p>If I need to import/use that code, I simply remove the <strong>this-></strong> part, and I have never seen anything broken or having some side-effects.</p>
<pre><code>void Classx::memberfunction()
{
doSomething();
}
</code></pre>
<p>So, do you know of any reason to use such construct?</p>
<p>EDIT: Please note that I'm talking about member functions here, not variables. I understand it can be used when you want to make a distinction between a member variable and function parameter.</p>
<p>EDIT: apparent duplicate:
<a href="http://stackoverflow.com/questions/333291/are-there-any-reasons-not-to-use-this-self-me">http://stackoverflow.com/questions/333291/are-there-any-reasons-not-to-use-this-self-me</a></p>
http://stackoverflow.com/questions/1810223/how-can-i-check-if-mysql-table-column-even-exists/1810245#18102450Answer by Milan Babuškov for How can I check if mysql table column even exists ?Milan Babuškov2009-11-27T19:00:29Z2009-11-27T19:00:29Z<p>Well, one way is to do:</p>
<pre><code>select price from your_table limit 1
</code></pre>
<p>If you get an error:</p>
<pre><code>#1054 - Unknown column 'price' in 'field list'
</code></pre>
<p>then it does not exists. </p>
http://stackoverflow.com/questions/1805009/using-exists-with-mysql0Using EXISTS with MySQLMilan Babuškov2009-11-26T18:05:17Z2009-11-26T18:14:28Z
<p>I have this simple query that works on all other database systems, but fails with MySQL:</p>
<pre><code>UPDATE points p
SET p.userid = 5224
WHERE p.userid = 2532
AND NOT EXISTS (
SELECT 1
FROM points q
WHERE q.userid = 5224
AND q.game = p.game
)
</code></pre>
<p>I get the following error message: </p>
<pre><code>#1093 - You can't specify target table 'p' for update in FROM clause
</code></pre>
<p>Is there any workaround?</p>
http://stackoverflow.com/questions/216823/whats-the-best-way-to-trim-stdstring7What's the best way to trim std::stringMilan Babuškov2008-10-19T19:23:07Z2009-11-24T19:26:07Z
<p>I'm currently using the following code to right-trim all the std::strings in my programs:</p>
<pre><code>std::string s;
s.erase(s.find_last_not_of(" \n\r\t")+1);
</code></pre>
<p>It works fine, but I wonder if there are some end-cases where it might fail?</p>
<p>Of course, answers with elegant alternatives and also left-trim solution are welcome.</p>
http://stackoverflow.com/questions/1735582/mvc-in-php-without-the-magic/1735989#17359891Answer by Milan Babuškov for MVC in PHP without the "magic"Milan Babuškov2009-11-14T23:36:09Z2009-11-14T23:36:09Z<p>I don't know which frameworks you did look at. The ones I used so far (CodeIgniter and Yii) do work magic, but have safeguards. For example, all controllers need to be extended from Controller class, so you cannot instantiate <strong>any</strong> class, only a controller. With CodeIgniter, it is recommended that all controller methods that should not be accessible via browser are declared private. Yii brings this to another level, requiring that all such methods start name with "action" (it would be "actionEdit" in your example), so you really cannot call some arbitrary method from outside.</p>
<p>I find all this magic to be very useful when there are multiple developers on a team, because it makes sure people follow the rules and it's much easier to get into each other's code and understand what happens. Without such conventions being enforced, you have to spend time in the browser tracking which link leads where and then digging into PHP code to find where it goes. It can turn into a big mess with so loose language like PHP (no strict types, variables declared on first use, dynamic arrays, etc.) In C# or Java it's the language that enforces order, in PHP it's the job for frameworks.</p>
http://stackoverflow.com/questions/1717495/check-if-a-database-table-exists-using-php-pdo/1717534#17175341Answer by Milan Babuškov for Check if a database table exists using php/pdoMilan Babuškov2009-11-11T19:36:42Z2009-11-11T19:36:42Z<p>Do:</p>
<pre><code>select 1 from your_table
</code></pre>
<p>and then catch the error. If you don't get any error, but resultset with one column containing "1", then the table exists.</p>
http://stackoverflow.com/questions/1466530/sql-reference-current-row-in-a-computed-column-with-select/1700590#17005900Answer by Milan Babuškov for SQL - Reference current row in a computed column with SELECTMilan Babuškov2009-11-09T12:05:15Z2009-11-09T12:05:15Z<p>Just prefix the field with table name of the current table:</p>
<pre><code>DeadlineDate COMPUTED BY ((
select first 1 AddMonth(contract.BeginDate, DeadlineMonths)
from addendums contract
where contract.projectid = projects.projectid
order by contract.BeginDate ))
</code></pre>
http://stackoverflow.com/questions/1679151/whats-the-proper-way-to-work-with-assets-in-yii0What's the proper way to work with assets in Yii?Milan Babuškov2009-11-05T08:39:50Z2009-11-08T13:36:39Z
<p>I notice that Yii creates strange set of directories (names like 8523d23 or 10s89b92) in assets directory, and this even happens at runtime. For example, one of my tables got more than 10 records, pagination kicked-in and I got a new files in assets subdirectory named pager.css.</p>
<p>When I move my site from testing to production, should I copy all those, or just create an empty "assets" directory, and it will be filled at runtime?</p>
<p>If I want to add, for example, some new jQuery plugin, how should I proceed? </p>
<p>For example, I wish to add jquery.charcounter.js, do I copy it to assets or to yii/framework/web/js/source? If I do the latter, how do I get this .js file included in HTML page output?</p>
http://stackoverflow.com/questions/1139391/how-to-test-controllers-with-codeigniter2How to test controllers with CodeIgniter?Milan Babuškov2009-07-16T18:23:32Z2009-11-05T01:03:10Z
<p>I have a PHP web application built with CodeIgniter MVC framework. I wish to test various controller classes. I'm using <a href="http://jensroland.com/projects/toast/" rel="nofollow">Toast</a> for unit testing. My controllers have no state, everything they process is either saved into session or passed to view to display. Creating a mock session object and testing whether that works properly is straightforward (just create a mock object and inject it with $controller->session = $mock).</p>
<p>What I don't know, is how to work with views. In CodeIgniter, views are loaded as:</p>
<pre><code>$this->load->view($view_name, $vars, $return);
</code></pre>
<p>Since I don't want to alter CI code, I though I could create a mock Loader and replace the original. And here lies the problem, I cannot find a way to derive a new class from CI_Loader. </p>
<p>If I don't include the system/libraries/Loader.php file, the class CI_Loader is undefined and I cannot inherit from it:</p>
<pre><code>class Loader_mock extends CI_Loader
</code></pre>
<p>If I do include the file (using require_once), I get the error:</p>
<pre><code>Cannot redeclare class CI_Loader
</code></pre>
<p>Looks like CI code itself does not use require_once from whatever reason.</p>
<p>Does anyone here have experience with unit testing CodeIgniter powered applications?</p>
<p><strong>Edit:</strong> I tried to inject a real loader object at run-time into a mock class, and redirect all calls and variables with __call, __set, __get, __isset and __unset. But, it does not seem to work (I don't get any errors though, just no output, i.e. blank page from Toast). Here's the code:</p>
<pre><code>class Loader_mock
{
public $real_loader;
public $varijable = array();
public function Loader_mock($real)
{
$this->real_loader = $real;
}
public function __call($name, $arguments)
{
return $this->real_loader->$name($arguments);
}
public function __set($name, $value)
{
return $this->real_loader->$name = $value;
}
public function __isset($name)
{
return isset($this->real_loader->$name);
}
public function __unset($name)
{
unset($this->loader->$name);
}
public function __get($name)
{
return $this->real_loader->$name;
}
public function view($view, $vars = array(), $return = FALSE)
{
$varijable = $vars;
}
}
</code></pre>
http://stackoverflow.com/questions/1594526/what-are-the-different-ways-of-writing-if-conditional-statements-using-php/1594701#15947015Answer by Milan Babuškov for What are the different ways of writing "if" conditional statements using PHP?Milan Babuškov2009-10-20T13:42:05Z2009-10-20T13:42:05Z<pre><code>echo ($test == 1) ? 'asdsa' : 'sdaaa';
</code></pre>
http://stackoverflow.com/questions/1343066/domains-in-firebird/1581681#15816810Answer by Milan Babuškov for Domains in FirebirdMilan Babuškov2009-10-17T07:51:08Z2009-10-17T07:51:08Z<p>The only impact on performance is visible in administration tools which need to fetch info from domains. If you have a database with, let's say, 500 tables having 20 columns on average, that's 10000 domains. If you use custom domains, you might have 50 or so. So, admin tool will load table and column definitions much faster.</p>
<p>What you really should be concerned is logic. Having domains makes sure you don't mismatch some columns' datatypes which could create problems with foreign keys for example. Also, it makes easier to change some domain datatype globally: for example, some time ago I decided to change datatype of CustomerIDs in Customer table in one of my databases. It is referenced in about 50 foreign keys. With domains, it was as easy as dumping SQL script and changing the definition of domain. If there were no domains, I would have to do search&replace on a huge SQL script - which is of course error prone.</p>
http://stackoverflow.com/questions/1562999/what-possibilities-exist-to-build-an-installer-for-a-windows-application-on-linux/1572176#15721760Answer by Milan Babuškov for What possibilities exist to build an installer for a windows application on Linux (install target=windows, build environment=Linux)Milan Babuškov2009-10-15T12:52:50Z2009-10-15T12:52:50Z<p>Try running <a href="http://www.jrsoftware.org/isinfo.php" rel="nofollow">InnoSetup</a> under <a href="http://www.winehq.org/" rel="nofollow">Wine</a>. It should work unless you have some very specific needs. InnoSetup is open source, BTW.</p>
http://stackoverflow.com/questions/1566187/is-this-proper-use-of-jquery/1566211#15662113Answer by Milan Babuškov for Is this proper use of jQuery?Milan Babuškov2009-10-14T13:25:40Z2009-10-14T13:25:40Z<pre><code>The jQuery you see for tab1 is repeated for each tab.
</code></pre>
<p>I'd rather go with generic solution. Use "tab" class for all tabs, write a click handler for that. Use $(this) to reference what was clicked on.</p>
http://stackoverflow.com/questions/1542401/whats-the-appropriate-unicode-character-to-flag-users-on-the-website1What's the appropriate Unicode character to flag users on the website?Milan Babuškov2009-10-09T07:47:07Z2009-10-10T18:50:31Z
<p>I run a quiz-like website at <a href="http://www.slagalica.tv" rel="nofollow">slagalica.tv</a> (content is not in English). We often have users that try to cheat the system, so we flag those accounts and they get special treatment. Now I'd like to add some character beside their name to be visible everywhere across the website, so that everyone knows those accounts are flagged.</p>
<p>I'm currently considering to use the "dagger" character</p>
<p><a href="http://en.wikipedia.org/wiki/Dagger_(typography)" rel="nofollow">http://en.wikipedia.org/wiki/Dagger_(typography)</a></p>
<p>which is used for different purposes in different domains. But I fear that I do not know about some cool Unicode character that would fit this purpose better.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1541429/how-to-run-c-code-from-c/1541465#15414652Answer by Milan Babuškov for How to run c++ code from c++?Milan Babuškov2009-10-09T01:56:54Z2009-10-09T01:56:54Z<p>Non of the mainstream C++ implementations have that feature, as C++ is not reflective.</p>
<p>However, take a look at Ch, it might be what you are looking for:</p>
<p><a href="http://www.softintegration.com/" rel="nofollow">http://www.softintegration.com/</a></p>
<p><a href="http://en.wikipedia.org/wiki/Ch_interpreter" rel="nofollow">http://en.wikipedia.org/wiki/Ch_interpreter</a></p>
<p>You can embed Ch interpreter into your C++ application and run dynamic C++ code inside it.</p>
http://stackoverflow.com/questions/660329/prevent-back-button-from-showing-post-confirmation-alert4Prevent Back button from showing POST confirmation alertMilan Babuškov2009-03-18T22:21:15Z2009-10-06T23:49:24Z
<p>I have an application that supplies long list of parameters to a web page, so I have to use POST instead of GET. The problem is that when page gets displayed and user clicks the Back button, Firefox shows up a warning: </p>
<blockquote>
<p>To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier.</p>
</blockquote>
<p>Since application is built in such way that going Back is a quite common operation, this is really annoying to end users.</p>
<p>Basically, I would like to do it the way this page does:</p>
<p><a href="http://www.pikanya.net/testcache/" rel="nofollow">http://www.pikanya.net/testcache/</a></p>
<p>Enter something, submit, and click Back button. No warning, it just goes back.</p>
<p>Googling I found out that this might be a bug in Firefox 3, but I'd like to somehow get this behavior even after they "fix" it. </p>
<p>I guess it could be doable with some HTTP headers, but which exactly?</p>
http://stackoverflow.com/questions/1251218/css-clearfix-problem-with-firefox-2-and-seamonkey0CSS clearfix problem with Firefox 2 and SeaMonkeyMilan Babuškov2009-08-09T11:41:40Z2009-10-06T16:02:57Z
<p>I am using <a href="http://www.yaml.de/en" rel="nofollow">yaml</a> for layout and famous <a href="http://www.webtoolkit.info/css-clearfix.html" rel="nofollow">clearfix css</a> to make sure container with floats get extended. </p>
<p>Everything works fine with Firefox 3, IE6, IE7, IE8, Opera 9 and Google Chrome, but I have issue with Firefox 1, Firefox 2 and SeaMonkey. The problem is that clearfix container gets extended too much, as you can see on the website:</p>
<p><a href="http://www.slagalica.tv/game/mojbroj" rel="nofollow">http://www.slagalica.tv/game/mojbroj</a></p>
<p>Here are screenshots of <a href="http://www.slagalica.tv/firefox2.jpg" rel="nofollow">Firefox 2</a> and <a href="http://www.slagalica.tv/firefox3.jpg" rel="nofollow">Firefox 3</a> rendering.</p>
<p><strong>Update:</strong> <a href="http://browsershots.org/screenshots/c50f599e3b570deca33f1a0d75379251/" rel="nofollow">Screenshots on BrowserShots.org</a></p>
<p>Unfortunately, stats show that more than 10% of my visitors are using FF2, so I cannot simply ignore the problem. I tried removing or tweaking some parts of clearfix CSS, but no matter what I do, the timer DIV (green) is separated by a large margin from the rest of the page.</p>
<p>Does anyone have an idea how to solve this?</p>
<p>Update2: I finally gave up and put TABLE tag and solved the issue in few minutes. So, don't try to look into HTML source - problem is not evident anymore.</p>
http://stackoverflow.com/questions/1504990/whats-the-difference-between-like-and-in-sql/1505035#15050357Answer by Milan Babuškov for What's the difference between "LIKE" and "=" in SQL ?Milan Babuškov2009-10-01T16:31:11Z2009-10-01T16:41:16Z<p>As per SQL standard, the difference is treatment of trailing whitespace in CHAR columns. Example:</p>
<pre><code>create table t1 ( c10 char(10) );
insert into t1 values ('davyjones');
select * from t1 where c10 = 'davyjones';
-- yields 1 row
select * from t1 where c10 like 'davyjones';
-- yields 0 rows
</code></pre>
<p>Of course, assuming you run this on a standard-compliant DBMS. BTW, this is one the main differences between CHARs and VARCHARs.</p>
http://stackoverflow.com/questions/1486287/algorithm-to-find-longest-anagram3Algorithm to find longest anagramMilan Babuškov2009-09-28T10:07:42Z2009-09-30T00:26:36Z
<p>Let's say that we have a dictionary of about 250.000 words. Algorithm should take in 12 letters as an array or a string and find the permutation (or is it variation or combination?) that matches longest word from a dictionary. So, it is not a real permutation, as not all of the letters are used.</p>
<p>Of course, one can always brute-force it, but I wonder what would be the most elegant way to do this?</p>
<p>Answers using languages other than PHP will also be accepted if they do not use any language-specific functions as a shortcut for the main problem.</p>
<p>Note: Words are stored in the database, but I could pull them into memory for speed. Although I'm not sure PHP's indexing is better than that of an MySQL database?</p>
http://stackoverflow.com/questions/1296947/how-to-create-binary-hex-dump-of-another-processs-memory/1494507#14945070Answer by Milan Babuškov for How to create binary/hex dump of another process's memory?Milan Babuškov2009-09-29T19:37:56Z2009-09-29T19:37:56Z<p>Not really a "how to program it" answer, but I just found your question while looking for a tool that could do that, when I ran into PMDump:</p>
<p><a href="http://ntsecurity.nu/toolbox/pmdump/" rel="nofollow">http://ntsecurity.nu/toolbox/pmdump/</a></p>
<p>It's dead easy and simple to use, and creates correct dumps (I just tried it with some programs).</p>
http://stackoverflow.com/questions/522928/can-you-do-this-html-layout-without-using-tables/522936#52293618Answer by Milan Babuškov for Can you do this HTML layout without using tables?Milan Babuškov2009-02-07T01:50:05Z2009-09-25T15:47:41Z<p>Just float left and right and set to clear both and you're done. No need for tables.</p>
<p><strong>Edit:</strong> I know that I got a lot of upvotes for this, and I believed I was right. But there are cases where you simply need to have tables. You can try doing everything with CSS and it will work in modern browsers, but if you wish to support older ones... Not to repeat myself, here the <a href="http://stackoverflow.com/questions/1251218/css-clearfix-problem-with-firefox-2-and-seamonkey">related stack overflow thread</a> and <a href="http://www.backwardcompatible.net/css-is-awesome-6" rel="nofollow">rant on my blog</a>.</p>
http://stackoverflow.com/questions/1475297/phps-white-screen-of-death/1475831#14758310Answer by Milan Babuškov for PHP's white screen of deathMilan Babuškov2009-09-25T07:02:27Z2009-09-25T07:02:27Z<p>If the error is in PHP code, you can use error_reporting() function within your code to set to the report all. </p>
<p>However, this does not handle the situation when PHP crashes. Information about that is only available in server logs. Maybe you don't have access to those, but many hosting providers I've worked with have some way to let you access it. For example, the approach I like best is that it creates the error_log file in the current directory where .php resides. Try searching there or contact your hosting provider about this. </p>
http://stackoverflow.com/questions/1436575/can-a-php-script-trick-the-browser-into-thinking-the-http-request-is-over/1447854#14478541Answer by Milan Babuškov for Can a PHP script trick the browser into thinking the HTTP request is over?Milan Babuškov2009-09-19T05:31:46Z2009-09-19T05:31:46Z<p>Here's how to do it. You tell the browser to read in the first N characters of output and then close the connection, while your script keeps running until it's done.</p>
<pre><code><?php
ob_end_clean();
header("Connection: close");
ignore_user_abort(); // optional
ob_start();
echo ('Text the user will see');
$size = ob_get_length();
header("Content-Length: $size");
ob_end_flush(); // Will not work
flush(); // Unless both are called !
// At this point, the browser has closed connection to the web server
// Do processing here
echo('Text user will never see');
?>
</code></pre>
http://stackoverflow.com/questions/1447817/can-a-php-script-start-another-php-script-and-exit/1447844#14478443Answer by Milan Babuškov for Can a PHP script start another PHP script and exit?Milan Babuškov2009-09-19T05:26:56Z2009-09-19T05:26:56Z<p>Here's how to do it. You tell the browser to read in the first N characters of output and then close the connection, while your script keeps running until it's done.</p>
<pre><code><?php
ob_end_clean();
header("Connection: close");
ignore_user_abort(); // optional
ob_start();
echo ('Text the user will see');
$size = ob_get_length();
header("Content-Length: $size");
ob_end_flush(); // Will not work
flush(); // Unless both are called !
// At this point, the browser has closed connection to the web server
// Do processing here
include('other_script.php');
echo('Text user will never see');
?>
</code></pre>
http://stackoverflow.com/questions/1445683/what-is-your-current-computer-setup/1445705#14457050Answer by Milan Babuškov for What is your current computer setup ?Milan Babuškov2009-09-18T16:52:04Z2009-09-18T16:52:04Z<p>It all depends on the tools you need for development. I see that you use a compiled language, but still, difference in compile times for C++, Java or Delphi code are very different. For dynamic languages like PHP, all you need is a good editor and a browser. But, you might also decide to use Eclipse. For compiled languages, you need some horsepower for the compiler, and it also depends what kind of time are you prepared to wait.</p>
<p>I'm doing some C++ development (GCC compiler) and PHP. I have a Core2Duo @2.6GHz machine with 2GB RAM, and usually run 2 compile jobs at a time (make -j2) allowing me to do something in the background as well, and use Eclipse as editor so that takes somewhat too (parsing the files on each change). I find this configuration to be confortable, although I wouldn't mind more CPU power.</p>
http://stackoverflow.com/questions/1398445/directory-structure-for-c-library/1398818#13988181Answer by Milan Babuškov for Directory structure for C++ libraryMilan Babuškov2009-09-09T10:27:25Z2009-09-09T10:27:25Z<p>I find wxWidgets library (open source) to be a good example. They support many different platforms (Win32, Mac OS X, Linux, FreeBSD, Solaris, WinCE...) and compilers (MSVC, GCC, CodeWarrior, Watcom, etc.). You can see the tree layout here:</p>
<p><a href="http://svn.wxwidgets.org/viewvc/wx/wxWidgets/trunk/" rel="nofollow">http://svn.wxwidgets.org/viewvc/wx/wxWidgets/trunk/</a></p>
http://stackoverflow.com/questions/1398018/rsync-git-directory/1398050#13980504Answer by Milan Babuškov for rsync .git directory Milan Babuškov2009-09-09T07:21:49Z2009-09-09T07:21:49Z<p>You can rsync without any problems, but if you have some remotes declared with hostnames which are local to the machine (i.e. stored in /etc/hosts only) then those obviously won't work.</p>
<p>However, is there some reason why you don't use git itself to sync the content?</p>
http://stackoverflow.com/questions/1394478/php-echo-vs-openclose-tag/1394588#13945881Answer by Milan Babuškov for php echo vs open&close tagMilan Babuškov2009-09-08T15:15:53Z2009-09-08T15:15:53Z<p>First one is more readable from programming point of view, but the second one allows you to open the file in some WYSIWYG HTML editor and change the page design. </p>
<p>I prefer the second option because it is much easier to tell your designer that "this part of the page will behave like that", than "this piece of code does that"</p>
http://stackoverflow.com/questions/1389901/working-with-csv-sqlite-vs-join/1389917#13899170Answer by Milan Babuškov for Working with csv - SQLite vs joinMilan Babuškov2009-09-07T15:37:03Z2009-09-07T15:37:03Z<p>Using any database system that has indexes will be faster than parsing of textual files. For example, if you have 100.000 records, a binary indexed column can extract any "record" within 17 reads. Finding a record in such flat file can take from one to 100.000 reads.</p>
<p>Indexes are most important for speed and fast access, but with databases you also get other benefits like data consistency (makes sure all data has valid type).</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954904#954904Comment by Milan Babuškov on Hidden Features of HTMLMilan Babuškov2009-12-02T21:25:53Z2009-12-02T21:25:53ZIt does not seem to work with Firefox 2?http://stackoverflow.com/questions/954327/hidden-features-of-html/954474#954474Comment by Milan Babuškov on Hidden Features of HTMLMilan Babuškov2009-12-02T21:22:06Z2009-12-02T21:22:06Z@eyelidlessness: with some browsers (IE), that does not work properly. For example, if you click the label for checkbox, it will not toggle.http://stackoverflow.com/questions/1812355/regular-expression-in-php/1812375#1812375Comment by Milan Babuškov on Regular Expression In PHPMilan Babuškov2009-11-28T13:08:24Z2009-11-28T13:08:24Z@meder: if you have a subtle error in HTML like tag that is not closed, most browsers will switch to quicks mode and ignore it, while most DOM parsers will choke. Experienced developers do use regex instead of DOM.http://stackoverflow.com/questions/1812355/regular-expression-in-php/1812412#1812412Comment by Milan Babuškov on Regular Expression In PHPMilan Babuškov2009-11-28T13:06:47Z2009-11-28T13:06:47Z@meder: and if designer puts it all into another div XPath also gets broken. Regex is much easier to maintain because it allows you to focus on the part of the page you want to extract, not the whole DOM hierarchy.http://stackoverflow.com/questions/1810223/how-can-i-check-if-mysql-table-column-even-exists/1810245#1810245Comment by Milan Babuškov on How can I check if mysql table column even exists ?Milan Babuškov2009-11-27T19:02:00Z2009-11-27T19:02:00ZIf you get error #1054http://stackoverflow.com/questions/1805009/using-exists-with-mysql/1805042#1805042Comment by Milan Babuškov on Using EXISTS with MySQLMilan Babuškov2009-11-27T07:45:22Z2009-11-27T07:45:22ZI hardly call SQL Server portable, but ok :) Oracle is not the only DBMS there is. There's Firebird, Postgred, SQLite, DB2, Informix, etc.http://stackoverflow.com/questions/1805009/using-exists-with-mysql/1805042#1805042Comment by Milan Babuškov on Using EXISTS with MySQLMilan Babuškov2009-11-26T18:20:25Z2009-11-26T18:20:25ZThanks. +1 from me, but I like Mark's answer better because NOT IN is slower on some other database systems and there the difference is huge (index vs no index), so it is more portable.http://stackoverflow.com/questions/1794006/split-string-into-equal-parts-using-phpComment by Milan Babuškov on Split string into equal parts using PHPMilan Babuškov2009-11-25T01:03:39Z2009-11-25T01:03:39ZMaybe you should specify what kind of result you want. An array?http://stackoverflow.com/questions/1755080/why-jquery-do-this-jquery-fn-init-prototype-jquery-fnComment by Milan Babuškov on Why jQuery do this: jQuery.fn.init.prototype = jQuery.fn?Milan Babuškov2009-11-18T10:36:34Z2009-11-18T10:36:34ZI not sure what you mean by adding f1() into init.prototype? It's not adding "into" anything, it's assigning the prototype.http://stackoverflow.com/questions/1717495/check-if-a-database-table-exists-using-php-pdo/1717534#1717534Comment by Milan Babuškov on Check if a database table exists using php/pdoMilan Babuškov2009-11-12T06:28:45Z2009-11-12T06:28:45Z@feihtthief: There are ways to work around that problem. For example, you could only fetch the first row. Or, even better, don't even execute the statement, just prepare it.http://stackoverflow.com/questions/1713484/how-can-i-do-this-in-sql-in-a-single-statement/1713509#1713509Comment by Milan Babuškov on How can I do this in SQL in a Single Statement?Milan Babuškov2009-11-11T07:02:31Z2009-11-11T07:02:31ZOn some DBMS, adding "and FY = 2010" is an absolute requirement. otherwise the statement would cause an endless loop of inserts (until the disk gets full or some other limit of table size reached).http://stackoverflow.com/questions/1679151/whats-the-proper-way-to-work-with-assets-in-yii/1682193#1682193Comment by Milan Babuškov on What's the proper way to work with assets in Yii?Milan Babuškov2009-11-08T09:59:18Z2009-11-08T09:59:18ZAlso, care to explain why the funny directory names like 734a23c4?http://stackoverflow.com/questions/1679151/whats-the-proper-way-to-work-with-assets-in-yii/1682193#1682193Comment by Milan Babuškov on What's the proper way to work with assets in Yii?Milan Babuškov2009-11-08T09:57:54Z2009-11-08T09:57:54ZSo, there are no clear rules about this? What <i>exactly</i> would you do to include jquery.charcounter.js if it were a requirement in your project?http://stackoverflow.com/questions/1139391/how-to-test-controllers-with-codeigniter/1677707#1677707Comment by Milan Babuškov on How to test controllers with CodeIgniter?Milan Babuškov2009-11-05T01:07:29Z2009-11-05T01:07:29ZNice idea, thanks.http://stackoverflow.com/questions/1189823/how-to-setup-url-friendly-in-yii-framework-automatically/1481193#1481193Comment by Milan Babuškov on how to setup url friendly in yii framework automatically ...Milan Babuškov2009-11-05T00:10:09Z2009-11-05T00:10:09ZI wish I could give +10 votes for this answer, as finding it would have saved me an hour of searching and struggling to get it to work properly.