Categories
Book Study Recommendation Books

What’s New in PHP 8 ?

Union types

public function foo(Foo|Bar $input): int|float;

The nullsafe operator

$dateAsString = $startDate ? $startDate->asDateTimeString() : null;

$dateAsString = $booking->getStartDate()?->asDateTimeString();

New mixed type

function bar(): ?mixed {}

Throw expression

$triggerError = fn () => throw new MyError();

$foo = $bar[‘offset’] ?? throw new OffsetDoesNotExist(‘offset’);

READ -> https://stitcher.io/blog/new-in-php-8

Categories
Book Study Recommendation Books

Amazing Article ! Why I quit my job !

Amazing article wrote by https://twitter.com/brendt_gd

https://stitcher.io/blog/dont-get-stuck

Categories
Book Study Recommendation Business alignment with IT

Stop Promoting Incompetent Leaders

There are too many incompetent men in leadership positions — in large part because businesses tend to promote people on the basis of charisma, confidence, and even narcissism. Instead, companies should be putting people in charge who demonstrate competence, humility, and integrity. If you’re responsible for assessing leadership candidates, you should work on your ability to distinguish between confidence and competence. Remember that overconfidence is a natural result of privilege, which is often linked to gender. Fortunately, you can use scientifically valid assessments to measure the traits you want (or don’t want) in your leaders. You can ask company leaders, including emerging leaders, to take self-assessments, and then measure their responses against their leadership style, performance, and effectiveness. The resulting data will help identify patterns that characterize good and bad leaders at your company. Of course, this practice will take time and effort, and many organizations won’t want to invest those resources. But vetting candidates for leadership roles will pay dividends down the line.

How to Spot an Incompetent Leader,” by Tomas Chamorro-Premuzic

Categories
Book Study Recommendation Books Symfony

BOOK : mastering symfony – Take away

Categories
Book Study Recommendation

Great Platform for Full Stack Developer learner : laracasts.com

In order to improve your programming skills or at least stay up to date laracasts.com is a great resource. Students and professionnals are highly recommended to use this website

Design patterns, concrete example and demos are provided.

Website : laracasts.com