[ip]:[port]/elgato/accessory-info
[ip]:[port]/elgato/battery-info
[ip]:[port]/elgato/lights
[ip]:[port]/elgato/lights/settings
GET /elgato/accessory-info
{ | |
"@context": "http://schema.org/", | |
"@type": "Person", | |
"name": "Andy Piper", | |
"affiliation": [{ | |
"@type": "Organization", | |
"name": "Games at Work dot Biz", | |
"sameAs": [ | |
"https://twitter.com/gamesatwork_biz", | |
"https://gamesatwork.biz" |
[ip]:[port]/elgato/accessory-info
[ip]:[port]/elgato/battery-info
[ip]:[port]/elgato/lights
[ip]:[port]/elgato/lights/settings
GET /elgato/accessory-info
I couldn't find a comprehensive list of links for the RC2014 so I started one. Suggestions welcome.
"""BME688 / BME680 demo | |
This demo will work for both the BME680 and BME688. | |
""" | |
import time | |
from breakout_bme68x import BreakoutBME68X, STATUS_HEATER_STABLE | |
from pimoroni_i2c import PimoroniI2C | |
import badger2040 | |
import machine | |
badger = badger2040.Badger2040() |
Sign up for Essential Access | |
https://t.co/apply | |
Automation rules | |
https://t.co/automation | |
API roadmap | |
https://t.co/roadmap | |
Documentation for Twitter API v2 |
Get–Process "notepad" | Stop–Process |
# edit the login message | |
vi /etc/motd | |
# switch to usable repos - iSH defaults often failed with EOF errors | |
echo https://dl-cdn.alpinelinux.org/alpine/v3.13/main > /etc/apk/repositories | |
echo https://dl-cdn.alpinelinux.org/alpine/v3.13/community >> /etc/apk/repositories | |
# install some basics | |
apk add zsh bash | |
apk add sed attr dialog dialog-doc bash bash-doc bash-completion grep grep-doc |
import json | |
from requests_oauthlib import OAuth1Session | |
# For a blog post describing this process more, see: | |
# https://medium.com/analytics-vidhya/creating-a-twitter-collection-via-api-1378ecfe20df | |
api_key = 'your api key' | |
api_secret_key = 'your api secret key' | |
access_token = 'your access token' |
Built using Shields.io
Served from https://twbadges.glitch.me
################################ | |
#!/usr/bin/env bash | |
# File: twit_twurl.sh | |
# Description: Tweet from the command line using twurl & OAuth | |
# | |
# Copyright 2010 George Ornbo (Shape Shed) | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at |