HackerTrans
TopNewTrendsCommentsPastAskShowJobs

devrob

no profile record

Submissions

The Republic of Rose Island

en.wikipedia.org
3 points·by devrob·7개월 전·0 comments

Show HN: Sync with Terry Your New Satirical AI Product Manager

github.com
3 points·by devrob·2년 전·0 comments

Show HN: Toy Tech Debt Calculator

toy-tech-debt-calc-dgsb.vercel.app
1 points·by devrob·2년 전·0 comments

Ask HN: What Was It Like Working in IT 1 Year Before Y2K?

2 points·by devrob·2년 전·7 comments

Show HN: I built a client side Chrome extension to manage your ChatGPT prompts

promptzilla.xyz
4 points·by devrob·2년 전·2 comments

Wazoku Crowd

wazokucrowd.com
1 points·by devrob·2년 전·0 comments

Ask HN: Is there a robots.txt equivalent for LLMs? like LICENSEME.txt?

4 points·by devrob·2년 전·2 comments

Tool – personal goals report card

blog.robertsimoes.org
1 points·by devrob·3년 전·0 comments

Tool – Too Many Ideas Quick Evaluation Framework

blog.robertsimoes.org
4 points·by devrob·3년 전·0 comments

comments

devrob
·2개월 전·discuss
missed opportunity to do book.google :(
devrob
·2개월 전·discuss
The other day I got into some pretty weird territory with Claude, trying to map out what an immortal ASCII cat would look like. Basically an autonomous Tamagotchi.

The idea was to create a quine that runs forever on something like Akash network with its own crypto treasury to support and pay it's bills and try to replicate. It would then talk to an LLM for support and actions on what to do to stay alive.

It got pretty out there. Stored some of the ideas here.

https://github.com/aquaflamingo/catfi
devrob
·6개월 전·discuss
I'm trying to build a simple, local, and semantic code + context search for coding agents like Claude Code.

I noticed that when trying to work with Claude Code I burned my token allocation really quickly and with parallel agents, no better. But when I looked at the other repos things felt really complex, for me at least.

I call it "contextd" and imagine it kind of like a context daemon you can always query in your repository for implementation plans, specs or code, etc. I always liked that git lived in your repo in the .git file, so I wanted this to work like that too but without 3rd party hosted databases or multi-repo pollution.

It's written in python at the moment, uses some local models and lanceDB but I might have it re-written in rust for speed :)

https://github.com/aquaflamingo/ctxd
devrob
·2년 전·discuss
The freedom and optimism is always rooted to the communal and ritual release in dance, the freedom to be as you are, or dance as you are. This gets harder and harder when there is fear of "documentation', if one can't "dance right" or "doesn't fit in".

Don't beat yourself up too hard though, you can always pickup a DJ controller and start again :)

And too: the scene has radically shifted, so being a promoter is a large part of the work. It's kind of like eSports in a way.
devrob
·2년 전·discuss
Oof - beautiful writing.

That sounds like it was out of Last Night A DJ Saved My Life [1]!

[1] https://en.wikipedia.org/wiki/Last_Night_a_DJ_Saved_My_Life_...
devrob
·2년 전·discuss
Indeed, I've written about this a little bit [1], they are growing in popularity due to a number of factors, one of which being, living in the moment. DVS1 has spoken with great eloquence on this subject as well [2]. These policies are the norm in Berlin places like Tresor. The industry culture has been really saturated by social media, live sets and destination sets [3], so many events are differentiating themselves by taking an different approach. It was a cool strategy when it started with Be At TV (RIP), (old) Boiler Room & (maybe) BBC R1 but it's lost its novelty at times I feel.

[1] https://www.instagram.com/p/DDkjBJhP1Sh/?utm_source=ig_web_c... [2] https://www.youtube.com/watch?v=ISoPHerYsn4&t=1181s [3] Think Cerce, Boilerroom
devrob
·2년 전·discuss
I think there's a lot of nuance here. I teach DJing (house/techno mostly) and there's never been more interest in electronic music & DJing. Folks who thought I was a bit out there in high school for liking electronic & dance music, have recently all now become more interested in DJing and raving. The DJ today is continuing to grow into the modern rock-star (albeit, in terms of real $ of music money, it's no where close).

Moreover, as several commenters have pointed out there has been a big growth in festivals and awareness. Lots of people talk to me about "house music" now, whereas before it was a relatively "underground" thing.

Now, I think there's a question about whether the scale of such events have maintained the same cultural ethos as the early rave days, and that, though I'm not old enough to have participated, is likely a categorical no. There's a greater focus on 'documenting' experiences at these events rather than living it. Here's a clip of an rising group called Kienemusik [tik tok link](https://www.tiktok.com/@as.anca/video/7359750430345186593?q=...), where you can see there's more video taping than dancing. I would venture to say, we are so filled with wonder sometimes that we forget that part of experiencing awe is letting go of ego and just experiencing.
devrob
·2년 전·discuss
Hi there, no offense taken! As in the copy or the design? The design is a very stripped down NextJS Boilerplate template I use for launch pages :) https://github.com/aquaflamingo/nextjs-product-boilerplate
devrob
·2년 전·discuss
u/lifeisstillgood look into "Building a Second Brain" and Tiago's PARA method, could help?
devrob
·2년 전·discuss
Somewhat off topic, does anyone use Paper/Pencil (specifically bullet journals), Apps and Digital Calendars with what feels like not much effort? I haven't been able to come to a happy medium between them all.

Also Concern #3, is there a subscription for things? o.O
devrob
·3년 전·discuss
Side tangent: I love Ruby, but strongly dislike and discourage `unless` in the code base. It still trips me up having written Ruby 5 years at this stage. Maybe its just me but I still pause every time for myself when looking at `unless` with a multi conditional. Example:

def do_the_thing

  return do_not_do_it unless first_conditional || second_conditional

  okay_actually_do_it
end

Glad that Rubocop is shipping with Rails though!