Growing India News, world news, nation news, our news, people's news, grow news, entertainment, fashion, movies, tech, automobile and many more..
Wednesday, June 29, 2022
Show HN: The Fastest Slider library for high performance websites https://ift.tt/NnGiTW7
Show HN: The Fastest Slider library for high performance websites https://ift.tt/KviAO3u June 29, 2022 at 01:42AM
Show HN: Flookup – Data cleaning by fuzzy matching https://ift.tt/w6OpzhR
Show HN: Flookup – Data cleaning by fuzzy matching Hello HN! It has been about three years since I launched this current iteration of my Google Sheets add-on called Flookup. I'm a solo developer and, currently, I handle absolutely everything to do with Flookup from writing code, designing the user interface, replying support emails and even marketing. It is quite a lot of work but very satisfying when I see how helpful it has been to my userbase. Before Flookup, there was only one prominent Google Sheets add-on that could be used for data cleaning (to a certain degree) but, luckily for men, it had left a gap in its functionality that I was very glad to fill. To develop Flookup, I had to write a new algorithm from the ground up in order to make it more useful to my userbase. Originally, this userbase comprised me and a small team at an organisation I was working for but, today, that number has grown to at least 10,000 Daily Active Users all over the world (except Antarctica). What is Flookup? It is an add-on that uses fuzzy matching algorithms to power its data cleaning functions. Flookup's functions allow you to match or merge tables without worrying about how uniform your data is. You can also highlight and remove duplicates even if the text contains typos, punctuations marks or spelling differences. So, today, I'm inviting you to try it out and let me know what you think... here is the link: > https://ift.tt/xb7M0yO Your free trial is free and unlimited. Thank you; I hope you like it! June 29, 2022 at 01:37AM
Show HN: Inngest – an open-source event-driven queue https://ift.tt/LgPWlmB
Show HN: Inngest – an open-source event-driven queue Hi HN! We’re Tony and Dan, the founders of Inngest - https://www.inngest.com. We’re an event-driven queueing system. Existing queueing solutions have pretty terrible UX. We solve this by making it simple for you to write delayed or background jobs by triggering step functions from JSON-based events. At a high level, Inngest does two things: - Ingest events from your systems via HTTP (pun intended) - Triggers serverless functions in response to specific events — async, either immediately or delayed. This allows you to build out async functions (eg. background jobs, handling webhooks) much faster, without worrying about config, queues, scaffolding, boilerplate, or infra. Because of the decoupling, it also means cleaner code. We talk about the benefits here [1]. Previously, Tony ran engineering at https://ift.tt/7noytCv and Dan was the CTO of https://buffer.com/. At both places, we had to build and manage a lot of complex async logic. You could say that Buffer is one big queue, and at Uniform we had lots of logic to run for compliance… managed via queues. So we're very familiar with the problem. Technicals and how it’s different: Functions are declarative. They specify which events trigger them, with optional conditionals. This is great because you can then deploy functions independently from your core systems, and you get things like canary deploys, plus immediate rollbacks. Each function can have many steps, represented as a DAG. Each step can be any code — an AWS function, custom code in a container, an HTTP call, etc. Edges of the DAG can also have conditions for traversal, and can “pause” until another event comes in, with TTLs and timeout (eg. after signup, run step 1, wait for a user to do something else, then run the next step). Because the functions are event driven, we also statically type and version events for you. This lets you inspect and generate SDKs for events, or to fail early on invalid data. It also lets you replay functions, test with historical data, or deploy functions and re-run historical events. Architecturally, we’ve focused on simple standards that are easy to learn and adopt. Events are published via HTTP requests. Functions use args & stdout. You can get started without knowing any implementation details. You only need to send events via POST requests and write functions that react to them — nothing else required. What people use us for: - A replacement for their current queueing infrastructure (eg. celery). - Running functions after receiving webhooks - Running business logic when users perform specific actions (eg. publishing things at a specific time) - Handling coordinated logic (eg. when a user signs up, wait for a specific event to come in then run another step) Where we’re at: We’ve open sourced our core execution engine [2], which allows you to run an in-memory environment locally with a single command. We’re working on opening more and more of the platform to allow you to self host — that’s currently our main goal. Right now, you can use us “serverless”. Because we record function state, we charge per ‘step’ of a function invoked. We’ve documented our core OS architecture [3], and we’ve also released the function spec and interfaces in our repo. We’ve talked more about about goals, vision, and why in our open sourcing post [4]. There’s also a minimal demo w/ a Next.js backend [5]. We know we’re far from feature complete. There’s so much more we can do. If there’s things you’d like to see, feedback, or improvements, please let us know — we’d love to hear from you and make this better, and get your initial thoughts. [1]: https://ift.tt/tbIp921 [2]: https://ift.tt/Dp7GVhv [3]: https://ift.tt/7xZfKSq [4]: https://ift.tt/bFAVIHE [5]: https://ift.tt/gjYRoNJ June 28, 2022 at 11:19PM
Show HN: We made a fast audio editor for podcasting https://ift.tt/qToWcmQ
Show HN: We made a fast audio editor for podcasting https://teapodo.com/ June 28, 2022 at 02:14PM
Tuesday, June 28, 2022
Show HN: Bible Semantic Search https://ift.tt/wFTd7zC
Show HN: Bible Semantic Search https://ift.tt/EcuLvhd June 28, 2022 at 08:18AM
Show HN: I stripped DALL·E Mini to its bare essentials and converted it to Torch https://ift.tt/pt6f3aP
Show HN: I stripped DALL·E Mini to its bare essentials and converted it to Torch https://ift.tt/EU0pcdD June 28, 2022 at 06:57AM
Show HN: WebExtension Playground https://ift.tt/zZOb9N2
Show HN: WebExtension Playground https://ift.tt/VGJlKae June 28, 2022 at 04:35AM
Subscribe to:
Posts (Atom)
Show HN: Petri – Drop-in Postgres image that forks a DB per test https://ift.tt/APIWNEf
Show HN: Petri – Drop-in Postgres image that forks a DB per test Rolling it out at work to parallelize 4,257 tests across 5 services. It fix...