Category: Web

  • System statistics reporting using Laravel

    The Laravel web framework comes with a lot of powerful tools and one of them it the Task Scheduler. This allows you to create and manage all your automated – Cron Jobs – tasks within the framework. If you do not write Cron jobs often, going through documentation or memorizing the Crontab syntax and expression…

  • Improving systems performance with checksums: Part 1

    Checksums are blocks of data generated from another block of data you want to store or transfer to ensure that correct data is transmitted during the process of moving data around. This is useful for data correction and security purposes. For example you could use a checksum algorithm to check if the data you download…

  • Making Custom Numbered List in CSS : Part 1

    Creating a custom numbered list in CSS is quite simple. This can be done using a list or any block level element. We will be using the following CSS properties: Below is a sample using counter function with block level elements. See the Pen Custom List in CSS by Sheun (@sheunl) on CodePen. Custom numbering…