Skip to content

Instantly share code, notes, and snippets.

View kamauvick's full-sized avatar
🥷
QA Ninja

vick kamauvick

🥷
QA Ninja
View GitHub Profile
import africastalking
username = "africa username" # use 'sandbox' for development in the test environment
# use your sandbox app API key for development in the test environment
api_key = "africa's talking api key"
africastalking.initialize(username, api_key)
# # Use the service synchronously
@kamauvick
kamauvick / media-query.css
Created November 10, 2019 10:48 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@kamauvick
kamauvick / Heroku-Deployment.md
Last active October 16, 2020 02:53
Deploying to Heroku manual

A guide for deploying to Heroku

Info:

This guide shows a simple step by step tutorial for deploying django applications.

Tested with django 2.2.5

Requirements:

Starters:

  • A heroku account
@kamauvick
kamauvick / virtual_envs.md
Created September 7, 2019 11:20
Welcome file

Creating virtual envs

Hi guys! Below are simple steps to install pip3. This will also help when installing virtualenv which gives you an easy way to create virtual environments.

Pip3

$ sudo apt update

>$ sudo apt install python3-pip