Alex Marumo
[ALEX_MARUMO]

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.

AVAILABLE FOR WORK

Technical Arsenal

[core.competencies] || Qualified Computer Science & Software Engineer.

Software Development

Full-stack development focused on clean code, scalability, and performance optimization.

ReactJavaScriptPythonCI/CD
SYSTEM_VERIFIED

Networking

Comprehensive understanding of IT infrastructure and NOC operations.

SupportInfrastructureNOCConfig
SYSTEM_VERIFIED

Cyber Security

Focus on secure system architecture and proactive incident response.

ResponseFoundationsCisco
SYSTEM_VERIFIED

Data Systems

High-performance relational and non-relational database solutions.

PostgresMySQLMongoDB
SYSTEM_VERIFIED

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>
  );
};
[UI.UX_NODE]

Artistic Marketplace

Digital storefront for local artists to showcase and sell creative assets.

ReactNode.jsJWTTailwind
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);
});
[SYSTEM.CORE]

Marketplace Backend

API architecture with Keycloak auth and PayPal payments.

NodeJSPostgreSQLKeycloakPaypal
def transcribe(audio_path):
    model = whisper.load_model("base")
    result = model.transcribe(audio_path)
    return result["text"]

speak(transcribe("input.wav"))
[SYSTEM.CORE]

Speakless

OpenAI Whisper utility for text-to-speech conversion.

PythonWhisperOpenAIPyTorch
const config = {
  namespace: 'Playground',
  theme: MyTheme,
  onError: (e) => console.error(e),
};

<LexicalComposer initialConfig={config}>
  <RichTextPlugin />
</LexicalComposer>
[UI.UX_NODE]

Lexical Playground

Rich-text editor environment exploring content frameworks.

ReactTypescriptLexicalVite