Showing posts with label web development. Show all posts
Showing posts with label web development. Show all posts

Monday, February 13, 2017

Create simple web server with Python on Ubuntu

Create simple web server with Python on Ubuntu

There is a cool thing we can do with python command on ubuntu, we can create a simple HTTP server with python command, and you don't even have to wrote any code, simply execute the command.

Monday, February 6, 2017

How to use Graphviz with PHP on Ubuntu


On the previous post, i show you how to install and use graphviz on ubuntu, let's take it to another level, this article i will show you cool tricks using graphviz, php and apache web server.

Saturday, January 14, 2017

Command line web browser on Ubuntu

Command line mode web browser on Ubuntu

Another cool thing you can do on the command line is browsing the web, yes there is a text mode web browser on ubuntu, in this article i will show you how to install this text-mode web browser and how to use it.

Wednesday, January 11, 2017

Midori web browser on Ubuntu


Midori is a fast, lightweight and free web browser, that's the tag line of this relatively new web browser. So i'm curious about midori, i want to try it out and see if it's really true.

Saturday, January 7, 2017

Showing MySQL process using MyTop


When working with mysql database server, it would be great if we can monitor all process that's happening inside the database server, this kind of feature could be handy during performance test.

How to reset MySQL root password on Ubuntu


When you install mysql database server on ubuntu, you will prompted to enter password for user root, if you skip this password or leave it blank, you are out of luck my friend, because you can't login to mysql database server.

Friday, January 6, 2017

How to check Apache web server version on Ubuntu

How to check Apache web server version

Okay you probably have apache web server running on your server or your local computer or on virtual machine or somewhere else, whatever it doesn't matter, what i want to know is how to show the version of the apache web server.

How to install PHP MySQL on Ubuntu 16.04


I believe since ubuntu 16.04 LTS, the default php version on ubuntu repo is php version 7.0, so if you want php on ubuntu 16.04, you have to use php 7.0.

Thursday, January 5, 2017

How to install ElasticSearch plugin head on Ubuntu


Besides kibana, elasticsearch itself have it's own plugin, and one of the common plugin that people use on elasticsearch is the 'head' plugin. Using this plugin you can manage elasticsearch data with a nice clean web interface, it's almost like phpmyadmin for mysql.

Sunday, January 1, 2017

How to install Kibana plugins (Sense, Marvel, Timelion)


Kibana is a powerful tool for visualize elasticsearch data, kibana can be even more powerful if you install plugins that available for it, such as sense, marvel, timelion, etc. Note that this tutorial is based on kibana version 4.5.1, newer kibanan version might be different.

How to install Kibana on Ubuntu


Kibana is web based dashboard for elasticsearch, and if you are playing with elasticsearch you might want to install kibana as well. Using kibana you can visualize your elasticsearch data.

Saturday, December 31, 2016

How to install ElasticSearch on Ubuntu


Elasticsearch is a powerful search engine tool for any application that needs relevance search, which simply can't be done using relational databases query. For learning purpose you can setup elasticsearch on your local computer.

How to install Oracle Java on Ubuntu


There are two kinds of java, oracle java JDK and open JDK, you can install both on ubuntu, but only one will be active JDK at one time. This article is about installing oracle java development kit (JDK) on ubuntu.

Wednesday, December 28, 2016

List of Docker commands on Ubuntu


So here's list of docker commands, you might only know two or three commands when you first learn docker, but after a while you might end-up learning all of these commands as you increase your docker knowledge.

Tuesday, December 20, 2016

How to install Docker on Ubuntu 16.04



Docker is very popular tool for containerization, docker containers wrap a piece of software in a complete filesystem that contains everything needed to run: code, runtime, system tools, system libraries – anything that can be installed on a server.

Friday, December 16, 2016

How to install Atom editor on Ubuntu


Atom is one of the best text editing software that's used by many web developer, it's created by github and available as free open source software.

Saturday, February 20, 2016

How to install Laravel on Ubuntu


If you are php programmer/developer, you might want to try to use laravel framework, it's one of the best framework for php, in this article i will show you how to install/create laravel project on ubuntu.

How to install Composer on Ubuntu


If you are a php developer, you might want to install composer on your ubuntu, because composer is a package dependencies management tool for php, very similar as npm (node js) and bundler (ruby).

How to install cURL on Ubuntu


cURL is a command line tool for getting and sending files through URL syntax, cURL support various protocol. In this article i will show you how to install cURL on ubuntu.

How to install Mcrypt on Ubuntu


Mcrypt is one of the most important module for php, it enables encryption which uses by majority of php framework such as laravel. In this article i will show you how to install mcrypt module for php 5 on lubuntu.