Kimi code with the .99 Cent plan is not to bad if you're savy
HN user
raffkede
it even runs inside a browser I'll publish my browserpi if someone is interested I did not dare to add a pull request with my slop but i would love to show the fork and create a pull request if there is broader interest
That was fast! Saw u added it! :)
I tried buying a domain on OVH and the experience was shitty was forwarded between different versions of the page GB etc and could not finish the checkout
Seems this page is not eu compliant anyway since there is no info who owns it
I see a lot of Qwen3 in us west 2 And i have no experience with custom model on bedrock
At this point, where Kimi K2.5 on Bedrock with a simple open source harness like pi is almost as good the big labs will soon have to compete for users,... openai seems to know that already? While anthropic bans bans bans
Also the .99c deal has API Access
Or self host the oss models on the second hand GPU and RAM that's left when the big labs implode
Skills is actually what also Claude code uses internally, it's cool because the llm will load the whole context on how to use it only on demand and keeps the context cleaner.
.99 USD with the Kimi 2k5 deal
Didn't test this but the Design is too close to the original page
I think the slow feeling is a UI thing in codex
I would be surprised if Copilot is even close to that
And if I watch a movie it will pop up after 5 minutes
A Calculator won't increase your creativity directly but it will free resources that you can allocate to creativity!
Securikett | Senior Software Developer | Krems an der Donau (near Vienna), Austria (ONSITE)
Senior Fullstack Developer (1 UI/UX-focused role, 1 general role)
We are Securikett (https://www.securikett.com/), a 100% family-owned company in product protection and anti-counterfeiting. Beyond security labels, we are building a SaaS platform extending physical product protection into the digital world. The new system is already in production and will replace legacy systems over the next year. Software is a top strategic priority.
You’ll work in a small team (5 devs + 2 contractors) and own features end to end.
What you’ll do: build and evolve a SaaS product for international customers; React frontend (S3 + CloudFront); Java “lambdalith” backend on AWS Lambda (Java 25); UI/UX role: push UX quality and frontend maintainability.
What we’re looking for: 5+ years production experience; strong engineering fundamentals; Java + JavaScript (other languages ok); AWS experience a strong plus (everything as CDK IaC); comfortable working autonomously.
Tech / How we work: React, Java on AWS Lambda, serverless, strong focus on automated tests. “No Ops”, highly automated infrastructure, direct deploys to production, close collaboration with company owners.
Location: ONSITE in Krems an der Donau / Wachau region (near Vienna). Hybrid setup: ~40–60% home office after onboarding.
Compensation: €70k–€120k depending on experience. Austria offers strong public benefits (free childcare, kindergarten, universities), increasing effective compensation.
Apply: Email your CV and a short personal intro (no fluff) to raffael.kainersdorfer+hn@[companydomain].com I’m Raffael Kainersdorfer, Senior Developer / Tech Lead, personally involved in hiring.
Everyone shitting on this without looking should look at the creator, and/or try it out. I didn't really dive in but its extremely well integrated with a lot of channels, to big thing is all these onnectors that work out of the box. It's also security aware and warns on the startup what to do to keep it inside a boundary.
Will try again just tried once in the phone a few hours ago, other models were able to do quite a lot but usually missing some stuff this time it managed nested navigation quite well, lot of stuff missing for sure I just tested the basics with the play button in AI studio
Seems to be the first model that one-shots my secret benchmark about nested SQLite and it did it in 30s,
I created a script that merges all files in a directory into this format, and a counterpart that splits it again. Below is just a small sample I asked it to create to show the format, but I did it with almost 80 files including lots of documentation etc.
When providing the flat format it was able to replicate it without much instructions for a blank prompt i had success with the prompt below
===FILE=== Index: 1 Path: src/main/java/com/example/myapp/Greeter.java Length: 151 Content: package com.example.myapp;
public class Greeter { public String getGreeting() { return "Hello from the Greeter class!"; } } ===ENDFILE=== ===FILE=== Index: 2 Path: src/main/java/com/example/myapp/Main.java Length: 222 Content: package com.example.myapp;
public class Main { public static void main(String[] args) { Greeter greeter = new Greeter(); String message = greeter.getGreeting(); System.out.println("Main app says: " + message); } } ===ENDFILE=== ===FILE=== Index: 3 Path: pom.xml Length: 659 Content: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>my-simple-app</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
===ENDFILE===Prompt to request the format if starting from scratch: Present the entire codebase using the following multi-file format:
The codebase should be presented as a single, monolithic text output. Inside this output, represent each file of the project individually using the following structure:
Start Marker: Each file must begin with the exact line: ===FILE===
Metadata Block: Immediately following the start marker, include these four specific metadata lines, each on its own line:
Index: <N> (where <N> is a sequential integer index for the file, starting from 1).
Path: <path/to/file/filename.ext> (The full relative path of the file from the project's root directory, e.g., index.html, css/style.css, js/script.js, jobs.html, etc.).
Length: <L> (where <L> is the exact character count of the file's content that follows).
Content: (This literal line acts as a separator).
File Content: Immediately after the Content: line, include the entire raw content of the file. Preserve all original line breaks, indentation, and formatting exactly as it should appear in the actual file.
End Marker: Each file's section must end with the exact line: ===ENDFILE===
Ensure all necessary files for the project (HTML, CSS, JS) are included sequentially within the single output block according to this structure.
Crucially, enclose the entire multi-file output, starting from the very first ===FILE=== line down to the very last ===ENDFILE=== line, within a single Markdown fenced code block using exactly five backticks (`````) on the lines immediately before the first ===FILE=== and immediately after the last `===ENDFILE===`. This ensures that any triple backticks (```) within the generated file content are displayed correctly.
I had huge success letting Gemini 2.5 oneshot whole codebases in a single text file format and then split it up with a script. It's putting in work for like 5 minutes and spits out a working codebase, I also asked it to show of a little bit and it almost one shotted a java cloud service to generate pdf invoices from API calls, (made some minor mistakes but after feeding them back it fixed them)
I basically use two scripts one to flatten the whole codebase into one text file and one to split it, give it a shot it's amazing...
Infrastructure as Excel for Cloud Services:)
Have a look at roo cline I tested it with Claude sonnet it's scary I use llms a lot for coding but roo cline in vscode is a beast