Code Monkey home page Code Monkey logo

Kali_Edit


Personal Profile

As a Software Developer with experience in AWS Cloud Development, Full-Stack Development, DevOps, Database Management, and Testing, I apply my problem-solving skills to address real-world challenges. My interest in Cyber Security and Ethical Hacking has broadened my knowledge and skills, enabling me to deliver secure digital solutions. I'm also intrigued by Data Science, where I use data to derive valuable insights and inform decisions. Outside of technology, I engage in chess, art, and design, which contribute to my strategic thinking and creativity. My diverse interests and expertise allow me to make a meaningful impact through innovative solutions. This diverse skill set makes me a valuable addition to any team, ready to contribute and learn in a dynamic environment.

Additionally, as a STARS Mentor at the University of Pretoria, I guide and inspire aspiring minds on their educational and professional journeys. As Martin Luther King, Jr. once said, "Life's most persistent and urgent question is, what are you doing for others?" Mentoring is a way to contribute to others by dedicating yourself to your mentee's well-being. Since I enrolled in the STARS mentorship, I have a better appreciation for the importance of mentorship.


Professional Skills

import json

proficient_json = json.dumps({
    "Languages": ["C++", "Java", "Python", "JavaScript", "C#", "PHP", "Node.js", "Typescript"],
    "Front-End  Tools": [
        "Angular", "React", "Ionic", "Bootstrap",
        "jQuery", "NextJS", "Tailwind CSS"
    ],
    "Back-End Tools": ["Node.js", "Express.js", "Django", "FastAPI", "Flask"],
    "Web Technologies": ["JSON", "AJAX", "HTML & CSS", "Markdown", "Socket.io"],
    "Databases": ["MySQL", "MongoDB", "NeDB", "PostgreSQL", "Microsoft SQL Server"],
    "AWS Services": [
        "AWS", "S3 Bucket", "DynamoDB", "AWS Lambda", "XRAY",
        "API Gateway", "AWS Elastic Beanstalk", "Amazon EC2",
        "AWS CloudFormation", "AWS IAM (AWS Identity and Access Management)"
    ],
    "Development Tools": [
        "phpMyAdmin", "Docker", "Continuous Integration and Continuous Delivery (CI/CD)",
        "CircleCI", "SSMS"
    ],
    "Terminals": ["CMD", "Kali Linux", "Bash", "WSL", "PowerShell", "Ubuntu"],
    "Web Frameworks": ["Django", "Flask", "Node.js with Express", "PHP"]
}, indent=4)

Create a Todo. Serverless.

async createToDo(todoItem: TodoItem): Promise<TodoItem>{
        console.log("Creating new todo");
        const params = { 
            todo_Table: this.todosTable, 
            Item: todoItem,
        };
        const result = await this.documentClient.put(params).promise();
        logger.info('User created a todo', {result})
        return todoItem as TodoItem;
}


Contact Details


Selepe Sello's Projects

angular-app-granatan icon angular-app-granatan

Angular 14 ,Bootstrap 5, Node.js, Express.js, ESLint, CRUD, PWA, SSR, SEO, Universal, Lazy Loading

basic_puzzle_survival_game_in_cpp icon basic_puzzle_survival_game_in_cpp

This is a small-scale puzzle survival game that runs in the terminal, using C++. There is a map in the game containing floors, walls, doors, an exit and of course, a playable character. The goal of the game is to reach the end of the level (the exit).

binary-search-tree--simple-travesals--and-recursion icon binary-search-tree--simple-travesals--and-recursion

In this implementation of BSTs, One will be a standard BST where the left child has a smaller value than the right child. The other will be a mirrored BST where the right child has a smaller value than the left child.

brand_race-local_nodejs_socket_server icon brand_race-local_nodejs_socket_server

This Implementation makes use of Web Sockets Connection, It's a game which will be played in real-time by users per 1 vs 1 per Game Loop. The general idea of the game is to guess the logo of a car brand quicker than an opponent.

client-server_communication_setup icon client-server_communication_setup

A client-server commutation allows multiple clients to communicate with each other by sending a message destined for another client via a central server. The server knows all the clients in the network.

