HackerTrans
TopNewTrendsCommentsPastAskShowJobs

micahkepe

no profile record

Submissions

[untitled]

3 points·by micahkepe·4 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by micahkepe·9 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by micahkepe·11 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by micahkepe·12 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by micahkepe·ปีที่แล้ว·0 comments

[untitled]

1 points·by micahkepe·ปีที่แล้ว·0 comments

[untitled]

1 points·by micahkepe·2 ปีที่แล้ว·0 comments

Setting Up a Supercharged Neovim Configuration

micahkepe.com
3 points·by micahkepe·2 ปีที่แล้ว·0 comments

AI's Augmentation of Software Professionals: Data from AI Index 2024

micahkepe.com
1 points·by micahkepe·2 ปีที่แล้ว·1 comments

I Made an Extended Version of Vimtutor – Introducing Vimtutor Sequel

github.com
229 points·by micahkepe·2 ปีที่แล้ว·35 comments

comments

micahkepe
·4 เดือนที่ผ่านมา·discuss
OP jsongrep author here: v0.8.0 now has multi format support for serializable formats![^1]

[1]: https://github.com/micahkepe/jsongrep/releases/tag/v0.8.0
micahkepe
·4 เดือนที่ผ่านมา·discuss
OP here: sorry about that, the light mode inconsistencies should be fixed now. Will continue to work on making the site design better as well!
micahkepe
·4 เดือนที่ผ่านมา·discuss
OP here: Releases have been updated! Also someone was kind enough to package it in Homebrew already :) https://github.com/micahkepe/jsongrep/pull/22
micahkepe
·4 เดือนที่ผ่านมา·discuss
Hey thank you! OP here, yes I was struggling to find large enough documents to run the benchmarks on, the range currently on the benchmark data is ~106 B - ~190MB, which I think covers the majority of quick task workloads, but would love to have large documents, if there's an public ones you can thinking of I'd like to know!
micahkepe
·4 เดือนที่ผ่านมา·discuss
Should be fixed now! Let me now :)
micahkepe
·4 เดือนที่ผ่านมา·discuss
They've been added!
micahkepe
·4 เดือนที่ผ่านมา·discuss
OP here- I will add! Thank you for checking out the project!
micahkepe
·4 เดือนที่ผ่านมา·discuss
Hey OP here! Sorry about this this is just laziness on my part because I never use light mode so I forget to test haha, will push a fix!
micahkepe
·4 เดือนที่ผ่านมา·discuss
Hey! This is the jsongrep author, just wanted to give a little intro to the jsongrep tool. I started this project as part of my undergrad research and kept iterating on it. I'm super happy with how performant it is and I have found it incredibly useful for my day-to-day work, for example combing through long OpenAPI specs and combining with other tools like `fzf` and `rg`. Happy to answer any questions about the tool!
micahkepe
·9 เดือนที่ผ่านมา·discuss
I just published a deep dive on Ken Thompson’s Reflections on Trusting Trust, where he talks about the compiler-level backdoor he described in his 1984 Turing Award lecture that would let him login on compromised systems.

The post walks through how a compiler can teach itself to hide a Trojan that reproduces even after the source is “clean” and annotated snippets from Thompson’s actual code (shared by Russ Cox).

Would love feedback or corrections, especially from folks who’ve studied or implemented compiler bootstrapping or reproducible-build systems.
micahkepe
·2 ปีที่แล้ว·discuss
Been trying it out for a few hours and love it! One feature that I do miss from Kitty is the cursor trail when your cursor moves in a buffer. Excited to see what Ghostty does in the future and thank you for a great new terminal!
micahkepe
·2 ปีที่แล้ว·discuss
Recent data from Stanford's AI Index 2024 report and BLS projections suggest AI is more likely to augment software professionals than replace them. The article draws parallels with the historical impact of spreadsheets on accounting and explores how tools like GitHub Copilot Workspace might transform the industry. It challenges the common narrative of AI-driven job loss with evidence-based optimism.
micahkepe
·2 ปีที่แล้ว·discuss
No sorry I didn't this is actually my first post on here so still learning the platform.
micahkepe
·2 ปีที่แล้ว·discuss
I fully agree, at the end of the day whichever tool makes you the most efficient/excited to code is the best tool for you. I am still transitioning from VSCode to Neovim and I can definitely relate to VS Code feeling more easily malleable.
micahkepe
·2 ปีที่แล้ว·discuss
Thank you so much I appreciate it!
micahkepe
·2 ปีที่แล้ว·discuss
Hey everyone,

It looks like my submission redirected to the GitHub repo instead of displaying the full context. Here’s the detailed information about Vimtutor Sequel:

---

Hey Hacker News community,

I'm excited to share something I've been working on - Vimtutor Sequel!

After going through the original vimtutor, I felt there was a need for an extended tutorial for some more advanced topics not covered in the original tutor program.

What's Vimtutor Sequel?

Vimtutor Sequel picks up where the original vimtutor left off. It’s designed for those who already know the basics and are ready to dive into more advanced Vim features and commands.

Key Features:

- Advanced Topics: Dive into splits, spellcheck, advanced search and replace, macros, Vim scripting, plugins, sessions, and registers. - Step-by-Step Tutorials: Hands-on lessons that encourage you to practice commands as you learn. - Custom Vim Configuration: Comes with a custom vimrc to ensure a consistent learning experience and mimic the original vimtutor.

How to Install:

For Mac: To get started, install Vimtutor Sequel using Homebrew:

```bash brew tap micahkepe/vimtutor-sequel brew install vimtutor-sequel ```

Then you can run with: ```bash vimtutor-sequel ```

For Windows/Linux:

1. Clone the repository: ```bash git clone https://github.com/micahkepe/vimtutor-sequel.git ``` 2. Navigate to the repository: ```bash cd vimtutor-sequel ```

3. Make a Copy of the Tutorial: ```bash cp vimtutor-sequel.txt vimtutor-sequel-copy.txt ```

4. Run Vim with the Custom Configuration: ```bash vim -u vimtutor-sequel.vimrc vimtutor-sequel-copy.txt ```

Looking for Feedback!

I'd love to hear what you think! Whether you spot any bugs, have suggestions for new lessons, or just want to share your thoughts, your feedback is really appreciated. Feel free to contribute or open issues on the GitHub repo.

Links:

GitHub Repository: https://github.com/micahkepe/vimtutor-sequel Issues & Feedback: https://github.com/micahkepe/vimtutor-sequel/issues Thanks for checking it out, and I hope you find it useful in your Vim journey. Happy Vimming!