Hey, I'm Fiston N

Software developer focused on building digital products with clean code and exceptional user experience.

Currently building atneon.tech →

Skills & Expertise

Technologies and tools I've worked with and enjoy using

Frontend

TypeScript90%
React95%
Next.js88%

Backend

Node.js85%
PostgreSQL82%

DevOps

AWS78%
Docker80%

Mobile

React Native85%
example.ts
1// Example of clean, type-safe code
2const optimizePerformance = <T extends unknown[]>(
3 fn: (...args: T) => void,
4 delay: number = 300
5): ((...args: T) => void) => {
6 let timeoutId: NodeJS.Timeout;
7
8 return (...args: T) => {
9 clearTimeout(timeoutId);
10 timeoutId = setTimeout(() => fn(...args), delay);
11 };
12};
13
14// Usage example
15const handleSearch = optimizePerformance((query: string) => {
16 // Perform search operation
17 console.log('Searching for:', query);
18}, 500);

Open Source

My contributions and impact in the developer community

Stars
128
Forks
45
Followers
89
Contributions
715+

Selected Work

A collection of projects I've worked on, showcasing my experience in building digital products.

Development Journey

A timeline of my growth and achievements in software development.

Peak Performance

715+ contributions, leading significant projects like contract-analysis-yt and nextlaunch.

TypeScriptNext.jsAI

Expanding Horizons

Joined GitHub Developer Program and scaled up open source contributions with consistent activity throughout the year.

CommunityDevelopment

Foundation Building

Started building the repository collection, focusing on TypeScript and modern web development technologies.

TypeScriptWeb Development

Journey Begins

Initial GitHub contributions and early project development, setting the foundation for future growth.

Open SourceLearning