Skip to content

Instantly share code, notes, and snippets.

View LogCreative's full-sized avatar

LogCreative LogCreative

View GitHub Profile
@LogCreative
LogCreative / raspiconn.md
Last active December 5, 2022 14:07
Connect to Raspberry Pi through WiFi only.
  1. Use Raspberry Pi Imager to install the Raspberry Pi OS (maybe 64-bit version). Change the setting before burning:
  • Use password to login with a new user. You have to setup a new user in the newer version of Raspberry Pi OS. Otherwise, SSH will refuse to connect.
  • Setup WiFi connection: SSID, password and region (e.g. 'CN'). Warning, use 2.4GHz band instead of 5GHz band for the most of the time.
  • Open SSH. This is closed by default.
  • Set the hostname. raspberrypi.local by default.
  1. In a computer that connects to the same router, use command ping [hostname] (e.g. ping raspberrypi.local) to get the IP address of the Raspberry Pi.
  2. Connect to the Raspberry Pi by SSH.
  • Use command ssh [username]@[IP].
  • Add new host to the local computer. Sometimes, you reinstall the OS on the Raspberry Pi, the key validation might get broken. In this scenario, you should delete the previous known host first in your ~/.ssh/known_hosts.
  • Enter the passw
@LogCreative
LogCreative / tvmm1.md
Last active November 20, 2022 14:31
Install TVM on macOS M1 chip.

Install TVM on macOS M1 chip

TVM is an open source machine learning compiler framework. The official guide gives some information about how to install it for macOS M1 chip. But there are still some pitfalls when installing. The setup for this tutorial is on MacBook Pro M1, macOS Ventura (13.0).

Download the source code

It is not recommended to just use pip to install tvm since the version is not compiled for apple chip. To maximize the availability, compile the source and then install it. You could download the released version of TVM source from download page, I use 0.10.0 in this tutorial.

Though in theory, you could git clone the source code from the offical GitHub repository. But it is tedious to download the submodules of this project -- they are just too many.

@LogCreative
LogCreative / raspiqemu.md
Last active December 7, 2022 14:31
QEMU emulation of Raspberry Pi 3b
  1. Install QEMU.
  2. Since the recent Raspberry Pi OS has removed the preset user, use a legacy version like 2022-01-28 will work. Download the Raspberry Pi OS and extract these files from the image:
  • bcm2710-rpi-3-b.dtb
  • kernel8.img
  1. Resize the image to 8G to avoid the disk error. Since the disk space has to be the square of 2 and the image itself occupies 3.8G already. If you want to make more actions, please allocate a larger space.
qemu-img resize 2022-01-28-raspios-bullseye-arm64.img 8G
  1. Write the following code to a bash file launch.sh, reference to this repo and this spec.

The cache folder of huggingface/transformers in in ~/.cache/huggingface. Clear it when the downloading procedure is down.

How to Setup TVMC over RPC

The official guide talks a little about how to setup TVMC (a simple interface) over RPC, there are some pitfalls if you are not careful.

Install TVM

You need to install the full tvm on the host machine by make -j8. On the target machine, you need to install the runtime by make runtime.

Then, setup the python environment properly.

@LogCreative
LogCreative / mac-vpn-pptp.md
Last active March 19, 2023 06:26
MacOS Ventura Connects VPN over PPTP Protocol

MacOS Ventura Connects VPN over PPTP Protocol

Since macOS 10.15, PPTP support has been dropped and no longer available. But I have to connect to a server throught VPN that only supports PPTP or L2TP without IPSec (No shared key or credentials). I tried the following ways:

  • There is no selection of PPTP in the Settings.
  • vpn-pptp-macos but PPTP.ppp has already been removed.
  • VPN Tracker 365 is expensive.
  • Activate VPN on the router if possible.
  • Use a Windows machine as the mobile hotspot. First start the mobile hotspot, connect the macbook to this hotspot. Then start the VPN on the Windows machine. Then in the router settings, in the VPN Connection Properities, enable Internet connection sharing to allow other network users to connect through this computer's Internet connection, select the adapter corresponding to the hotspot. You may need to repeat this process when restarting the Windows
@LogCreative
LogCreative / hkrpg.playmap
Last active July 3, 2023 03:42
macOS Honkai: Star Rail (v1.1) - PlayCover Method
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>bundleIdentifier</key>
<string>com.miHoYo.hkrpg</string>
<key>buttonModels</key>
<array>
<dict>
<key>keyCode</key>

If Moonlight returns 521 error, update not only the driver itself, but also update the Geforce Experience as well.