How to Avoid exposing the Backend API

How to Avoid exposing the Backend API I’ve been learning how to use react and nextJS to build a frontend for one of my projects. I’m using Flask to build the API backend server that will provide the main functionality. I want to limit abuse of the API server and came across several options. Options CORS CORS is a mechanism that’s enforced by the browser to limit access to a server’s resources....

July 28, 2024 · 3 min · Leen

3 Podcasts I've been Listening to

3 Podcasts I’ve been Listening to Podcasts have been around for a long time, but I’ve only started listening to podcasts around the end of 2021/early 2022. I don’t know why I had a bad image of them in my mind and resisted giving them a try. Turns out I was wrong, and podcasts have a variety of formats that aren’t just two guys talking to each other. I could’ve learned a lot while doing chores / driving around instead of listening to the same songs over and over again....

June 30, 2024 · 3 min · Leen

3 things I wish I knew when starting out my Software Engineering Career

Here are things I would’ve found valuable when first starting out: 1. Version control (git) - beyond the basics As a Computer Student I learned and used git as part of my individual projects and group projects. But, that git knowledge was minimal. It consisted of how to check in code, commit, push to remote, resolve conflicts, create a branch, merge a branch. Working on longer term projects with a larger team required a different set of knowledge like:...

May 31, 2024 · 3 min · Leen

ProxySQL Query Redirection

ProxySQL What is ProxySQL? ProxySQL is a performant proxy that offloads the load from the primary mysql db by multiplexing client connection, allowing slow read queries to be redirected to db replicas, and a bunch of other features. I’m going to be focusing on query redirection and the pitfalls I encountered getting it work. Query Redirection There are two main options when it comes to query redirection: Use a different proxysql port or user and have all queries coming from that port or user to use a specific hostgroup Use the query rules to redirect specific queries that match some condition The first option requires changing the application code to use the redirection port or the other user which requires an extra connection....

April 30, 2024 · 4 min · Leen

FUSE vs. File Watchers

Original Problem We have two directories plaintext and secret, which hold the unencrypted files and their encrypted counter parts respectively. We need to detect changes to plaintext and sync them to secret. Common Methods Polling Based The simplest method is to check the directory on a regular interval (polling) for changes by walking the directory and its files and comparing it against the cached last known state. This method can be less efficient and timely than the other two methods below but it’s biggest advantage is it is the least OS dependent....

January 28, 2024 · 2 min · Leen