This is a autopost bolg frinds we are trying to all latest sports,news,all new update provide for you
Saturday, May 20, 2023
Show HN: Drift, a self-hostable Gist and pastebin https://ift.tt/Uo01LwP
Show HN: Drift, a self-hostable Gist and pastebin https://drift.lol/ May 21, 2023 at 04:37AM
Show HN: What Electrons Look Like https://ift.tt/eUkQWVR
Show HN: What Electrons Look Like https://ift.tt/HGvf0rK May 20, 2023 at 11:32PM
Show HN: pg-bulk-ingest – Bulk ingest into PostgreSQL with high-watermarking https://ift.tt/eoOcs8Y
Show HN: pg-bulk-ingest – Bulk ingest into PostgreSQL with high-watermarking https://ift.tt/7LVqjhW May 20, 2023 at 11:13PM
Show HN: YouTube Full Text Search – Search all of a channel from the commandline https://ift.tt/txIfdp7
Show HN: YouTube Full Text Search – Search all of a channel from the commandline yt-fts is a simple python script that uses yt-dlp to scrape all of a youtube channels subtitles and load them into an sqlite database that is searchable from the command line. It allows you to query a channel for specific key word or phrase and will generate time stamped youtube urls to the video containing the keyword. https://ift.tt/BE1NfoU May 20, 2023 at 11:48AM
Friday, May 19, 2023
Show HN: Nonius Clock https://ift.tt/wzjoEpu
Show HN: Nonius Clock https://ift.tt/51srLtQ May 20, 2023 at 12:30AM
Show HN: Localias, securely manage local devserver aliases https://ift.tt/htzCsf0
Show HN: Localias, securely manage local devserver aliases Hey HN, Localias is a new tool that you can use to securely manage your local development servers. Use localias to securely proxy a local development server running on http://localhost:3000 and access it at https://frontend.test . Localias is built on top of Caddy, so it's secure and performant. And because it's built on top of Caddy, it will automatically generate and install a custom root certificate, and automatically generate and sign certificates for each of your aliases. This all works by editing your /etc/hosts file and generating a Caddy config, then running the proxy server for you either in the foreground or as a daemon. It's easier to deal with than running Caddy yourself. Your whole team can share a configuration file in your git repo, making it easier to share URLs with each other while developing. I hope you try it out and find it useful! The code is MIT-licensed and I'm happy to accept any feedback, feature requests, PRs, or comments. Have a good weekend, Peter https://ift.tt/QzbD2lu May 20, 2023 at 02:12AM
Show HN: Todo PWA with Pomodoro with keyboard friendly https://ift.tt/O7BCwD6
Show HN: Todo PWA with Pomodoro with keyboard friendly https://ift.tt/LEZRw5n May 20, 2023 at 02:05AM
Show HN: Garson.io – The privacy-first AI-powered writing assistant for Product https://ift.tt/BReEnQf
Show HN: Garson.io – The privacy-first AI-powered writing assistant for Product As a product manager, one of the biggest challenges is managing the constant influx of emails. While I am confident in my responses, I often spend a significant amount of time crafting a professional message, especially as a non-native English speaker. To address this issue, I turned to OpenAI and created https://garson.io . This platform has not only helped me improve the quality of my emails but has also significantly reduced the time it takes to write them. If you are facing similar struggles, I highly recommend giving Garson.ai a try – there is even a free option available. I would love to hear your feedback on how it works for you. P.S. The above text was generated by Garson.io https://garson.io May 19, 2023 at 05:18PM
Show HN: ReColor AI – Transform Your Sketches into Vibrant Art with AI https://ift.tt/wE3BsPK
Show HN: ReColor AI – Transform Your Sketches into Vibrant Art with AI https://recolorai.com/ May 19, 2023 at 03:39PM
Show HN: Numtease – My new number word puzzle game https://ift.tt/hpC5vkn
Show HN: Numtease – My new number word puzzle game https://ift.tt/e4DGuR2 May 19, 2023 at 01:34PM
Show HN: Midjourney-Python-API https://ift.tt/Cs7pxIX
Show HN: Midjourney-Python-API This Python client is built for the unofficial MidJourney API, leveraging a Discord self bot and utilizing the Merubokkusu/Discord-S.C.U.M library. Please be mindful that there might be risks associated with the use of self bots, as per issue #66. Key Features: 1: Info retrieval 2: Imagine prompt 3: Image upscale and vectorization by label 4: All message returns via WebSocket, including banned words check and image processing 5: Auto reconnect WebSocket https://ift.tt/fgUOtzV May 19, 2023 at 07:36AM
Thursday, May 18, 2023
Show HN: Lunchtoast – a CLI tool for functional testing of console applications https://ift.tt/ojUVFLO
Show HN: Lunchtoast – a CLI tool for functional testing of console applications It helps to create tests that check program output with a simple test description format. It's written in C++20 and works on Windows and Linux. https://ift.tt/iyWKEr3 May 19, 2023 at 03:58AM
Show HN: PAKman – A new build system built around Alpine Linux Packages https://ift.tt/HOrXuTB
Show HN: PAKman – A new build system built around Alpine Linux Packages https://ift.tt/TwjxmrC May 16, 2023 at 07:53PM
Show HN: Jesth – Next-level human-readable data serialization format https://ift.tt/eEblOuQ
Show HN: Jesth – Next-level human-readable data serialization format Hi HN ! I'm Alex, a tech enthusiast. I'm excited to show you Jesth, a next-level human-readable data serialization format. This project started out as a markup language for writing the docstrings of functions that would ultimately be consumed by a documentation generator. Basically the idea was to split a docstring into sections like Description and Parameters. Each section would consist of a header in square brackets and a body (lines of text between two headers). Here's what a docstring for a sum function would look like: This function takes in two integers a and b and returns their sum. [parameters] - a: First integer - b: Second integer [return] Sum of a and b The Description section in the example above is actually an anonymous section, i.e., a section with an empty header. Meanwhile, I was thinking of a way to automate part of my dev workflow by storing in a file commands grouped into tasks such as project creation, build, testing, release, et cetera. Similarly with the markup language for my documentation generator, I would use square brackets to define the tasks. Thus, a task would consist of a header and a body which would be a list of commands to be executed sequentially. I built this project and named it Backstage. Here is a hypothetical backstage.tasks file: [release] & test & generate_doc & git_stuff & build # upload to PyPI $ twine upload --skip-existing dist/* [git_stuff] $ git add . $ git commit -m {message} $ git push origin master The example above is illustrative only and would not work. It contains 2 sections "release" and "git_stuff". Running the "release" task from the command line is equivalent to sequentially executing the commands in the "release" section. The documentation generator and the scripting language, despite the obvious similarity in their formats, did not share any parsing code. So, to stop repeating myself, I created a file format and its library named Jesth which stands for "Just Extract Sections Then Hack". The library acts as an incomplete INI file parser that only hands the programmer the sections (as headers and their associated bodies which are lists of strings). No further interpretation of the data is done by the parser, allowing the programmer to unleash their creativity through useful hacks. In its latest iteration, Jesth has matured and also includes a proper and extensively tested hack to convert a compatible section into a dictionary data structure, making Jesth my de facto preferred format for config files. I find Jesth more readable than TOML, YAML, and JSON. Here, encoding a dictionary data structure in its own section with another section containing a prompt for ChatGPT: [prompt] I want you to act as a detective story writer. I will provide you with two dictionary data structures representing the profiles of two people. Your goal is to write a thrilling neo-noir story. My first request is: "guess who the killer and victim is from the profiles, then build a story that includes every detail of the profiles". [profile] # This section can be converted into a dictionary data structure name = 'Jane Doe' birthday = 2000-12-23Z10:17:37Z photo_jpg = (bin) VGhpcyBpcyBub3QgYSBwaG90by4uLiBCdXQgdGhhbmsgeW91 IGZvciB5b3VyIGludGVsbGVjdHVhbCBjdXJpb3NpdHkgOyk= --- books = (dict) romance = (list) 'Happy Place' 'Romantic Comedy' sci-fi = (list) 'Dune' 'Neuromancer' epitaph = (text) According to the law of conservation of energy, no a bit of you is gone; you are just less orderly. --- [profile] name = 'John Doe' birthday = null books = (list) 'American Predator' 'Mindhunter: Inside the FBI's Elite Serial Crime Unit' You can learn more by reading the project's README and playing with the demo. Let me know what you think of this project. https://ift.tt/e6Uf8Eo May 18, 2023 at 10:38PM
Show HN: A ChatGPT-powered colour palette generator https://ift.tt/0Ctk2z9
Show HN: A ChatGPT-powered colour palette generator https://ift.tt/CRBHcPG May 18, 2023 at 06:37PM
Show HN: Is Bard Available in EU? https://ift.tt/ha9Bxc3
Show HN: Is Bard Available in EU? Wonder no more if Google Bard is available in the EU, you can check here. https://ift.tt/FwgQlcf May 18, 2023 at 04:45PM
Show HN: Do not chat with your pdfs alone. Let others join the fun too https://ift.tt/1WBIsvC
Show HN: Do not chat with your pdfs alone. Let others join the fun too https://ift.tt/Q0rKxC2 May 18, 2023 at 02:31PM
Wednesday, May 17, 2023
Show HN: Cosigny - Crowd source the best credit card and loan terms. https://ift.tt/JjPyzvu
Show HN: Cosigny - Crowd source the best credit card and loan terms. The goal is to create spreadsheet with crowd sourced data regarding credit products and profiles so we can see how we measure up and find the best deals. Don't go too hard on me. I linked a few google sheets together. Hope you find it useful. https://ift.tt/C7toZV0 May 18, 2023 at 10:41AM
Show HN: Smallville – Create Generative Agents for simulations and games https://ift.tt/VA6IQ2u
Show HN: Smallville – Create Generative Agents for simulations and games https://ift.tt/EL64pik May 18, 2023 at 01:11AM
Show HN: LogSpend – Gain full visibility and control over your OpenAI costs https://ift.tt/j3hTRcH
Show HN: LogSpend – Gain full visibility and control over your OpenAI costs https://logspend.com/ May 18, 2023 at 01:06AM
Subscribe to:
Posts (Atom)
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...
-
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...