Saturday, December 31, 2022

TechSpot's top big tech stories of 2022: Why is Amazon building CPUs? #wanitaxigo


Show HN: Integrate user auth more quickly https://ift.tt/3PON5tW

Show HN: Integrate user auth more quickly https://ift.tt/EnBZ0Jz December 31, 2022 at 12:53PM

Show HN: lambdaprompt – build, compose and call templated LLM prompts https://ift.tt/Y6vDPHJ

Show HN: lambdaprompt – build, compose and call templated LLM prompts For the past few months I've been building a lot of things with LLMs (GPT-3, Codex, etc.) as I've been trying to push them to their limits (especially towards applying them to the tabular data domain) When working on this, I've found there are some common patterns for solving problems (templating, chaining, functional-programming style operations, etc.) As I've iterated, I've come to believe that a functional style interface is likely going to power a new wave of systems I'm calling "prompt-machines"(systems where the core new unit of work is a "named" LLM prompt, extending the "function" concept). Additionally, in order to make the code capable of meta-prompting (where the LLM can write its own templated prompts), I aimed to make the interface and library as simple and lightweight as possible. I think I've achieved my goal, so I'm releasing the library to share with others! I mainly use lambdaprompt in two main ways: (1) to quickly try out "map" applying a LLM prompt against multiple inputs, to see how it behaves on a fixed set of inputs (2) to quickly iterate on a prompt-chain (taking the output of a prompt, and passing it to other prompts) to create complex behavior. An example of (2) that worked quite well is a Text-2-SQL prototype: It generates multiple SQL options, then executes each against the database (if it errors, asks `Codex-EDIT` to fix the errors and retry), then takes the most "consistent" answer as the valid answer. Simply by adding this prompt-chain on top of codex, we saw an improvement from ~75% to ~85% on a spider Text-2-SQL benchmark (On just a small sample of N=200). To increase usability it also ships (extras) with a fastapi app that registers any defined prompts as endpoints directly, and hosts the functions to be directly callable via HTTP-GET requests. This makes it easy to build client-applications off of these prompts, while allowing the prompt itself to be arbitrarily complex (composition of prompts) I hope you enjoy using it! Also, I'm super curious to hear if anyone else has been thinking about LLMs (composing them, building interfaces to them, etc.) in similar ways and what learnings have been (even if not though this library) https://ift.tt/jfCOE39 December 31, 2022 at 11:13AM

Show HN: I Built Sailboat UI – Modern UI Framework for Tailwind CSS https://ift.tt/dAuQs2h

Show HN: I Built Sailboat UI – Modern UI Framework for Tailwind CSS Get start with 150+ Tailwind CSS components , built your website quickly with Sailboat UI. https://sailboatui.com/ December 31, 2022 at 10:48AM

Show HN: Self Hosted OpenStreetMap using only Sqlite3 and Python https://ift.tt/IkxQmaA

Show HN: Self Hosted OpenStreetMap using only Sqlite3 and Python https://ift.tt/c9n48Jm December 31, 2022 at 12:45AM

Show HN: Advent of Code 2022 (only first eight in different langs) https://ift.tt/8DEHGIW

Show HN: Advent of Code 2022 (only first eight in different langs) Tried/revisited/used: Elixir, Haskell, Python, Rust, JS, Rust-WASM, TypeScript, Java. With READMEs for each https://ift.tt/0YcjOPI December 31, 2022 at 12:36AM

Friday, December 30, 2022

Show HN: Distilhn.com – Front-Page Articles Summarized with Machine Learning https://ift.tt/QAcPpHs

Show HN: Distilhn.com – Front-Page Articles Summarized with Machine Learning Hey HN, I've built a little website to show news articles with a summary so that I don't have to RTFA if I just want a rough sense of what it covers :) I also share the summaries in an RSS feed for those who'd prefer to use their own reader. Let me know what you think! https://ift.tt/NWjpGsc December 30, 2022 at 02:58PM

HandBrake debuts AV1 encoding integration #wanitaxigo


AMD says it is aware of Radeon RX 7900 XTX temperature issues, advises owners to contact support #wanitaxigo


Show HN: A hypermedia-driven app based on htmx and Drogon C++ web framework https://ift.tt/JePbmcB

Show HN: A hypermedia-driven app based on htmx and Drogon C++ web framework https://ift.tt/Qzl7dLg December 30, 2022 at 12:10AM

Show HN: Simple weather for your zip code https://ift.tt/XjNHSlQ

Show HN: Simple weather for your zip code Weather applications are bloated. This is the simplest implementation I could make using data from the weather.gov API. This simple weather application will retrieve the current 7-day weather for any of more than 33,000 US zip codes. To customize weather for your zip code, change the URL. The current URL is set to the zip code 90210. If you want both news and weather, that is available here: https://ift.tt/2tl8iqM https://ift.tt/WJO5pjc December 30, 2022 at 06:06AM

Show HN: Logos Created with AI https://ift.tt/nP6shwF

Show HN: Logos Created with AI https://ift.tt/OeNKicl December 30, 2022 at 01:20AM

Frore's active cooling chips promise to double laptop CPU performance #wanitaxigo


Thursday, December 29, 2022

TechSpot's top tech culture stories of 2022: Not sure if pregnant, or smuggling hundreds of CPUs #wanitaxigo


Show HN: A LinkedIn Chat GPT on Steroids https://ift.tt/USEGgFi

Show HN: A LinkedIn Chat GPT on Steroids https://www.lunaa.io/ December 29, 2022 at 12:25PM

Declining VR headset sales could spell bad news for the metaverse #wanitaxigo


Show HN: Zcached, in-memory key-value cache wire-compatible with memcached https://ift.tt/mYc4x3s

Show HN: Zcached, in-memory key-value cache wire-compatible with memcached zcached is an in-memory key-value cache exposing a memcached ASCII protocol-compatible interface, built on pluggable cache engines like Ristretto and freecache [0]. It's not performance-competitive with memcached, especially at higher thread counts. That said, it achieves about 1.1M ops/s, but at significantly higher P99 and P999 latency (as measured by memtier). See [1] and [2] for benchmark results from my 7950x-based workstation. Disclaimer: This is a hobby project created for fun while hacking over the holidays. zcached is not a commercial product and never will be. Don't use it in production; consider this a technology demo more than anything. I don't expect the source code to build outside of my environment, but for those interested in playing with it, binary artifacts are available at [3]. Try `zcached --address tcp:localhost:11211`. [0] https://ift.tt/GthdK0q , https://ift.tt/I2S0uF8 [1] memcached, 16 worker threads: https://ift.tt/c2YWyzf [2] zcached: https://ift.tt/5w6teEa [3] https://ift.tt/w1D6sHp... https://ift.tt/soPkEwt December 28, 2022 at 07:48PM

