by Garth | Jun 22, 2022 | bash, Snippets
Step 1 : Find your .bashrc file Step 2 : (.bashrc is found in root directory)(You can type cd in the terminal and hit enter to get to root and use ls -la to see list of files in directory)- Edit your .bashrc file. Use whatever editing tool of your choice.or you can...
by Garth | May 30, 2022 | Laravel
by Garth | May 24, 2022 | Laravel
<?php @php echo “<pre style=’color:#fff;’>”; print_r($data); echo “</pre style=’color:#fff;’>”; @endphp @php echo “<pre>”; print_r($data); echo “</pre>”; @endphp @php echo...
by Garth | May 5, 2022 | Flutter and Dart
Requirements : – API Service- Object Model Developer Recommendation : NB!!! – Use QuickType for your model. (You need an already working api with a JSON response for quicktype) https://app.quicktype.io/ – DropDownMenuItem NB!!! – The...
by Garth | Apr 7, 2022 | Excel
Excel give characters after space If you want to extract the text after space only, use this formula =MID(A1,FIND(” “,A1)+1,256) Excel give characters before space Extract text before or after space with formula in ExcelYou can quickly extract the text...
by Garth | Feb 15, 2022 | MYSQL
by Garth | Jan 11, 2022 | Debugging
This problem is due to version conflicts with meta_box plugin — The below is when a new album is been created.All the post info is visible.NEW ALBUM The below is editing an existing album. All of the post info uploaded is no longer displaying. So my client can...
by Garth | Dec 20, 2021 | Debugging, Docker, Laravel, PHP, Windows
Useful for Debugging :https://old.garthbaker.co.za/re-install-ubuntu-windows-11/ Install PHP 8 (Ubuntu Terminal cd ~) sudo apt update sudo apt -y upgrade — sudo apt update sudo apt install lsb-release ca-certificates apt-transport-https...
by Garth | Dec 20, 2021 | Debugging
Google Search for Grepper // Run the below in your powershell terminal to see installed Apps with WSL // wsl –list –all // If you want to remove any packages. Examples: // wslconfig /unregister Ubuntu or wslconfig /unregister Ubuntu-18.04 or wslconfig...