Latest Laravel/PHP Articles

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


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

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...
Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.

paulund.co.uk

Flux
View kustomization flux get kustomizations

paulund.co.uk

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

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 ...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.

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...

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

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...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.

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...

paulund.co.uk

Screen
screen {command} screen -r [name] screen -ls crtl+a crtl+d

paulund.co.uk

Composer
Install Dependencies composer install composer install --dry-run Add Packages composer require vendor/package composer require vendor/package --dev Update Packa...