LARAVEL & PHP
https://blog.laracasts.com/
https://freek.dev/
https://themsaid.com/
https://laravel-news.com/blog
https://tighten.com/insights/
https://www.cloudways.com/blog/laravel/
https://dcblog.dev/
https://nunomaduro.com/
https://www.digitalocean.com/community/tutorials?q=laravel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:7.4-fpm-alpine | |
RUN apk add --no-cache --virtual .deps \ | |
git \ | |
icu-libs \ | |
zlib \ | |
openssh \ | |
imagemagick \ | |
imagemagick-libs \ | |
imagemagick-dev \ |
- Airbnb https://medium.com/airbnb-engineering
- Algolia https://blog.algolia.com/
- Asana https://blog.asana.com/category/eng/
- Atlassian https://developer.atlassian.com/blog/
- Auth0 https://auth0.com/blog/
- AWS https://aws.amazon.com/blogs/aws/
- Baidu Research http://research.baidu.com/Blog
- BBC https://medium.com/bbc-design-engineering/
- BitTorrent http://engineering.bittorrent.com/
- BlackRock http://rockthecode.io/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
git add -A; git commit -m "$(date +"Update: %d/%m/%Y %H:%M:%S")"; git push |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ---------------------- | |
# Git Aliases | |
# ---------------------- | |
alias ga='git add' | |
alias gaa='git add .' | |
alias gaaa='git add --all' | |
alias gb='git branch' | |
alias gc='git commit' | |
alias gcm='git commit --message' | |
alias gco='git checkout' |
First, install pkg-config and imagemagick itself
brew install pkg-config imagemagick
Next up, use pecl to get the PHP extension compiled.
pecl install imagick