This document attempts to consolidate all available information regarding the VBIOS ROMs for the venerable AMD Instinct MI50 - especially the 32 GB variant
Sources include
This document attempts to consolidate all available information regarding the VBIOS ROMs for the venerable AMD Instinct MI50 - especially the 32 GB variant
Sources include
In the following gist I'm going to guide you through the process of installing and booting an entire linux distribution with full desktop environment just like you would have with a classical VM, but with much better performance and much worse isolation :)
The reason why I did this was mainly because it's cool, but also to test new distros with decent graphics performance without actually booting them on my PC.
If you "try this at home" just keep in mind a container is not as secure as a VM, and some of the option we're going to explore will weaken container isolation from "a bit risky" to "totally unsafe" depending on what you choose.
Also, we're going to use systemd-nspawn for containers as it's probably the best fit for our use case and can also boot any linux partition without needing to prepare an apposite container image.
Less go!
| #EXTM3U | |
| #EXTINF:-1,BBC - Radio 1 | |
| http://as-hls-ww-live.akamaized.net/pool_01505109/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 1Xtra | |
| http://as-hls-ww-live.akamaized.net/pool_92079267/live/ww/bbc_1xtra/bbc_1xtra.isml/bbc_1xtra-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 1Dance | |
| http://as-hls-ww-live.akamaized.net/pool_62063831/live/ww/bbc_radio_one_dance/bbc_radio_one_dance.isml/bbc_radio_one_dance-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 1 Anthems (UK Only) | |
| http://as-hls-uk-live.akamaized.net/pool_11351741/live/uk/bbc_radio_one_anthems/bbc_radio_one_anthems.isml/bbc_radio_one_anthems-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 2 |
| #!/bin/bash | |
| # Processor Throttling - only use if you've got performance headroom! | |
| #echo "arm_freq_min=250" >> /boot/config.txt | |
| #echo "core_freq_min=100" >> /boot/config.txt | |
| #echo "sdram_freq_min=150" >> /boot/config.txt | |
| #echo "over_voltage_min=0" >> /boot/config.txt | |
| # Disable boot splash screen | |
| echo "disable_splash=1" >> /boot/config.txt |
| gcc sender.c -o sender.exe -lwsock32 | |
| gcc listener.c -o listener.exe -lwsock32 |
| version: '2.1' | |
| services: | |
| homeassistant: | |
| restart: always | |
| image: homeassistant/raspberrypi3-homeassistant | |
| expose: | |
| - 8123 | |
| ports: | |
| - "8123:8123" |
This tool helps you with many absolutely proprietary software which doesn't include proper push-to-talk key. I wrote this with Google Meet in mind but is also useful for many other browser based apps as well.
It works so that when Caps Lock is held down, the microphone is unmuted. If you want to toggle it (for example during a demonstration), just press Ctrl + Caps Lock.
| version: '3' | |
| services: | |
| nginx-proxy: | |
| image: jwilder/nginx-proxy | |
| labels: | |
| com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true" | |
| container_name: nginx-proxy | |
| restart: unless-stopped | |
| ports: |
| # elementary OS post install | |
| sudo apt update && sudo apt upgrade | |
| sudo apt install software-properties-common --no-install-recommends | |
| sudo apt install ubuntu-restricted-extras libavcodec-extra ffmpeg | |
| sudo apt install firefox vlc | |
| sudo apt install audacious audacious-plugins | |
| sudo apt install screenfetch |