- Documento colaborativo: https://docs.google.com/document/d/1Dn4fmOWPnafwkjYNQOTi2jmaban1IO3mB9iVHBIk-Eg/edit
- Grupo de Telegram: https://t.me/remoteworkpy
| // Note: this gist is a part of this OSS project that I'm currently working on: https://github.com/steven-tey/dub | |
| export default async function getTitleFromUrl (url: string) { | |
| const controller = new AbortController(); | |
| const timeoutId = setTimeout(() => controller.abort(), 2000); // timeout if it takes longer than 2 seconds | |
| const title = await fetch(url, { signal: controller.signal }) | |
| .then((res) => { | |
| clearTimeout(timeoutId); | |
| return res.text(); | |
| }) |
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 raspberry that has plenty of disk space.
The files in the compressed archive are copied to the folder /usr/lib/chromium-browser/
To run the file just type the following:
sudo ./widevine-flash_armhf.sh
Check out this tutorial: https://lemariva.com/blog/2020/06/raspberry-pi-amazon-prime-netflix-and-drm-solution
by Tatiana Mac
Last updated 14 April 2021
As speaking comes with immense privilege, I have crafted a speaker rider to set expectations and boundaries around my engagement. I am grateful to all the conference organisers who have brilliantly hosted me. I would love to continue to exercise this privilege to speak at conferences, and use this privilege to make the landscape more accessible and beneficial to tech's most historically excluded and marginalised communities.
😫 I provide a lot of explanations for those of you who never had to consider these things. Most thoughtful conferences I've attended check most of these boxes intrinsically, particularly when conference runners are experienced speakers. They get it.
The included script 'widevine-flash_armhf.sh' fetches a ChromeOS image for ARM and extracts the Widevine binary, saving it 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)
The following guide will show you how to deploy a simple microservice written in JavaScript using 𝚫 now.
It uses Open Source tools that are widely available, tested and understood:
- Node.JS
- NPM
- Express
| http://40.media.tumblr.com/8fadd39f4642a3cabc477121b6b09a25/tumblr_n8v66lUHyB1rkla8lo1_1280.png | |
| http://40.media.tumblr.com/32a250ec3347588ece72e5dc9b502c17/tumblr_ngbyyk3EHA1qeyoxro1_500.jpg | |
| http://40.media.tumblr.com/7057c7949bc4b7932d1f3bd5f691a208/tumblr_n789jxJhAA1ttuv5yo1_1280.jpg | |
| http://40.media.tumblr.com/fee70fd43631bad1e662d64ede5da138/tumblr_mxvcdz5N4L1qgiw5to1_1280.jpg | |
| http://41.media.tumblr.com/tumblr_lhbdxmVXGh1qc7ly2o1_500.jpg | |
| http://40.media.tumblr.com/c1ec0e5b8b30bbebb1cbdfdcd7fdcc8c/tumblr_n22v2mH6WH1rvgig6o1_1280.jpg | |
| http://41.media.tumblr.com/tumblr_lvyvhe3bE01qzoj2qo1_1280.png | |
| http://41.media.tumblr.com/3cd42295f6d7310e9c40dcd1ce7680a4/tumblr_mtw27yncgq1rlis9co1_1280.jpg | |
| http://33.media.tumblr.com/41460e0998b603696e7e099cc3a3448a/tumblr_mtbk48fbRb1r70wouo1_500.gif | |
| http://41.media.tumblr.com/tumblr_me9kcaUOV51r3x96uo1_500.jpg |
A Pen by shed_codepen on CodePen.
A Pen by Balint Polgarfi on CodePen.