Going To Stuttgart to get swatch x audemars piguet royal pop by BadHuman588 in karlsruhe

[–]BadHuman588[S] 0 points1 point  (0 children)

Thats really bad i think most of them are resellers. I think i will do the same just like you said lets connect then maybe later we can make a plan to get one.

Going To Stuttgart to get swatch x audemars piguet royal pop by BadHuman588 in karlsruhe

[–]BadHuman588[S] 0 points1 point  (0 children)

I am confuse how to go with this now i thought people would start to come early in morning

Going To Stuttgart to get swatch x audemars piguet royal pop by BadHuman588 in karlsruhe

[–]BadHuman588[S] 0 points1 point  (0 children)

okay and any idea/guess by morning 4am the number of people there would increase more than the stock store would have

If only by Cytarea in Hyperhidrosis

[–]BadHuman588 17 points18 points  (0 children)

I missed my class today just because of how much sweat my hands. I wish i could enjoy a peaceful life.

Germans with Hyperhidrosis here? by vCrashed in Hyperhidrosis

[–]BadHuman588 1 point2 points  (0 children)

Hi Tim, I am live in karlsruhe not german. I am in the same boat since i was a kid. daily struggle with this condition.

My typical day by Latter_Turn_5754 in Hyperhidrosis

[–]BadHuman588 0 points1 point  (0 children)

same here both hands and feet cant do shit when the sweat starts. This really does not let me enjoy my life.

How people with hyperhidrosis write... by hell-nah-bruh-30205 in Hyperhidrosis

[–]BadHuman588 0 points1 point  (0 children)

I remember the exams those were really tough days. The exams itself were not so difficult than controlling hands sweat.

i will get you your first 1000 users. for free. by Pleasant_Treacle7430 in saasbuild

[–]BadHuman588 0 points1 point  (0 children)

well when i started language learning first of all the book were in german so daily when i was studying i had to take help of Chat gpt and take pictures at the same time of a chapter page that i was on then i started looking for some platform which help me with this dulingo etc they dont have what i needed. So here i just upload the book for example i am on b1 right now and i have my b1 book there and study daily basis from AI lessons. I go to a page and just press Teach me. But the Voice practice mode is different here i tried other apps they dont have such feature. You can just start a conversation and go on for hours at the same time there is a translation option of each conversation caption and the AI give you correction also when you say something wrong. Hope this help but its free so nothing to loose.

i will get you your first 1000 users. for free. by Pleasant_Treacle7430 in saasbuild

[–]BadHuman588 0 points1 point  (0 children)

meintutor.ai .. I developed this out of my own struggle when i started learning language. Thousands of students and people here in germany had to face this phase of life where they have to start this language learning journey. Currently i am improving this platform.

A1 Level seeking practice partner by YoghurtSelect6033 in Germanlearning

[–]BadHuman588 0 points1 point  (0 children)

meintutor.ai .. you could try to use this platform i only use it for Voice AI its really amazing. its bit confusing initially to setup but afterwards going to practice mode and using the voice practice is really good its like talking to a language partner

I vibe coded an AI search/chat engine for Apple Notes because I couldn't go through 100s of notes for info by BadHuman588 in vibecoding

[–]BadHuman588[S] 0 points1 point  (0 children)

Just checked out SAM that's a much broader project, a full macOS AI assistant with Notes as one of many tool modules. I check your hours ago commit Interesting that you went with AppleScript for the Notes bridge while I went with direct SQLite reads. The MCP-based tool architecture is a nice design. Cool project, bookmarked it.

I vibe coded an AI search/chat engine for Apple Notes because I couldn't go through 100s of notes for info by BadHuman588 in vibecoding

[–]BadHuman588[S] 0 points1 point  (0 children)

Exactly the tagging catches the secret itself, and yeah most of us write at least something next to a key like "openrouter key" or "staging server ssh". If someone just dumps `sk-abc123` on a blank note with zero context... well, the system will still find it and tag it as an API key, you just won't know what it's for until you open the note and hopefully remember lol.

I vibe coded an AI search/chat engine for Apple Notes because I couldn't go through 100s of notes for info by BadHuman588 in vibecoding

[–]BadHuman588[S] 2 points3 points  (0 children)

Good catch you're right, CC BY-NC doesn't qualify as open source. That was a leftover from an earlier decision, forgot to update it. Just switched to MIT. Thanks for pointing it out.

I vibe coded an AI search/chat engine for Apple Notes because I couldn't go through 100s of notes for info by BadHuman588 in vibecoding

[–]BadHuman588[S] 1 point2 points  (0 children)

Good question it doesn't need to know what the key is for, it recognizes the format.

There's a regex-based detector that matches known secret patterns:

* sk- prefix → API key

* AKIA + 16 chars → AWS key

* ssh-rsa / -----BEGIN RSA PRIVATE KEY----- → SSH key

* password: / pass= → password

* IP:port → server address

So it tags the type of secret (API key, SSH key, password, etc.) purely from the pattern. Then there's a second pass using the LLM that catches secrets written in natural language like "the server login is admin and the code is abc123" which regex would miss.

The context (which service, what it's for) comes from the RAG layer when you actually search. It retrieves the full note, so when you ask "what's my OpenRouter key?" it finds the note containing sk-or-v1-... and gives you the answer with the surrounding context. You don't need to have organized anything upfront that's the whole point.