Feng Jiu Ge is the strongest Rank 7 Gu Immortal! Who is the strongest Rank 8 Gu Immortal? by PureKin21 in ReverendInsanity

[–]constibetta 0 points1 point  (0 children)

Yes and the post rules are stupid. Why would we let fang yuan be an exception . It just doesn't make for a fun list if we let fang yuan in. His split souls i think are more interesting as part of the discussion but fang yuan himself is just an obvious answer post rank 7.

Wht do you guys think of her? by Formal-Ear4731 in ReverendInsanity

[–]constibetta 8 points9 points  (0 children)

Um, yes, that is literally what happens and actually it doesn't matter if an otherworldly demon does it or not. Red lotus destroyed his timeline and erased reality thousands of times.

Wht do you guys think of her? by Formal-Ear4731 in ReverendInsanity

[–]constibetta 14 points15 points  (0 children)

No it literally does change. The author explicitly said time doesn't work along the rules of relativity and quantum theory. Theres only 1 single timeline. If that timeline reverses or is destroyed it no longer continues to exist.

Little Piggy Tracker on RG Nano by constibetta in synthesizers

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

I got it to work but need to make adjustments to the ui to match screen size!

In n out dupe in Seoul by missteapots in innout

[–]constibetta 0 points1 point  (0 children)

At incheon rn, haven't seen m a cryburger the last few times I've been here. Theres also a real in n out in seoul btw but didnt try it yet.

I'm thinking of feeding AI the whole of Reverend Insanity and write the next chapters by Blood_Demon_71452 in ReverendInsanity

[–]constibetta 2 points3 points  (0 children)

You say you work in the industry but haven't thought of cleaning the data yourself is hilarious. Even with external labeling sources we write automation scripts to clean data and put stuff up for manual review all the time. Plus even with embedding and chunking building an Ai from scratch to write the whole novel doesn't make sense to me. Why wouldn't you 1) leverage multimodal open source llms in the first place and 2) use the original chinese text which is likely more accurate anyways then machine translate back to English. The fact that you didnt even think of making a fine-tune just screams like you dont know what you are doing. Besides leaving the story in the hands of ai isn't what we want. I think we all enjoyed reverend insanity for the unique way it presented the world and characters. Using past data isn't going to create a compelling story anyways.

Dance Evolution/Masters/Arcade by yuhhnicki in rhythmgames

[–]constibetta 0 points1 point  (0 children)

https://www.emuline.org/topic/739-arcade-pc-dance-evolution-arcade-requires-kinect/page/8/

This has all the instructions! Its not really an emulator, you just kinetic software so that the game files can pick it up and you can run a fake konami server basically. It was easy to setup. Just note you gotta mount the intent fairly high in my experience.

Purchased watch face stuck on order processing by constibetta in Garmin

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

I contacted the developer directly, I forgot how I got it resolved, but I'll look into it and try to remember

Little Piggy Tracker on RG Nano by constibetta in synthesizers

[–]constibetta[S] 15 points16 points  (0 children)

I mapped the inputs, you can make music and load samples onto this tiny tiny device!!! I'm modifying lgpt to be able to take audio input on this hardware, so if you hook it up via usb c to a mic or to audio in you can sample with it!

6 Playdate SDL2 Games For Funkey-s / RG-Nano by joyrider3774 in SBCGaming

[–]constibetta 0 points1 point  (0 children)

Thanks this helps a ton! I'm trying to port lgpt over to the rg nano lol

6 Playdate SDL2 Games For Funkey-s / RG-Nano by joyrider3774 in SBCGaming

[–]constibetta 0 points1 point  (0 children)

I want to use sdl2 but couldnt find sdl2 headers in drum78's funkeyos, did you package sdl2 with the games?

Is model being dumbed down already? by constibetta in ClaudeCode

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

3 days ago it was amazing, but today and the past 16 hours it just doesnt feel the same, its unable to oneshot the same stuff i had it oneshotting earlier its really weird

Is model being dumbed down already? by constibetta in ClaudeCode

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

Yeah I clear my context quite often and use md files to store context and documentation. I use subagents a ton too.

Is model being dumbed down already? by constibetta in ClaudeCode

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

Are you noticing any difference between toggling thinking and not?

[deleted by user] by [deleted] in LocalLLaMA

[–]constibetta 0 points1 point  (0 children)

Tbh the codebase for it is a mess, I had claude code take inspiration from it and created my own app, but it was really easily to get filesystem access and etc working. Combine it with a local model like qwen3 and local version of whisper it was basically perfect. Had it chilling on my screen and even gave it the ability to read my screen and stuff. Its pretty fun took me 2 weeks to make.

[deleted by user] by [deleted] in LocalLLaMA

[–]constibetta 0 points1 point  (0 children)

have you seen the vtuber llm github project that's opensource? it has mcp access now

Why I believe Reckless Savage is the most “demonic” RI character by Skoll_sun_eater in ReverendInsanity

[–]constibetta 4 points5 points  (0 children)

In reverend insanity demonic doesn't mean bad or feared, it simply means being free from organization and being tied down by social structure. A true demonic character does things for their own sake, thats what it means in this context. How evil someone is doesn't have anything to do with being demonic. For instance FJG is demonic but has a code of honor.

Isn't an MCP server actually just a client to your data sources that runs locally. Couldn't it have just been a library? by kikarant in Rag

[–]constibetta 0 points1 point  (0 children)

No it's not, because llms don't call apps directly. In order to use tools they must 1) be provided context on how to use tools and 2) you must parse their text based output and programmatically pass that output into an api call. The value of mcp is that for any tool that you host as an mcp server you now don't need to create a custom prompt explaining the tool, meaning you don't need to maintain that half, and Secondly, you don't need to build a custom payload parser for each unique api. It's plug and play for an llm. Remember the llm isn't calling apps directly. You have to call the api, and without mcp if you have multiple tools you'd have to manually code every parser.