-
Travis Account erstellen bzw. Github Account zulassen
-
Github Access Token erstellen
"Access public repositories" genügt als Permission
- Access Token verschlüsseln, auf dem Client
# on macosx
#!/usr/bin/env bash | |
JDKS_DIR="/Library/Java/JavaVirtualMachines" | |
JDKS=( $(ls ${JDKS_DIR}) ) | |
JDKS_STATES=() | |
# Map state of JDK | |
for (( i = 0; i < ${#JDKS[@]}; i++ )); do | |
if [[ -f "${JDKS_DIR}/${JDKS[$i]}/Contents/Info.plist" ]]; then | |
JDKS_STATES[${i}]=enable |
/* Compile: gcc -o nsschk nsschk.c -ldl */ | |
/* Blog/info: http://tiny.cc/mozbigsig */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <dlfcn.h> | |
void bail(char *msg) { | |
fprintf(stderr,"%s\n",msg); | |
exit(1); |
# Original blog post https://randomnerdtutorials.com/video-streaming-with-raspberry-pi-camera/ | |
# Why Legacy? https://www.raspberrypi.com/news/bullseye-camera-system/ | |
# Alternative https://www.tomshardware.com/how-to/stream-live-video-raspberry-pi | |
# See also https://github.com/jacksonliam/mjpg-streamer | |
############################################################################################## | |
# Web streaming example | |
# Source code from the official PiCamera package | |
# http://picamera.readthedocs.io/en/latest/recipes2.html#web-streaming | |
import io |
#!/usr/bin/env bash | |
# | |
# Author: Markus (MawKKe) [email protected] | |
# Date: 2018-03-19 | |
# | |
# | |
# What? | |
# | |
# Linux dm-crypt + dm-integrity + dm-raid (RAID1) | |
# |
Travis Account erstellen bzw. Github Account zulassen
Github Access Token erstellen
"Access public repositories" genügt als Permission
# on macosx
smartctl 7.2 2021-01-17 r5171 [x86_64-linux-5.10.18-200.fc33.x86_64] (local build) | |
Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org | |
=== START OF INFORMATION SECTION === | |
Model Family: Seagate Archive HDD (SMR) | |
Device Model: ST8000AS0002-1NA17Z | |
Serial Number: Z8403AYG | |
LU WWN Device Id: 5 000c50 07b1008d0 | |
Firmware Version: AR13 | |
User Capacity: 8,001,563,222,016 bytes [8.00 TB] |
smartctl 7.2 2021-01-17 r5171 [x86_64-linux-5.10.15-200.fc33.x86_64] (local build) | |
Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org | |
=== START OF INFORMATION SECTION === | |
Model Family: Seagate Samsung SpinPoint M8 (AF) | |
Device Model: ST1000LM024 HN-M101MBB | |
Serial Number: S2ZUJ9BD705411 | |
LU WWN Device Id: 5 0004cf 20aaf0f70 | |
Firmware Version: 2AR20002 | |
User Capacity: 1,000,204,886,016 bytes [1.00 TB] |
This was explanation by Grant McLean
cpan the CPAN shell has been shipped with Perl since about 1997. When you run it the first time it asks a bunch of questions and saves the answers in a config file. Then you can install a module by running:
cpan -i Module::Name
The shell provides other commands for searching CPAN and looking inside distribution files.
#!/usr/bin/env ruby | |
# | |
# vtplayer.rb - A simple script to play vt100 animations. | |
# Made with ❤︎ by [email protected] - v0.1 | |
# | |
# Some places to find vt100 animations: | |
# http://artscene.textfiles.com/vt100/ | |
# http://www.scovetta.com/archives/textfiles/art | |
require 'open-uri' |