computer_organisation_and_architecture icon computer_organisation_and_architecture

Topic-level detail and learning outcomes for each of these areas are given by the first six units of `Architecture and Organisation' knowledge area as specified by the ACM/IEEE Computer Science Curriculum 2013

concurrent_multithreaded_crud_api icon concurrent_multithreaded_crud_api

This API is a multi-threaded CRUD (Create, Read, Update, Delete) API designed for handling database requests. It utilizes multi-threading and the Bakery Lock algorithm to ensure thread safety and concurrent operations on a shared database.

controll_flow_graph_implementation_in_java icon controll_flow_graph_implementation_in_java

A CFG is known as a Single Entry Single Exit (SESE) graph if it only has a single entry node and a single exit node. A problem that arose during researchon static analysis is how to deal with loops in the CFG.

cos221_practical_5_group_the_untouchables icon cos221_practical_5_group_the_untouchables

For this assignment you will be making use of the SportsDB that is provided by The Sports Standard Alliance to implement your practical assignment. A schematic representation of the SportsDB that you will make use of can be found at: http://www.sportsdb.org/modules/sd/assets/downloads/sportsdb-29.jpg. The current database dump provided by The Sports Standard Alliance only provides schema definitions for the sports of Baseball, American Football, Basketball, Ice Hockey, Tennis, Motor Racing and Soccer.

data_structures_and_algorithms_in_java icon data_structures_and_algorithms_in_java

Java is a widely used object-oriented programming language and software platform that runs on billions of devices, including notebook computers, mobile devices, gaming consoles, medical devices and many others. The rules and syntax of Java are based on the C and C++ languages.

deploying_a_static_website_on_aws icon deploying_a_static_website_on_aws

Deploy Static Website on AWS In this project, you will deploy a static website to AWS using S3, CloudFront, and IAM. The files included are: index.html - The Index document for the website. /img - The background image file for the website. /vendor - Bootssrap CSS framework, Font, and JavaScript libraries needed for the website to function./css - CSS files for the website.

gamified_health_app_logic_legends icon gamified_health_app_logic_legends

In today's fast-paced world, staying motivated and committed to a healthy lifestyle can be challenging. To address this, we are excited to introduce our innovative Gamified Health App, a unique fitness platform that combines gamification, social interaction, and rewards to make exercise enjoyable and engaging for everyone.

graph-algorithms-by-eirinimits icon graph-algorithms-by-eirinimits

Implementations of various algorithms including Hamiltonian Cycle, Kruskal, Prim, Boruvka, Edmonds-Karp, Gale-Shapley, BrΓ©laz and Sequential Coloring regarding graph theory in Java

mathematical_expressions_calculator icon mathematical_expressions_calculator

Polynomials are mathematical objects which are expressions of variables and coefficients added to-gether. These polynomials can use operator overloading in a very intuitive manner since most of the operators that we can overload are mathematical operators, which can also be applied to polynomials.

mathematical_modelling_in_python icon mathematical_modelling_in_python

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.

object_orientated_programming_in_cpp icon object_orientated_programming_in_cpp

C++ is a cross-platform language that can be used to create high-performance applications. C++ was developed by Bjarne Stroustrup, as an extension to the C language. C++ gives programmers a high level of control over system resources and memory. The language was updated 4 major times in 2011, 2014, 2017, and 2020 to C++11, C++14, C++17, C++20.

procedural_programming_in_cpp icon procedural_programming_in_cpp

C++ is a cross-platform language that can be used to create high-performance applications. C++ was developed by Bjarne Stroustrup, as an extension to the C language. C++ gives programmers a high level of control over system resources and memory. The language was updated 4 major times in 2011, 2014, 2017, and 2020 to C++11, C++14, C++17, C++20.

python_api_development_booth_fastapi icon python_api_development_booth_fastapi

FastAPI API Development Booth: A comprehensive repository showcasing best practices and examples for building robust and efficient API using FastAPI in Python.

refactoring_a_monolith_to_microservices icon refactoring_a_monolith_to_microservices

The project application, Udagram - an Image Filtering application, allows users to register and log into a web client, post photos to the feed, and process photos using an image filtering microservice.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.