apitrove
@apitrove.bsky.social
SE building plugin-based code assistant with full configurable internals.
a fully configurable code agent seems good idea to work upon. allows to experiment with different memory management implementations, flows via new MCP-based plugins which can access internal apis. working on it for past 3 days. anyone want to contribute with me?
will build profile analyzer tool(open source) starting today. what features would you like to see in it? planned: 1- 1st degree network categorization by topics #build-in-public #buildinpublic #uidesign #ui #uxdesign #ux #ai #llm #ml
anyone has checked out AI MCP tool of penpot? i'd say it'll be game changer in ui design as it is free. #buildinpublic #uidesign #uxdesign #ui
my first ever public project: linkedin comment and post creator. helped me increase my impressions more than 50% and follow count to %2. #buildinpublic #indie #indiehacker
monday will mark my first day as attempt to be a solopreneur. Looking forward to the struggle :)
It's obvious to me that TDD and strict coding practices like we used to use in ruby on rails in the early 2010s would help AI editors with context and keep agents from spinning out of control. I heard no one else bring this up so I wrote a short article. hackernoon.com/test-driven-...
Test Driven Development and Rails Era Best Practices Could Improve AI Generated Code | HackerNoon
Following TDD and strict software engineering practices popular in the ruby on rails community helps AI generate better code
hackernoon.com
been a while since in returned here. asked ai to create me social engagement plan so that i can off the cognitive load. let's see what resutls will turn out. this time, i'll follow AI's lead to the point for a month or 2 without questions.
‘Stamp out paper mills’ — science sleuths on how to fight fake research www.nature.com/articles/d41...
‘Stamp out paper mills’ — science sleuths on how to fight fake research
A group of scientists who are experts at spotting fraudulent research outline five essential steps to combat industrialized scientific misconduct.
nature.com
after too much internal monologue, have decieded to learn nextjs instead of sveltekit just cuz of job market demand.
new feature in talktrove.com now, you can choose to show your live feed to others or not without worrying about non-consentual snapshots. users can see each others' blurred video, but they'll need permissions during call to unblur it. a big improvent #buildinpublic #IndieHacker #omegle #bitcoin
illogical scenes jumbled together that somehow makes a perfect storyline despite sudden transistion. aren't dreams wonderful!!!
I’m gonna wake up and it’ll all be a dream right? Right?
time to double down on talktrove promotion on social media. it'll ruin my account. oh well! gotta learn organic growth somehow 😅 #aewdynamite #news #trump
btw svelts and react, what should i learn? at crossroads where no choice left
Web components fastest. React slowest. 🤘
Y'ALL. Portable HTML Web Components are fucking cracked. It looks like they are **faster** than the fastest Vanilla JS implementation in the JS Framework Benchmark. I literally reran the benchmark 5 times because I didn't believe it, but every single time they came in first place 🤯
tech_tip#2 use obsidian to take your notes. its internal linking of notes is amazing that'll help you keep organized
to emphasize again, practice code writing on leetcode if use ai to generate code. this'll be enough to pass coding tasks. in projects, you can keep using chatgpt or whatever
building talktrove.com #buildinpublic for social benefit. trying to build random chat platform to raise awareness and good audience, and compete against existing platforms that promote virtual sex and bad crowd. do provide feedback about improvents. thanks #deepseek #twitch #art #wweraw #sketch
those you wanna stalk, add them in your personal stater pack, and violla!
i am re-branding my platform as better alternative. will relaunch it in 6 hours. do support it and provide feedback if the message and features resonate with you😀. thanks #omegle #uhmegle
wish new sites could have avoided the same path travelled by #omegle before. but most online strangers are looking for sexting rather than simple chat. WHAT CAN WEBSITES DO!!!!
wish new sites could have avoided the same path travelled by #omegle before. but most online strangers are looking for sexting rather than simple chat. WHAT CAN WEBSITES DO!!!!
been working on random stranger chat website. hopefully will fix front-end and post here in 5-6 hours.
if mobile features aren't needed, is app still better choice than web or PWA for productivity apps? i am working on task scheduler and am in dilemma deciding about this. #buildinpublic
java tip #2 use streams instead of loops. the make syntax cleaner, and readable. i.e. ```bskyprofiles.stream().map(ProfileMapper::getNameAndLink).toLIst()``` is on-line code instead of multi-line loop block. #java
java tip #1 use Optional instead of "null" for data that is not required in logic. you can define it via: ```Optional.ofNullable(date_or_object_ref)``` will create empty if data is null.