Used nodes:
Linux raspberrypi 4.9.41-v7+ #1023 SMP Tue Aug 8 16:00:15 BST 2017 armv7l GNU/Linux
Linux localhost.localdomain 4.14.5-200.fc26.x86_64 #1 SMP Mon Dec 11 16:29:08 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
| #!/usr/bin/env bash | |
| NODESAPI=/api/v1/nodes | |
| function getNodes() { | |
| kubectl get --raw $NODESAPI | jq -r '.items[].metadata.name' | |
| } | |
| function getPVCs() { | |
| jq -s '[flatten | .[].pods[].volume[]? | select(has("pvcRef")) | '\ |
| # pylint: skip-file | |
| import time | |
| import re | |
| import md5 | |
| import requests | |
| import json | |
| INSTAGRAM_URL = "https://www.instagram.com" | |
| HASHTAG_ENDPOINT = "/graphql/query/?query_hash={}&variables={}" |
| #!/usr/bin/python | |
| import paho.mqtt.publish as publish | |
| import paho.mqtt.client as mqtt | |
| import ssl | |
| auth = { | |
| 'username':"ciscohackhub.azure-devices.net/lora1", | |
| 'password':"SharedAccessSignature sr=ciscohackhub.azure-devices.net%2Fdevices%2Flora1&sig=xxxx&se=1463048772" | |
| } |
| #!/bin/bash | |
| # | |
| # This version uses September 2017 august stretch image, please use this image | |
| # | |
| if [ "$EUID" -ne 0 ] | |
| then echo "Must be root" | |
| exit | |
| fi |
| //============================================================================ | |
| // Name : KaratsubaMultiplication.cpp | |
| // Author : Evin Ugur (http://evinugur.com) | |
| // Version : 1.0 | |
| // Copyright : Copyright 2015. You can use this code however and wherever you want no strings attached | |
| // Description : C++ Functions to Perform Karatsbuba Multiplications | |
| //============================================================================ | |
| #include <iostream> | |
| #include <math.h> |
| import urlparse | |
| import httplib | |
| import base64 | |
| proxy_uri = "http://user:password@proxy_host:proxy_port" | |
| host = 'www.google.com' | |
| port = 443 | |
| url = urlparse.urlparse(proxy_uri) | |
| conn = httplib.HTTPSConnection(url.hostname, url.port) |