<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: riddleronroof</title><link>https://news.ycombinator.com/user?id=riddleronroof</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 02 Jul 2026 11:55:24 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=riddleronroof" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by riddleronroof in "Ask HN: What are you working on this Christmas Eve?"]]></title><description><![CDATA[
<p>:)
Yeah I think I just need courage to say it’s good enough.</p>
]]></description><pubDate>Wed, 25 Dec 2024 23:23:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=42511912</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=42511912</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42511912</guid></item><item><title><![CDATA[Ask HN: What are you working on this Christmas Eve?]]></title><description><![CDATA[

<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42511594">https://news.ycombinator.com/item?id=42511594</a></p>
<p>Points: 2</p>
<p># Comments: 2</p>
]]></description><pubDate>Wed, 25 Dec 2024 22:26:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=42511594</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=42511594</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42511594</guid></item><item><title><![CDATA[New comment by riddleronroof in "Cost of self hosting Llama-3 8B-Instruct"]]></title><description><![CDATA[
<p>Ollama is llamma.cpp plus docker 
If you can do without docker, it’s faster</p>
]]></description><pubDate>Fri, 14 Jun 2024 23:55:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=40686309</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=40686309</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40686309</guid></item><item><title><![CDATA[Show HN: Zero dependency LLM standby, rollouts, no proxy]]></title><description><![CDATA[
<p>We believe you should not rely on any company for your critical LLM infra.<p>This does not proxy via another service that might go down or be beholden to whims of some board.<p>We wrote logos-shift for our own needs and are open sourcing it.<p>What it does:<p>- Save input/output data, no proxy, no slowdowns, double buffering, separate thread<p>- Finetune your own model, or we can for a fee.<p>- Auto rollout your model when ready.<p>We recommend keeping your LLM at 80/20 for most cases and rollout to 100 on failure.<p>How to use it:<p>pip install logos_shift_client<p>from logos_shift_client import LogosShift<p># Initialize with your API key (without if you just want the local copy)<p>logos_shift = LogosShift(api_key="YOUR_API_KEY")<p># Instrument your function<p>@logos_shift()<p>def add(x, y):<p><pre><code>    return x + y
</code></pre>
result = add(1, 2)<p># Optionally, provide feedback
logos_shift.provide_feedback(result['bohita_logos_shift_id_123', "success")<p>We can manage all this for you of course, but its not hard to do it yourself.<p>Save data on our infra for free for upto 1GB.<p>$10 per month for after.<p>Download your data anytime. No lock in.<p>Feel free to ask questions and how can we make this easier for you.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=38364279">https://news.ycombinator.com/item?id=38364279</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 21 Nov 2023 14:44:48 +0000</pubDate><link>https://github.com/virevolai/logos-shift-client</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=38364279</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38364279</guid></item><item><title><![CDATA[New comment by riddleronroof in "Home Assistant 2023.11"]]></title><description><![CDATA[
<p>Nice work<p>Last I looked, the industry was trying to roll out some protocols to block open source efforts.<p>Is there a plan to tackle that?</p>
]]></description><pubDate>Thu, 02 Nov 2023 14:17:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=38113835</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=38113835</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38113835</guid></item><item><title><![CDATA[New comment by riddleronroof in "Talk-Llama"]]></title><description><![CDATA[
<p>ollama wraps llama.cpp into a docker container, correct?
Besides that it seeks like a go server for chat?</p>
]]></description><pubDate>Thu, 02 Nov 2023 14:06:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=38113691</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=38113691</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38113691</guid></item><item><title><![CDATA[Show HN: Logos Shift Cloud – automatically finetune and replace expensive LLM]]></title><description><![CDATA[
<p>Great LLMs are best at general tasks.<p>However, once you know what you want, you should finetune and switch to your finetuned LLM.<p>Logos Shift Cloud handles this automatically<p>All you need is to add this to your call:<p>```
@logos_shift(dataset="story")
def get_story(model, messages):
    """Generates a story"""
    completion = expensiveLLM.create(model=model, messages=messages)
    story_d = {'story': completion['choices'][0]['message']}
    return story_d
```<p>This will automatically log all inputs and outputs to this function unobtrusively.
Once your model is ready, it will automatically A/B rollout your finetuned LLM.<p>No code changes necessary.
Enjoy faster and cheaper results.<p>No proxies so you don't add one more dependency. 
The client code is open sourced at <a href="https://github.com/virevolai/logos-shift-client/">https://github.com/virevolai/logos-shift-client/</a> which includes the instrumentation, router for switching, and exactly how this works.<p>It's only 530 lines of code. No complex libraries.<p>If you do not want to use the Cloud solution, you can always just use Logos Shift for saving to local host and finetune yourself.<p>```
logos_shift = LogosShift(api_key=None, filename="api_calls.log")
```<p>Let us know how we can make this experience better.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=38070726">https://news.ycombinator.com/item?id=38070726</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 30 Oct 2023 15:32:28 +0000</pubDate><link>https://api.bohita.com/</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=38070726</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38070726</guid></item><item><title><![CDATA[Show HN: Logos Shift – Finetune your own LLM and rollout seamlessly, local/cloud]]></title><description><![CDATA[
<p>Introducing Logos Shift, an open source Python library designed to transform how developers integrate Large Language Models (LLMs) into production systems.<p>General purpose LLMs are very expensive. You can finetune and rollout your own at a fraction of the cost. We can do it for you too.<p>Highlights of Logos Shift:<p>Automated Rollout: With just a single line of code, you can integrate your fine-tuned LLMs, and we handle the rest. Our automated rollout system ensures that your model is deployed smoothly, and we'll notify you the moment it's production-ready.<p>Automated A/B Testing: Test the waters with our effortless A/B rollout, activated as soon as your model achieves optimal readiness. Skip the manual steps and dive straight into performance evaluation. This code is in the open source, no black boxes.<p>Feedback-Driven Fine-Tuning: Continuously refine your model's performance based on real outcomes. Your feedback directly influences future rollouts and fine-tuning, aligning model performance with your actual needs.<p>For Hackers and Developers:<p>Build Your Own or Leverage Bohita: The power of choice is in your hands. Save your data locally and finetune your model on your terms, or let Bohita’s servers amplify your capabilities with our full suite of services.<p>Your Keys, Your Control: Your OpenAI key remains securely in your possession, ensuring complete confidentiality and integrity of your data.<p>Open Source and Community-Driven: Logos Shift is not just a tool; it’s a community. Dive into the open-source code, tailor it to your needs, and join a network of hackers and developers passionate about pushing the boundaries of LLM integration.<p>Getting Started is a Breeze:
Installation is as simple as running pip install logos_shift_client. Dive into our documentation and explore the GitHub repository to kickstart your journey.<p>We can't wait to see what you'll build with Logos Shift. Questions, feedback, or high-fives? We’re all ears!<p>Happy hacking,
The Bohita Team<p><a href="https://api.bohita.com" rel="nofollow noreferrer">https://api.bohita.com</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=38027295">https://news.ycombinator.com/item?id=38027295</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 26 Oct 2023 15:52:36 +0000</pubDate><link>https://github.com/virevolai/logos-shift-client</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=38027295</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38027295</guid></item><item><title><![CDATA[New comment by riddleronroof in "India's biggest tech centers named as cyber crime hotspots"]]></title><description><![CDATA[
<p>Very odd that criminals go where the money is</p>
]]></description><pubDate>Thu, 21 Sep 2023 13:36:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=37597423</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=37597423</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37597423</guid></item><item><title><![CDATA[New comment by riddleronroof in "US aircraft shoots down new airborne object over Canada"]]></title><description><![CDATA[
<p>What are the chances these are warnings by another power for Ukraine?</p>
]]></description><pubDate>Sun, 12 Feb 2023 01:45:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=34758643</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=34758643</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34758643</guid></item><item><title><![CDATA[New comment by riddleronroof in "Long Covid is keeping significant numbers of people out of work, study finds"]]></title><description><![CDATA[
<p>No no it’s called “quiet quitting”</p>
]]></description><pubDate>Thu, 26 Jan 2023 21:03:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=34538805</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=34538805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34538805</guid></item><item><title><![CDATA[New comment by riddleronroof in "Is tipping getting out of control? Many consumers say yes"]]></title><description><![CDATA[
<p>So it used to be 18% off the base.<p>But credit card receipts show 18% off the price + tax, effectively 20-25%<p>Most don’t do the math, just pay.</p>
]]></description><pubDate>Tue, 24 Jan 2023 00:52:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=34497495</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=34497495</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34497495</guid></item><item><title><![CDATA[New comment by riddleronroof in "Ask HN: Why did back-end development explode in complexity?"]]></title><description><![CDATA[
<p>Funny. I am a backend engineer and think so about front end.</p>
]]></description><pubDate>Tue, 03 Jan 2023 03:01:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=34227024</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=34227024</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34227024</guid></item><item><title><![CDATA[New comment by riddleronroof in "Pixi3D – 3D rendering library for the web"]]></title><description><![CDATA[
<p>Amazing project!
Looks like it needs to control the DOM.
Is there a way to use this with react?</p>
]]></description><pubDate>Thu, 22 Dec 2022 01:54:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=34088771</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=34088771</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34088771</guid></item><item><title><![CDATA[New comment by riddleronroof in "WebAssembly: Docker Without Containers"]]></title><description><![CDATA[
<p>Thank you for these details.
Always suspected these claims but hadn’t dug deep enough.<p>Seems like some X can now run in wasm should come with disclaimer (includes Linux)</p>
]]></description><pubDate>Wed, 21 Dec 2022 14:36:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=34081221</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=34081221</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34081221</guid></item><item><title><![CDATA[New comment by riddleronroof in "Artificial womb facility concept for 30k babies per year"]]></title><description><![CDATA[
<p>Is this even real?</p>
]]></description><pubDate>Mon, 12 Dec 2022 16:02:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=33956150</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=33956150</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33956150</guid></item><item><title><![CDATA[New comment by riddleronroof in "India fines Google $162M for anti-competitive practices on Android"]]></title><description><![CDATA[
<p>In other words, Ambani’s Reliance co will launch search next month.</p>
]]></description><pubDate>Thu, 20 Oct 2022 17:21:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=33277828</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=33277828</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33277828</guid></item><item><title><![CDATA[New comment by riddleronroof in "WebVM: WASM virtual machine in browser with networking via Tailscale"]]></title><description><![CDATA[
<p>Nice work with go.
There is this for python in webassembly as well : <a href="https://pyodide.org/en/stable/index.html" rel="nofollow">https://pyodide.org/en/stable/index.html</a></p>
]]></description><pubDate>Fri, 07 Oct 2022 03:41:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=33117173</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=33117173</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33117173</guid></item><item><title><![CDATA[New comment by riddleronroof in "Should billboard advertising be banned?"]]></title><description><![CDATA[
<p>They don’t need to be, because they are obsolete.
Online accounts for most.
And in-person are going to change to drones / smart billboards.</p>
]]></description><pubDate>Wed, 05 Oct 2022 14:33:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=33096063</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=33096063</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33096063</guid></item><item><title><![CDATA[New comment by riddleronroof in "Figma: A Random Walk in Palo Alto"]]></title><description><![CDATA[
<p>Repeat of what?</p>
]]></description><pubDate>Mon, 19 Sep 2022 01:01:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=32893082</link><dc:creator>riddleronroof</dc:creator><comments>https://news.ycombinator.com/item?id=32893082</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32893082</guid></item></channel></rss>