How To Start With Codeception PHP Framework And Selenium

Recently I have been working on one job interview with test case requiring to write portion of automatized tests in Codeception PHP framework. Since I didn’t have any experience with Codeception PHP framework I needed to learn quickly as much as I could.

Continue reading

Posted in Tutorials | Tagged , , , , , , | Leave a comment

How to solve plugin or theme installation error on XAMPP local WordPress installation

Shifting from Windows to OS X makes lots of simple tasks ridiculously hard. Since I was thought by Windows that installing things on WordPress localhost installation shall be easy, it took me a lot of temper and power to bite into my lips and start searching for solution.

Continue reading

Posted in Wordrpress | Tagged , | Leave a comment

Why Typekit fonts do not show on XAMPP localhost?

I have been trying locally on XAMPP develop new custom WordPress theme. I choose to implement custom font on titles  with help of Adobe Typekit fonts. It took me nearly 2 hours to solve problem with not showing fonts nowhere locally. I tied every possible scenario, I changed everything what I thought might be a cause.

Continue reading

Posted in Tips & tricks | Tagged , , , , | Leave a comment

Project 1Searchform

Problem description:

Different booking portals have different price policies and use different algorithms to provide offers. Sometimes I plan my trips and I search on these booking portals for best (cheapest or fastest) option. It is always very time-consuming search.

Continue reading

Posted in Projects | Tagged , | Leave a comment

Fixing SimplePie “./cache is not writeable.” error

Switching from EasyPHP to XAMPP as development environment and Windows to OSX I have encounter error regarding cache file in my app based on SimplePie library.

Continue reading

Posted in Solutions | Tagged , , | Leave a comment

Custom Key Binding in Sublime Text 3

If you are a Windows->OSX switcher like me, you will counter several user habits conflicts. One of them is keyboard layout and key binding in different applications. Using Sublime Text3 editor in first days was nightmare. Luckily Sublime support possibility to bind commands to custom keys.

Continue reading

Posted in Tips & tricks | Tagged | Leave a comment

How to set all subfolder writable for WordPress update error at OS X

If you just switched from PC to Mac, many things are new for you. Even WordPress errors. You can quickly start being frustrated from beginning when even things which used to be easy on Windows are now hard on Mac. Updating local WordPress installation is one of them.
Continue reading

Posted in Wordrpress | Tagged , , , , | Leave a comment

Project Euler Problem 3 – Largest prime factor

Project Euler Problem 3 is the first problem in which I realized that the brute-force computation is not the best way to achieving the results. Here is the problem description:

The prime factors of 13195 are 5, 7, 13 and 29.

What is the largest prime factor of the number 600851475143 ?

Continue reading

Posted in Computer Science | Leave a comment

Project Euler Problem 2 – Fibonacci sequence

Solving the Project Euler Problem 2 is simple and I believe it still does not required great processing power to search for the clever algorithms. The description of Problem 2 is:

Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:

1, 2, 3, 5, 8, 13, 21, 34, 55, 89, …

Find the sum of all the even-valued terms in the sequence which do not exceed four million.

Continue reading

Posted in Computer Science | 1 Comment

Project Euler Problem 1 – Multiples of 3 and 5

I was randomly searching for best place to learn “programming by doing” and I have found link on Project Euler. I really like the idea of the project and I decided to join. Here is a description of the first Project Euler problem: Continue reading

Posted in Computer Science | Tagged | Leave a comment