Skip to content

Instantly share code, notes, and snippets.

View kotatsuyaki's full-sized avatar

Ming-Long Huang kotatsuyaki

View GitHub Profile
@kotatsuyaki
kotatsuyaki / logcat.txt
Created November 28, 2021 07:35
waydroid logcat output
--------- beginning of main
11-28 07:27:10.056 16 16 I SELinux : SELinux: Loaded service_contexts from:
11-28 07:27:10.056 16 16 I SELinux : /vendor/etc/selinux/vndservice_contexts
11-28 07:27:10.056 14 14 I SELinux : SELinux: Loaded service_contexts from:
11-28 07:27:10.056 14 14 I SELinux : /system/etc/selinux/plat_service_contexts
11-28 07:27:10.059 15 15 I hwservicemanager: hwservicemanager is ready now.
11-28 07:25:25.181 13 13 W auditd : type=2000 audit(0.0:1): state=initialized audit_enabled=0 res=1
11-28 07:25:26.796 1 1 W systemd : type=1130 audit(0.0:2): uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-remount-fs exe="/nix/store/q0881awy50g4srnnwasci37y2jk5sf99-systemd-249.5/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
11-28 07:25:26.798 13 13 W auditd : type=1334 audit(0.0:3): prog-id=48 op=LOAD
11-28 07:25:26.798 13 13 W auditd : type=1334 audit(0.0:4): prog-id=49 op=LOAD
@kotatsuyaki
kotatsuyaki / vlang.nix
Created November 7, 2021 06:13
Dirty nix derivation for vlang
{ pkgs, lib, stdenv, fetchFromGitHub, glfw, freetype, openssl, makeWrapper, upx, git, strace, binutils-unwrapped, libGL, boehmgc, sqlite, libexecinfo, xorg, valgrind }:
stdenv.mkDerivation rec {
pname = "vlangg";
version = "weekly.2021.44";
src = fetchFromGitHub {
owner = "vlang";
repo = "v";
rev = version;