Post Top Ad

Tuesday, February 26, 2019

February 26, 2019

My first impression when I’ve arrived Yogyakarta (Indoneisa city of culture)

On 1st August 2016, I have a flight with two of my schoolmate from my born country and arrived at Adisutjipto International Airport(Yogyakarta airport) around  8:40 pm to pursuing my master degree. On the way went to my boarding house with a super speed taxi I have never met before. The driver in Yogyakarta drives very fast and high speed than Cambodia, however, Since I’ve arrived here I’ve never seen an accident. Because they drive with the high speed, high confidence, and respect to another driver. The first impression on the first at Jogja is the food is a bit different from my home country. If you order chicken fry, you are lucky. Because of the chicken fry made from the chicken boil(Just Kidding). The drinking task is made a different way with Cambodian. The first arrival day, I have to order green tea, but the taste is very strange to compare with the green tea in my home country.
Image result for yogyakarta airport at night
Adisutjipto International Airport( Yogyakarta airport)

Saturday, February 16, 2019

February 16, 2019

GitHub News: GitHub Add Draft Pull Request

In the announcement release Here, GitHub launched a brand new feature call draft pull request which allows the developer to send pull request before they are going to finish the implementation on that feature. 
Image result for github draft pull request

It's interesting for us a developer. We could send a pull request and make the discussion about our features then we could finish it or merge when the feature is already done. 

Saturday, February 2, 2019

February 02, 2019

Laravel 5.8 Deprecates String and Array Helpers

         In the upcoming release of laravel 5.8, the array & string helper are deprecated. The next release of laravel 5.9 will be removed the array and string helper. It's based on the discussion of the PR 26898

The previous version of laravel

// Deprecated array_add($array, $key, $value);


The upcoming release of laravel 

// Use this directly Arr::add($array, $key, $value);


If you prefer to use the helper in your project.
Taylor suggests to pack into the packages laravel/helper