| Name | Description | Based on |
|---|---|---|
| Arch | A minimalist, lightweight, and bleeding edge distribution that follows a rolling release model and offers customizability. It is a DIY distro for proficient GNU/Linux users who want to tweak their system according to their needs. | Independent |
| blendOS | With Android app support and Fedora, Debian, CentOS Stream and Ubuntu containers available, as well as system packages/DEs/kernels from Arch Linux and the AUR. | Arch |
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
| id | name | rcn | type | ending | title | teaser | quadrant | ring | TRL | MRL | Score | Median | Performance | Min | Max | cwurl | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | AARC2 | 206338 | RIA | Apr 2019 | Authentication and Authorisation For Research and Collaboration | The goal of AARC2 is to design an AAI framework to develop interoperable AAI, to enable researchers to access the whole research and infrastructure service portfolio with one login. AARC2's objectives are:1. enable federated access in research communities participating in... | Secure Systems | Adopt | https://cyberwatching.eu/projects/929/aarc-2 | ||||||||
| 4 | AEGIS | 210218 | CSA | Apr 2019 | Accelerating EU-US DialoGue for Research and Innovation in CyberSecurity and Privacy | AEGIS aims to strengthen dialogues between Europe and the US, in order to facilitate exchange of views, policies and best practices to stimulate cooperation around cybersecurity and privacy R&I, and contribute in shaping the future global cybersecurity and privacy... | Cybersecurity Governance | Adopt | https://cyberwatching.eu/projects/932/aegis |
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
| #!/bin/bash | |
| dir="$1" | |
| [ $# -eq 0 ] && { echo "Usage: $0 prefix"; exit 1; } | |
| if [ ! -d "$dir" ] | |
| then | |
| mkdir $dir | |
| fi |
- Live:
- Username: demo
- Password: demo
- Domain: local
- Download Asian font(s) (e.g., from https://github.com/adobe-fonts/source-han-sans/tree/release)
cd Downloads
scp *.ttf pi@{hostname}.local:/home/pi/.kodi/media/fonts/ssh pi@retropie.local
cd .kodi/media/fonts/
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
| #!/bin/bash | |
| a=1 | |
| for i in *.jpg; do | |
| new=$(printf "$1-%04d.jpg" "$a") #04 pad to length of 4 | |
| mv -i -- "$i" "$new" | |
| let a=a+1 | |
| done |
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
| #!/bin/sh | |
| for f in *.flac; do | |
| ffmpeg -i "$f" -ab 128k -map_metadata 0 -id3v2_version 3 "${f%".flac"}.mp3" | |
| done |
youtube-dl -F https://www.youtube.com/watch\?v\={ID}[youtube] {ID}: Downloading webpage
[info] Available formats for {ID}:
format code extension resolution note
249 webm audio only tiny 50k , webm_dash container, opus @ 50k (48000Hz), 15.30MiB
250 webm audio only tiny 56k , webm_dash container, opus @ 56k (48000Hz), 16.93MiBcd /usr/local/bin
sudo ln -s /System/Library/Frameworks/JavaScriptCore.framework/Versions/Current/Helpers/jsc jsc
cd ~
jsc -h
echo "print(1+2);" | jsc
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