Three days ago I decided to give you some motivation to start doing a code kata (see the Friday Dopamine Dump). Well, if you forgotten, haven’t got any time, had to do something more important and didn’t even try to try, then stop. No excuses! If you really want to do this – just start. Schedule one hour this week, cancel all meeting that time and say your wife that you need man’s time (she will understand, mine did).
Continue reading
Tag Archives: php
Friday Dopamine Dump
When we were in Madrid last year, a book was accompanied me – the new edition of Clean Code authored by Uncle Bob. He describes how the professional programmer acts, works, talks and develops himself. Robert C. Martin claims an example from his own life – a quick, 15 minutes, code kata done twice a day. I think this requires a lot of discipline which might be hard to achieve at the beginning, so I propose you to schedule one hour a week to learn something new. To help you I’d love to start the same. I hope to share my ideas, kata scenarios, links, tools, and the process with you and I hope you would do the same.
Continue reading
SPL Iterators against the performance
This topic’s stayed in my mind for a while. Inspired by Joshua Thijssen’s presentation from PHP UK about (re)discovering the SPL in PHP, I decided to investigate this more carefully. I have to admit that took me some time to understand how the things work and how to not misunderstood the purposes of each iterator and because of lack of documentation it wasn’t that easy. I did a couple of mistakes and probably I will do more, but as Joshua said in his presentation:
The documentation of SPL is completely useless. What can we do? Blog about it!
So, brave yourself. Here my blogpost comes!
Programmer’s everyday life – challenges
It seemed to be just another ordinary day at work but it wasn’t. Yesterday, our team faced two challenging problems, which had blocked programmers’ work in two projects for a few hours. Now we are aware of the fact that the troubles could be simply avoided. That’s why I would like to share our experience and present those tricky, time consuming issues.
Continue reading
Symfony2 Bootstrap CRUD bundle – 10% time in action
In XSolve each developer has 10% of his working time to create special projects and bring some innovative ideas into life. Most often we use that time to prepare open source bundles and you can find some of them at http://knpbundles.com/organization/xsolve-pl/profile . Please feel free to use them!
In this article I would like to present our brand new creation – Symfony2 Boostrap CRUD bundle and make it easy for you to implement it in your next assignment.
Continue reading
#phpconpl 2013!
Za nami czwarta już edycja PHPCon Poland – na konferencję zespół XSolve przybył tłumnie, warto więc podsumować to wydarzenie krótkim komentarzem.
Zacznijmy od kwestii związanych z logistyką i koordynacją eventu. Biorąc pod uwagę lokalizację naszej siedziby, miejsce konferencji – Szczyrk – jest dla nas rozwiązaniem komfortowym (choć zdajemy sobie sprawę, że nie dla wszystkich jest to tak samo wygodne) i cieszy nas wiadomość, że w przyszłym roku spotykamy się w tym samym miejscu.
Continue reading
(English) xsolve-google-auth-bundle
Few days ago we released a first edition of xsolve-google-auth-bundle (you can fin it on GitHub) which is connecting google authorization and authentication with FOSUserBundle.
After installation you can define where users can sign in with google account and, if they do not exist in your database when new accounts would be created. Bundle allows to open an application for all users or only from specific domain.
Continue reading
Facebook fanpage feed
Last time I wrote an article about how to get last posts from facebook fan page to your website’s feed. Procedure of connecting website with facebook was little complicated and I tried to find one more way to handle this functionality, and really done this.
I have found new solution to provide this problem. Actually, Facebook shares a RSS feed from all available fanpages. Where did I found it? Of course, not in facebook developers page.
Continue reading
Full text searching in Symfony2
Generally, while working with simple search engines programmers have to anticipate issues involving users’ typos and mistakes. In this article I would like to present, compare and contrast three main types of full text searching in MySQL database – LIKE, SOUNDEX and MATCH AGAINST as these methods are some of the most popular solutions as well as they are readable and easy to implement.
Code examples below are prepared in Symfony 2.1 edition with preinstalled Doctrine 2 ORM extension.
LIKE
It comes as no surprise that LIKE is a first option to consider. It’s a matching pattern used in SQL simple regular expression comparison.
It’s often implemented to search a piece of text in database’s table. There are two main types of regular expression signs:
- % – matches any number of characters
- _ – matches exactly one number of character
In example
SELECT login WHERE login LIKE “%@xsolve.pl”;
this statement should return us all logins in domain xsolve.pl.
But we can choose another way and use it to search all logins in all kind of xsolve namespaces:
SELECT login FROM User WHERE login LIKE “%@xsolve.%”;
Symfony 2 implementation
In Symfony 2 framework with Doctrine 2 implementing this kind of searching is very simple, because this part is built in QueryBuilder.
You can use it in repositories’ classes:
$query = $this>createQueryBuilder(‘u’)
->where(‘u.login LIKE :login’)
->setParameter(‘login’,”%$login%”)
->getQuery();
return $query->getResult();
You can find more in MySQL documentstion’s site:
http://dev.mysql.com/doc/refman/5.0/en/string-comparison-functions.html
SOUNDEX
Soundex is a more advanced function to compare text – not only it matches strings but also guesses if there are any typos. Unfortunately, it doesn’t work with foreign characters (for example with Polish or Russian language).
Soundex function returns a soundex string from parameter and that means two strings that sound almost identical should have the same soundex.
Additionally all non-alphabetical characters in parameters are ignored and all international alphabetical characters outside the A-Z range are treated as vowels.
In example
SELECT title FROM posts WHERE title SOUNDS LIKE “Atricle”;
this statement should return a ‘title’ of an ‘Article’ if there is one at all.
Likewise:
SELECT title FROM posts WHERE SOUNDEX(title) = SOUNDEX(“Atricle”);
Symfony2 implementation
Unfortunately, Soundex isn’t supported by Doctrine2.2, however there is a simple method to implement a DQL function.
First of all, we have to create a DQL class with a new method which returns string to SQL.
Then we configure Doctrine to find our new DQL option:
All right. Now we can use it in queryBuilder:
$query->andWhere(‘SOUNDEX(q.street) = SOUNDEX(:street)’);
You can read more about this method in MySQL documentation:
http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_soundex
MATCH AGAINST
MySQL performs full text search using match()…against() syntax. MATCH() takes a comma-separated list that indicates columns to be searched. AGAINST() takes a string to search for and an optional modifier that determines type of search to perform.
The search string must be a string value that is constant during query evaluation. This rules out, for example, a table column because it can be different for each row.
This syntax has three types of searches:
- Boolean – interprets the search string using the rules of a special query language. The IN BOOLEAN MODE modifier specifies a boolean search.
- Natural – interprets the search string as a phrase in natural human language (a phrase in free text). Full-text searches are natural language searches if no modifier is given.
- Query expansion – is a modification of a natural language search. The search string is used to perform a natural language search. Then words from the most relevant rows returned by the search are added to the search string and the search is done again. The query returns the rows from the second search. The WITH QUERY EXPANSION modifier specifies a query expansion search.
In example
SELECT * FROM film_text WHERE MATCH (description) AGAINST (‘redeem’);
Symfony2 implementation
This case is similar to SOUNDEX method, but we will take a look at Jérémy Hubert‘s code from https://gist.github.com/1234419
We need to add a new function into config.yml file as in SOUNDEX example. After that we can use it in Symfony application:
You can read more about this method in MySQL documentation:
http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html
Papi.
Uwierzytelnianie użytkownika przez Google OAuth API
Podczas prac nad jednym z ostatnich projektów spotkaliśmy się z problemem autentykacji użytkowników na stronie przez Google API. Jednak pomimo ogromnego zaangażowania community nie udało nam się znaleźć gotowego i działającego bundle’a przygotowanego dla Symfony 2.1, dlatego chcielibyśmy podzielić się jednym z wypracowanych przez zespół XSolve rozwiązań tego zagadnienia.
Continue reading