TSMC set to begin mass production of 3nm chips #wanitaxigo


Show HN: Built your front end in React, then let ChatGPT be your Redux reducer https://ift.tt/Wkx014w

Show HN: Built your front end in React, then let ChatGPT be your Redux reducer https://ift.tt/5guylJT December 28, 2022 at 11:26PM

Wednesday, December 28, 2022

How to Run Stable Diffusion on Your PC to Generate AI Images #wanitaxigo


Chip inventories have overgrown as consumer demand continues to decline #wanitaxigo


Show HN: Mastinator. Disposable public anonymous no-login Fediverse accounts https://ift.tt/9xngszr

Show HN: Mastinator. Disposable public anonymous no-login Fediverse accounts https://mastinator.com/ December 28, 2022 at 03:28AM

Show HN: Merry Sky, Dark Sky replacement and merry-timeline open source lib https://ift.tt/J4qcHIK

Show HN: Merry Sky, Dark Sky replacement and merry-timeline open source lib Hello HN, This is a website I worked on during the holidays to fill the void of the upcoming dark sky shutdown. For me, the precipitation timeline was a view I was heavily relying on for everyday activities and planning. I had not found any replacement from the various weather apps. When I found pirateweather.net as a backend API, it gave me the motivation to put the pieces together and get back the experience I enjoyed. I then added more functionalities that I think was missing from the website such as a weekly chart view. I've been using the website reliably over christmas holidays. Hope you enjoy it too! Also I open sourced the visual component for drawing the precipitation timeline and you can use it for drawing weather information or any other hourly activities really https://ift.tt/FHP3wIt Interested in your feedback! https://ift.tt/i7Rk9ez December 28, 2022 at 01:14AM

Microsoft makes using formulas in Excel easier, adds new features #wanitaxigo


Nvidia expected to reveal RTX 40 laptop GPUs and RTX 4070 Ti at the "GeForce Beyond" event on January 3 #wanitaxigo


Tuesday, December 27, 2022

Show HN: Gamedrop – Videogame collection management, price alerts, and prices https://ift.tt/AzNQioU

Show HN: Gamedrop – Videogame collection management, price alerts, and prices https://ift.tt/rT0ml8A December 27, 2022 at 03:53AM

Show HN: How many advertising panels in Sydney are near a public telephone? https://ift.tt/wUF7kJh

Show HN: How many advertising panels in Sydney are near a public telephone? https://ift.tt/vQztFy7 December 27, 2022 at 01:57AM

Show HN: Predicting the Greenest time to use electricity (AU) https://ift.tt/9Ds0yaX

Show HN: Predicting the Greenest time to use electricity (AU) Hello all, I built this for fun this year. It may be able to help: - reduce your carbon footprint, - eg. see the best time to charge your EV - eg. hook up a smart heating/cooling system? - learn more about how the renewables transition Currently limited to the Aus National Electricity Market, sorry... Feedback and questions appreciated! https://ift.tt/4XEguW6 December 27, 2022 at 01:20AM

How Work From Home Shaped the Road to SASE for Enterprises

Many businesses were forced into addressing remote access at the beginning of the pandemic, which is a well-documented access point for SASE.

Show HN: Eleven – open-source alternative to Codespaces https://ift.tt/jqSA98t

Show HN: Eleven – open-source alternative to Codespaces Hey HN, Eleven is the second project that I've built to learn Go. It lets you create a code sandbox in your cloud provider account easily. What's a "code sandbox"? Just a VM, running in your cloud provider account, with some runtimes pre-installed, your repositories cloned, a way to connect to it with your preferred editor (or via SSH) and a way to serve your apps easily via HTTP (with automatic HTTPS). You could use it to deploy your app, as a remote development environment or even to test some code. It's up to you. For example, to deploy a Node.JS app: $ eleven aws init hello-world --runtimes node@18.7.0 --repositories eleven-sh/hello-world > Success! The sandbox "hello-world" was initialized. $ ssh eleven/hello-world forever node index.js > Forever: command started. Run "forever stop" in current path to stop. $ eleven aws serve hello-world 8000 --as hello.eleven.sh > Success! The port "8000" is now reachable at: https://hello.eleven.sh $ curl https://hello.eleven.sh > Hello World Still learning Go by the way, so I'm open to any suggestions to improve. https://ift.tt/uBSCrq4 December 27, 2022 at 12:27AM

Show HN: Test if your shortcut conflicts with any default shortcuts in browsers https://ift.tt/q3d26ly

Show HN: Test if your shortcut conflicts with any default shortcuts in browsers https://ift.tt/hedCUsN December 26, 2022 at 10:04PM

Monday, December 26, 2022

Show HN: Talk to GPT-3.5 via WhatsApp https://ift.tt/atljBQv

Show HN: Talk to GPT-3.5 via WhatsApp https://aibuddy.chat/ December 26, 2022 at 05:54AM

Show HN: Secure end-to-end client sessions and API calls using crypto key pairs https://ift.tt/2Mu6HCK

Show HN: Secure end-to-end client sessions and API calls using crypto key pairs Hello. I made this project as an experiment in using key cryptography for user identity in a client <-> server model, and for some future peer to peer projects that I am working on. I am looking for feedback, please let me know what you think. Also, Merry Christmas to HN! :-) https://ift.tt/HDkcbet December 26, 2022 at 12:07AM

Show HN: Kweb 1.3.3 released, a server-side interface to the browser's DOM https://ift.tt/aNzvkbx

Show HN: Kweb 1.3.3 released, a server-side interface to the browser's DOM https://ift.tt/o5MHKiY December 25, 2022 at 11:10PM

Show HN: Bespoke Artist Website Hosting https://ift.tt/FGR1Qsy

