36,847 results for end · 2.649s

News for “end”
16 results • 2644 ms server time
Moozonian News
bing.com• Aug 21, 2026• 1 min read
Statistics CalculatorStay updated with the latest breaking news, live updates, photos, videos and top trending stories from India and around the world across politics, economy, sports and more on The Economic Times.
Moozonian News
bing.com• Aug 21, 2026• 1 min read
Jean Ann BarensJean Ann Barens was born February 6, 1932, in Glendale, California. She was the daughter of Charles and Georgette Switzer. She has a sister Ellen Montgomery, and she had a brother John Switzer who ...
Advertisement
Moozonian News
github.com• Aug 21, 2026• 1 min read
Show HN: Steganeur – Hide secret messages in LLM-generated text (Rust)Hi HN! I made a project that I found really fun and I'm proud of the idea and implementation. This first came up when speaking to a friend, we were talking around how to do steganography in natural text, and realized an LLM's token choices are a natural channel.Steganeur accomplishes this by encoding a secret message into the token choices of a language model, producing cover text that reads like a normal sentence. A recipient recovers the message using only the cover text and the model. With the rejection method, the output is statistically identical to normal generation, not just something that looks similar.The interesting problem I hit: steganeur reads the model's logprobs directly, and three of the four methods need them to come out exactly the same on encode and decode. On GPU reductions are non-deterministic, so the logprobs drift between runs, which is enough to corrupt the bits. Only one method (block) survives on GPU, because it bins tokens by their id rather than by probabil
Moozonian News
bing.com• Aug 21, 2026• 1 min read
Football stars turn to chess for tactical edgeLegendary Manchester United manager Alex Ferguson (85) once said, “Football and chess are alike.” This is because both require relentless exploitation of an opponent’s weaknesses, and losing focus for ...
Moozonian News
telexpage.com• Aug 21, 2026• 1 min read
Show HN: Telex Page – Turn secrets into AES 256 encrypted PDFs, locallyHey! Every time I had to send something confidential, like a password, secret, .env, etc, I ended up using some openssl enchantment. It worked, but it was annoying for the team and impossible for my family.PDF docs already support strong AES 256 encryption and open pretty much everywhere. The annoying part was creating a doc and then jumping into a cli just to encrypt it.So I made telexpage.com. It runs 100% local in your browser and makes creating an encrypted PDF from a message as simple as possible. It works offline too.It's been really useful for me, hopefully it's useful for you too.Remember to send the password trough a different channel!
Moozonian News
github.com• Aug 21, 2026• 1 min read
Show HN: Bounded GenAI metrics from Otel traces with O raw promptsHi friends,Author here. Like to present a project I've been working on - Otelcol-GenAI-Sketches, a Otel connector that works on genai/agent traces, and summarizes them (via sketches), to produce:() exact request counts/totals for tokens; () distinct users/prompts (estimates) (*) 'heavy' items in terms of tokensWhy does this exist: I'm a data scientist by profession, and needed to look at Otel traces, but soon ran into cardinality and portability issues, along with privacy issues (raw prompts being transported elsewhere, like for analysis in a notebook env is a no-no). I wrote a sketchlib first (llm-sketchkit) and then the connector for Otel collectors.To try it out, just:(i) git clone https://github.com/llm-measurement/otelcol-genai-sketches.gi... (ii) cd otelcol-genai-sketches (iii) export GENAI_SKETCH_SECRET="$(openssl rand -hex 32)" (iv) make example-up (v) profit!This would start a demo app that includes a Otel collector, prometheus server/db and a grafana dashboard.The repos conta
Advertisement
Moozonian News
bing.com• Aug 21, 2026• 1 min read
NFL rumors: Ravens, Texans connected to $36M blockbuster tradeAfter officially placing WR Jayden Higgins on season-ending IR, the Houston Texans continue to be connected in the latest NFL rumors and projections on their next potential receiver acquisition. While ...
Moozonian News
bing.com• Aug 21, 2026• 1 min read
Hegseth Launches Attack on Free Press Over Carrier ScandalPete Hegseth’s Pentagon on Friday fired the publisher and editor of the independent military news outlet Stars and Stripes for “insubordination.” Long-time publisher Max Lederer and Editor-in-Chief ...
Moozonian News
github.com• Aug 21, 2026• 1 min read
Show HN: Chipmunk – Desktop Log Viewer Written in Rust and EguiHi,I just want to share the results of re-writing the front-end and application layer for Chipmunk logs-viewer desktop application.The app was originally an electron app with rust backend as node-module. The re-write replaced all electron and javascript with rust using egui framework.The re-write took me about 6 months, where I encountered multiple architectural challenges to work with an immediate rendering framework and connect it to an async backend running on tokio without using Mutex to avoid any potential dead-locks issue in the future.Please have a look to the demos of the app on GitHub and feel free to ask me questions about the re-write or using Rust and egui in production applications.