Install the OpenSSL on Debian based systems
sudo apt-get install openssl| # 1. First of all of course get Manjaro: | |
| https://manjaro.org/get-manjaro/ | |
| # I recommend using Etcher to copy the image to your USB: | |
| https://etcher.io/ | |
| # 2. Before installing make sure: | |
| # - Secure boot is disabled in BIOS | |
| # - Your SSD, HDD or NVME drive is set to AHCI instead of RAID | |
| # - Fastboot should be on Auto or minimal, but this shouldn't matter to much |
| """Script to download free O'Reilly ebooks.""" | |
| import asyncio | |
| import os | |
| import re | |
| import sys | |
| import aiohttp | |
| filename_matcher = re.compile(r'http://www.oreilly.com/(.*)/free/(.*).csp') | |
| session = None |
| import shapeless._ | |
| import scalaz._ | |
| import Scalaz._ | |
| object console extends App { | |
| trait Foo[A] { | |
| type B | |
| def value: B |
| % multirust run nightly cargo build | |
| Compiling regex v0.1.30 | |
| Compiling libc v0.1.8 | |
| Compiling log v0.3.1 | |
| Compiling rand v0.3.8 | |
| Compiling getopts v0.2.11 | |
| Compiling tempfile v0.3.0 | |
| Compiling env_logger v0.3.1 | |
| Compiling rusti v0.0.1 (file:///l/src/rust/rusti) |
# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048
# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)| moved to github --> https://github.com/bill-auger/git-branch-status/ |
| #r @"packages\Eto.Forms.1.3.0\lib\net40\Eto.dll" | |
| #r @"packages\Eto.Platform.Windows.1.3.0\lib\net40\Eto.Platform.Windows.dll" | |
| open System | |
| open Eto.Forms | |
| open Eto.Drawing | |
| # Installation | |
| brew install ffmpeg --with-vpx --with-vorbis --with-libvorbis --with-vpx --with-vorbis --with-theora --with-libogg --with-libvorbis --with-gpl --with-version3 --with-nonfree --with-postproc --with-libaacplus --with-libass --with-libcelt --with-libfaac --with-libfdk-aac --with-libfreetype --with-libmp3lame --with-libopencore-amrnb --with-libopencore-amrwb --with-libopenjpeg --with-openssl --with-libopus --with-libschroedinger --with-libspeex --with-libtheora --with-libvo-aacenc --with-libvorbis --with-libvpx --with-libx264 --with-libxvid | |
| # Easy Peasy | |
| ffmpeg -i video.mp4 video.webm |