2019/24/10 “Holy bug”

An ordinary morning, while I was sitting on my seat and sipping a cup of coffee. A man,Ā  who dressed extremely fancy, walked past my table and inside a room. As he walked by my table, I turned my head and watch him. ” Yo, bro”, he said. ” Yay, good morning”, I replied to his greeting after recognized that he is Yuu, my teammate. … Continue reading 2019/24/10 “Holy bug”

2019/09/13 – Weekend but not ‘weekend’

This weekend is a long weekend because we have 3 days off this week (next Monday is a Japan public holiday). A long weekend happens frequently in Japan, an additional day may be commonly Friday or Monday. Although, Japan has a lot of public holidays, yeah that is good for a worker like me, those are not sequential. That reason why I have a lot … Continue reading 2019/09/13 – Weekend but not ‘weekend’

2019/09/12 – You don’t know you can do a thing or not until you give it a try

Me today is quite tired. If someone is working with SCRUM, you will know that we always busy at the end of a sprint. There are a lot of things to do such as retro what you did in a sprint, demo preparing, next sprint planning, etc. I am working in an expat team of a Japanese company in Tokyo. We use English for communicating … Continue reading 2019/09/12 – You don’t know you can do a thing or not until you give it a try

Roadmap and backlogs (update daily)

Roadmap 9/9/2019: Planning 10/9/2019: Prepare a backlog and the first plan 11/9/2019: Offline for a company welcome party ( damn it šŸ˜„ ) 12/9/2019: First step https://hpduy17.wordpress.com/2019/09/12/2019-09-12-you-dont-know-you-can-do-a-thing-or-not-until-you-give-it-a-try/ Task lists 12/9/2019 Vocabulary: all-in package/package holiday: a holiday where you purchase the travel and accommodation together breathtaking view: an extremely beautiful view charter-flight: a cheaper form of flying than a scheduled flight check-in desk: the place at … Continue reading Roadmap and backlogs (update daily)

Deploy Laravel Web App to Windows Server 2012

Some software is required as follows: XAMPP (Apache, PHP, Tomcat) (https://sourceforge.net/projects/xampp/files/XAMPP%20Windows/) Composer (https://getcomposer.org/Composer-Setup.exe) PostgreSQL 9.5 (https://www.postgresql.org/download/windows/) PgAdmin 4 v2 (v3 run on web base) (https://www.pgadmin.org/download/pgadmin-4-windows/) JAVA JDK 8 (https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) GIT (https://git-scm.com/download/) InstallĀ Laravel application as follows: Git clone Laravel project by using the command git clone https://link_to_project mywebapp Jump into a project folder and install Laravel by using composer cd mywebapp composer install Copy .env.example file … Continue reading Deploy Laravel Web App to Windows Server 2012

Deploy Laravel Web App to Server CentOS7

This note shows my mistakes in an early stage of using Laravel due to lack of understanding the way this framework works. This also shows my solution and my experience after solving this problem. Problem In the beginning, I deploy my project to Apache by using Git to clone and pull a project from my PC. Later, I used `php artisan serve –host=110.xxx.xx.xx –port=8080 ` … Continue reading Deploy Laravel Web App to Server CentOS7

How to install a production environment for Laravel and Java web app on CentOS7.

Requirement applications: PHP ^7.0 Composer Apache PostgreSQL Git SQL server driver JAVA 8 TOMCAT 9 Process: APACHE Install httpd by using yum install httpd Start httpd service sudo systemctl start httpd.service SELinux is disabled on the Vultr CentOS 7 x64 server instance by default. If you turn it on manually, you need also configure SELinux as below: sudo setsebool -P httpd_can_network_connect on sudo setsebool -P … Continue reading How to install a production environment for Laravel and Java web app on CentOS7.

Deal with Swift-TransportException when sending Gmail from Laravel application

Error: ” Swift_TransportException Connection could not be established “ The problem has occurred when we send a mail from the production server using Gmail. The notice of exception is shown below. Swift_TransportException Connection could not be established with host smtp.gmail.com [Permission denied #13] Causes This problem is caused by SELinux. So we will run some command for accepting httpd can open the socket and send … Continue reading Deal with Swift-TransportException when sending Gmail from Laravel application