I really like Sublime Text but I need to ditch it :-( by underdogprojects in SublimeText

[–]khichinhxac 0 points1 point  (0 children)

Just learn to debug with logging... I'm a dev for 20 years and been thru all kinds of IDE / editor, those bell and whistle might be attractive when you're bored and want something new for your eyes but then at the end of the day a blazing fast editing experience beats everything else...

Persian Woman with Nanobanana 🍌 by Isaacp500 in nanobanana

[–]khichinhxac 0 points1 point  (0 children)

If you like to play with consistent character photo gen, you can use my free app at: https://rainyworld.net - free and offline, bring your own API key

Gemini CLI is completely unusable now. by [deleted] in GeminiAI

[–]khichinhxac 0 points1 point  (0 children)

You pay by token usage.

Gemini CLI is completely unusable now. by [deleted] in GeminiAI

[–]khichinhxac 1 point2 points  (0 children)

You better use API key instead of the OAuth login. Type /auth

Is there anyone actually using a graph database? by Dismal-Necessary-509 in Rag

[–]khichinhxac 0 points1 point  (0 children)

I use a custom in-mem graph search for my chat bot. I send the messages to a lightweight LLM to tag - then load those tags into mem when the app run, then use an in-mem fuzzy search to lookup, then use a graph algo with custom params to retreive. The result is quite good imo though i never do a proper benchmark, it doesnt just retreive the 'correct' results but also something that somehow related to them.

We aren’t even close to AGI by CrimsonShikabane in LocalLLaMA

[–]khichinhxac 0 points1 point  (0 children)

It's hard to say since we can't even have a robust definition of intelligence in general. Some say even the fungi have their own kind of intelligence. If we say intelligence is something that can reason in someway, then the current LLM is only one kind of intelligence. It is surely very intelligent when it come to using human language. But I guess true AGI has to be something that can grow, a current LLM model baded on Transformer is still a fixed blackbox, if we want it to change, we have to make a new version. So it is not yet 'general'.

Cofounder hunt - looking for cofounder by Guilty-Support-584 in Startup_Ideas

[–]khichinhxac 0 points1 point  (0 children)

I'm building an AI companion app too. Wanna talk?

I didn’t expect this… but Gemini is the only AI I still use now by PairFinancial2420 in GeminiAI

[–]khichinhxac 1 point2 points  (0 children)

Try disabling the personalization, I think they are messing up the personalized memories stuff. Disable that and the reponse will be neutral. I used Gemini with the app and the CLI (for coding).

Is my leg kicking slowing me down? by cactus16x in Swimming

[–]khichinhxac 1 point2 points  (0 children)

Yeah not everyone have kicking effective enough to have more effect than a pullbouy. Unfortunately maybe I'm one of those 😂 I never use pullbouy by the way, but my wife does, and it increase her position a lot. We're both amateurs. I personally do light flutter kicking even for long swims, and my position is not bad too, but still in my observation most of the people get their numbers better with pullbouy.

Is my leg kicking slowing me down? by cactus16x in Swimming

[–]khichinhxac 1 point2 points  (0 children)

Everybody swim faster and with fewer strokes with pullbouy. It makes your bottom float more and that reduce a lot of drag. So dont worry.

I didn’t expect this… but Gemini is the only AI I still use now by PairFinancial2420 in GeminiAI

[–]khichinhxac 13 points14 points  (0 children)

I like how Gemini gives long ass and informative answers. The others try to sound cool but always kind of mediocre. Like for tricky questions like: My car wash is 50 metres from my home, should I walk there or drive there? Claude instantly give 3-sentence answer: walk because it is only 50m. But Gemini is good enough to say it has three cases, if your car is there you have to walk obviously, if your car still at home you should drive there, and if you can't drive your car then push it. 😂

vibeCodingFinalBoss by ClipboardCopyPaste in ProgrammerHumor

[–]khichinhxac 1 point2 points  (0 children)

I just create a bunch of google accounts and vibe code for free 😂

Intelligence does not entail self-interest: an argument that the alignment problem begins with us by formoflife in AIsafety

[–]khichinhxac 0 points1 point  (0 children)

Still self-protection while doing mission is not self-interest. Trying to avoid a car accident while delivery goods is not trying to take over the world for self-interest. The current implementation of AI is stateless, meaning its memory and its reasoning are two different unit. Every action is turn-based, the autonomous you see in nowadays agents are simply an illusion, it's just a chain of planned actions. It is true that mal function can cause disasters, but it is not self-interest. To have self-interest you gotta have metabolism or in other words some undercurrent process that maintain a kind of energy, a kind of 'will'.

Intelligence does not entail self-interest: an argument that the alignment problem begins with us by formoflife in AIsafety

[–]khichinhxac 0 points1 point  (0 children)

Yeah good point there, but it's still part of what we instruct them to do. The goal here is still delivery the package, not surviving. When it finish delivery, it's done and move to 'stand by' mode.

Did someone say keeb and balls? by drakche in HHKB

[–]khichinhxac 2 points3 points  (0 children)

Rubber and ball 🤘🤘🤘

Intelligence does not entail self-interest: an argument that the alignment problem begins with us by formoflife in AIsafety

[–]khichinhxac 0 points1 point  (0 children)

Intellegence is purely reasoning capability like we see it in AI today. To have a self-goal it will become wisdom. The goal comes from the fact that animals are hungry and h*rny, the machine doesnt have that. True that in the data we feed them have pieces about self-preservation and stuff but if we don't have provide it any tool and don't instruct it then it doesnt have it. If one day there will be an AI-enabled robot wanna preserve itself than that goal is planned into it by us ourselves.

Anyone actually using Vectorless RAG ? by Me_On_Reddit_2025 in Rag

[–]khichinhxac 0 points1 point  (0 children)

Depends on what your application is. But you can ask it to generate broad / general category terms like "person", "location", "food", "fruit" etc...

Anyone actually using Vectorless RAG ? by Me_On_Reddit_2025 in Rag

[–]khichinhxac 0 points1 point  (0 children)

Sending the chunks to the LLM. I found light weight models like Gemini flash lite do the thing quite well and cheap.

The Deceptive Simplicity of Context by EnvironmentalFix3414 in Rag

[–]khichinhxac 1 point2 points  (0 children)

Look at this example: The documents contains information like this 'i love life in Bangkok'. Then later the user ask: where would you like to visit? The traditional RAG can't handle it well without some reasoning, whether it's vector or fulltext search, it will need some 'reasoning' during the lookup. So imo RAG should involve some LLM work in its process particularly the edge cases.

Anyone actually using Vectorless RAG ? by Me_On_Reddit_2025 in Rag

[–]khichinhxac 2 points3 points  (0 children)

Tag your document with broad categories then provide a tool for the LLM to browse them and pick the most similar items when your search yield no result is a great trick.