Skip to content

Instantly share code, notes, and snippets.

@rizwansaeed
rizwansaeed / fetch_nike_puls_all_activities.bash
Created July 7, 2019 10:35 — forked from niw/fetch_nike_puls_all_activities.bash
A simple NikePlus API description to fetch past run metrics
#!/usr/bin/env bash
# fetch_nike_puls_all_activities.bash
# A simple bash script to fetch all activities and metrics from NikePlus.
# See `nike_plus_api.md` for the API details.
readonly bearer_token="$1"
if [[ -z "$bearer_token" ]]; then
echo "Usage: $0 bearer_token"
exit
{
"swagger": "2.0",
"info": {
"version": "0.10.190",
"title": "LUSID API"
},
"paths": {
"/api/instruments": {
"post": {
"tags": [
public class Hello
{
    public static void Main()
    {
        System.Console.WriteLine("Hello, World!");
    }
}
import requests
proxies = {
'http': 'http://',
'https': 'https://'
}
response = requests.get('https://www.howsmyssl.com/a/check', proxies=proxies)
result = response.json()['tls_version']
@rizwansaeed
rizwansaeed / jupyter_shortcuts.md
Created May 9, 2018 13:13 — forked from kidpixo/jupyter_shortcuts.md
Keyboard shortcuts for ipython notebook 3.1.0 / jupyter

Toc

Keyboard shortcuts

The IPython Notebook has two different keyboard input modes. Edit mode allows you to type code/text into a cell and is indicated by a green cell border. Command mode binds the keyboard to notebook level actions and is indicated by a grey cell border.

MacOS modifier keys:

  • ⌘ : Command
@rizwansaeed
rizwansaeed / 0_reuse_code.js
Last active August 29, 2015 14:13
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console