Skip to content

Commit

Permalink
feat: basic VV8 log parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
SichangHe committed Sep 14, 2024
1 parent 365c2e1 commit 14d87dc
Show file tree
Hide file tree
Showing 10 changed files with 698 additions and 1 deletion.
2 changes: 1 addition & 1 deletion linked/JSphere
Submodule JSphere updated 1 files
+8 −4 execution.md
144 changes: 144 additions & 0 deletions src/notes/research/JSphere/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
# Archive
**.7z
**.bz2
**.gz
**.gzip
**.jar
**.lz4
**.lzma
**.pak
**.rar
**.tar
**.tbz2
**.tgz
**.tlz
**.txz
**.xz
**.zip
**.zst

# Artifacts
**.buildlog/
**.class
**.dart_tool/
**.flutter*
**.flutter-plugins
**.flutter-plugins-dependencies
**.history
**.iml
**.ipr
**.iws
**.lock
**.o
**.pub-cache/
**.pub/
**.pyc
**.so
**.whl
**/.dSYM/
**/.dart_tool/
**/.idea/
**/.ipynb_checkpoints/
**/__pycache__/
**/android/app/debug/
**/android/app/profile/
**/android/app/release/
**/app.*.map.json
**/app.*.symbols
**/build/
**/dist/
**/doc/api/
**/ios/Flutter/.last_build_id
**/migrate_working_dir/
**/node_modules/
**/package-lock.json
**/target/
**/venv/

# Audio
**.wav

# Auxiliary files
**.bak
**.env
**.swp
**.tmp

# Databases
**.db*
**.sqlite*

# Documents
**.csv
**.doc*
**.html
**.pdf
**.ppt*
**.txt
**.vsd*
**.xls*

# File managers
**.DS_Store
**.Trash*
**.directory
**esktop.ini

# Images
**.3dm
**.apng
**.bmp
**.dib
**.gif
**.hdp
**.ico
**.j2k
**.jfi
**.jfif
**.jif
**.jp2
**.jpe
**.jpeg
**.jpf
**.jpg
**.jpm
**.jpx
**.jxr
**.max
**.mj2
**.mng
**.png
**.raw
**.svg
**.svgz
**.tif
**.tiff
**.wdp
**.webp
**.xbm

# LaTeX
**(busy)
**.aux
**.bbl
**.bcf
**.blg
**.dvi
**.fdb_latexmk
**.fls
**.lof
**.log
**.lot
**.out
**.run.xml
**.synctex.gz
**.toc
**.xcp
**.xdv
**blx.bib
**comment.cut

# Video
**.mkv
**.mov
**.mp4
13 changes: 13 additions & 0 deletions src/notes/research/JSphere/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[workspace]
members = [".", "jsphere_vv8_log"]

[workspace.dependencies]
shame = "0.0.4"

[package]
name = "jsphere"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies]
8 changes: 8 additions & 0 deletions src/notes/research/JSphere/jsphere_vv8_log/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "jsphere_vv8_log"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies]
shame.workspace = true
Loading

0 comments on commit 14d87dc

Please sign in to comment.