React Native: UI Libraries Compared

I’ve listed below a few react native libraries that are useful from time to time. Shoutem 3264 github stars Homepage Github NativeBase 8268 github stars Homepage Github React Native Elements 10309 github stars Homepage Github

Published

GuzzleClientException truncated

By default, a Guzzle error thrown in Laravel will truncate the response body. When you’re deep in an API integration, this is a productivity killer. Here’s an easy way to error log the full response body from the API. try { $response = $client->request( “POST”, $this::$resource, [ ‘json’ => $item ] ); $body = json_decode(… Continue reading GuzzleClientException truncated

Published

Code Workshop is locking in ReactJS.

There’s a common complaint among the javascript ecosystem, from new developers and seasoned developers alike. We’re all exhausted from learning, building with, and then maintaining the new hot framework of the day. Below, we’ve detailed how we decided to lock in ReactJS. Who are we? I’m Rhys Williams. I run Code Workshop, a Sydney app… Continue reading Code Workshop is locking in ReactJS.

Published

Sample Homestead.yaml file for windows

I use Vagrant/Homestead for PHP, WordPress, Laravel development at Code Workshop day in day out with no issues anymore about ‘developing on windows’. xdebug bolts up fine, and there’s far fewer issues when deploying to production because of the matching linux environment. Here’s a cut down example of my homestead.yaml file that I use and… Continue reading Sample Homestead.yaml file for windows

Published

Laravel Snippets: Useful Packages

I’ve got a library of go-to packages for Laravel projects that can knock days off a project. When the wheel is invented, developed, and proven in production, there’s no good business case to do it again.

Published