
Software Developer by day,
Cyber Security Enthusiast by night.
Detail-oriented Computer Science and Software Engineering Graduate with a strong foundation in networking, and software development. Eager to contribute to innovative IT solutions and continuously grow professionally.
Technical Arsenal
[core.competencies] || Qualified Computer Science & Software Engineer.
Software Development
Full-stack development focused on clean code, scalability, and performance optimization.
Networking
Comprehensive understanding of IT infrastructure and NOC operations.
Cyber Security
Focus on secure system architecture and proactive incident response.
Data Systems
High-performance relational and non-relational database solutions.
Featured Projects
[project.archive] || Code snippets verified
export const Gallery = ({ items }) => {
return (
<div className="grid-layout">
{items.map(item => (
<ArtCard key={item.id} {...item} />
))}
</div>
);
};Artistic Marketplace
Digital storefront for local artists to showcase and sell creative assets.
router.post('/pay', async (req, res) => {
const order = await paypal.createOrder(req.body);
await db.transaction.save({
id: order.id,
status: 'INITIATED'
});
res.status(201).send(order);
});Marketplace Backend
API architecture with Keycloak auth and PayPal payments.
def transcribe(audio_path):
model = whisper.load_model("base")
result = model.transcribe(audio_path)
return result["text"]
speak(transcribe("input.wav"))Speakless
OpenAI Whisper utility for text-to-speech conversion.
const config = {
namespace: 'Playground',
theme: MyTheme,
onError: (e) => console.error(e),
};
<LexicalComposer initialConfig={config}>
<RichTextPlugin />
</LexicalComposer>Lexical Playground
Rich-text editor environment exploring content frameworks.