This is a autopost bolg frinds we are trying to all latest sports,news,all new update provide for you
Saturday, November 4, 2023
Show HN: Cami.js – A No Build, Web Component Based Reactive Framework https://ift.tt/5Lt8izA
Show HN: Cami.js – A No Build, Web Component Based Reactive Framework Hi Everyone! My main motivation for making this was that I wanted something as powerful as Svelte or React but I wanted no build steps, no JSON API, and I wanted something as close to vanilla js as much as possible. I'm mainly a backend developer, and I wanted to simply return html with some interactive islands when I need to (whose components get 'hydrated' with by backend language's templates). Some key ideas: • It's centered around light dom web components • Uses a "reactive element", which uses observables for fine-grained reactivity • Rendering is done through lit-html's tagged templates • A pub/sub store • Easy immutability using immer (it powers the observable updates & also the reducers) It's my first 'serious' library that I'm using in some work prototypes, and it's also my first 'real' open source project, so comments & feedback would be great! https://ift.tt/JFY05oZ November 5, 2023 at 12:03AM
Friday, November 3, 2023
Show HN: GitInsights – a weekly summary email of your team's GitHub activity https://ift.tt/wIbARUN
Show HN: GitInsights – a weekly summary email of your team's GitHub activity https://gitinsights.io/ November 4, 2023 at 01:45AM
Show HN: Chat with Garry Tan using RAG on his YouTube channel https://ift.tt/Xipys3G
Show HN: Chat with Garry Tan using RAG on his YouTube channel https://ift.tt/LrXzROZ November 4, 2023 at 01:29AM
Show HN: MicroLua – Lua for the RP2040 Microcontroller https://ift.tt/ueYdK76
Show HN: MicroLua – Lua for the RP2040 Microcontroller MicroLua allows programming the RP2040 microcontroller in Lua. It packages the latest Lua interpreter with bindings for the Pico SDK and a cooperative threading library. MicroLua is licensed under the MIT license. I wanted to learn about Lua and about the RP2040 microcontroller. This is the result :) https://ift.tt/ZD7yKEL November 4, 2023 at 12:15AM
Thursday, November 2, 2023
Show HN: I Bluefin: Using the ultimate developer Linux https://ift.tt/mvVCy0D
Show HN: I Bluefin: Using the ultimate developer Linux This article goes over some of the decisions we made creating Bluefin DX - a developer-centric Linux that reimagines the distro with cloud-native tooling. https://ift.tt/trxE2QZ November 2, 2023 at 09:50PM
Show HN: Internet Speed Test https://ift.tt/rYSc9PV
Show HN: Internet Speed Test https://ift.tt/n2LAXg9 November 3, 2023 at 07:50AM
Show HN: Dashboard for Minimalists https://ift.tt/wOcHd7u
Show HN: Dashboard for Minimalists https://www.dashb.io November 3, 2023 at 05:33AM
Show HN: Unlock Your Productivity Potential https://ift.tt/7Bw1rMQ
Show HN: Unlock Your Productivity Potential Leave Feedback https://ift.tt/N5qAymO November 2, 2023 at 11:41PM
Wednesday, November 1, 2023
Show HN: An AI courthouse to resolve arguments with your friends https://ift.tt/3FzT9bO
Show HN: An AI courthouse to resolve arguments with your friends An AI judge will rule on your dispute between friends, roommates, or lovers (ok, maybe not lovers). https://ift.tt/poGT70k November 2, 2023 at 12:30AM
Show HN: EdgeDB Cloud and 4.0 with FTS and Auth https://ift.tt/fzrAk5Q
Show HN: EdgeDB Cloud and 4.0 with FTS and Auth Hi there! This is Yury, a co-founder. We've been busy for a while building EdgeDB Cloud and now it's finally here. EdgeDB Cloud is pretty cool and takes full advantage of our database. You get declarative schema, strict typing throughout, great performance, a query language that's best of GraphQL & SQL, and many many other perks. The Cloud itself is quite unique because of EdgeDB. Our query language gives you composability - so you can fetch everything for your page or API endpoint in one network request. And our protocol and client libraries give you auto recovery on network errors, automatic transaction retry, built-in transparent connection pooling, and many other benefits. Check out the blog post where we explain it all. And watch the currently ongoing YouTube Premiere of the launch! https://ift.tt/lyxG9q3 November 1, 2023 at 10:57PM
Tuesday, October 31, 2023
Show HN: My wife and I built a Halloween game https://ift.tt/dscWimz
Show HN: My wife and I built a Halloween game Happy Halloween! Instead of going to a Halloween party this year, my wife and I decided to run a tiny Hackathon and built this little retro choose-your-own-adventure to pay tribute to a popular series of yesteryear. Try and escape! Also pumpkin mode!! We made liberal use of ChatGPT for code, DALLE3/Midjourney for images, but did most of the storyboarding/writing ourselves because we couldn't stand the style of GPT4/Claude. https://ift.tt/hgbVesm November 1, 2023 at 05:08AM
Show HN: JS Local-only AI Apps starter kit: cost $0 to run and test locally https://ift.tt/IgwuXGj
Show HN: JS Local-only AI Apps starter kit: cost $0 to run and test locally Hi HN! Here's a local-only stack I built over the weekend - hope it can be useful for you! I have been building a lot of AI apps - https://ift.tt/uJCUXpt https://ift.tt/X1sK9Vn ... And there were definitely times I spent way too much $$ before deploying the app to production. So I was looking for a "local only" stack and found a few tools that worked well together. I used the following set of tools but may add more options later: - Inference: Ollama - VectorDB: Supabase pg-vector - LLM orchestration: langchain - Framework: nextjs My learning from building ai-town was also that many people don't have the luxury of swiping a credit card to test an app with a lot of AI workloads -- not surprisingly, many models on Ollama are already very good - I used llama2-7b for majority of my dev work. Hope this can lower the barrier to entry for building AI apps. :) https://ift.tt/TQtpC14 October 31, 2023 at 10:12PM
Show HN: An instantly usable To-Do List desktop Web App, no sign-up/log-in https://ift.tt/rYFQoBG
Show HN: An instantly usable To-Do List desktop Web App, no sign-up/log-in ... by saving data in the URL, base64 encoded. About a year ago I wanted a fast, simple, throwaway, no sign-up/log-in To-Do List at my fingertips at work, I couldn't find one so I built one myself, in a quick and dirty way. Recently I decided to release to public, so I rewrote, productise it a bit, added markdown support, added dark mode, added extension for chromium browsers etc, and this is it. May you find this small utility website useful if you happen to need something like this as well. Some tech & non-tech bullets - Pure static website - Data goes up to URL on updating, base64 encoded, non-hashed spa style - Rewrote with React & Redux - ChatGPT assistance for markdown parsing, regex and its unit testing - Playwright for testing - CDN with AWS CloudFront Any feedback and comments are appreciated. ---- A note on saving data in the URL, To-Do lists usually wouldn't be too long so saving its data in URL seems a natural fit, plus my initial sketchy research showed ff max URL is 64k and chrome can go MBs. But actually in real world, if you take server and CDNs into consideration, 8k seems to be a de facto limit ( https://ift.tt/X0udlmn ), still enough for usual todo lists :) Previous discussions on HN about saving data in URL, https://ift.tt/zSc5vdn , https://ift.tt/kGnXTPl , https://ift.tt/GO4UPs3 https://2doli.st/ November 1, 2023 at 03:10AM
Show HN: Undead – scary fast, bewitching web pages on the JVM with no JavaScript https://ift.tt/sa8NHgS
Show HN: Undead – scary fast, bewitching web pages on the JVM with no JavaScript Hey HN. I wrote a LiveView implementation for the JVM called Undead. (The name Undead is a play on the "Live" part of LiveViews.) I had been waiting for the new StringTemplates feature of Java 21 which made it scary-easy to get the right data structures to make things work. It's been enchanting to write Java after about ten years in Javascript and Go lands. Would love folks to try it out and lmk what you think. If you aren't too scared that is. ;) https://ift.tt/eba7I1t October 31, 2023 at 10:46PM
Monday, October 30, 2023
Show HN: Online code editor for creating mobile apps https://ift.tt/9kzSXtu
Show HN: Online code editor for creating mobile apps https://ift.tt/BOhJjYs October 31, 2023 at 12:31AM
Show HN: Unlogged (YC S22) – open-source record and replay for Java https://ift.tt/xi52ezv
Show HN: Unlogged (YC S22) – open-source record and replay for Java Hello HN! Parth, and Shardul here. We have been building unlogged.io for the last 21 months. We started as a time travel debugger and pivoted to record and replay with assertions, mocking, and code coverage. You can save the replays in the form of a JSON and commit them to your git. Both Parth and I come from an e-commerce/payments background where production bugs meant heavy financial losses. Big billion days/Black Friday sales meant months of code freezes with low productivity. Before committing the code, we wanted to replay production traffic and know the breaking changes right away, like in sub-second. Kind of like unit+integration tests on steroids. So, we built an SDK that adds probes to the code in compile time. The SDK logs code execution, in detail. Git: https://ift.tt/hz26fNE We also built an IDE plugin that keeps monitoring code changes, hot reloads these changes, replays the relevant methods, and alerts on failing replays. It also lets developers call Java methods directly, mock downstream methods in run time, highlight code coverage in real-time, and show performance numbers for methods with inlay hints. (right above each method) Git: https://ift.tt/HOrh6Uv We are excited to launch the first version of our product that replays with assertions + mocking + code coverage reports right inside the IDE. Link to our IntelliJ plugin: https://ift.tt/nyU1EWq Record and Replay Demo: https://www.youtube.com/watch?v=muCyE-doEB0 Define Assertions on Replay: https://www.youtube.com/watch?v=YKsi1p634-M Track Code Coverage: https://www.youtube.com/watch?v=NMmp954kfaU Generate JUnit Test Cases: https://www.youtube.com/watch?v=rTUmg5b1Z_Q Mocking when replaying: https://www.youtube.com/watch?v=O_aqU1u-Kmw Documentation: https://ift.tt/O0u4LSw Roadmap: 1. Create a production logger -So that the performance impact is minimal -out of the box masking PII from production logs -creating meaningful input/return value combinations from production traffic to be replayed locally. 2. Creating a CI test runner that can integrate with CI/CD pipelines. 3. Auto-Replaying API endpoints of only the changed code. 4. Real-time alerts for the performance impact of code changes. 5. Creating a dashboard with reports, email/slack alerts. October 30, 2023 at 09:47PM
Show HN: Launch a private Ethereum Testnet with all clients and MEV infra https://ift.tt/E10xuAN
Show HN: Launch a private Ethereum Testnet with all clients and MEV infra We've been working with the Ethereum Foundation & Flashbots to build tooling and infrastructure for developers to test various workflows for Ethereum. As part of that work, anyone can now spin up a local Ethereum dev net with the entire Flashbots mev-boost infra (relayer, builder, boost) using the ethereum-package. This package supports all EL and CL client types, works on Kubernetes for scale testing, and comes with a few bells and whistles like metrics, mock-builders, and beacon chain explorers. This is the de-facto tool for teams modifying and testing the consensus layer. Here's a full tutorial - https://ift.tt/pvo2wUe... https://ift.tt/S1pjb2H October 30, 2023 at 11:22PM
Sunday, October 29, 2023
Show HN: I’m writing a “US Banking and Credit for Foreigners” guide https://ift.tt/Q7yFaDO
Show HN: I’m writing a “US Banking and Credit for Foreigners” guide So I’m writing a guide about accessing US Banking & Credit as a non-US resident. It’s work-in-progress but the first couple of chapters are accessible for everybody. Any feedback is appreciated! https://ift.tt/8sXb1Dh October 30, 2023 at 01:08AM
Show HN: Newslater – A Personal Newsletter Generator https://ift.tt/m7uPlBp
Show HN: Newslater – A Personal Newsletter Generator Inspired by my ability to collect articles from HN that I wanted to read, but never getting around to reading them, I built Newslater. You add the articles you want to read to your reading list, and Newslater will email you a newsletter containing summaries of 5 of your articles sent at a time you choose. My aim was to create a tl;dr newsletter from articles you are actually interested in. The app is free, has no ads, and is available on Android and iOS: https://ift.tt/J5nbshD https://ift.tt/xFA9bYy It’s a bit rough, but I thought some others may be interested in giving it a go. You can see examples of the newsletters it generates here too https://newslater.co/ October 29, 2023 at 09:33PM
Show HN: Mify – CLI that generates and maintains your backend infra code https://ift.tt/4INU2Y6
Show HN: Mify – CLI that generates and maintains your backend infra code Hello, for the past couple of months, we've been developing Mify and I wanted to share it with the people here. We've been writing backends for multiple different big and small companies and noticed that backend development progresses in way too similar cycles. At first people write a small set of services or in better case a single service to do what's needed. At some point the tech debt becomes too much of a hassle to handle as company grows, engineers are starting to scale the codebase, rewriting code, splitting monolith, introducing microservices and eventually after a bunch of iterations like that, people write some sort of in-house internal developer platform to quickly spin up services. The amount of effort it takes to go through this is really unnecessary. Every team needs to get a bunch of libraries for storage, configuration, logging, metrics, etc and duct tape them all together until it works, then write boilerplate for all of that, and then there's also infrastructure code and configs to set up deployment. So, we think that it doesn't have to be that way and that's why we wrote Mify, which is an open-source tool that generated and maintains all boilerplate code for the necessary building blocks of a backend service and help with deployment. Even at this early stage Mify can save a lot of development time, so check it out, we would appreciate your feedback! https://ift.tt/9sxScyH October 30, 2023 at 01:29AM
Subscribe to:
Posts (Atom)
Show HN: Nibble https://ift.tt/fN5T23V
Show HN: Nibble An attempt at a single pass LLVM frontend in ~3000 lines of C without external dependencies, malloc, or an AST. Included are...
-
Show HN: A directory of 800 free APIs, no auth required Explore reliable free APIs for developers — ideal for web and software development, ...
-
Show HN: I built Dirac, Hash Anchored AST native coding agent, costs -64.8 pct Fully open source, a hard fork of cline. Full evals on the gi...
-
Show HN: I built a FOSS tool to run your Steam games in the Cloud I wanted to play my Steam games but my aging PC couldn’t keep up, so I bui...