| No. | Company | Purpose (Company Summary) | Roles Available | Technologies Used |
|---|---|---|---|---|
| 1 | AltSchool (Lagos) | Tech education platform | Backend Engineering Instructor, Technical Program Manager | Python, Node.js, Go, React |
| 2 | Busha | Cryptocurrency exchange and wallet | Senior Backend Engineer (Go), Senior Flutter Mobile Engineer | Go, Flutter, React, AWS |
| 3 | Duolingo | Language learning platform | Senior Software Engineer (Backend), Senior iOS Engineer | Python, Scala, React, AWS, Java |
| 4 | Preply | Language learning marketplace | Staff Platform Engineer, Senior Back-End Engineer | Python, Django, AWS, Kubernetes |
| 5 | FlexiSAF (Abuja) | Education software solutions | [AI Engineer (LLM)](https://flexisaf. |
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
| #!/bin/bash | |
| # MAC APPLICATION CLEANUP SCRIPT | |
| # | |
| # This script handles the uninstallation of an application (via Homebrew Cask or Formula) | |
| # and then attempts to find and list residual configuration, cache, and support files | |
| # in common macOS Library directories for manual review and deletion. | |
| # | |
| # WARNING: Use the 'sudo' prompt only if you are absolutely sure about the files | |
| # being listed for deletion, as 'rm -rf' is permanent and bypasses the Trash. |
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
| [ | |
| { | |
| "name": "Afghanistan", | |
| "dial_code": "+93", | |
| "code": "AF" | |
| }, | |
| { | |
| "name": "Aland Islands", | |
| "dial_code": "+358", | |
| "code": "AX" |
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
| #!/usr/bin/env fish | |
| # Check if folder path is provided | |
| if not set -q argv[1] | |
| echo "Usage: ./extract_all.fish <folder-path>" | |
| exit 1 | |
| end | |
| set folder $argv[1] |
| Filter | Description | Example |
|---|---|---|
| allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
| intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
| inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
| allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
| intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
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
| # !/bin/bash | |
| VERSION=0.0.1 | |
| NONINTERACTIVE=1 # for homebrew install | |
| DRY_RUN=false | |
| ENABLED_DEFAULT=true | |
| TAPS_ENABLED=$ENABLED_DEFAULT | |
| TAPS_ENABLED_ASK=true |
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
| import React from 'react'; | |
| import { Navbar, Nav, Button, Form} from 'react-bootstrap'; | |
| import { NavLink } from "react-router-dom" | |
| const Header = () => { | |
| return( | |
| <Navbar className='transh' expand="lg"> | |
| <Navbar.Brand className='f3'><h1>KnowAfrica</h1></Navbar.Brand> | |
| <Navbar.Toggle aria-controls="basic-navbar-nav" /> | |
| <Navbar.Collapse id="basic-navbar-nav"> |