Here is a table with all the 'top'-like commands I found.
apachetop | htop | itop | mytop | qtop | top |
atop | iftop | jnettop | numatop | radeontop | usbtop |
ctop | intel_gpu_top | kerneltop | nvtop | rtop | wmtop |
dnstop | iotop | latencytop | pg_top | [s |
# quine | |
f(){ printf "\x$(printf %x 39)"; }; p='f(){ printf "\x$(printf %x 39)"; }; p=; echo ${p::38}$(f)${p}$(f)${p:38}'; echo ${p::38}$(f)${p}$(f)${p:38} | |
# quine with text | |
f(){ printf "\x$(printf %x 39)"; }; p='f(){ printf "\x$(printf %x 39)"; }; p=; echo ${p::38}$(f)${p}$(f)${p:38}'; echo ${p::38}$(f)${p}$(f)${p:38} INSERT YOUR TEXT HERE! | |
# shorter quine | |
f(){ printf %b \\u0027; }; p='f(){ printf %b \\u005C; }; p=; echo ${p::29}$(f)${p}$(f)${p:29}'; echo ${p::29}$(f)${p}$(f)${p:29} |
0.0.0.0 ads.fingersoft.net | |
0.0.0.0 ads3.fingersoft.net |
// ==UserScript== | |
// @name Advert topics | |
// @author Fishezzz | |
// @version 0.0.2 | |
// @description Download Facebook & Instagram Album by One Click. | |
// @namespace https://gist.github.com/Fishezzz | |
// @match https://www.facebook.com/adpreferences/ad_topics?run=1 | |
// @icon https://static.xx.fbcdn.net/rsrc.php/yD/r/d4ZIVX-5C-b.ico | |
// @grant none | |
// @run-at document-idle |
#!/usr/bin/python | |
import sys, os | |
import requests | |
if len(sys.argv) < 2: | |
print('Need 2 arguments: <file-with-urls> <download-folder>') | |
exit(1) | |
url_file = sys.argv[1] |
#!/bin/sh | |
# | |
# Author: ethomson (Edward Thomson) | |
# Gist: https://gist.github.com/ethomson/3e8e9cabf360917d52a689d57bcf1729 | |
# Article: https://edwardthomson.com/blog/mirroring_git_repositories.html | |
# | |
# TL;DR | |
# Hosting provider stores information about pull requests in special read-only references, | |
# which cause errors when you want to mirror a repository the Github way. |
// npm init | |
// npm install @hapi/hapi @hapi/inert | |
'use strict' | |
const Hapi = require('@hapi/hapi'); | |
const init = async () => { | |
const server = Hapi.server({ | |
port: 3210, |
mosquitto
is a popular MQTT broker that is well-supported on Debian-based Linux platforms such as Raspbian. It’s easy to install using apt
:
sudo apt-get install mosquitto
Enable the broker and allow it to auto-start after reboot using the following command: