- Download WSL2 Kernel
- run
wsl --set-default-version 2
in windows command line, so that all future WSL machine will use WSL2.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[2024-04-03 11:06:44.019250] [0x00007c445da80740] [trace] Initializing StaticPrintConfigs | |
[2024-04-03 11:06:44.686310] [0x00007c445da80740] [error] operator(): can not find inherits process template @Ginger Additive Ginger One 1.0 nozzle for DERIVE 3mm nozzle | |
[2024-04-03 11:06:44.686328] [0x00007c445da80740] [error] load_vendor_configs_from_json, got error when parse process setting from ../../resources/profiles/Ginger/process/DERIVE 3mm nozzle.json | |
[2024-04-03 11:06:44.686543] [0x00007c445da80740] [error] Failed loading configuration file ../../resources/profiles/Ginger/process/DERIVE 3mm nozzle.json | |
Suggest cleaning the directory ../../resources/profiles firstly | |
Validation failed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15615 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
15615 access("/sys/devices/system/node/node1", R_OK) = -1 ENOENT (No such file or directory) | |
15615 <... openat resumed>) = -1 ENOENT (No such file or directory) | |
15615 <... openat resumed>) = -1 ENOENT (No such file or directory) | |
15615 <... openat resumed>) = -1 ENOENT (No such file or directory) | |
15615 <... openat resumed>) = -1 ENOENT (No such file or directory) | |
15615 openat(AT_FDCWD, "//package.json", O_RDWR|O_NOCTTY|O_CLOEXEC) = -1 ENOENT (No such file or directory) | |
15615 openat(AT_FDCWD, "/home/jamin/.bunfig.toml", O_RDONLY) = -1 ENOENT (No such file or directory) | |
15615 openat(AT_FDCWD, "/home/jamin/proj/devika/ui/bunfig.toml", O_RDONLY) = -1 ENOENT (No such file or directory) | |
15615 access("/home/jamin/proj/devika/ui/binding.gyp", F_OK) = -1 ENOENT (No such file or directory) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bun install v1.0.35 (940448d6) | |
Loaded 260 hoisted_dependencies | |
Loaded 353 resolutions | |
Loaded 353 dependencies | |
Loaded 14 extern_strings | |
Loaded 19433 string_bytes | |
Clean lockfile: 253 packages - 253 packages in 1.9ms | |
error: failed to enqueue lifecycle scripts for @sveltejs/kit: ENOENT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- BEGIN SHA512/256(`${alphabetize(name)}@${order(version)}`) -- | |
@alloc/[email protected] | |
@ampproject/[email protected] | |
@esbuild/[email protected] | |
@esbuild/[email protected] | |
@esbuild/[email protected] | |
@esbuild/[email protected] | |
@esbuild/[email protected] | |
@esbuild/[email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import RPi.GPIO as GPIO | |
import os | |
import socket | |
import sys | |
import time | |
from threading import Thread |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import RPi.GPIO as GPIO | |
import sys | |
import time | |
class Fan: | |
rpm = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Author: postmodern | |
# Description: | |
# Rips a DVD to a H.264 MKV file, with chapters and tags. Ignores any | |
# bad blocks or sectors on the DVD. | |
# Dependencies: | |
# * gddrescue | |
# * handbrake-cli | |
# * mkvtoolnix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Thinkpad P1 w/ Quadro P1000 | |
$ lspci | grep -i vga | |
00:02.0 VGA compatible controller: Intel Corporation UHD Graphics 630 (Mobile) | |
01:00.0 VGA compatible controller: NVIDIA Corporation GP107GLM [Quadro P1000 Mobile] (rev a1) | |
$ cat /proc/cmdline | |
BOOT_IMAGE=/boot/vmlinuz-linux root=/dev/mapper/nvme-root rw drm.rnodes=1 net.ifnames=1 | |
$ pacman -Q | grep -P '(video-(intel|nouveau)|^linux |xorg-server )' |