Hello everyone, I'm Alex 🪐
A student who is learning web development
-
🌱 Currently studying React.js, Node.js, and Next.js all using Typescript 💙.
-
📫 Get to know me: alessandrofoglia07@gmail.com
-
🧙♂️ If you are interested in web development, you will find my blog interesting for sure!
-
🔥 Also check some of my favourite projects:
LeafGPT:Front-endBack-end
curse-filter:Package repo
🗺️ and my templates:
Modern Node App
Modern React PWA
const alex = async () => {
let alive = true;
while (alive) {
try {
wakeUp();
code();
await sleep();
} catch (err: unknown) {
console.log(`💤 Error occurred during sleep: ${err}`);
// Hopefully not soon
alive = false;
}
}
};
alex();