Second of five articles on the detailing how I went overboard redoing my personal site: https://www.timothymalstead.com/blog/over-engineer-your-site-part-2 #dev #typescript #javascript #nextjs
How to Over-Engineer Your Personal Site: Part Two

Second entry in a series about how I redid my personal website, focusing on tools

Wrote my first data structure using comptime to replace an ArrayList where the maximum size is known at compile time. As I use it as a stack, it only implements append and pop as that is all I need.

#zig #dev

pub fn ConstStack(comptime T: type, size: comptime_int) type { return struct { items: [size]T = undefined, len: usize = 0, const Self = @This(); pub fn append(self: *Self, item: T) !void { if (self.len == size) { return error.OutOfMemory; } self.items[self.len] = item; self.len += 1; } pub fn pop(self: *Self) ?T { if (self.len == 0) return null; self.len -= 1; return self.items[self.len]; } }; }

Amalfi coast 🍋🌊 in spring is the real indie dev dream 🥹 Happy Easter from Salerno 🇮🇹

#BuildInPublic #IndieDev #iOS #Dev #iOSDev #Swift #SwiftUI

I feel sorry for people who do the #coding for all things great. We have to be good at #maths and great at understanding #physics and we barely get to enjoy our work and no one understands what we do….

#development #flutter #androiddev #ios #apple #dev #code #app

Earlier this year I redid my personal website and wrote about the process. Here’s the first of five articles on the subject: https://www.timothymalstead.com/blog/over-engineer-your-site-part-1 #dev #typescript #javascript #article #website
How to Over-Engineer Your Personal Site: Part Two

Second entry in a series about how I redid my personal website, focusing on tools

Non sono ancora riuscito a leggerne uno anche se il link è nei segnalibri da un bel po' ma sembra interessante...

Sarà il nome tra parentesi?

(display "Hello World") sarebbe stato troppo effettivamente🤣🤣🤣

-------

(Hello World) Magazine

Read the free computing and digital making magazine by educators for educators

One hundred pages of in-depth discussion, project ideas, lesson plans, news, and reviews.

#helloworld #magazine #raspberrypi #dev #programming

https://www.raspberrypi.org/hello-world

Hello World

Our free magazine for computing and digital making educators around the world.

Raspberry Pi Foundation

Nome peculiar para um jornalista 🤔

https://lemm.ee/post/61796941

Nome peculiar para um jornalista 🤔 - lemm.ee

Lemmy

Had an excellent bank Holiday Friday! Now it's time for some Saturday coding, and getting through more of my little side project stuff

#Dev #WebDev

Playing with #flutter in #androidstudio again. Looking to get back into this again and start making some fun #apps

Share your links here to apps that you made.

#android #androiddev #development #iOS #apple #devops #dev