Latest Laravel/PHP Articles

Latest Laravel/PHP Articles curated daily from around the web.


paulund.co.uk

Staying Productive
To help you prioritise your work, you can use the Eisenhower Matrix. This is a simple decision-making tool that helps you to categorise your tasks based on thei...
A list of books that I have read or plan to read.

paulund.co.uk

Homebrew
Update brew update brew doctor Install a package brew install git Remove/Uninstall a package brew uninstall git Upgrade a package brew upgrade git Unlink curren...
Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge. Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge.

paulund.co.uk

Local Environment
Here is a github repository to use to build a docker image with Xdebug installed. This is useful if you don't want to install Xdebug on your local machine but w...

paulund.co.uk

Docker
Build Image docker build -t . Docker file needs to be located in the same folder Push Image docker push Inheritance FROM Vari...

paulund.co.uk

Business Tools
Here is a list of tools that can be used for online businesses

paulund.co.uk

Flux
View kustomization flux get kustomizations
Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge. Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge.

paulund.co.uk

Cron
Minute Hour Day Month Weekend Command * * * * * command 0 * * * * */15 * * * * 0 */2 * * * 0 18 * * 1 0 0 * * 0 @reboot

paulund.co.uk

Git
ssh -T [email protected] git init git checkout egit checkout -b # Creates and checkouts the new branch git push origin ...

paulund.co.uk

Helm
Debug Template helm template --debug `[NAME] [CHART]` -f {VALUE FILE}

paulund.co.uk

Markdown
# h1 ## h2 ### h3 #### h4 ##### h5 ####### h6 Header 1 ======== Header 2 -------- ### Custom ID Heading {#custom-id} * Item 1 * Item 2 - Item 1 - Item 2 - [ ] C...
Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge. Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge.

paulund.co.uk

SCP
scp ssource_path destination_path scp file user@host:/path/to/file scp user@host:/path/to/file /local/path/to/file scp file1 file2 user@host:/path/to/di...

paulund.co.uk

Visual Studio Code
PaulundSoftware Engineer 2021-10-04 RSS Feed Edit ⇧⌘P ⌘P ⌘F ⌥⌘F ⇧⌘F ⇧⌘H ⌘J ⇧⌘Y ^⇧` F5 ⇧F5 ⇧⌘F5 F9 F10 F11 ⇧⌘L

paulund.co.uk

NPM
PaulundSoftware Engineer 2022-03-12 RSS Feed Edit npm i npm install npm install --production npm install --save-dev lodash npm i lodash npm i lodash@latest npm...

paulund.co.uk

MySQL
SELECT * FROM table; SELECT * FROM table1, table2; SELECT field1, field2 FROM table1, table2; SELECT ... FROM ... WHERE condition SELECT ... FROM ... WHERE cond...