CodeCraft Chronicles

Home

Js: Email Obsfrustration
Apr 15, 2023

Email harvesters and other bots roam the Internet looking for email addresses to add to lists that target recipients for spam. This trend results in an increasing amount of unwanted email. Learn how to create a simple page using JavaScript. Check this step-by-step guide. Let´s Start. Background I like how Cloudflare obfuscate mails, googling around I found an Andrew Lock article explaining how to use a simple bitwise XOR using a key, and as I knew the technique, I decided to adapt it and do my own implementation. code

CSS: Star Rating
Apr 10, 2023

Learn how to create a simple star rating look with only CSS and minimum HTML. We are going to use the data attribute and the before and after selectors. Check this step-by-step guide. Let´s Start. GOAL Create a rating system using minimum markup. HTML In orther to specify a rating we will use a span with a data attribute and a value from 1 to 5. design