Automate Deployment To AWS S3 Using Github Actions
The first step is to setup an S3 bucket for your static site, I have a different article on how to do that . In other to enable deployment from GitHub to S3 you should also have the source co...
Customizing Laravel: Renaming The Queue Table From 'jobs' To Your Preferred N...
Laravel's queue system makes it possible to process tasks in the background. By default, Laravel uses a table named to store queued jobs. However, in some cases, you might want to...
Round Up A Number To X Decimal Places | Javascript
You can use the Number prototype method in Javascript to Round up a Number to 2 decimal places. ...
SyntaxError: Unexpected Token 'export'| Javascript Error
I am assuming you got this error message whiles working with NodeJS, because this is where mine came from :). I got this error because I typed out instead of which is what it should be if you are trying to expose some functions, and or variables in a NodeJS script. ...
How To Convert A String To A Byte Slice In Golang
Line 09 shows the conversation of a "Hello, World!" string to byte. Very straightforward. ...
Old Input Helper Returns Null Or Is Empty | Laravel 10
If you end up with a null value whenever you try repopulating a form using , there is a high chance the inputs are not sent back to the view from the controller. Fixing this requires a bit of debugging. First dump out the inputs the user is sending to be sure they e...