Thanks to /u/zpoo32 for reporting several issues in this list!
- deemix: just the cli and the library
- deemix-pyweb: the app with a GUI
- deemix-server: just the server part of deemix-pyweb
Thanks to /u/zpoo32 for reporting several issues in this list!
Service | Access | Kernels |
---|---|---|
https://notebooks.azure.com/ | Free (+paid plans) | Python 2 & 3, F#, R |
https://anaconda.org/ | Free (+paid plans) | Python 2 & 3, Julia, R, Spark, ... |
https://cocalc.com/ | Free (+paid plans) | |
https://colab.research.google.com/ | Free | Python 2 & 3 |
https://jupyter.gwdg.de | GWDG Account | Haskell, Julia, Python 3, R |
https://gryd.us/ | .edu email | Python 2 & 3, Octave, Julia, R |
https://datascientistworkbench.com/ | ..., also OpenRefine! | |
https://paws.wmflabs.org | Wikimedia account | ... |
// gcc aml-upgrade-package-extract.c -o aml-upgrade-package-extract | |
// ./aml-upgrade-package-extract update-usb-burning-mode.img | |
// /dev/sdX - fat32 sdcard | |
// Make bootable Android update: | |
// dd if=aml_sdc_burn.UBOOT bs=1 count=442 of=/dev/sdX | |
// dd if=aml_sdc_burn.UBOOT seek=1 skip=1 bs=512 of=/dev/sdX | |
// sync |
Intel i7-8750H nVidia GTX 1050 Ti
Summary of my findings (Please comment if you can get further than me) :
edit: 06/2019 guys in the comments have found workarounds and new solutions !
Most importantly : Lenovo refuses to provide any kind of support for their product on Linux, even though the computer is sold without an OS
[Unit]
Description=kubectl proxy 8080
After=network.target
[Service]
User=root
ExecStart=/bin/bash -c "/usr/bin/kubectl proxy --address=127.0.0.1 --port=8080"
// the router should be sigleton | |
class Router { | |
constructor(routeMap) { | |
this._routeMap = routeMap; | |
this.bindEvent(); | |
} | |
init(url) { | |
let fn = this._routeMap[url]; | |
window.history.replaceState({url: url}, '', url); |
using System; | |
using System.Collections.Generic; | |
using Microsoft.Extensions.DependencyInjection; | |
using Quartz; | |
using Quartz.Spi; | |
public class ServiceProviderJobFactory : IJobFactory | |
{ | |
private readonly IServiceProvider _rootServiceProvider; |
Below are the steps to get an ARM64 version of Ubuntu running in the QEMU emulator on Windows 10.
Install for Windows from https://qemu.weilnetz.de/w64/ (I used qemu-w64-setup-20181211.exe
)
Put C:\Program Files\qemu
on your PATH, and run the below to check it's working (which will list out
the CPUs the AArch64 emulator can emulate):
qemu-system-aarch64 -M virt -cpu help
#!/bin/bash | |
#Server hardening script for cPanel servers | |
# Make sure only root can run this script | |
if [ "$(id -u)" != "0" ]; then | |
echo -e "\e[93m This script must be run as root \e[0m" | |
exit 1 | |
fi | |
echo -e "\e[1;36;40m Server Hardening initiated \e[0m" |
https://linuxconfig.org/how-to-install-the-nvidia-drivers-on-manjaro-18-linux | |
https://github.com/dglt1/optimus-switch-gdm | |
https://forum.manjaro.org/t/hdmi-monitor-not-working/94301/2 | |
https://www.unixmen.com/install-oh-zsh-ubuntu-arch-linux-fedora/ | |
https://starship.rs/guide/#%F0%9F%9A%80-installation | |
https://gist.github.com/tomgco/d08fcf551b5e3157173d2f0701b50b46 | |
https://wiki.archlinux.org/index.php/VirtualBox |