If you’re using default WordPress comments and you’re missing highlighted code snippets inside of them, this tutorial will help you. Before I start to explain, you should know that is it not possible by...
Author - Vladimir Marton
Custom front page post loop like Stackoverflow in WordPress
There is many tutorials on how to change your front page posts post loop of your website in WordPress. Post loop is a way of displaying your latest posts on the homepage. All of the tutorials describe the way to create...
Android Espresso examples for UI testing
Espresso is a handy native Android tool for UI testing in Android. There is a lot of things you can test. Even though community support is pretty nice, it is sometimes time-consuming to find examples on testing your...
Four ways to disable WordPress comments
There is many articles out there that offer step-by-step tutorials on how to disable WordPress comments. Even though disabling comments via WordPress Discussion settings works pretty well,ย it could happen sometimes that...
Android Tutorial – Continuous Speech Recognition with Pocketsphinx
During my latest project (Smart Mirror), I wanted to implement a continuous speech recognition that would work without stopping. I spent a lot of time finding a library that could work nicely, there were two of them...
Import/export tables or databases to .sql in MySQL (examples)
This tutorial will cover basic import and export terminal procedures in MySQL. Each of the procedure is explained through an example. All of the export commands are also available remotely, all you have to do is to...
Create a REST web service in PHP โ part II (SSL and security)
This article will describe three different ways to secure your web service – free SSL, paid SSL and custom encryption system. In the first part of the PHP Webservice Tutorialย I showed you how to create a very...
Why doesnt my WordPress website appear in Google search results
There is a lot of people out there – probably including you as well – that are having problems with their WordPress site visibility in Google results. I have had the same problem and spent 4 days trying to...
Create a REST web service in PHP – part I (Basics)
Web services are very important in many cases, for example in Android where web service is the most used option to connect to a database other than SQLite. In this tutorial, I will show you how to create a simple PHP...
Swift Draw text on image programmatically and use it as Google Maps Marker
This article will show you how to create a custom image from combination of background image and text over it (= draw text on image) and use it as a Google Maps Marker icon in GMSMarker object. There is a lot of ways to...
Swift 3 XML Parser (from URL to custom objects)
I will be explaining how to create an XML parser, parse a simple XML document from URL and convert it into objects in Swift 3. Since I have been learning iOS lately and have not found a clear answer with a good...
Find classes in Android project or application path
During the internship in 5th semester of university’s Computer Science program, I had to program an extendable Android application. What I mean by this is that I did not program the application the usual way...
Granted, denied and permanently denied permissions in Android
I’m pretty sure that you know that with Marshmallow (SDK 23), we got a new permissions system. Permissions are not handled by the apk installer anymore. Before Android 6.0, all permissions were shown on the screen...
Alarm Application in Android (Tutorial using AlarmManager)
This feature is included in my Oversleep application and there is some of the things that are happening in the background and need to be explained. Most of the programmers/users go for alarms which are dismiss-able...
Send multiple images at once from PHP to Android
At some point during the Picsel development I had to start thinking about bulk actions, such as sending multiple pictures at once from my REST PHP webservice to Android application. I’m pretty ashamed to explain...