I hereby claim:
- I am jake-walker on github.
- I am jakew (https://keybase.io/jakew) on keybase.
- I have a public key ASCdLDPXpEiKV7i7xfprT_lJKXXT-Vb01-fqTjq7N4oimQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| Verifying my Blockstack ID is secured with the address 1JWD8CWWEs3sA2yTAPC2EYMV7tbjbtGyQz https://explorer.blockstack.org/address/1JWD8CWWEs3sA2yTAPC2EYMV7tbjbtGyQz |
| jake@jake-t430:~/Projects/cheat-snap$ SNAPCRAFT_CONTAINER_BUILDS=1 snapcraft prime | |
| Creating snapcraft-cheat | |
| error: Failed to run: /usr/bin/lxd forkstart snapcraft-cheat /var/lib/lxd/containers /var/log/lxd/snapcraft-cheat/lxc.conf: | |
| Try `lxc info --show-log local:snapcraft-cheat` for more info | |
| Stopping local:snapcraft-cheat | |
| error: The container is already stopped | |
| Try `lxc info --show-log local:snapcraft-cheat` for more info | |
| Traceback (most recent call last): | |
| File "/usr/lib/python3/dist-packages/snapcraft/internal/lxd.py", line 129, in _ensure_started | |
| self._ensure_container() |
| name: cheat # you probably want to 'snapcraft register <name>' | |
| version: '2.2.2' # just for humans, typically '1.2+git' or '1.3.2' | |
| summary: cheat lets you to create and view interactive cheatsheets on the command-line. # 79 char long summary | |
| description: | | |
| cheat allows you to create and view interactive cheatsheets on the | |
| command-line. It was designed to help remind *nix system administrators of | |
| options for commands that they use frequently, but not frequently enough to | |
| remember. | |
| grade: stable # must be 'stable' to release into candidate/stable channels |
| import subprocess | |
| # Import flask | |
| from flask import Flask, render_template, request | |
| # Make a flask server | |
| app = Flask(__name__) | |
| # String to set LIRC Remote to use | |
| lirc_remote = "bulb" | |
| # Dictionary of available commands in a human readable way |
| import subprocess | |
| # Variable for storing what LIRC remote to use | |
| lirc_remote = "bulb" | |
| # Dictionary to make the commands easy to read | |
| commands = { | |
| "on": "KEY_POWER", | |
| "off": "KEY_POWER2", | |
| "brightness up": "KEY_UP", | |
| "brightness down": "KEY_DOWN", |
| /* BASICS */ | |
| .CodeMirror { | |
| /* Set height, width, borders, and global font properties here */ | |
| font-family: monospace; | |
| height: 300px; | |
| color: black; | |
| } | |
| /* PADDING */ |
| LDA zero | |
| STA iterations | |
| STA total | |
| STA tmp | |
| STA count | |
| looptop INP | |
| BRZ startd | |
| STA tmp | |
| LDA total | |
| ADD tmp |
| import tkinter | |
| class Demo1: | |
| def __init__(self, master): | |
| self.master = master | |
| self.frame = tkinter.Frame(self.master) | |
| self.button1 = tkinter.Button(self.frame, text = 'New Window', width = 25, command = self.new_window) | |
| self.button1.pack() | |
| self.frame.pack() |
| {"0.314331492625316":"-----BEGIN PGP PUBLIC KEY BLOCK-----\r\nCharset: UTF-8\r\n\r\nxv8AAABSBAAAAAATCCqGSM49AwEHAgMEcO7ns+nsLSpmAZ9Rq8J3Mp+NAMOb5yVt\r\nASxzfQmzzBzXiiD0iCbl/8Eo2d9fCpuGJpheznQtjhLSrx4Ajpg96s3/AAAACDxn\r\naXRodWI+wv8AAACOBBATCABA/wAAAAWCWKlh+/8AAAACiwn/AAAACZA59JOODU24\r\nRf8AAAAFlQgJCgv/AAAABJYDAQL/AAAAApsD/wAAAAKeAQAAqnkBALVcOC3pqLOu\r\njrMSrteAxO4jrXJQXAm13gHTqYdFs8sNAP9Q0M2BQvCJFUw2K9cIqIesoBKhe+9U\r\n12kW7UstFvr91M7/AAAAVgQAAAAAEggqhkjOPQMBBwIDBAfyPsIpE1C5Yo9XbBZ6\r\njY7WiEtL60pjnethFuFp4XyPR5UoV4d6LksOyWlyjD5KYg4khlgFjgVLBWEe5DYD\r\nUn8DAQgHwv8AAABtBBgTCAAf/wAAAAWCWKlh+/8AAAAJkDn0k44NTbhF/wAAAAKb\r\nDAAA+1MA/1wimkTf8i2+t2wlZWL+VHbtvPXd42YC1/Tlza+AWLKPAP98eQj0e653\r\nPLpuNFCzg1GndA2FSXraJyb2D6PIpjd1pg==\r\n=MFCJ\r\n-----END PGP PUBLIC KEY BLOCK-----\r\n"} |