Skip to content

Instantly share code, notes, and snippets.

View vyn20's full-sized avatar

2020 vyn20

  • Canada, Québec
View GitHub Profile
@vyn20
vyn20 / video-examples.m3u
Created March 8, 2021 19:29
HD/4k/8k/10k Videos playlist from vimeo
#EXTM3U
#EXTINF:HD/4k/8k/10k Videos playlist from vimeo
https://vimeo.com/186240055
https://vimeo.com/165289627
https://vimeo.com/259791985
https://vimeo.com/156045670
https://vimeo.com/136503051
https://vimeo.com/93003441
https://vimeo.com/219046468
https://vimeo.com/166374476
@vyn20
vyn20 / installPanfrostTester.sh
Last active October 14, 2021 09:53
How to create a modern desktop with the lowest RAM consumption and test the GPU performance with Panfrost.
#!/bin/bash
user=$(whoami)
#This script is based on NicoD (installPanfrost.sh) https://forum.armbian.com/profile/8801-nicod/
echo "----------------------------------------------------------------------------------------------------------"
echo "How to create a modern desktop with the lowest RAM consumption and test the GPU performance with Panfrost."
echo "----------------------------------------------------------------------------------------------------------"
echo "Update and Upgrade Armbian"
echo "----------------------------------------------------------------------------------------------------------"
@vyn20
vyn20 / widevine-flash_arm64.sh
Created December 4, 2020 20:13
A script that fetches a ChromeOS image for ARM64 and extracts the Widevine and Flash
#!/bin/sh -eu
# Make sure we have wget or curl
available () {
command -v "$1" >/dev/null 2>&1
}
if available wget; then
DL="wget -O-"
DL_SL="wget -qO-"
elif available curl; then
@vyn20
vyn20 / widevine-flash_arm32.sh
Created December 4, 2020 20:09
A script that fetches a ChromeOS image for ARM32 and extracts the Widevine and Flash
#!/bin/sh -eu
# Make sure we have wget or curl
available () {
command -v "$1" >/dev/null 2>&1
}
if available wget; then
DL="wget -O-"
DL_SL="wget -qO-"
elif available curl; then
@vyn20
vyn20 / 1-README.md
Created December 4, 2020 20:02 — forked from ruario/1-README.md
A script that fetches a ChromeOS image for ARM32 and extracts the Widevine and Flash binaries, saving them in a compressed archive for use with Vivaldi

The included script 'widevine-flash_armhf.sh' fetches a ChromeOS image for ARM and extracts the Widevine and Flash binaries, saving them in a compressed archive. Since it downloads a fairly large file (2Gb+ on disk after download) it is recommended that you run the script on a machine that has plenty of disk space.

To install the resultant archive, issue the following on your ARM machine–after copying over the archive if needed:

sudo tar Cfx / widevine-flash-20200124_armhf.tgz

(Where 'widevine-flash-20200124_armhf.tgz' is updated to reflect the actual name of the created archive)