- Working Knowledge of version contorl systems like git and gitlab
- Working knowledge of docker or any other containerization platform e.g kubenertes, openshift, Linux containers
- Proficient in UI/UX design for both mobile and desktop Apps
- Working Knowledge of any of the following libraries and frameworks: Angular, Vue, React, Sevelt, hapijs, Nodejs etc
- Must be proficient in Nodejs as it is our primary backend
- Working Knowledge of any of the following DBs: Mongo Db, Influx Db, and Redis
- Added advantage if proficient in Node-Red
- Must have experience in Mobile App development preferably mobile app PWAs or Android using kotlin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Once logged in naviagte to MyProfile and scroll down to Delete account section, then click the Delete button and you will be prompted to enter your email or username; | |
after which your account will be deleted together with all the data related to that account. | |
'My profile > Delete Account' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"math/rand" | |
"net/http" | |
"time" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stages: | |
- test | |
- build | |
- deploy | |
test: | |
stage: test | |
script: echo "Running tests" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"regexp" | |
"strconv" | |
"strings" | |
"time" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Apache License | |
Version 2.0, January 2004 | |
http://www.apache.org/licenses/ | |
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | |
1. Definitions. | |
"License" shall mean the terms and conditions for use, reproduction, | |
and distribution as defined by Sections 1 through 9 of this document. |
Ping Scan is a module that allows you to ping a range of addresses at one go and can be used alongside other programs like nmap by through pipe ridirection. It is much faster than nmap when ping a range of IPs or hostnames and offers you extra statistics on the ping results. Below is an example of the output to expect
Name Value
---- -----
Num_alive_host 30
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Author: Eric Mutua | |
*/ | |
// Reads the variables sent via POST | |
$sessionId = $_POST["sessionId"]; | |
$serviceCode = $_POST["serviceCode"]; | |
$phoneNumber = $_POST["phoneNumber"]; | |
$text = $_POST["text"]; |