Akram
Zaitout
Full Stack Developer
Full Stack Software Developer and Data Scientist with over five years of hands-on experience building scalable web platforms. I combine deep frontend and backend expertise with AI-driven problem solving to deliver production-ready architectures that transform complex ideas into high-performance digital solutions.
Get in Touch
01
@Controller('akram')
02
@UseGuards(ZeroBugsGuard, UnlimitedCoffeeGuard)
03
@UseInterceptors(InstantResponseInterceptor)
04
export class AkramPortfolioController {
05
constructor(private readonly portfolio: PortfolioService) {}
06
@Get('highlights')
07
async getTopProjects(@Query('limit') limit: number = 10) {
08
return await this.portfolio.fetchFeaturedWork({
09
limit,
10
sort: 'epic',
11
});
12
}
13
@Post('hire')
14
async hireMe(@Body() offer: JobOfferDto) {
15
return await this.portfolio.acceptAwesomeOffer(offer);
16
}
17
}
NestJS · Akram Showcase API
UTF-8TypeScript