This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Created at Mon, 22 Mar 2021 21:56:31 -0300 | |
# Using Kinto version 14.2.0 | |
# Full options list for .ini file | |
# https://kinto.readthedocs.io/en/latest/configuration/settings.html | |
[server:main] | |
use = egg:waitress#main | |
host = 127.0.0.1 | |
port = %(http_port)s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document url-prefix("https://cronometer.com/") { | |
#cronometerApp { | |
width: 100%; | |
margin: 0; | |
max-width: none; | |
} | |
#cronometerApp > div > div > div > table { | |
width: 100%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Balances } from "./context/connected"; | |
import { Contracts } from "../contracts"; | |
import { ethers, BigNumber } from "ethers"; | |
const TokensInventory = ({ balances, address, contracts }: { balances: Balances; address: string; contracts: Contracts }) => { | |
return ( | |
<div id="inventory-top"> | |
<div> | |
<div> | |
<aside>My Ubiquity Inventory</aside> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This script was written by ChatGPT from the following prompt | |
# Could you write me a small script that runs on OSX that monitors the currently playing song on | |
# Spotify and when the song changes pauses for 30 seconds and then starts playing again? | |
import time | |
import subprocess | |
def run_applescript(script): | |
return subprocess.run(["osascript", "-e", script], capture_output=True, text=True) |
OlderNewer