Skip to content

Instantly share code, notes, and snippets.

@cs8425
cs8425 / README.md
Last active November 9, 2022 09:03
How to REAL install Remix OS on VirtualBox

How to REAL install Remix OS on VirtualBox

This is how to REAL install Remix OS on VirtualBox. rootfs could be writable!!!

Needs:

  • any linux liveCD iso file (Xubuntu here)
  • Remix OS iso file ("Remix_OS_for_PC_Android_M_32bit_B2016092201.iso" here)
  • VirtualBox
@cs8425
cs8425 / MSPCodes.js
Last active November 29, 2023 14:34
read 'USB Simulator Cable' as joystick and send to betaflight SITL via MSP over tcp.
// from https://github.com/betaflight/betaflight-configurator
'use strict';
//MSPCodes needs to be re-integrated inside MSP object
var MSPCodes = {
MSP_API_VERSION: 1,
MSP_FC_VARIANT: 2,
MSP_FC_VERSION: 3,
MSP_BOARD_INFO: 4,
MSP_BUILD_INFO: 5,
@cs8425
cs8425 / ubuntu-18.04-amd64.md
Last active September 21, 2018 05:58
Intel Atom x5-Z8300 7zip benchmark

Lemel智慧電腦棒至尊版

  • CPU: Intel Atom x5-Z8300
  • RAM: DDR3 2G
  • storage: 32GB eMMC, Micro SD(max 128GB)
  • network: 802.11 b/g/n, BT 4.0 (BT not work on ubutnu 18.04)

info

user@user-NH2:~$ uname -a
Linux user-NH2 4.15.0-29-generic #31-Ubuntu SMP Tue Jul 17 15:39:52 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
@cs8425
cs8425 / setDefaultNS.go
Last active March 5, 2023 05:17
DNS resolve workaround for android in pure go
package main
import (
"fmt"
"net"
"sync"
"time"
_ "unsafe"
)