Show HN: Bespoke Artist Website Hosting Merry Christmas everyone! We started offering hosting services for our musical artists at our record label Epsilon Records ( https://ift.tt/wjfUHJa ) and we recently decided to open the offering further. Consider it boutique high-touch hosting at a good value for a very niche musical artist audience (bands/producers/musicians). We offer a choice of the WordPress or Ghost platform but can also handle custom requirements for the more technical customer. Get in touch and let’s nerd out over how we can help you meet your musical and artistic hosting needs. And now a word from ChatGPT: "Why choose Epsilon for your musical hosting needs? There are several reasons why you may want to choose a hosting provider that specialises in music: * Expertise: A hosting provider that specialises in music will have a deep understanding of the specific needs and requirements of music websites. This includes things like fast loading times for streaming audio and video, and the ability to handle large amounts of traffic. * Music-specific features: A hosting provider that specialises in music may offer features that are specifically tailored to the needs of music websites, such as integrations with music streaming platforms or tools for promoting and monetizing your music. * Niche-specific support: A hosting provider that specialized in music will likely have a team of support staff who are knowledgeable about the specific needs and challenges of music websites. This can be especially helpful if you have questions or run into issues specific to the music industry. Overall, choosing a hosting provider that specialized in music can help ensure that your website has the features and support it needs to succeed in the competitive world of online music." Open to feedback! https://ift.tt/4JC82ki December 25, 2022 at 10:52PM

Sunday, December 25, 2022

Show HN: Newsic https://ift.tt/EoOGequ

Show HN: Newsic News portal that uses GPT-3 to extract news from the news. https://newsic.io/news December 25, 2022 at 07:54PM

Show HN: Price My Spotify Library https://ift.tt/mTtvyPk

Show HN: Price My Spotify Library Hi HN, I built this tool to estimate how much it would cost to purchase all the music in a user's Spotify library and individual playlists. Kind of interesting, maybe you'll like it too https://ift.tt/X1zbOlT December 25, 2022 at 07:04PM

Show HN: GUI-based free app to backup and restore hard disk on Windows clients https://ift.tt/GwxLtDg

Show HN: GUI-based free app to backup and restore hard disk on Windows clients I wrote a small GUI-based tool that uses the Windows Imaging Format (WIM) to create full backups of computer systems (operating system images) and then restore them. The application is hosted on GitHub, is open source, and is offered under the Apache 2.0 license. In addition, the repository includes an illustrated step-by-step guide to help get it up and running. Maybe someone can use the solution for their purposes as well - I would be happy. Have fun with it. The GitHub repository is named: WIM-Backup December 24, 2022 at 08:28AM

Saturday, December 24, 2022

Show HN: Stop ChatGPT misinformation with the power of Community https://ift.tt/BCo0GVQ

Show HN: Stop ChatGPT misinformation with the power of Community chatGPT is all powerful but with 1 caveat It can hallucinate or display misinformation. There is a solution: Have your chatGPT information verified by others! Also, Looking for a good prompt to get the best answer out of chatGPT? Find it here as well! Join now before it explodes! https://ift.tt/OxdSY8q December 24, 2022 at 03:42PM

Show HN: Rendering a Notion page as HTML using SvelteKit https://ift.tt/JhwvjZK

Show HN: Rendering a Notion page as HTML using SvelteKit I've rebuilt my personal website in SvelteKit using Notion as the CMS. Produces almost semantic HTML that can be styled however you would like. https://ift.tt/yBitRMv December 24, 2022 at 02:39PM

Top 5 Monitors for Nvidia RTX 4090, 4080 & AMD Radeon RX 7900 GPUs #wanitaxigo


Show HN: Twitter Graph - Like Google Trends but for Twitter https://ift.tt/hzvYTB3

Show HN: Twitter Graph - Like Google Trends but for Twitter Simply enter a word and generate a graph showing the number of mentions on Twitter https://twit.deta.dev December 24, 2022 at 02:15PM

Show HN: I built a free Chrome extension that writes entire emails using ChatGPT https://ift.tt/s8wLY1U

Show HN: I built a free Chrome extension that writes entire emails using ChatGPT https://ift.tt/6Lew937 December 24, 2022 at 12:21PM

Show HN: Simple golinks server backed by airtable https://ift.tt/8OtEuPN

Show HN: Simple golinks server backed by airtable Like short codes? Like bookmarks? Have fun with this very simple golinks server. If you haven't heard of golinks, they are short codes to bookmarks. In your browser you type `go/` and it takes you to a bookmark. Eg, `go/hn` or `go hn` (space is easier to type than forward slash) could take you to https://news.ycombinator.com . Happy Holidays! https://github.com/skhavari/golinks December 24, 2022 at 01:03AM

More upcoming Raptor Lake CPU details leak including core counts, release dates, and tentative pricing #wanitaxigo


Show HN: Search HN Favorites or Export to CSV/HTML https://ift.tt/vLNG2pT

Show HN: Search HN Favorites or Export to CSV/HTML I wrote a JavaScript tool to search your HN favorites and export them to CSV or HTML. The JavaScript runs in your browser like a browser extension. It scrapes the HTML and navigates from page to page. Setup and usage instructions are in the file. https://ift.tt/Tx9PBYC December 23, 2022 at 11:07PM

Wednesday, December 21, 2022

Show HN: Protein Monster (Net Art, NSFW) https://ift.tt/Dn1UMBY

Show HN: Protein Monster (Net Art, NSFW) https://ift.tt/HNuycbC December 20, 2022 at 11:20PM

Report suggests China's Covid outbreaks could impact upcoming PC hardware launches #wanitaxigo


Show HN: Txtai 5.2 released: open-source semantic search https://ift.tt/YGsAhbH

Show HN: Txtai 5.2 released: open-source semantic search https://ift.tt/vc3l2ub December 21, 2022 at 02:20PM

Nintendo still faces calls to fix Joy-Con drift #wanitaxigo


GPU Pricing Update: Was AMD Radeon RX 7000 Launch a Success? #wanitaxigo


Show HN: ChatGPT developed an NPM package to check if jemalloc is installed https://ift.tt/8pAb2Oo

Show HN: ChatGPT developed an NPM package to check if jemalloc is installed https://ift.tt/9q0w6Pe December 21, 2022 at 02:22AM

Show HN: Headerless C programming with __INCLUDE LEVEL__ https://ift.tt/3japUbz

Show HN: Headerless C programming with __INCLUDE LEVEL__ https://ift.tt/dQAE0Lr December 21, 2022 at 12:21AM

Tuesday, December 20, 2022

Russia can't obtain its 'domestic' CPUs from foreign manufacturers #wanitaxigo


Show HN: High performance HTML5 parser for Ruby, a Nokogiri alternative https://ift.tt/aXguOBP

Show HN: High performance HTML5 parser for Ruby, a Nokogiri alternative https://ift.tt/vtBD0WM December 20, 2022 at 05:38AM

Show HN: A vichan variant that ChatGPT helped me host https://ift.tt/X9NEmdG

Show HN: A vichan variant that ChatGPT helped me host I recently set up a website hosting vichan [0] with nginx, and named it "h2ochan", inspired by the chaotic (yet moderated!) nature of imageboards like 4chan and 2chan. Plus, I love having a liter of water within arm's reach at all times. In the future, I have some plans for threading and posts that will further emphasize the "water" theme and encourage community engagement. In the past, I had tried setting up vichan a few times, but I was overwhelmed by the many technical tasks involved, such as using a remote terminal, working with MySQL databases, configuring nginx, setting file permissions and owners, and using Emacs (or trying to avoid clunky local file edits and FTP). However, I recently discovered chatGPT and have found it very helpful in assisting me with various technical issues. I began by asking for help setting up a public PHP forum, saying that I was a gamedev with some experience in Unity and C#, but not familiar with web development. chatGPT recommended that I look into ASP.NET [1] (which is similar to C#) and gave me some specific recommendations for webhosts and domain registrars. Based on these recommendations, I was able to get a Shared Windows Host [1] up and running, with my nginx [3] page visible after visiting the proper IP address. During the vichan installation process, there is a config-help screen that shows red and yellow lights, to show stuff like if vichan is missing permissions, the SQL database is misconfigured, etc. Initially, this screen showed about three errors and five warnings, mostly related to vichan's inability to read or write certain files. ChatGPT was very helpful in troubleshooting these issues, whether I copy-pasted error messages or described the problems in my own words. It helped me with tasks such as using `chmod`, `chroot`, and `grep`, as well as with fixing HTTP status codes such as 403 Forbidden, 404 Not Found, and 500 Internal Server Error [2]. ChatGPT also helped me locate log files and fix other issues, and eventually all of the warnings were resolved. Emacs was also very helpful during the setup, with chatGPT assisting with emacs commands (I have a double-sided Sheet of them somewhere...) Although I am still learning basic hotkeys, I am able to Save, Undo, and Quit with confidence, and I have almost memorized the Page Up/Down keys. I was initially drawn to Emacs because I saw a page about hotkeys for capitalizing, lowercasing, and uppercasing words years ago, but never sticking with it. Now using it more, my thoughts still being "My smartphone can't even Delete (forward) or Undo! Modifying whole WORDS like this is incredible!" Please go look at h2ochan, and Drink Water! [0] https://ift.tt/HflN32C [1] I did have to switch from a Shared/managed ASP.NET to a Dedicated Linux Host, since remote SSH was not supported for Windows, only Linux [2] I forgot two of these error codes, so I asked chatGPT to remind me of ones I might have encountered during setup. chatGPT also revised my initial post (making sure chatGPT got a [] citation, no matter how confusing!) which I revised once more before posting. [3] Windows + nginx, huh? I may be mis-remembering this bit, but there was certainly a point of realizing "I need Admin access so I can edit Permissions..." or something, and that Windows without SSH was wholly insufficient for vichan [-] chatGPT was occasionally a bit outdated, which led to missing packages, non-existent paths, and imperfect configurations. However, it seemed happy to accept corrections, such as when I wanted to show line numbers in PHP files in Emacs, but my init.el file already had a setting to show line numbers for all programming languages, and I didn't have php-mode installed. Instead, I needed to use phps-mode. [-] The website favicon is a Koreisha mark, hue-shifted to the Blues. It's used in Japan to signify elderly drivers, and used Abroad by Car Enthusiasts. I love the Half-Teardrops in contrasting Bright and Subtle Blue. https://www.h2ochan.org December 20, 2022 at 06:44AM

Monday, December 19, 2022

TechSpot PC Buying Guide: New-Gen vs. Old-Gen #wanitaxigo


Apple is giving MacBook owners with faulty butterfly keyboards up to $395 #wanitaxigo


How VMware NSX Advanced Load Balancer Enables Businesses to Modernize Application Delivery

A cloud-native load balancer, such as NSX Advanced Load Balancer, ensures that all the critical services that optimize application performance are available at the speed the business requires.

Show HN: Christmas Free Icons https://ift.tt/sekiT5o

Show HN: Christmas Free Icons https://ift.tt/wAMc18K December 19, 2022 at 09:04AM

Show HN: Screen Studio – Beautiful screen recordings in minutes https://ift.tt/6krfW1R

Show HN: Screen Studio – Beautiful screen recordings in minutes Hey! I started working on this app 4 months ago. The idea is simple: automate creating promo quality videos that include screen recordings as much as possible Currently it makes cursor movement smooth, zooms in on clicks, adds background and frame around recorded window and adds cinematic motion blur. I plan to add selfie camera support, full text slides and multi-clip recordings. Works only on macOS. It is paid software (one time payment for license + 1 year of updates), but you can download and try it for free - everything except final export to file will work 100% Thanks! https://ift.tt/LTI8SsV December 19, 2022 at 01:00AM

Show HN: View Reddit Images by Topic https://ift.tt/byOjlGp

Show HN: View Reddit Images by Topic Hi, I created a simple website to display Reddit images from set of subreddits by topic. It displays images from current top posts. https://ift.tt/YEd3hc2 December 19, 2022 at 05:25AM

Show HN: Share Mastodon link in an untraditional way https://ift.tt/CHyMJzp

Show HN: Share Mastodon link in an untraditional way https://ift.tt/jHMAz0t December 19, 2022 at 02:03AM

Show HN: Log in to Mastodon with your Twitter account https://ift.tt/lZT6rO9

Show HN: Log in to Mastodon with your Twitter account This is an idea I've had for a while. Given recent events, I decided to finally implement it and see what happens. I assume if it gets any traction it will be banned. The bigger picture here is that Twitter's network of users and follow lists is potentially reverse-engineerable. Why not take that network graph and implement it in the Fediverse? https://tweedle.social December 19, 2022 at 01:38AM

Sunday, December 18, 2022

Show HN: Laravel Documentation Bot https://ift.tt/yFDuxEk

Show HN: Laravel Documentation Bot https://ift.tt/bYWehL7 December 18, 2022 at 12:29PM

Show HN: I made an Ethernet transceiver from logic gates https://ift.tt/rQ6a4Mo

Show HN: I made an Ethernet transceiver from logic gates https://ift.tt/i8UaCyp December 18, 2022 at 09:00AM

Show HN: I Put Artificial Intelligence Inside Google Sheets https://ift.tt/VvYFrhe

Show HN: I Put Artificial Intelligence Inside Google Sheets Hello Everyone, I built =SHEETAI(), a way to run GPT-3 prompts in Google Sheets. It's incredible how tasks that are hard or impossible to do w/ regular formulas become trivial. For example: sanitize data, write thank you cards, summarize product reviews, categorize feedback... Try Now for free at SheetAI.app https://ift.tt/S5dMvFG December 18, 2022 at 07:09AM

Show HN: A Highly Opinionated, Fully Functional Obsidian Vault https://ift.tt/dmhipw8

Show HN: A Highly Opinionated, Fully Functional Obsidian Vault https://ift.tt/TJzuPlc December 18, 2022 at 04:13AM

Show HN: Speleomorph, an Exploration Puzzle https://ift.tt/QmVErud

Show HN: Speleomorph, an Exploration Puzzle https://ift.tt/GBRs46N December 17, 2022 at 10:49PM

Saturday, December 17, 2022

Cybersecurity analysts find Fancy Bear sniffing around US satellite network #wanitaxigo


Show HN: Book about forms usability for devs https://ift.tt/fQzC1Sy

Show HN: Book about forms usability for devs https://ift.tt/8jWl6ZM December 17, 2022 at 03:29PM

Show HN: A magic frame you can prompt to show generated art to an e-ink display https://ift.tt/IUmrhlX

Show HN: A magic frame you can prompt to show generated art to an e-ink display https://ift.tt/V2uIlxj December 17, 2022 at 06:11AM

Microsoft fixes Windows 11 22H2 gaming performance issues, restarts rollout #wanitaxigo


Show HN: Simply see your client hints sent by Chrome https://ift.tt/Egzy5AX

Show HN: Simply see your client hints sent by Chrome Chrome will start to reduce the UserAgent string and replace it with client hints. here you can simply see your current UA, the reduced one, and your client hints. https://clienthints.me/ December 17, 2022 at 05:04AM

Show HN: I made a Slack bot that qualifies your sign-ups using GPT-3 https://ift.tt/5f6KiXl

Show HN: I made a Slack bot that qualifies your sign-ups using GPT-3 OP here, this was super fun to build. It all started from playing around with Nat Friedman's GPT browser https://twitter.com/0xferruccio/status/1599014988693180417 Then after having this running for our product for a couple of days or so we decided to give 10 customers access and they loved it! So expanding access now feels great :) https://ift.tt/h7f6g93 December 15, 2022 at 05:30PM

inSSIDer analyzes your Wi-Fi to improve signal and performance #wanitaxigo


Friday, December 16, 2022

Henry Cavill set to star in and produce Amazon's Warhammer 40,000 series #wanitaxigo


Twitter suspends accounts of several journalists, blocks Mastodon following Elon Musk doxxing row #wanitaxigo


Show HN: Rapid Reply – GPT-3 AI Email Assistant for Busy Founders https://ift.tt/ks50XDx

Show HN: Rapid Reply – GPT-3 AI Email Assistant for Busy Founders Hi HN, I created Rapid Reply for founders, execs and managers who get 30+ emails a day and want to respond fast and polite. It also helps you overcome writers block. Let me know if you have questions. https://rapidreply.ai December 16, 2022 at 10:00AM

Show HN: Simpler – Your GPT-3 Task Planner https://ift.tt/3vNpZL6

Show HN: Simpler – Your GPT-3 Task Planner https://simplerlist.com December 16, 2022 at 03:41AM

Valve sheds light on future hardware plans, including a Steam Deck revision #wanitaxigo


Show HN: Readwise Reader, an all-in-one reading app https://ift.tt/8YcHJNi

Show HN: Readwise Reader, an all-in-one reading app Hey HN, cofounder of Readwise here. We've been working on this cross-platform reader app for about 2 years, excited to finally share it in public beta. Probably the most notable thing that makes Reader unique is that it supports almost any content type you could want to save/read/highlight: * web pages * emails/newsletters * PDFs * ePubs * twitter threads * youtube videos (with transcripts) * RSS feeds With all of your knowledge content in one place, we built powerful reading and highlighting, as well as a bunch of novel triage/organization features, so you can actually consume & stay on top of that content! There are also a lot of advanced features too, such as text-to-speech, GPT3 questions/summaries, super powerful highlighting (that includes markup and images), complex filtering/search (with our own query language), sleek mobile triage UI, keyboard shortcuts for reading/everything, integrations with note-taking apps, a browser extension for both saving pages and highlighting them, and much more. If anyone's interested in more product details, as well as our business model, etc, we wrote a detailed launch post: https://ift.tt/ntRLv28... Predicting a common question: Reader is part of the Readwise subscription pricing right now in beta -- there's a 30 day free trial and then it's paid at ~$8usd/month. We also promise to not raise this price for existing subscribers. Reader is also fairly technically interesting -- our iOS, Android and webapp all work fully offline and sync your reading data/progress with eachother. Our search on web is built with wasm sqlite. We have a fairly intense pipeline for cleaning web articles (removing ads/styling). We share lot of modules around syncing/highlighting across all platforms, etc... Happy to answer any questions :) https://ift.tt/sab04Ex December 15, 2022 at 11:44PM

Thursday, December 15, 2022

Show HN: Embedding a camera experience within your app shouldn't be that hard https://ift.tt/9ibS4jL

Show HN: Embedding a camera experience within your app shouldn't be that hard https://ift.tt/D09U4j6 December 15, 2022 at 12:52PM

Arista Rolls Out New Products Aimed at Supporting Next-Generation Compute

The new switches, like past generation products, run the company's EOS operating system ensuring a consistent feature set, making it easier for organizations to evolve their network.

Henry Cavill says he will not return as Superman following meeting with James Gunn #wanitaxigo


Show HN: AI Based Fashion Search Engine in Computer Vision Technology https://ift.tt/alYTGAB

Show HN: AI Based Fashion Search Engine in Computer Vision Technology Only Desktop Version Available. Mobile with new design is coming soon. We Appreciate Your Feedback. https://www.yoit.style December 15, 2022 at 03:43AM

Show HN: I built a feed of engineering blogs from top tech companies https://ift.tt/ZzfxbRm

Show HN: I built a feed of engineering blogs from top tech companies https://ift.tt/mNYUL9k December 15, 2022 at 12:17AM

Show HN: Automated Insights from Your Google Analytics https://ift.tt/feRbEmY

Show HN: Automated Insights from Your Google Analytics https://ift.tt/BELz1ov December 14, 2022 at 10:04PM

Tuesday, December 13, 2022

Unciv is a free-to-play remake of Civilization V built by volunteers #wanitaxigo


The Witcher 3 next-gen update includes PC-exclusive Ultra+ graphics setting #wanitaxigo


The Best CPU Coolers - Holidays 2022 #wanitaxigo


Waning demand and falling shipments force PC manufacturers to cut prices #wanitaxigo


AMD's Radeon RX 7900 AV1 encoder is almost on par with Intel Arc and Nvidia's RTX 40 series #wanitaxigo


Show HN: Bugbusters.ai automated bugfixing using gpt-3 https://ift.tt/A7WBlhL

Show HN: Bugbusters.ai automated bugfixing using gpt-3 Hi everyone on HackerNews, We are just launching Bugbusters. Bugbusters is a GitHub-Bot that writes bugfixes for errors detected by application monitoring software like sentry. It examines an error's monitoring data, such as stack traces, in combination with the source code and git commit history to generate a potential fix. The bugfix will be submitted via a Pull Request that will also include details on the determined cause of the initial error and approach taken to fix it. You can simply create a GitHub Issue containing a link to the error in sentry and assign it to the Bugbusters-Bot. In cases where the bot is unable to generate a solution, it assists a programmer in finding a fix by providing information and steps that could lead to a resolution. This may involve providing a list of potential error causes, online research results such as stack-overflow posts, as well as code changes (commits) that may have caused an error. While we are currently focused on automated bug fixing, there are lots of other interesting features that we could incorporate in the future, such as: Avoiding the reoccurrence of a bug by generating unit tests or recommending steps such as a refactoring to avoid them in the future. Integration into IDEs/terminals/std-err, which would allow developers to overcome errors during coding time much faster. A programmer could also be informed that their code has a certain error-proneness or that they are working on a critical section that has been causing errors in the past. Improving PR-Reviews by tracking critical code sections and highlighting them during reviews. This would allow developers to consider previously caused bugs and improve the quality of their code. Overall, we believe that Bugbusters has the potential to greatly improve the efficiency and effectiveness of bug fixing. Let us know what you think! https://ift.tt/QcUBM38 December 13, 2022 at 03:58AM

Show HN: ShopWitYoPeople – A black Chicago business directory https://ift.tt/BTUXfaH

Show HN: ShopWitYoPeople – A black Chicago business directory Hey HN! ShopWitYoPeople ( https://ift.tt/c4oOsfU ) was built to showcase Black Chicago businesses. We’re around to answer questions and look forward to hearing everything and anything you have to say! https://ift.tt/a8iCnuH December 13, 2022 at 03:09AM

Monday, December 12, 2022

Show HN: Train your own image generator (Stable Diffusion) for free https://ift.tt/j8K4SH9

Show HN: Train your own image generator (Stable Diffusion) for free I've had a blast playing with stable diffusion and I see all the potential it will bring to us. I released a service for training your model, just upload 20-30 images and you can have a model of someone or some object doing anything. You can train one model for free a month in a slower queue or you can train many models on a fast queue and with other features for a fee. Here is an example of using it for show product placement: https://ift.tt/0OKybI6 and here is an example of using it for people: https://ift.tt/OsqvpHx and an example for using it for styles: https://ift.tt/7ZtElmp The UI is rough, but I would love feedback on how to improve it for you. https://88stacks.com https://88stacks.com/ December 12, 2022 at 02:52PM

Slew of celebrities named in lawsuit against Bored Ape Yacht Club's parent company #wanitaxigo


Show HN: Linux eBPF Programming with Rust https://ift.tt/jtBhzXs

Show HN: Linux eBPF Programming with Rust Learn to write Linux eBPF programs using Rust. https://ift.tt/38BSHsn December 12, 2022 at 12:47PM

Show HN: Use ChatGPT in Jupyter notebooks via a Chrome extension https://ift.tt/g5CwzBW

Show HN: Use ChatGPT in Jupyter notebooks via a Chrome extension Hello HN! Here's a browser extension that brings together two things that I love: Jupyter and ChatGPT. It makes it possible to have ChatGPT generate code inside your Jupyter notebooks. It has the side effect of making it really easy to save your ChatGPT sessions in a local notebook. I parse the ChatGPT response, extract it into code cells for you automatically so that you no longer have to copy and paste code from your browser into your favorite code editor like an animal. ChatGPT even wrote some of the code used in this extension! The extension [1] from user:wonderfuly forms the core of messaging with the ChatGPT service; it works great! All the other mistakes are mine and mine alone. I'm not a web dev, so I'm sure there's lots of horrible hacks and mistakes that I made while writing this extension. Help welcome. [1] https://ift.tt/N2Qb3HC https://ift.tt/q6E2KSV December 12, 2022 at 05:39AM

Launching TechSpot Jobs: Figure out your next career move #wanitaxigo


Returnal PC port recommends 32GB of RAM #wanitaxigo


Show HN: VS Code Ext: Collaborative countdown timer for mob programming sessions https://ift.tt/yXZT5A7

Show HN: VS Code Ext: Collaborative countdown timer for mob programming sessions https://ift.tt/jI7iNfJ December 12, 2022 at 04:10AM

Sunday, December 11, 2022

Show HN: Prompt Engineering Course https://ift.tt/J8v5TOq

Show HN: Prompt Engineering Course https://ift.tt/RxlEF4f December 11, 2022 at 04:31PM

Show HN: Predict team ranks in sports and video games with openskill.py https://ift.tt/W6fcyFs

Show HN: Predict team ranks in sports and video games with openskill.py You can now predict the ranks of a team of players since v3.2.0 of openskill.py. OpenSkill is a rating system designed for complex n-team, n-player matchups and is ready out of the box with 5 different models and 3 prediction functions to suit your needs whether it be building video game leaderboards, matchmaking players or predicting how well a sports team will do. OpenSkill is not only up-to 20x faster, it is also now has the same accuracy as TrueSkill and sometimes even more (we benchmark against TrueSkill's implementation of win prediction). There are also no implementations of TrueSkill that are free from patent and trademark issues. It's time to ditch Elo and TrueSkill for good. https://ift.tt/mztfORM December 11, 2022 at 12:11PM

Show HN: AI-powered message replies assistant https://ift.tt/9faWu3J

Show HN: AI-powered message replies assistant I was free early this week and decided to work on something I've always wondered. As someone who has struggled with matches on Tinder and ghosting, I know how difficult it can be to come up with the perfect response in the moment. That's why I created this tool - to make it easy for anyone to quickly and easily generate the perfect reply, tailored to their audience, culture, and context. It is currently in beta and would love to hear your feedback on the product. Link to webapp: https://ift.tt/EyhaqjV https://ift.tt/EyhaqjV December 11, 2022 at 08:50AM

Show HN: Webbench, a WASM Based Benchmark https://ift.tt/piktCdP

Show HN: Webbench, a WASM Based Benchmark https://ift.tt/FsTxpt6 December 11, 2022 at 10:43AM

Show HN: ChatGPT Prompts and Products https://ift.tt/1JmCDHR

Show HN: ChatGPT Prompts and Products https://ift.tt/SAxmKVb December 11, 2022 at 01:45PM

Show HN: Hanzi.gg – Wordle-inspired Chinese character guessing game https://ift.tt/XRro3nj

Show HN: Hanzi.gg – Wordle-inspired Chinese character guessing game Tap on a character to reveal the strokes, radicals and components it has in common with the character you're trying to guess. This was designed mainly for learners but I'm curious to hear from fluent hanzi readers whether the game is too easy. The vocabulary is from the Chinese Vocab List project [1]. Character graphics and data are sourced from Make me a Hanzi [2]. There are 95 pre generated games at the moment which are randomly chosen, more will be added soon. Suggestions welcome! [1] https://ift.tt/fUD79by [2] https://ift.tt/HIUnrLf https://hanzi.gg December 11, 2022 at 11:05AM

Show HN: Sirdb – simple Git diffable toy database on the filesystem https://ift.tt/4728kmi

Show HN: Sirdb – simple Git diffable toy database on the filesystem https://ift.tt/p1BQCZH December 11, 2022 at 05:54AM

Show HN: Peer2Proxy, Earn passive income by sharing your internet https://ift.tt/Sg6doiB

Show HN: Peer2Proxy, Earn passive income by sharing your internet https://ift.tt/HvOzkM7 December 11, 2022 at 01:01AM

Saturday, December 10, 2022

Show HN: Pg_CRDT – an experimental CRDT extension for Postgres https://ift.tt/EN5uITt

Show HN: Pg_CRDT – an experimental CRDT extension for Postgres This is an experimental extension for CRDTs, pg_crdt: GitHub repo[0]. It supports Yjs/Yrs and Automerge. The linked blog post describes how we're thinking about this extension in a Supabase context. Ideally this "Show HN" generates some discussion/interest, both here and in the github discussions [1]. I want to emphasise this part from the blog post[2]: "pg_crdt has not been released onto the Supabase platform (and it may never be). We’re considering many options for offline-sync/support and, while CRDTs will undoubtedly factor in, we’re not sure if this is the right approach." [0] GitHub repo: https://ift.tt/DChqZXA [1] Discussions: https://ift.tt/NeaXp8U [2] Blog post: https://ift.tt/s4YO3w7 https://ift.tt/s4YO3w7 December 10, 2022 at 02:20PM

Show HN: EasyPub.io https://ift.tt/GjUVXh6

Show HN: EasyPub.io The free and anonymous online publisher. EasyPub allows you to publish your content to the internet without creating an account or being tracked while maintaining the ability to update or delete your published content. I made this in response to the recent singlepage.cc post. I was confident a system could be developed that was free/fast/anonymous and resilient to attack/overuse without charging $1 per submission. I believe that goal has been met. Let me know what you think. I am going to open source soon. Roadmap: - Advanced auto spam detection - Improved WYSIWYG editor Stack: - Python (Starlette / Asyncio) - Redis (metadata store) - Cloudflare R2 (content store) - Cloudflare CDN / WAF / Proxy / etc.. https://easypub.io/ December 10, 2022 at 04:31AM

Show HN: ChatGPT but for Rap Battles https://ift.tt/l1QijsE

Show HN: ChatGPT but for Rap Battles I made a thing! I made something I thought was fun with the latest OpenAI GPT 3.5 model. It lets you rap battle against famous figures (Abraham Lincoln, Kim Kardashian etc) or against a generic A.I. You can also generate rap lyrics about any topic. I've set it to give away 180 words for free so you can try it out, you'll have to confirm your email for this. Hope you have fun :) https://rappingai.com/ December 10, 2022 at 04:09AM

Show HN: Satirical News Made with ChatGPT https://ift.tt/r4Isve8

Show HN: Satirical News Made with ChatGPT https://citymeme.com/ December 10, 2022 at 01:07AM

Windows 11's snipping tool to receive screen recording function #wanitaxigo


Show HN: Live AI Avatars for videochats and streaming https://ift.tt/VGAvqYj

Show HN: Live AI Avatars for videochats and streaming https://ift.tt/6YAXeyQ December 9, 2022 at 10:50PM

Friday, December 9, 2022

The Game Awards: all the winners, losers, and that Elden Ring stage invader #wanitaxigo


Show HN: Tamagui v1 Release Candidate https://ift.tt/dGacg02

Show HN: Tamagui v1 Release Candidate https://ift.tt/XVtM4pd December 9, 2022 at 07:00AM

Show HN: A Movie Script Created by ChatGPT and Stable Diffusion https://ift.tt/RkJUl74

Show HN: A Movie Script Created by ChatGPT and Stable Diffusion https://ift.tt/N13OJhc December 9, 2022 at 04:08AM

FTC sues Microsoft in attempt to block Activision acquisition #wanitaxigo


Providing Timely and Clear Data to Support Federal Cybersecurity Workforce Needs

Speakers: To be announced. Synopsis: Efforts to grow and sustain the federal cybersecurity workforce should be supported by evidence that informs actions or decisions and the availability of data that allows departments and agencies to evaluate and Via NIST Events https://ift.tt/13sMDYR

Providing Timely and Clear Data to Support Federal Cybersecurity Workforce Needs

Speakers: To be announced. Synopsis: Efforts to grow and sustain the federal cybersecurity workforce should be supported by evidence that informs actions or decisions and the availability of data that allows departments and agencies to evaluate and

from NIST Events https://ift.tt/Q85Xyde
https://ift.tt/Q85Xyde https://ift.tt/MoDATvN via IFTTT

Thursday, December 8, 2022

Show HN: Ezy – open-source gRPC client, alternative to Postman and Insomnia https://ift.tt/IuQ7pGS

Show HN: Ezy – open-source gRPC client, alternative to Postman and Insomnia In this release I have concentrated on user experience: - Full support of shortcuts - Reworked collections management - Notifications - Improved UX gRPC clients I’ve worked with had drawbacks and didn’t fit my use-case in a way I was expecting, since I’ve started working with gRPC 3+ years ago. Since then, I wanted a tool that fits any need in gRPC world. This is why I created ezy. Compared to Insomnia and Postman, ezy offers better streams support, allows you to use Server-Side and Mutual TLS with custom TLS certificates, works with gRPC-Web and has a more slick UI/UX. If you are looking for a gRPC/gRPC-Web client which fits your needs, give ezy a chance! I’d love to hear your feedback and answer any questions regarding ezy. https://ift.tt/ENSZ0Jw December 8, 2022 at 12:50PM

How to Navigate the Lack of Industry Standards & Data Overload

By starting at the fundamental technical level, organizations can build a cyber security stack that offers visibility as the solution.

The cyberpunky Dyson Zone air-purifying headphones arrive in March for $949 #wanitaxigo


Show HN: IKEA Price – Get Notified When an IKEA Product's Price Drops https://ift.tt/KA8xD1W

Show HN: IKEA Price – Get Notified When an IKEA Product's Price Drops https://ikeaprice.com/ December 8, 2022 at 01:32AM

New BMW patent could charge EVs with speed bumps and potholes #wanitaxigo


Police nab Sonic creator Yuki Nada on another insider trading charge #wanitaxigo


Wednesday, December 7, 2022

Show HN: Port of OpenAI's Whisper model in C/C++ https://ift.tt/oXaVZWA

Show HN: Port of OpenAI's Whisper model in C/C++ Hi HN, OpenAI recently released a model for automatic speech recognition called Whisper [0]. I decided to reimplement the inference of the model from scratch using C/C++. To achieve this I implemented a minimalistic tensor library in C and ported the high-level architecture of the model in C++. The entire code is less than 8000 lines of code and is contained in just 2 source files without any third-party dependencies. The Github project is here: https://ift.tt/NaU6jQK With this implementation I can very easily build and run the model - “make base.en” . It also allows me to run it on a wide range of devices. For example, I have provided examples of running the model on an iPhone, Raspberry Pi 4 and even in a web page via WebAssembly! The implementation runs fully on the CPU and utilizes FP16, AVX intrinsics on x86 architectures and NEON + Accelerate framework on Apple Silicon. The latter is especially efficient and I observe that the inference is about 2-3 times faster compared to the current PyTorch implementation provided by OpenAI when running it on my MacBook M1 Pro. The WASM port utilizes SIMD 128-bit intrinsics - a feature supported in some modern web browsers [1]. I am very happy with the performance that I observe on Apple Silicon devices. I didn’t expect that the Accelerate framework [2] (i.e. CBLAS) offers such a dramatic performance boost for matrix multiplications so I was very pleasantly surprised! To enable the framework in your C/C++ projects, all you have to do is add `-framework Accelerate` to your clang command-line flags. This entire exercise of implementing the Whisper model was very interesting to me and helped me understand a lot about how the transformer architecture works. I also got a lot of positive feedback from people finding and using my project. We brainstormed on a lot of interesting tools that can potentially be created with this library (such as speech-to-text plugin for Vim, RPi4 voice assistant, WASM chat bot, etc). If interested, checkout the “Examples” section and the “Show and tell” discussions for some ideas! Would love to know what you think about this project and about your experience with using the Accelerate framework in any of your projects. Cheers! [0] https://ift.tt/Ovl4TER [1] https://ift.tt/5zLIH6D [2] https://ift.tt/JAHYVjp https://ift.tt/NaU6jQK December 6, 2022 at 12:46PM

Show HN: Zuplo – Programmable, Serverless API Management for Developers https://ift.tt/hSn7yxO

Show HN: Zuplo – Programmable, Serverless API Management for Developers Hey everyone! We are Nate Totten and Josh Twist - co-founders of Zuplo. Zuplo is a serverless, programmable API Management solution that is the fastest way for developers to add features like API Key Authentication, rate limiting, and documentation to their API. With Zuplo you can securely share a new or existing API with customers, partners, or other teams in a matter of minutes. Throughout our careers, we have focused primarily on building tools for developers. Josh founded Azure API Management at Microsoft, and Nate built many of the early developer experiences at Auth0. We founded Zuplo because we believe that every business can benefit from the power of API Management, but the solutions on the market today are expensive, not developer friendly, and often tailored only for the largest enterprises. While there are many solutions on the market today for API Management - none provide an amazing developer experience. Current solutions require managing complex configurations, lack extensibility, and require significant infrastructure to run. Your typical API Management experience involves waiting hours for an environment to provision and managing configuration with external tools like Terraform. Additionally, most API Management products lack extensibility, or what extensibility they do have is cumbersome and unfamiliar. For example, one recent Zuplo customer had a somewhat unique requirement - they wanted to both serve API requests to their users, but also save the value of the request for long-term backup and processing. This went well beyond just caching API responses. With traditional API management solving problems like these is a pain at best or not possible at worst. The solution with Zuplo was to write a simple custom code policy that saved the response body to AWS S3. This is about 15 lines of regular Typescript/Javascript in Zuplo. With Zuplo, API Management is as easy as deploying a website to Vercel or Netlify. Zuplo natively supports GitOps. All configuration for Zuplo is stored in source, and branches are deployed in seconds. Developers can easily deploy and test every change in a real environment before merging a pull request. Zuplo is a fully managed solution that is deployed to the edge in data centers all over the world. You don’t need to think about what region you want to run or where your customers might be making requests - we run everywhere. Zuplo works well for customers who run in a single or many locations. Zuplo improves the performance of your API by caching responses and performing checks like authentication and rate limiting closer to your customers. How it works: Zuplo acts as a proxy for your domain (i.e. api.example.com). Simply make a few DNS changes and Zuplo will serve traffic for your API. You can choose to proxy all routes or a subset of routes. Requests can also be routed anywhere you want - one data center, one API or many. Zuplo allows you to enforce authorization and other security measures at the gateway so you can focus on the code that matters most. Today we’re announcing a Free (forever) plan for folks looking to get started with API Management, whether you’re a total beginner or a veteran of other legacy solutions. Weekend project, hackathon, side-gig? Give Zuplo and try and let us know what you think. https://zuplo.com/ December 6, 2022 at 07:36PM

Show HN: A bookmarklet to remove submissions and comments about ChatGPT from HN https://ift.tt/J5ixVhe

Show HN: A bookmarklet to remove submissions and comments about ChatGPT from HN I get it, ChatGPT is cool and you can do plenty with it. But I'm getting tired that every other post is about ChatGPT, and every other comment is about ChatGPT's take on a topic. So I made this bookmarklet to remove comments and posts about ChatGPT (including this one) from HN. Drag and drop the text below to your browser bar, give it a name like "Remove ChatGPT", and get rolling. Whenever you load submissions or a specific comment thread, just click the bookmarklet and the page will be ChatGPT (And even ChatGTP) free. javascript:(function() {if (document.getElementsByClassName("comment-tree").length) { Array.from(document.getElementsByClassName("comtr")).filter(elt => elt.innerText.match(/chat\s?g[pt]{2}/i)).forEach(e => e.parentNode.removeChild(e)); } else { Array.from(document.getElementsByTagName("a")).filter(elt => elt.innerText.match(/chat\s?g[pt]{2}/i)).forEach(a => { const tr = a.parentNode.parentNode.parentNode; const table = tr.parentNode; const details = tr.nextSibling; const spacer = details.nextSibling; table.removeChild(tr); table.removeChild(details); table.removeChild(spacer);});}})(); December 7, 2022 at 06:39AM

Star Wars Jedi: Survivor might launch on March 15, system requirements leaked #wanitaxigo


Cybersecurity Career Week October 16-21, 2023

Join us in Observing Cybersecurity Career Week October 16-21, 2023 nist.gov/nice/ccw What is it? Cybersecurity Career Awareness Week is a ca...