Skip to content

Instantly share code, notes, and snippets.

View asaidimu's full-sized avatar
🎯
Focusing

Saidimu asaidimu

🎯
Focusing
View GitHub Profile
@asaidimu
asaidimu / ProjectTracker.ts
Last active June 23, 2024 15:09
Tracking a project with blockchain.
import { v4 as uuidv4 } from 'uuid';
// UUID generation function
const generateUUID = (): string => {
return uuidv4();
};
// User interface
interface User {
@asaidimu
asaidimu / programming-achievements.md
Last active September 27, 2023 16:06 — forked from jasonrudolph/about.md
Programming Achievements

Learn a variety of programming paradigms:

  • Write a program in assembly language
  • Write an application in a functional language
  • Write an application in an object-oriented language
  • Write an application in a prototype-based language
  • Write an application in a logic programming language
  • Write an application using the Actor model
  • Write an application in Forth