Software Engineer III

shadrack meoli . n

Focused on creating efficient APIs, smooth animations, ensuring fluidity and finding a balance between design and functionality.

Lang: TypeScript / Go / python
Frameworks: Vue / React / Alpine.js
Native: React Native / Electron
DBs: postgres / S3 / Redis

Creativebear Tech

Consultant

Software Engineer III (Full stack)

present

Chpter

Contract

Software Engineer III (Frontend)

5 months

Shopzetu

Full Time

Software Engineer II (Full stack developer)

1 year

Robodine

Part Time

Software Engineer II (Backend developer)

8 months

Paylend

Contract

Software Engineer I (Machine Learning & Blockchain)

5 months

Indepth Research Kenya

Contract

Software Engineer I (Data Engineer)

8 months

Trivayu

Apprenticeship

Business Intelligence Developer

3 months

TypeScript/JavaScript

5 years

Building scalable web applications with type safety

Go

2 years

High-performance backend services and APIs

SQL & Databases

4 years

Database design and optimization

app.ts
// Building type-safe applications
interface User {
  id: string;
  email: string;
  role: 'admin' | 'user';
}

const getUser = async (id: string): Promise<User> => {
  const response = await api.get(`/users/${id}`);
  return response.data;
};