Skip to content

Instantly share code, notes, and snippets.

View rassi0429's full-sized avatar
👋
Home

KOKOA rassi0429

👋
Home
View GitHub Profile
This file has been truncated, but you can view the full file.
# File produced by Open Asset Import Library (http://www.assimp.sf.net)
# (assimp v5.0.544053612)
mtllib Figure霧衛光器.mtl
# 23409 vertex positions
v 6.25477123 1.13676453 -34.6349182
v 6.25479364 1.13694513 -34.6348915
v 6.25504112 1.13674617 -34.6347885
v 6.25478697 1.13657057 -34.6349564
@rassi0429
rassi0429 / neos.log
Created November 5, 2021 03:38
Neos homeworld unreadable problem
12:24:26.236 ( 60 FPS) CanModify: True, OwnerID: U-kokoa0429, URL: neosrec:///U-kokoa0429/R-Home
12:24:26.237 ( 60 FPS) OverwriteWith:
12:24:29.270 ( 60 FPS) Resolving SessionID:
12:24:30.038 ( 60 FPS) Requesting gather for: neosdb:///4f0afe229c690b8569958845d56b42998f23b7bd5783fcd267d6650255578427.7zbson
12:24:30.040 ( 60 FPS) Got asset at path: C:/Users/kokoa/AppData/Local/Temp/Solirax/NeosVR\Cache\tj4ceiyulhpmygry, loading world
12:24:30.136 ( 60 FPS) Exception running asynchronous task:
System.AggregateException: One or more errors occurred. ---> SevenZip.DataErrorException: Data Error
at SevenZip.Compression.LZMA.Decoder.Code (System.IO.Stream inStream, System.IO.Stream outStream, System.Int64 inSize, System.Int64 outSize, SevenZip.ICodeProgress progress) [0x00308] in <2a63a1491ce045268730565bda73853c>:0
at SevenZip.Helper.Decompress (System.IO.Stream inStream, System.IO.Stream outStream) [0x00041] in <2a63a1491ce045268730565bda73853c>:0
at BaseX.DataTreeConverter.From7zBSON (System.IO.Stream
@rassi0429
rassi0429 / neos.log
Created November 5, 2021 05:13
Neos Full Log
This file has been truncated, but you can view the full file.
6:14:37.341 ( -1 FPS) Loading Stereo Display
6:14:37.344 ( -1 FPS) Platform: WindowsPlayer, loaded VR device: Loaded device name: , StereoRenderingMode: MultiPass
6:14:38.039 ( 0 FPS) Initializing Neos: Beta 2021.11.4.402
CPU: AMD Ryzen 9 3900X 12-Core Processor , Processor Count: 24 (Physical: UNKNOWN)
Max GC Generation: 0, IsLittleEndian: True
System Memory: 31.91 GB
GPU: NVIDIA GeForce GTX 1050 Ti, VRAM: 3.92 GB, POT Byte Aligned: True
System.Numerics.Vectors HW accelerated: False, Vector<float>.Count: 4
HeadDevice: Screen
6:14:38.039 ( 0 FPS) 5.11.0 (Visual Studio built mono)
@rassi0429
rassi0429 / bogoLogger.js
Created February 6, 2022 18:53
bogoLogger
function info(msg, caller = null) {
console.log(`[INFO]${getTimeText()}${caller ? `[${caller}]` : ""} ${msg}`)
}
function error(msg, caller = null) {
console.log(`[EROR]${getTimeText()}${caller ? `[${caller}]` : ""} ${msg}`)
}
function getTimeText() {
const now = new Date()
void setup() {
size(450,300);
background(255,0,0);
}
void draw() {
noStroke();
fill(255,255,255);
rect(0, 100, 450, 100);
}
@rassi0429
rassi0429 / discord.py
Created November 19, 2022 09:36
Discord.py slash command Sample スラッシュコマンド サンプル
# discord ライブラリをインポート
import discord
# インテント(discordに何の情報が欲しいのかログインの時に伝える変数)
intents = discord.Intents.default()
intents.message_content = True
# Discordクライアントを準備 インテントを引数に渡してる
client = discord.Client(intents=intents)

Keybase proof

I hereby claim:

  • I am rassi0429 on github.
  • I am kokoa0429 (https://keybase.io/kokoa0429) on keybase.
  • I have a public key whose fingerprint is BF53 37D5 B054 1355 D538 C119 7CC9 37CB 125D E5C9

To claim this, I am signing this object:

layerを追加していく
まずYoctoを落とす
```
$ git clone git://git.yoctoproject.org/poky.git -b kirkstone
$ source poky/oe-init-build-env
```
Layerを追加する
```