Overview for 'bosnadev'
Written by Bosnadev – Code Factory
/ Original link
on Aug. 20, 2016
The ability to tag specific changes in commit history has become very important. Programmers use git tag to mark the releases (aka versions) of their applications. That way they can specify a desired version in their dependency tools. Sometimes we make a mistake; we are all humans after all. We tag…
Written by Bosnadev – Code Factory
/ Original link
on Dec. 17, 2015
Laravel accessors and mutators are custom, user defined methods that allow you to format Eloquent attributes. Accessors are used to format attributes when you retrieve them from the database, while mutators format the attributes before saving them to the database. Defining an accessor Syntax for de…
Written by Bosnadev – Code Factory
/ Original link
on Dec. 15, 2015
After installing PostgreSQL database server, remote access mode is disabled by default for security reasons. However, sometimes you may want to allow remote connections to PostgreSQL database server from other locations, your home or office for example. In the next few lines I’ll guide you to do ju…
Written by Bosnadev – Code Factory
/ Original link
on Jun. 26, 2015
In this short tutorial I’ll show you how to make permanent redirect from a www URL to non-www and vice versa. I’ll assume that you have superuser privileges, sudo or root access and Nginx already configured, as well as DNS records. More specifically, you need to have an A records for www.yourdomain…
Written by Bosnadev – Code Factory
/ Original link
on Mar. 26, 2015
Preface Before we go to the main topic of the article, I’ll give you a short heads up for some design problems you may face. Recently one of my clients complained that some pages open very slowly. When I say very, I mean incredibly slow. So I’ve decided to debug that page and what I saw shocked me.…
Written by Bosnadev – Code Factory
/ Original link
on Mar. 19, 2015
Preface Icinga is a fork of Nagios monitoring system. There are lots of changes and upgrades compared to Nagios, especially in version 2. The main visible difference is UI which is built on ext js. Other significant differences are in hosts and services definitions (it will be covered in part 2).…