Articles & Books I (re)read [2025]Articles It's Hard to Forego Efficiency → https://rauchg.com/2017/its-hard-to-forego-efficiency A Lesson on Elementary Worldly Wisdom As It Relates To Investment Management & Business - Charlie Munger https://fs.blog/great-talks/a-lesson-on-worldly...Dec 31, 2025·1 min read
CSS Art: Instagram Logo with pure CSSIn this (mostly code, "little plain text") post, I show you how I created an Instagram logo using CSS only. You can find the full source code here: CodePen https://www.youtube.com/watch?v=wKQX3yHEj94&list=PL5R42MN8NiQQbGWhs2_8sRYWMLweM7Dhx First, t...May 21, 2022·2 min read
Cheat sheet: Arrays in JavaScriptJavaScript Arrays are a very flexible data structure and are used as lists, stacks, queues, etc. Every value in an array is associated with a numeric index starting with 0. Here is everything you need to get started with arrays Using Arrays How to cr...Jan 22, 2022·3 min read
HOW TO: Click outside to close in JavascriptHey, Charles Kasasira here, time to time, I write 2-minutes packaged articles on how to do some cool stuff in web development, and in this short "Do It Yourself", I would like to show you how you too can write a short piece of code using HTML, CSS an...Jan 18, 2022·3 min read
HOW TO: Create a dynamic avatar from the user's initials pure Javascript.Hey, am Charles Kassira and in this short "Do It Yourself", I would like to show you how to write a short piece of code using HTML, CSS, and vanilla javascript to create dynamic avatars from the user’s initials. Which you can see commonly used on pla...Jan 13, 2022·3 min read
What is a Flow Chart In programming?A Flowchart is a graphical representation of an algorithm. Programmers often use it as a planning tool to aid in solving a problem step by step. Flow Charts are not a new thing in the world of programming, they were borrowed from the engineering and...Jan 8, 2022·2 min read
Spot the difference URL VS URIURL(Uniform Resource Locator) known as the address of a website is a reference for a resource and a way to access that resource structure of a URL protocol://[hostname]path[?query][#fragment] While URI(Uniform Resource Identifier) is a way to identi...Dec 12, 2021·1 min read