Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| /** | |
| * Sets up a DOM MutationObserver that watches for elements using undefined CSS | |
| * class names. Performance should be pretty good, but it's probably best to | |
| * avoid using this in production. | |
| * | |
| * Usage: | |
| * | |
| * import cssCheck from './checkForUndefinedCSSClasses.js' | |
| * | |
| * // Call before DOM renders (e.g. in <HEAD> or prior to React.render()) |
| modbus: | |
| name: e3dc | |
| type: tcp | |
| host: 192.168.1.68 | |
| port: 502 | |
| sensor: | |
| - platform: template | |
| sensors: | |
| e3dc_netzeinspeisung: |
| import React, { useState } from "react" | |
| import PropTypes from 'prop-types' | |
| import "./input.css" | |
| import TypingIndicator from "./TypingIndicator" | |
| const input = (props) => { | |
| const styles = ["plank", "staggered", "split"] | |
| const [stateIsFocused, setStateIsFocused] = useState(false) |
| #!/bin/sh | |
| prog_name=${0##*/} | |
| version=1.0 | |
| version_text="Boilerplate for new scripts v$version" | |
| options="h o: q v V" | |
| help_text="Usage: $prog_name [-o <text>] [-hqvV] [<file>]... | |
| Boilerplate for new scripts |
| #!/usr/bin/perl | |
| # This script is made to show graphs with git commit time made on workweek vs weekend | |
| # | |
| # The desription of this script and results of its usage is avaliable at: | |
| # https://ivan.bessarabov.com/blog/famous-programmers-work-time-part-2-workweek-vs-weekend | |
| # | |
| # usage: | |
| # | |
| # git log --author="Sebastian Riedel" --format="%H %ai" | perl script.pl |
| :root { | |
| --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53); | |
| --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19); | |
| --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22); | |
| --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06); | |
| --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035); | |
| --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335); | |
| --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); | |
| --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1); | |
| --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1); |
| is_on = false | |
| step = 5*60 -- seconds | |
| overlap = 10 -- seconds | |
| function recalc() | |
| local pos = mp.get_property_number("time-pos") | |
| local duration = mp.get_property_number("duration") | |
| next_seek = math.ceil((pos+1)/step)*step+overlap | |
| if next_seek > duration then | |
| next_seek = duration-1 |
| <?php | |
| /** | |
| * Coin Dashboard by Christian Haschek | |
| * https://blog.haschek.at | |
| * | |
| * Donations always welcome | |
| * BTC: 1ChrisHMgr4DvEVXzAv1vamkviZNLPS7yx | |
| * ETH: 0x1337C2F18e54d72d696005d030B8eF168a4C0d95 | |
| * | |
| * Read more at |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| # Color Temperature & Brightness calculations adapted from | |
| # https://github.com/KristopherKubicki/smartapp-circadian-daylight | |
| # Sorry if this code sucks, I've never used Python before ;) | |
| import logging | |
| import datetime | |
| import math |