EDDYMENS

Eddymens (List page)


Last updated 2021-09-23 13:28:24

No Time To Learn A Static Site Generator? Try This

Traditionally we built sites supported by a backend that takes data and spreads it onto an HTML template. Backends also took care of the differences between rendered pages. This setup is what we refer to as a dynamically rendered site. For many sites, this approach meant each time...

Last updated 2020-12-13 00:34:49

Trimming The Fat Off Bootstrap 4

Bootstrap is a very useful CSS framework in the sense that it makes designing a website easy by providing a lot out of the box. It provides a lot from typography to Modal. Applying a style to your HTML is simply done by adding a bootstrap class to the element in question. ...

Last updated 2020-05-11 22:59:55

Getting Your Windows Files And Folders To Behave As On Linux

I will make this brief. If you write software on a Windows machine but usually deploy on a Linux server you probably have encountered the problem of your software breaking due to the difference in the way both OSs handle file names and the issue with referencing the wrong case of t...

Last updated 2019-12-17 21:20:01

Setting Up HTTPS Redirects On Heroku Laravel Instance

I am going to keep this post really short. I worked on cleaning up parts of my personal site and one thing I really wanted to solve was to force all requests to be served via HTTPS. I tried a couple of options, like forcing the redirect using , this led to multiple redirec...

Last updated 2017-05-16 01:36:56

BrainFuck Interpreter Using Method Chaining

I have been sick for the last couple of days, and I have not been able to get much work done. So in the spirit of being productive, I decided to take a look at the little things I have long been planning to do. One such thing was to look at Brainfuck lang. Brainfuck is an esolang ...