- Related tutorial: http://raspberrypiguide.de/
- Command Line Cheatsheet: https://gist.github.com/hofmannsven/8392477
Find all available devices arp -a
Locate Raspberry (b8:27:eb) in Network: Pi Finder
Find all available devices arp -a
Locate Raspberry (b8:27:eb) in Network: Pi Finder
search this document to use it quickly (ctl/cmd + f)
/msg chanserv akick #reddit-diabetes add *!*@12.34.56.78 feeling free | worleygurl asked for it/mode #reddit-diabetes +b $a:worleygurldirect discussion about administrative action away from the main channel and into #reddit-diabetes-ops to minimise disruption. our -ops channel is the place where users should come to ask for our help. examples:
Rich Hickey • 3 years ago
Sorry, I have to disagree with the entire premise here.
A wide variety of experiences might lead to well-roundedness, but not to greatness, nor even goodness. By constantly switching from one thing to another you are always reaching above your comfort zone, yes, but doing so by resetting your skill and knowledge level to zero.
Mastery comes from a combination of at least several of the following:
| #!/bin/bash | |
| DOWNLOAD() { | |
| rand="$RANDOM `date`" | |
| pipe="/tmp/pipe.`echo '$rand' | md5sum | tr -d ' -'`" | |
| mkfifo $pipe | |
| wget -c $1 2>&1 | while read data;do | |
| if [ "`echo $data | grep '^Length:'`" ]; then | |
| total_size=`echo $data | grep "^Length:" | sed 's/.*\((.*)\).*/\1/' | tr -d '()'` | |
| fi | |
| if [ "`echo $data | grep '[0-9]*%' `" ];then |
by xero updated 10.29.24
The real time chart is a resuable Javascript component that accepts real time data. The purpose is to show the arrival time of real time events (or lack thereof), piped to the browser (for example via Websockets). Various attributes of each event can be articulated using size, color and opacity of the object generated for the event.
The component allows multiple asynchronous data streams to be viewed, each in a horizontal band across the SVG. New data streams can be added dynamically (as they are discovered by the caller over time), simply by calling the yDomain method with the new array of data series names. The chart will automatically fit the new data series into the available space in the SVG.
The chart's time domain is moving with the passage of time. That means that any data placed in the chart eventually will age out and leave the chart. Currently, the chart history is capped at five minutes (but can be changed by modifying the comp
| As far as I know you can put the .desktop file in ~/.local/share/kservices5/ServiceMenus/ if you're on Plasma 5 | |
| Don't forget to edit the commented lines if you want it to work as you wish. | |
| The right-click function does not seem to work when there is a space in the path. Yet. | |
| // ==UserScript== | |
| // @name Steam Queue Auto Discoverer | |
| // @description Discover the Steam queue three times to get the sale cards | |
| // @version 2.3.0 | |
| // @namespace https://gist.github.com/xPaw/73f8ae2031b4e528abf7 | |
| // @icon https://store.steampowered.com/favicon.ico | |
| // @match https://store.steampowered.com/explore* | |
| // @grant none | |
| // ==/UserScript== |
| import sopel.module | |
| import sopel.formatting | |
| # Adapt imports: | |
| import json | |
| from adapt.intent import IntentBuilder | |
| from adapt.engine import IntentDeterminationEngine | |
| def adapter(*intent_list): |