- Based on https://gist.github.com/mdziekon/221bdb597cf32b46c50ffab96dbec08a
- Installation date: 16-08-2019
- Additional notes based on my own experience
- EFI boot
- Ubuntu 19.04 -> 21.04
- This should work on any computer. Only the
RAID > AHCIchange described below and the device name for the nvme ssd drive are specific to this laptop. - The process describes a completely fresh installation with complete repartitioning, however it should work fine when Windows is already installed (eg. brand new machine with Windows preinstalled) as long as Windows already boots with EFI.
- The process was conducted on Dell's XPS 15 9560 (2017) with specs:
- CPU: i7-7700HQ
| #!/bin/bash | |
| # Install Nano Editor (with syntax highlighting) on MacOS without using Homebrew | |
| # You can get the latest version number from https://www.nano-editor.org | |
| # Instructions: | |
| # - First off, download this Bash script from the browser & make it executable: | |
| # $ chmod +x install_nano_on_macos_without_homebrew.sh | |
| # - If you have "wget" installed (you most likely do), just run the script with: | |
| # $ ./install_nano_on_macos_without_homebrew.sh |
Note: This gist may be outdated, thanks to all contributors in comments.
adb is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !
| #!/usr/bin/env python3 | |
| import os | |
| import re | |
| import sys | |
| import termios | |
| import tty | |
| import select | |
| import shutil | |
| import json | |
| import subprocess |
On the 30th of June, my cloud provider, Oracle Cloud, decided to shutdown all my servers hosted on two Oracle Cloud accounts.
It is known that this provider will randomly ban accounts without any reason.
Unfortunately and this is 100% my fault for forgetting that, I only had data duplication between servers located in the two Oracle Cloud accounts and no backups.
I thought that I wouldn't get all my accounts in trouble at the same time and able to recover the data from one of the two accounts but unfortunately this turned out otherwise.
Implementing some backup was something I had in my notes for a long time but I think I forgot about it, maybe due to the huge amount of work I spend on the open source projects.
I'm deeply sorry if you have lost your subscriptions list or playlists or watch history. I did try to contact Oracle Cloud for recovering the data, I'm waiting for their answer but you should be certain that they
When Riot Games introduces the Vanguard anti-cheat to League of Legends, you should STOP playing and you must NOT install the anti-cheat when you get the pop-up. Vanguard is a kernel-level anticheat and these anticheats operate at a privilege level HIGHER THAN YOUR OWN. The anti-cheat can do things that even YOU can't do, without asking or letting you know. It's like Riot installing a camera in every room of your house and getting a copy of every key inside.
Here are just a few examples of what they can do:
| # Dockerfile for building CTranslate2 with ROCm support for Python 3.10 | |
| # Tested with ROCm 6.2 and AMD RX 7900 XT (gfx1100) | |
| # Source: https://github.com/arlo-phoenix/CTranslate2-rocm | |
| FROM rocm/pytorch | |
| # Set working directory for build | |
| WORKDIR /build | |
| # Activate conda environment for the rest of the commands |