Howdy, Welcome to My Blog
Written by Tony Lea - 1 minute read
I tend to watch a lot of programming tutorials and I have seen many developers with code editors that have cursive fonts on specific attributes and text. I kept on telling myself, "I need to add that to my code editor." Well, I've finally f...
Written by Tony Lea - 3 minute read
TailwindCSS is dangerous and you should be careful before using this CSS library, but probably not in the way you may be thinking... Let me clarify. Tailwind is dangerous because if you spend time together, you're going to fall in love. That doesn't ...
Written by Tony Lea - 4 minute read
I am a developer and I'm also very fond of PHP, which seems to get dragged through the mud a lot. I used to refrain from telling people that I was a "PHP" developer, afraid that I would get mentally classified as "that kind of develope...
Written by Tony Lea - 2 minute read
Livewire is a project by Caleb Porzio that makes building reactive Laravel applications a breeze! Just as an example you can add a simple search autocomplete in seconds. How does it work? Livewire uses an old technique referred to as long-polling wh...
Written by Tony Lea - 3 minute read
I know what you’re probably thinking. Another javascript framework/library. But before you write this one off, perhaps you should take a look at how simple and flexible it is. Alpine can help you perform some simple javascript functionality in your a...
Written by Tony Lea - 3 minute read
Node is pretty amazing, but there is a new contender stepping into the ring, and his name is Deno. What is Deno? Deno is a new server side javascript language created by the same creator of NodeJS, and it's said to have many advantages over Node. In ...
Written by Tony Lea - 1 minute read
Sending email from a single line of code inside your Ubuntu server is actually pretty simple. Make sure that you've installed PostFix on your server and then you can simply send out emails with the following command:echo "This is the body of the emai...
Written by Tony Lea - 3 minute read
The tcpdump command can be used to check for incoming and outgoing TCP traffic on your server. You can check if you have tcpdump installed by running the following command:which tcpdumpYou should then see an output similar to:/usr/sbin/tcpdumpInstall...
Written by Tony Lea - 6 minute read
Postfix is an open source Mail Transfer Agent which will allow your server to receive emails from a specific address and parse that email as you see fit.Imagine you had a domain at hello.com and you wanted to setup an email such as [email protected] ...
Written by Tony Lea - 1 minute read
Appending HTML to the end of another element is very simple. Most people shy away from jQuery nowadays so it's important to know how to append HTML to another element in Vanilla Javascript.Let's say that you want to append a string of HTML to the end...