Milan Babuškov
|
Registered User
|
Software developer, owner of a small ISV company, project manager of the open source FlameRobin project.
Specialized in Linux, C++, PHP and Relational databases. |
|
1d |
answered | Decent tool/library for C++ to handle XML ? |
|
2d |
comment |
Is there something like Acegi for PHP? Looks useful for some intranet applications, but it's still far behind Acegi. Only LDAP is supported, while Acegi also supports OpenID, Facebook Connect, NTLM, Kerberos and more. I still have to use RPX. |
|
Dec 12 |
comment |
PHP Session Variables Not Preserved @Jason: care to share some URL where it says that it is deprecated? What should be used instead? |
|
Dec 8 |
accepted | Cross domain Ajax request from within js file. |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 3 |
accepted | Is it possible to replace a function in php (such as mail) and make it do something else? |
|
Dec 3 |
answered | Is it possible to replace a function in php (such as mail) and make it do something else? |
|
Dec 2 |
comment |
Hidden Features of HTML It does not seem to work with Firefox 2? |
|
Dec 2 |
comment |
Hidden Features of HTML @eyelidlessness: with some browsers (IE), that does not work properly. For example, if you click the label for checkbox, it will not toggle. |
|
Nov 28 |
comment |
Regular Expression In PHP @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. |
|
Nov 28 |
comment |
Regular Expression In PHP @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. |
|
Nov 27 |
comment |
How can I check if mysql table column even exists ? If you get error #1054 |
|
Nov 27 |
answered | How can I check if mysql table column even exists ? |
|
Nov 27 |
comment |
Using EXISTS with MySQL I hardly call SQL Server portable, but ok :) Oracle is not the only DBMS there is. There's Firebird, Postgred, SQLite, DB2, Informix, etc. |
|
Nov 26 |
comment |
Using EXISTS with MySQL Thanks. +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. |
|
Nov 26 |
asked | Using EXISTS with MySQL |
|
Nov 25 |
accepted | SQL - Reference current row in a computed column with SELECT |
|
Nov 25 |
comment |
Split string into equal parts using PHP Maybe you should specify what kind of result you want. An array? |
|
Nov 18 |
comment |
Why jQuery do this: jQuery.fn.init.prototype = jQuery.fn? I not sure what you mean by adding f1() into init.prototype? It's not adding "into" anything, it's assigning the prototype. |
|
Nov 15 |
revised |
How do I fix my NetBeans + PHPUnit integration? typos |
|
Nov 14 |
answered | MVC in PHP without the “magic” |
|
Nov 12 |
comment |
Check if a database table exists using php/pdo @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. |
|
Nov 11 |
accepted | Check if a database table exists using php/pdo |
|
Nov 11 |
answered | Check if a database table exists using php/pdo |
|
Nov 11 |
comment |
How can I do this in SQL in a Single Statement? On 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). |
|
Nov 9 |
answered | SQL - Reference current row in a computed column with SELECT |
|
Nov 8 |
comment |
What’s the proper way to work with assets in Yii? Also, care to explain why the funny directory names like 734a23c4? |
|
Nov 8 |
comment |
What’s the proper way to work with assets in Yii? So, there are no clear rules about this? What exactly would you do to include jquery.charcounter.js if it were a requirement in your project? |
|
Nov 5 |
asked | What’s the proper way to work with assets in Yii? |
|
Nov 5 |
comment |
How to test controllers with CodeIgniter? Nice idea, thanks. |
|
Nov 5 |
revised |
how to setup url friendly in yii framework automatically … indented the text from .htaccess file |
|
Nov 5 |
comment |
how to setup url friendly in yii framework automatically … I 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. |
|
Nov 5 |
comment |
Yii framework - what is the file “.yii” in some folders Interesting enough, for me, git still ignored the directory (I just realized after cloning to another machine that directories with only .yii file in them are not in repository) - so I added .gitignore files instead. I hope it's safe to delete .yii files. |
|
Nov 2 |
comment |
Before XML became a standard and given all its shortcomings, what made XML so popular? @orip: I started using JSON recently, and I find it much more compelling than XML. It's easier and faster to parse - at least, by machines. Of course, with proper indentation it works for humans as well. |
|
Oct 27 |
revised |
Casting an object I recieve through reflection. typos |
|
Oct 25 |
awarded | ● Popular Question |
|
Oct 24 |
awarded | ● Notable Question |
|
Oct 24 |
revised |
Why is my “cat” function with system calls slower compared to Linux’s “cat”? disc means CD/DVD, disk is hard drive |
|
Oct 24 |
comment |
Why is my “cat” function with system calls slower compared to Linux’s “cat”? The system cat has more lives ;) |
|
Oct 22 |
awarded | ● Notable Question |
|
Oct 20 |
answered | What are the different ways of writing “if” conditional statements using PHP? |
|
Oct 17 |
revised |
Which embedded database has maximum SQL compliance, and concurrency support? added 47 characters in body |
|
Oct 17 |
comment |
Get count of distinct groups in a single SQL query in Firebird 1.5? This works in Firebird 2.0 and above, but not in 1.5. |
|
Oct 17 |
comment |
Get count of distinct groups in a single SQL query in Firebird 1.5? This works in Firebird 2.0 and above, but not in 1.5. |
|
Oct 17 |
comment |
Get count of distinct groups in a single SQL query in Firebird 1.5? This works in Firebird 2.0 and above, but not in 1.5. |
|
Oct 17 |
answered | Domains in Firebird |
|
Oct 16 |
comment |
What makes you lose motivation? @Robert: I know, but in Agile the first spec. is not very detailed and incremental process is expected. But when you get a very detailed spec. even saying where should stuff be on screen... |
|
Oct 15 |
answered | What possibilities exist to build an installer for a windows application on Linux (install target=windows, build environment=Linux) |
|
Oct 14 |
answered | Is this proper use of jQuery? |
|
Oct 9 |
comment |
What’s the appropriate Unicode character to flag users on the website? How do I add ALT tag to text? |
