Laravel Ecosystem

Framework/Backend

Laravel and Lumen face to application and API

EasyAdmin vs Nova

EasyAdmin1 is developed in programmer mindset.

How to study

Two way to quick study a new stuff.

Dynamic function call in Go

Two ways to do it

  • interface1
  • map2
  1. https://mikespook.com/2012/07/function-call-by-name-in-golang/ 

  2. https://mikespook.com/2012/07/function-call-by-name-in-golang/ 

Artisan commands

input

Substring before and after in Golang and PHP

```php

Stress test

  • https://github.com/JoeDog/siege

Go live stream

  • https://github.com/gwuhaolin/livego
  • https://github.com/nareix/joy4

Python

Start

PHP 7.2 new features

Parameter type change between parent class and child class

class Parent{
	public function sum($numbers){}
}
 
class Child extends Parent{
	public function sum(array $numbers){}
}