Michał Słaby

2,731
reputation
319 views

Registered User

name Michał Słaby
member for 1 year
seen 1 hour ago
website
location IE
age 30

I am software engineer and web developer. My technology stack of choice is Linux Apache PostgreSQL PHP Javascript and UNIX CLI tools. Have I mentioned I am OOP freak?

On private part I'm great fan of my fiancée, and self-taught guitarist. I love jazz and fusion music.

See my homepage at www.epsi.pl

Dec
8
revised Status “S” in Subversion
Added info on switching
Dec
8
asked Status “S” in Subversion
Dec
6
awarded  Mortarboard
Dec
1
answered How to solve this error? session_start() [function.session-start]: Cannot send session cache limiter
Nov
25
comment Smarty, the best choice?
Cory, indeed curly braces are not the most fortunate default choice. But you can easily change it in Smarty config. I for instance tend to use {{ and }} symbols. Apart from that the syntax is actually quite readable.
Nov
20
awarded  Nice Answer
Nov
19
comment Will this regular expression ^[^\s]+$ prevent SQL injection? if No how to get around the restriction?
Use the right tool for the job. Regular expressions are not the right tool for sanitizing SQL. Bound parameters are.
Nov
19
answered Will this regular expression ^[^\s]+$ prevent SQL injection? if No how to get around the restriction?
Nov
10
comment How to build a in-site search engine with php?
If that requires some special agreement - it's probably a no go then.
Nov
10
answered How to build a in-site search engine with php?
Nov
3
revised convert date to unixtime php
restructured
Nov
3
accepted convert date to unixtime php
Nov
3
revised convert date to unixtime php
am/pm handling
Nov
3
answered convert date to unixtime php
Oct
30
revised What’s the best to way to manage a singleton?
edited body
Oct
29
accepted What’s the best to way to manage a singleton?
Oct
26
accepted plugin_action_links not working in WordPress 2.8+
Oct
26
answered plugin_action_links not working in WordPress 2.8+
Oct
26
answered Restrict access to images on my website except through my own htmls
Oct
24
awarded  Nice Question
Oct
23
revised PHP, create_function or evalute it at runtime?
Added required "abstract" keyword before class declaration
Oct
21
comment plugin_action_links not working in WordPress 2.8+
Adding admin_url didn't help. I suspect it could have something to the fact that my settings screen is in separate file.
Oct
16
asked plugin_action_links not working in WordPress 2.8+
Sep
16
comment php Object to String
Try replacing $info in str_replace with $info->__toString(). This may help if you use PHP version <5.2.
Sep
12
accepted How to handle including needed classes in PHP
Aug
31
accepted Returning a PHP Array from a PHP SoapServer
Aug
21
awarded  Taxonomist
Aug
21
awarded  Yearling
Aug
13
answered What would be a suitable way to log changes within a database
Jul
24
revised Returning a PHP Array from a PHP SoapServer
Added excerpts from own WSDL
Jul
24
answered Returning a PHP Array from a PHP SoapServer
Jul
23
comment passing a string by reference to a function would speed things up? (php)
Here is the preffered solution: ie.php.net/manual/en/function.fputcsv.php
Jul
23
comment passing a string by reference to a function would speed things up? (php)
Not in this case. You're looking for microsecond optimisations. This is just poitless.
Jul
23
revised passing a string by reference to a function would speed things up? (php)
added 367 characters in body; added 261 characters in body
Jul
23
answered passing a string by reference to a function would speed things up? (php)
Jul
22
answered Compiling PHP 5.1.6 with PDO MySQL
Jul
22
comment require_once () or die() not working
Brilliant answer. It needs to be stressed that require_once is not a function. It's a unary operator (or language construct, if you prefer), so is echo, new, include, etc.
Jul
20
answered What can change the include_path between php.ini and a PHP file.
Jul
17
awarded  Nice Answer
Jul
15
comment Deleting all files of a directory over a given file size each
Why don't you just run "find /path/to/dir -type f -size +1024k" as a shell command or via system() call?
Jul
15
comment Is it possible to have a peer to peer communication using nothing but PHP
Why not just use Opera Unite file sharing? unite.opera.com/service/132
Jul
15
answered Delete command Issue in PHP
Jul
7
comment Grouping radio buttons in Zend Framework
Yes, I do use Zend_Form.
Jul
6
revised Grouping radio buttons in Zend Framework
added 647 characters in body
Jul
2
comment Releasing company’s code on free software licence
There is a great book on running FLOSS project available at producingoss.com
Jul
1
asked Grouping radio buttons in Zend Framework
Jul
1
revised Convert If Else to Ternary
added array_key_exists
Jul
1
awarded  Nice Answer
Jul
1
answered Convert If Else to Ternary
Jun
15
revised Is there a way to be notified by the DOM when an element is removed?
added 519 characters in body