Skip to content

Instantly share code, notes, and snippets.

View malgamves's full-sized avatar

Daniel Madalitso Phiri malgamves

View GitHub Profile
@olivermrbl
olivermrbl / strapi-medusa.md
Last active February 6, 2022 17:51
Guide on how to use Strapi with Medusa

Medusa Medusa

Medusa Strapi Plugin

@Lontia
Lontia / download.py
Last active May 12, 2020 08:41
Download videos(youtube)
import webbrowser
url = "https://www.youtube.com/watch?v=4qKw_f0yTn4"
download = url[:12] + "ss" + url[12:]
webbrowser.open(download)
@bonzanini
bonzanini / config.py
Last active April 18, 2024 11:57
Twitter Stream Downloader
consumer_key = 'your-consumer-key'
consumer_secret = 'your-consumer-secret'
access_token = 'your-access-token'
access_secret = 'your-access-secret'
@iros
iros / API.md
Created August 22, 2012 14:42
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream