https://github.com/x4e/blog
Where I write stuff.
https://github.com/x4e/blog
java jvm reverse-engineering
Last synced: 11 months ago
JSON representation
Where I write stuff.
- Host: GitHub
- URL: https://github.com/x4e/blog
- Owner: x4e
- License: other
- Created: 2020-10-16T21:35:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-03T23:49:10.000Z (almost 5 years ago)
- Last Synced: 2025-04-30T20:33:58.143Z (11 months ago)
- Topics: java, jvm, reverse-engineering
- Language: Python
- Homepage: https://blog.binclub.dev
- Size: 1.42 MB
- Stars: 25
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Blog
Where I write stuff.
Hosted at [blog.binclub.dev](https://blog.binclub.dev).
## Technical
The blog is statically generated using [pandoc](https://pandoc.org) with some custom templates to convert the markdown blog files to html to be served.
Since the blog is completely statically generated (even code highlighting and mathjax expressions), no JavaScript is required to view the blog.
If JavaScript is present then a comment section can be loaded, but this is not necessary.
## Requirements
* pandoc
* nodejs
* mathjax-node-cli (npm package)
## More Info
A lot of these posts contain code samples.
Some of them will rely upon [jasm](https://wiki.openjdk.java.net/display/CodeTools/asmtools) for assembling JVM class files.
A precompiled binary is provided in the root directory of this project.
To compile a .jasm file use `java -jar asmtools.jar jasm file.jasm`.
For writing markdown with pandoc refer to .