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
There are multiple options how to install MS Office on Linux.
VM-based - Integrate Windows apps running in a Windows virtual machine as native-looking in Linux
Full JDownloader 2 Installation & Debloating (Removing Built-in Ads) Guide.
This guide will teach you how to fully install and debloat JDownloader 2, a software that splits the file you want to download to make the file download speed much faster (a goal similar to IDM), Aight, Let's begin!
Installation Part
You need to go to https://jdownloader.org/jdownloader2 and click on the button of your operating system.
| const net = require("net"); | |
| // creating a custom socket client and connecting it.... | |
| const client = new net.Socket(); | |
| client.connect({ | |
| port: 2222 | |
| }); | |
| client.on("connect", () => { |
This is a gist used in the following blog posts:
| function getAllVariables(){ | |
| var searchVarByValue = function(searchString){ | |
| var values = Object.keys(this.ValueToVar); | |
| var findings = []; | |
| for (var i=0; i< values.length; i++){ | |
| if (values[i] == undefined) | |
| continue; | |
| var position = values[i].toLowerCase().indexOf(searchString.toLowerCase()); | |
| if (position != -1){ | |
| findings.push({ 'variable': this.ValueToVar[values[i]], 'value' : values[i] }); |
/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉
~/.ssh/config, set each ssh key for each repository as in this exemple:| var net = require('net'); | |
| // creates the server | |
| var server = net.createServer(); | |
| //emitted when server closes ...not emitted until all connections closes. | |
| server.on('close',function(){ | |
| console.log('Server closed !'); | |
| }); |
| #!/usr/bin/python3 | |
| import serial, time, sys, threading | |
| from colorama import Fore, Style, init as colorama_init | |
| colorama_init() | |
| # lock to serialize console output | |
| lock = threading.Lock() |