Wednesday, April 24, 2024

Tuesday, April 23, 2024

Show HN: Llama 3 with function calling and code interpreter https://ift.tt/k5Lf3HW

Show HN: Llama 3 with function calling and code interpreter https://ift.tt/icXPqls April 24, 2024 at 05:15AM

Show HN: Use LLMs to Interact with APIs https://ift.tt/sCvm4j7

Show HN: Use LLMs to Interact with APIs Recently featured in a LangChain blog https://ift.tt/v7Bfuje... , use LLMs to construct an API first runnable workflow with an IDE experience. https://ift.tt/3oK2tXQ April 24, 2024 at 03:53AM

Show HN: Storing Private Keys in the Browser Securely https://ift.tt/wCZ2GNK

Show HN: Storing Private Keys in the Browser Securely So the main purpose here is to show _a_ way that session-token theft can be mitigated. Clearly, this isn't NSA proof or something you'd use to secure a BL5 containment facility, but to prevent session-jacking; if feels like it could help a lot, and would be pretty quick and easy to roll out if an IDP wanted to implement it. https://ift.tt/XrUYbsc April 24, 2024 at 12:32AM

Monday, April 22, 2024

Show HN: Source Code for CSVs https://ift.tt/sTIrjM6

Show HN: Source Code for CSVs https://ift.tt/chDqolP April 22, 2024 at 05:30PM

Show HN: Metashade – a Pythonic GPU shading/compute EDSL https://ift.tt/ynMqEYP

Show HN: Metashade – a Pythonic GPU shading/compute EDSL Superficially, it may look similar to Nvidia's Warp or OpenAI's Triton, but instead of transpiling a subset of Python to the target language, it implements dynamic codegen in pure Python. These slides discuss the existing GPU programming solutions and make a case for Metashade's approach: https://ift.tt/9enzb6N... https://ift.tt/BvxgTmd April 22, 2024 at 04:51AM

Show HN: Wonkypedia - Wikipedia from an Alternate Timeline https://ift.tt/FmpcRTB

Show HN: Wonkypedia - Wikipedia from an Alternate Timeline https://ift.tt/WaABXIx April 23, 2024 at 01:26AM

Show HN: Auto-optimizing deterministic LLM outputs using knowledge graphs https://ift.tt/cVsnF9k

Show HN: Auto-optimizing deterministic LLM outputs using knowledge graphs Hi, We are building an open-source framework for loading and structuring LLM context to create accurate and explainable LLM answers using knowledge graphs and vector stores. We built the tool with four main concepts in mind: 1. Loader -> uses dlt in the backend to load and structure the data 2. Cognify step -> creates a graph with summaries, labels and factoids that are interconnected across the documents and stored as a representation in the vector store 3. Optimizer -> Uses DSPy to optimize LLM queries, and we plan to extend it to most of the knobs we can turn, like chunking etc. 4. Search -> allows for searching using search types supported in graph stores (ex. Neo4j) or hybrid, BM25, or other search types available in vector stores. We are quite early with the product but we would love to hear feedback on what we can improve. https://ift.tt/iymv0eR April 22, 2024 at 11:55PM

Sunday, April 21, 2024

Show HN: Fast Calendar Algorithms https://ift.tt/y2I4WSr

Show HN: Fast Calendar Algorithms I've done this work not long ago and I reckon that the name of the github repo doesn't help people searching for calendar algorithms. (Too late to change it now.) The name of the repo, eaf, comes from Euclidean Affine Functions which are the type of functions behind the algorithms. https://ift.tt/SRNLV6B April 22, 2024 at 06:32AM

Show HN: LLaMA 3 tokenizer runs in the browser https://ift.tt/i2Fo940

Show HN: LLaMA 3 tokenizer runs in the browser https://ift.tt/OdcMLeq April 22, 2024 at 05:07AM

Show HN: AppView 1.0.0 is released Instrument, Observe, Secure your deployments https://ift.tt/HiJrcYS

Show HN: AppView 1.0.0 is released Instrument, Observe, Secure your deployments AppView is an open source, runtime-agnostic instrumentation utility for any Linux command or application. It helps users to explore, understand, and gain visibility with no code modification. With one instrumentation approach for all runtimes, AppView offers ubiquitous, unified instrumentation of any unmodified Linux executable. With AppView 1.0.0 comes the new threat detection logic that allows users to capture security-related events. Is your application accessing secure files? Is it making connections it shouldn't be? Is it exfiltrating data over DNS or is GOT poisoning in effect? Other features of the 1.0.0 release include the ability to: - Generate metrics on process and application performance. - Generate events, reporting on network, file, logs, console messages and http/s activity. - Capture (decrypted) payload data without the need for keys. - Generate a stack trace, and a core dump when an application crashes. - Generate network flow information. - Create a report on unique file and network activity. - Install AppView in a Kubernetes cluster. - Secure file and network access in an application. - Instrument both static and dynamic executables. - Attach to processes while they are running or start when the process does. - Normalize and forward metrics and events, in real time, to remote systems. - Summarize metrics and detect protocols. We are looking for users and contributors alike. https://appview.org/ April 21, 2024 at 10:52PM

Show HN: What Are You Working On? https://ift.tt/KpGwhvQ

Show HN: What Are You Working On? Hey HN, I'm sure you've seen the monthly "Ask HN: What Are You Working On?" headlines on [Hacker News]( https://ift.tt/kuHOVCQ... ). Honestly, it's my favorite topic because it's packed with insights about what other hackers are up to. I wondered what it would be like if instead of just a headline, there was a whole website where hackers could post daily updates, and where we could follow the hackers we're interested in for their latest updates. And so, this web site was born. I hope it gets used frequently so we can all benefit from it together. I look forward to hearing your thoughts. Let me know what you think! https://ift.tt/4acdygo April 21, 2024 at 05:13PM

Show HN: We relaunched the Official MTA App for NYC public transit https://ift.tt/276Njeu

Show HN: We relaunched the Official MTA App for NYC public transit https://ift.tt/zKmOBL5 April 19, 2024 at 10:16PM

Saturday, April 20, 2024

Friday, April 19, 2024

Show HN: I built a small utility that handles multiple browser instances for you https://ift.tt/0Dn9hzW

Show HN: I built a small utility that handles multiple browser instances for you I'm a consultant and I normally deal with multiple clients. I need an isolated browser for each to maintain my sanity. I could create separate profiles in Chrome and Firefox but the main issue is when you click on a link outside of the browser (e.g. in your IDE), in which profile should it be opened? I wrote a Python script that redirects URLs to the correct browser instance and set it as my default browser. Over time, the script has grown and become essential to my work. I cleaned it up and open-sourced it. Hope that someone else may find it useful too! https://ift.tt/4BKuUsI April 20, 2024 at 06:33AM

Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code https://ift.tt/GQauRgE

Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code Hi All, Recently I've been using Claude Code a lot for de...