Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
st0012
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
Multi-harness session monitoring app for heavy AI users
(cctop.app)
2 points
by
st0012
3mo ago
|
1 comments
2.
▲
by
st0012
3mo ago
I’ve been building cctop for over 4 months and never stopped improving it as I migrated between harnesses. It now supports Codex desktop/cli, Claude desktop/cli, opencode, and pi. It’s the only app that allows users to monitor the
3.
▲
Cctop – A keyboard-first menubar app to jump between AI coding sessions
(cctop.app)
1 points
by
st0012
5mo ago
|
0 comments
4.
▲
by
st0012
9mo ago
Can you elaborate what sustainability and openness do you mean to here? Do you mean disclosing usage of AI tools in the project’s maintenance and development?
5.
▲
AI and Open Source: A Maintainer's Take (End of 2025)
(st0012.dev)
1 points
by
st0012
9mo ago
|
2 comments
6.
▲
Ruby 3.4 Documentation: A Step Towards Better Ruby Documentation
(st0012.dev)
5 points
by
st0012
2y ago
|
1 comments
7.
▲
by
st0012
3y ago
These are the Ruby libraries that already adopted Prism: https://rubygems.org/gems/prism/reverse_dependencies
8.
▲
by
st0012
3y ago
syntax_tree was actually created before Prism. Ruby LSP also adopted syntax_tree first, and then switched to Prism (then called YARP) when it was mature enough. But indeed, the type completor would've been much harder to build and main
9.
▲
by
st0012
3y ago
In 2017, I wrote a toy language called Goby[1] to learn how Ruby works. A few folks contributed quite a bit to it and one of them later referred me to my previous job (as a backend developer). Fast-forward to 2021, I got interested in debug
10.
▲
Changing the Approach to Debugging in Ruby with TracePoint
(dev.to)
1 points
by
st0012
6y ago
|
0 comments
11.
▲
Optimize Your Debugging Process with Object-Oriented Tracing
(dev.to)
3 points
by
st0012
7y ago
|
0 comments
12.
▲
No More Best Practices
(medium.com)
2 points
by
st0012
9y ago
|
0 comments
13.
▲
by
st0012
9y ago
Sadly we can't. But you can use go library in Goby
14.
▲
by
st0012
9y ago
If you ask me why I started this project at first place, I'd say it's just for fun and practicing. And we know that Goby is not special enough by giving green thread or channel. So currently our main goal is to let users use Go&#x
15.
▲
by
st0012
9y ago
Goby doesn't have JIT. It just created 6 months ago so we have many things prior to performance improvements. And I'm not a programming language expert so it's too hard for me introducing JIT in my first language.
16.
▲
by
st0012
9y ago
Thanks! I think Go does good work at concurrency support, so using it can save me a lot time dealing with concurrency. And in my opinion Go is simple to learn, which can make others contributing it more easily. For example, this is only my
17.
▲
by
st0012
9y ago
Thanks! I'll try to share my experience to others by writing posts or giving a talk on conf. But actually Goby is just 6 months old, so you might need a while :)
18.
▲
by
st0012
9y ago
Goby does reverse, using Go package as plugin. See: https://goby-lang.gitbooks.io/goby/content/plugin-system.htm...
19.
▲
by
st0012
9y ago
Hi, I'm Stan, this project's creator. I will explain your questions later. But before that please check out our sample site (written in Goby): http://sample.goby-lang.org/ And our plugin system, which is Goby
20.
▲
by
st0012
9y ago
Hello, I'm Stan, the project's creator. A few months ago Goby(Rooby) was posted on Hacker News. I got many feedbacks and said that this language is aim at help developing microservices. To achieve the goal I also said that it'
21.
▲
Goby – Inherits from Ruby, Extended with Golang
(github.com)
4 points
by
st0012
9y ago
|
2 comments
22.
▲
Introduction to Template Rendering in Rails
(slideshare.net)
1 points
by
st0012
9y ago
|
0 comments
23.
▲
by
st0012
9y ago
BTW here's the monkey source code I wrote when I practiced with the book https://github.com/st0012/monkey
24.
▲
by
st0012
9y ago
The 'code' you read is similar, but the way they work are totally different. Monkey is fundamentally a functional language, but rooby is totally an object oriented language. And the compiler, vm's internal implementation and
25.
▲
by
st0012
9y ago
Haha, I did read that book before start this project, it's a very useful material. But for now the project are far more complicated than the sample project in that book, only lexer and parser remain similar. BTW I also took "nand2
26.
▲
by
st0012
9y ago
Hello, I'm the author of this project. Let me explain a few things: 1. The goal of this project is to let people "Use Ruby-like syntax build Go-like performant api servers". 2. The "Ruby-like" means Ruby-like syntax
27.
▲
by
st0012
9y ago
Hello, I am the author of this project and I think you said what I think. I won't support most of ruby's meta-programming magic for keeping rooby as simple and performant as possible. Thanks for your explanation