Show HN: I feel streaming services recommend videos nowadays https://ift.tt/5hC1mxbsJ January 30, 2022 at 10:51PM
Show HN: My free Ruby book (CC license) https://ift.tt/ITFEs02dl January 30, 2022 at 10:45PM


Show HN: A Safari web extension to access alternate news As news sources get more polarized to encourage their bases, it gets difficult to separate fact from fiction. Objective news extension makes it easy to access political leaning of over 400 news sources, unbiased news, and coverage from other side of the aisle. All news gathering happens on-device. https://ift.tt/oSziaMeRP January 30, 2022 at 10:02PM
Show HN: Nsga – Rust Implementation of the NSGA-II nsga is an opinionated implementation of the NSGA-II (Non-dominated Sorting Genetic Algorithm), a multi-objective genetic optimization algorithm. https://ift.tt/gZ7NnUGj4 January 30, 2022 at 09:13PM
Via टेक ऑटो | दैनिक भास्कर https://ift.tt/dbQ0GAs6c
Show HN: UI to allow your team to easily create Airflow DAGs with no code https://ift.tt/mEN9bdail January 30, 2022 at 03:12AM
Show HN: Europa: Desktop Client for JupyterLab https://ift.tt/QxkR9qSIM January 30, 2022 at 03:58AM
Show HN: Plotting New York using a collision dataset https://ift.tt/ZxzMwXETY January 30, 2022 at 03:14AM
Show HN: An offensive security toolkit written in Rust Remote Code Oxidation is a collection of tools that help offensive security professionals quickly adapt payloads to the needs of their engagement. Any and all feedback is welcome! https://bit.ly/3KRPPcz January 29, 2022 at 10:10PM
Show HN: Troogl – A new way to read the news https://bit.ly/3obxbT4 January 29, 2022 at 06:55PM
Show HN: A cross-platform multi-target dotfiles manager https://bit.ly/3HsDFF3 January 29, 2022 at 09:33PM
Show HN: New Feature] we added new breathing exercise https://getvealth.com/ January 29, 2022 at 05:14PM
Show HN: CraftBox, Run a Minecraft Server on Your Phone I want to share my newest Android app with everyone on HN. CraftBox allows you to easily run a Minecraft server on your Android device. It is published in the Play Store, https://ift.tt/3oa6jmG... , and posted on GitHub: https://ift.tt/3IQuqi9 I know I am late to the Minecraft scene. I am a bit old to have been part of the original craze, but I now have a son who loves the game. Now that I have played it with him, I can see the appeal. I am an open source developer and the creator of UserLAnd, https://ift.tt/2pZzVo6 , so when I get excited about something, I am always thinking about how I can get involved and contribute to the community. I read an article on how to run a Minecraft Server on your phone, https://ift.tt/2LSxHlp , but I figured I could do better by not making people go through as many steps. So, that is a goal... make this simple. This is the first public release and there are many things that can be improved. You can see some of the issues I am going to be fixing soon in the GitHub issues. Anyway, please check it out and tell me what you think. Thanks! Corbin https://ift.tt/3IGHUN6 January 29, 2022 at 12:43AM
Show HN: Hexle ­- A Wordle-like game where you guess a 16-bit hex int https://ift.tt/3AFGv6M January 29, 2022 at 12:31AM
Show HN: TeXMe Demo: Self-Rendering Markdown + MathJax Document https://ift.tt/32MNSJG January 28, 2022 at 11:56PM
Show HN: Encycla – like GitHub for knowledge https://encycla.com/ January 28, 2022 at 11:26PM
Show HN: Emojraw – Draw with an Emoji Palette https://ift.tt/3vJtWVd January 28, 2022 at 11:54PM
Show HN: Link-Archive.org https://ift.tt/34g9hyB January 28, 2022 at 04:25AM
Show HN: Agile Flush, an ASCII-art styled planning poker app https://ift.tt/3nmIPdE January 28, 2022 at 02:46AM
Show HN: An in-browser text editor to easily create static HTML https://ift.tt/3o7ME6H January 28, 2022 at 02:24AM
Show HN: Hibiki HTML – New Frontend Framework (no scaffolding, no webpack) https://ift.tt/3G3RFTX January 27, 2022 at 11:39PM
Show HN: Repography – visualize your Git repo https://repography.com/ January 27, 2022 at 03:39PM
Show HN: Replace “NFT” with “silly JPEG” while browsing Hey HN, Years ago PanicSteve wrote a hilarious Chrome extension to replace all instances of "Cloud" with "Butt". This year, I got annoyed at seeing inane NFT articles everywhere. Thus, NFT-to-Silly-JPEG was born. Repo above or Chrome Web Store: https://ift.tt/3r35v4T... https://ift.tt/33RTAhq January 26, 2022 at 11:02PM
Show HN: I reduced my shower time from 30 minutes to 5 with an app I built https://ift.tt/3H6jsEu January 26, 2022 at 09:58PM
Show HN: Simple Zero-Knowledge Proof Treasure Hunt Game https://ift.tt/33U1PcH January 26, 2022 at 10:57PM
Show HN: Random Data Generator for arbitrary data types Datasino is a command line tool that can come handy when load testing a service or database. Give it a data schema (many compound types supported, including recursive types), an encoding (JSON, CSV or ClickHouse) and a target (a file or a Kafka partition) and a data rate and it will generate a reasonably optimized (native code) random data source. See the top of the README for some examples. If you have any ideas on how to extend this tool so that it's useful to more people, please let me know. https://ift.tt/3IBKh42 January 26, 2022 at 05:08AM




Show HN: SPyQL – SQL with Python in the middle SPyQL ( https://ift.tt/3rJfzPE ) is SQL with Python in the middle, an open-source project fully written in Python for making command-line data processing more intuitive, readable and powerful. Try mixing in the same pot: a SQL SELECT for providing the structure, Python expressions for defining transformations and conditions, the essence of awk as a data-processing language, and the JSON handling capabilities of jq. How does a SPyQL query looks like? $ spyql “ IMPORT pendulum AS p SELECT (p.now() - p.from_timestamp(purchase_ts)).in_days() AS days_ago, sum_agg(price * quantity) AS total FROM csv WHERE department.upper() == 'IT' and purchase_ts is not Null GROUP BY 1 ORDER BY 1 TO json” < my_purchases.csv In a single statement we are 1) reading a CSV (of purchases) with automatic header detection, dialect detection, type inference and casting, 2) filtering out records that do not belong to the IT department or do not have a purchase timestamp 3) summing the total purchases and grouping by how many days ago they happened, 4) sorting from the most to the least recent day and 5) writing the result in JSON format. All this without loading the full dataset into memory. The Readme is loaded with recipes and there is also a demo video: https://vimeo.com/danielcmoura/spyqldemo Any feedback is welcomed! Thank you. https://github.com/dcmoura/spyql January 25, 2022 at 10:59PM
Show HN: Run NPM Scripts with .envs https://ift.tt/385BtDS January 26, 2022 at 12:49AM
Show HN: Moderator,lightweight peer4peer anon forum hello all! here's a link to my little pinteresting like forum that stores no data on the server and uses IPFS for image storage. The design aesthetic is that everything would in 64kb of memory so we're going for a collapse-proof low bandwidth experience. this makes moderator really fast. https://moderator.rocks is the web preview, a flutter client is in the works at https://ift.tt/32wqdRb take a look, post something fun, ask questions. I'm also on twitter @moderatorium in case interested. Have fun! January 25, 2022 at 11:53PM
Show HN: My new platform. Check it out This platform is an experimental social network solely based on soundclips. SONAR is meant to encourage genuine conversation and entertainment. I believe audio culture in the form of this app could create a community that is safe, smart, and more human than many of the current social media platforms. https://ift.tt/3H3weUf January 25, 2022 at 10:25PM
एप पर दिया डेटा फोरेंसिक सबूत के तौर पर मान्य, फ्री होगी यह सेवा Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL
Show HN: Verifycoin.io Expert Opinions on Crypto-Projects https://verifycoin.io January 24, 2022 at 11:18PM
Show HN: Grams.io – calculate how long drug(s) stay in body https://ift.tt/3g7B0od January 24, 2022 at 05:40AM


Show HN: Insta – an enjoyable snapshot testing tool for Rust https://insta.rs/ January 24, 2022 at 03:50AM


Show HN: Maroofy – Search for songs that sound similar https://maroofy.com/ January 24, 2022 at 05:14AM
Show HN: Shoot the neural network before it shoots you https://ift.tt/3FuyoeT January 24, 2022 at 05:14AM
Show HN: Decorator for better default Python parameters https://ift.tt/3GXkaUv January 23, 2022 at 10:47PM
Show HN: A desktop HN reader client in Rust/egui A little toy HN client for the desktop that I've been playing around with this week. https://ift.tt/3qNXS1X January 23, 2022 at 04:06AM
Show HN: Perspec – Scriptable desktop app to correct the perspective of images https://ift.tt/34axR3X January 23, 2022 at 03:27AM
Show HN: Monitor for displaying process traffic on Mac Status bar 1. The tool show network speed by process 2. Adapt dark mode 3. Use nettop's delta mode to make statistics more accurate https://ift.tt/3x0xToa January 22, 2022 at 09:19PM
Show HN: Simple Wordle solver in commandline in Python https://ift.tt/3qSd525 January 23, 2022 at 02:25AM
Show HN: Hacker XP – Hacker News styled as a Windows XP Outlook email client Hello HN, sharing my weekend project. I'm a fan of retro GUIs and fan of HN, so I built an alternative HN front end that resembles a Window XP desktop with an old Outlook email client. Archive and github links if you get 500 errors: https://ift.tt/3fKUiPY.... https://ift.tt/3IsJKkD https://hackerxp.com/ January 23, 2022 at 12:28AM
Show HN: kube-green, K8s operator to reduce CO2 footprint of your clusters https://ift.tt/3qSNSoo January 22, 2022 at 06:15PM






Show HN: qme: simple utility for queueing long-running commands I keep needing a way to run long-running resource intensive tasks after one another. Normally, I'd write a script which loops over the items, but not knowing what needs to run (I pick files as I go through a folder), I knew it's time I create something to scratch my own itch. So, I've created this utility to queue up commands. It captures command, args, env and working directory and puts it in a queue, and runs it when it's time. At the same time, it spins up an RPC server to receive commands from other instances. If there's no server available, it becomes a server itself and waits for commands or shuts itself down after idling for some time. This is my first (published) Golang project, so guidance & review would be appreciated. https://ift.tt/3fMMi0O January 22, 2022 at 04:01AM
Show HN: Muse, a simple language for making music https://ift.tt/32oyHty January 22, 2022 at 01:57AM


Show HN: Threlte – A Three.js component library for Svelte https://ift.tt/3rEkFwr January 21, 2022 at 10:33PM
Show HN: Loadjitsu – a modern load testing alternative to JMeter Please meet Loadjitsu, my weekend project, years in the making. Over the years while building different apps and sites, I always felt that I need a modern load testing software.Tools like JMeter, ab are not very easy to use and it seems innovation in load testing which is a crucial part of any software release cycle has been ignored. This is my third attempt at making Loadjitsu, I am so glad that I can finaly release this. A bit more about the software 1. Powered by golang you can run load tests for tens of thousands of connections per second on very average hardware. 2. Cross platform, run it on Windows or Mac or host it on your linux machines 3. Lets you load test databases like MySQL, PostgreSQL, Mongodb out of the box. 4. Will keep adding more load testing targets in the future (even the more esoteric ones) I hope to open source Loadjitsu soon and let users contribute new targets. Hope this makes load testing fun again https://loadjitsu.com January 21, 2022 at 09:58PM
Show HN: Lockless Ringbuffer Built with Go Generics A single publisher, multi subscriber lockless ring buffer build with the new generics in Go 1.18beta. https://ift.tt/3qLFzdH January 21, 2022 at 01:44AM
Show HN: Bakelite – making it easier to communicate with your firmware https://ift.tt/3nHHWfC January 21, 2022 at 12:04AM
Show HN: AskPaulGraham https://ift.tt/3KFybZB January 20, 2022 at 11:07PM
Show HN: Cursor – An AI Email Companion Hey HN! I built https://cursor.so/, a chrome extension to help you write email blazingly fast. Cursor has three key features 1) describe your email and have an AI write a draft for you 2) one-click to shorten your email and 3) highlight text to change its tone (make it more formal/casual/friendly). I hope that Cursor can make writing email more easy and fun for some of you :). Happy to chat about the AI or dev stack behind the product. Let me know if you have any questions/comments/feature requests! January 20, 2022 at 11:05PM


Show HN: Guitar Tabs Search Engine https://ift.tt/33SxwCN January 20, 2022 at 08:11AM




Show HN: DevToys.app – An offline Swiss Army knife for developers https://devtoys.app January 19, 2022 at 08:38PM
Show HN: Twitter Clone Social App https://pw.wzm.me January 20, 2022 at 01:37AM
Show HN: Sudokle Hello Hackernew, I just built this up, its a mix of Sudoku and Wordle. Does the super minimum (not a web dev so its all old school). I think its super fun. Please let me know your feelings. [DNS propogation is still going on, sorry if you can't access it yet] https://www.sudokle.com January 20, 2022 at 01:17AM
Show HN: Personal Twitch Stream Recorder https://ift.tt/3rt1OV4 January 19, 2022 at 01:33AM
Show HN: Payitfwd.dev – Redirect Donors to Dependencies https://payitfwd.dev/ January 19, 2022 at 01:20AM
Show HN: Stop Putting AWS Credentials in GitHub Secrets Greetings! I've created a GitHub action that works that allows GitHub Actions to exchange a GitHub token for AWS Access Credentials. I've cultivated a few examples of it in action: https://ift.tt/3rt5qq6 I've always found management of AWS Credentials has been a pain. So this setting up this Action works like this: 1) A SAML Identity Provider is created in AWS 2) A Role in AWS is set up to trust that Identity Provider 3) A config file is added to the repository indicating which role can be assumed 4) The GitHub Action exchanges the Repo Secret for AWS Credentials using the SAML.to backend for the exchange Let me know what you think! I'm Happy to take questions and comments here or on Gitter: https://ift.tt/3tEk7cE https://ift.tt/33Mas8S January 19, 2022 at 01:20AM
Show HN: A library of SVG crypto logos https://ift.tt/3FFS9PO January 19, 2022 at 12:32AM
Show HN: Generate code for pretty-printing C++ enums https://ift.tt/3Aebs1F January 18, 2022 at 11:13PM


Show HN: Tiny Lisp (based on pg’s roots of Lisp) in caml https://ift.tt/33GqQHZ January 18, 2022 at 04:24AM
Show HN: My first SFF short story, any suggestions? https://ift.tt/3IcPX47 January 18, 2022 at 03:49AM
Show HN: A tool to help you manage technical debt Caribou helps software teams manage long-term technical migrations in their projects. For example migrating from one networking library to another or migrating a codebase from one architecture pattern to another. These changes usually happen over a span of a few months and without any tooling, they can be difficult to manage. It’s difficult to understand how much progress has been made, what is still left to do and who are the engineers helping move the migration forward. Caribou was built to solve these problems. So how does it work? In simple terms, Caribou is a Github application which, after being configured, monitors all the changes in your repository and displays a dashboard with the progress of specific migrations along with who is contributing to these migrations. Caribou allows you to define all sorts of migrations using an easy-to-use rules engine; for example changing the project architecture, replacing a library or changing some coding conventions. You can get inspired by our examples in the docs section. Currently, Caribou is still in Beta. We believe the product can provide a lot of value as it currently stands, but there is more functionality that we’re looking to add in the coming months such as Slack integration and Pull Request comments so that engineers can get valuable feedback in their PRs. You can checkout Caribou here: https://ift.tt/2Yxru89 January 18, 2022 at 12:44AM
Show HN: Golang Cafe – Go Jobs Board – You Can Now Filter by Minimum Salary Hi Everyone, I have been working on and off on Golang Cafe for a couple of years. Golang Cafe[0] is the first Go job board with no recruiters and clear salary ranges. Engineers apply directly to companies. There is always a developers section where you can submit your Go developer profile and get hired (for free)[1]. This weekend I have added a new feature. It's now possible to filter jobs by minimum compensation. So for example here's a list of all Go jobs paying at least $100,000+ a year[2]. The project is open source [3]. Any criticism is very welcome. [0] https://golang.cafe [1] https://ift.tt/3upWKBt [2] https://ift.tt/3rnY8UE [3] https://ift.tt/2NnnQVd January 18, 2022 at 12:15AM
Show HN: MdSilo – A knowledge silo runs in your web browser https://mdsilo.com/ January 17, 2022 at 11:52PM
Show HN: Simple interactive tools to improve statistical intuition https://ift.tt/3KjAdyd January 17, 2022 at 11:31PM
Show HN: WallSmash – An Infinite Brick Breaker Game https://wallsmash.com/ January 17, 2022 at 02:00AM
Show HN: My 486 Server http://486servu.dy.fi/ January 17, 2022 at 01:04AM
Show HN: A beautiful blog theme with only two requests and less 10KB transfered https://ift.tt/3A89Kz4 January 16, 2022 at 11:48PM
Show HN: Techengineering.io – Discover best tech engineering blogs https://ift.tt/3GDKe76 January 16, 2022 at 11:11PM
Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL
Show HN: Brew.fm – An alliance of artists who remix and edit each other's tracks https://www.brew.fm/ January 16, 2022 at 07:44AM






Show HN: A Wordle clone for the terminal. Written in Rust https://ift.tt/33BAZWo January 16, 2022 at 04:06AM
Show HN: Teyit – Automatically format your Python unittest assertions https://ift.tt/3dhRhDX January 15, 2022 at 11:52PM
Show HN: Live-Editable SVG Shaders/Filters for Drawing https://ift.tt/3KcSFIM January 15, 2022 at 02:15AM
Show HN: Yahoo Finance CLI Written in Rust https://ift.tt/3FAXA2Q January 15, 2022 at 01:19AM
Show HN: Hello – A conversational search engine powered by transformers https://ift.tt/3qqNm0w January 15, 2022 at 12:37AM
Show HN: RootMy.TV https://rootmy.tv/ January 15, 2022 at 12:23AM
Show HN: SQL on CSV/TSV/etc + native/WASM + worlds fastest CSV parser https://ift.tt/3FahqT1 January 14, 2022 at 11:36PM
Show HN: Infinite Scroll Wikipedia https://ift.tt/3fpv21i January 14, 2022 at 10:46AM
Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL
Show HN: Record Your Accomplishments https://ift.tt/3KdXMbQ January 14, 2022 at 09:09AM


Show HN: Turtle – Ninja build system clone in Rust https://ift.tt/3K6gRMR January 14, 2022 at 07:16AM


















Show HN: Bang Bookmarks – replicate DuckDuckGo bangs in Firefox using Keymarks https://ift.tt/31PuSxf January 13, 2022 at 09:16AM


Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL










Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL


Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL




Show HN: My Free OCR Website – want feedback https://ift.tt/3fgTEt2 January 12, 2022 at 04:15AM
Show HN: I built this travel planer and language learning app. Any beta-testers? https://felse.app/ January 12, 2022 at 01:55AM
Show HN: Get Rich Quick – the ultimate Web3/crypto project https://ift.tt/3K1X6pK January 11, 2022 at 11:31PM
Show HN: Sieve: We processed 24 hours of video in 10 mins https://sievedata.com/ January 11, 2022 at 10:07PM
Show HN: Campy the Font https://ift.tt/3Fdo9L2 January 11, 2022 at 01:34AM
Show HN: GitAlias v27 – many Git alias shortcuts and helpers https://ift.tt/1XvXKQt January 11, 2022 at 11:03PM










Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL
Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL








Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL






Show HN: Postdrop – quickly test and copy responsive HTML emails with inline CSS https://ift.tt/3FbGkRx January 10, 2022 at 04:03AM




Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL
Show HN: Like Twitter, but Immutable, Verifiable and Decentralized https://ift.tt/3qaeAZg January 9, 2022 at 09:54AM


Show HN: Cancel Culture Live https://ift.tt/3HHwTuy January 9, 2022 at 09:57AM
Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL


Show HN: Email encoder – protect your public emails from bots and crawlers https://ift.tt/3F7YsM7 January 8, 2022 at 10:52AM
Show HN: Graph Database for Python https://ift.tt/2QKTHmg January 8, 2022 at 10:06AM
Show HN: RNMC - A statistical mechanics Monte Carlo simulator https://ift.tt/3JSqmPK January 8, 2022 at 12:16AM






Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL


Show HN: Discuzz – open-source Comment System https://ift.tt/3JPV7Vu January 7, 2022 at 04:59AM


Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL


Show HN: Thumbor Release 7.0.0 https://ift.tt/34uJ27Z January 7, 2022 at 03:43AM




Show HN: Using SQL to query GitHub activity https://ift.tt/3pZYn8Y January 6, 2022 at 05:16AM


Show HN: Nosigsegv – Say goodbye to crashes in your Go apps https://ift.tt/3sYkDBJ January 6, 2022 at 04:12AM


Show HN: Takingnames.io Beta – The first domain name provider for self-hosters https://ift.tt/3F3pIel January 6, 2022 at 02:25AM
Show HN: Bel in Clojure https://ift.tt/3mVGDJB January 5, 2022 at 11:20PM
Show HN: Birdsong-find people that love the same music (Spotify) (alpha users) Looking for alpha users! See the last paragraph. Yesterday I randomly found a person on Spotify whose playlists I love. It's as if these playlists were made by me; I love them and now I have at least thee new good playlists to listen to. I immediately knew that I want to replicate this experience-finding people that love the same music as me. In the afternoon, I coded a simple web app. The app is very simple and halway complete but ready for users. The currently implemented part works a bit like Tinder selection: 1. you are presented one song you recently listened to a lot 2. a 30 second preview of the song starts playing and you are shown the song's cover, name, and artists 3. you must rate the song with either: - NO: I am sick of this song/I hate it - MEH: it's OK - LOVE: I loveee this song, it gives me the chills 4. repeat-go to step 1 with the next song See a screenshot here: https://twitter.com/touch_marine/status/1478772993602080775 The rest of the app (the half not yet implemented) will take this ratings and match them with others. You will get a list of matches and you will be able to go to their Spotify's profile and listen to their public playlists. I am looking for any users that would like to give the app a go. Unfortunately, I have a limited API access which means only 20 people can register and I first need to enter their Spotify email into the Spotify Developer Dashboard. To register send me your Spotify email to scout at touchlabs.io or on twitter to @touch_marine (https://twitter.com/touch_marine). January 5, 2022 at 10:34PM
Show HN: My Vector, Matrix, Complex Number, Quaternion C++ Classes https://ift.tt/32YpOGZ January 5, 2022 at 10:23PM


Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL
Show HN: I make $3K/mo from a browser extension https://ift.tt/3HzHUOp January 5, 2022 at 07:09AM


Show HN: Entfer – a search engine that lets you control the ranking of sites https://entfer.com/ January 5, 2022 at 01:53AM


Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL
Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL


Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL




Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL
Show HN: StreamDuo – A platform for B2B data streaming https://streamduo.com January 4, 2022 at 01:29AM
Show HN: Picosnitch – a reliable and lightweight security/privacy tool for Linux https://ift.tt/3Hw1lrE January 4, 2022 at 12:42AM
Show HN: Rathole – An Rust alternative to frp and ngrok, with gains in perf https://ift.tt/3qMWmvK January 3, 2022 at 09:07PM
Show HN: No Trash Search https://ift.tt/3bvC4QK January 3, 2022 at 03:31AM
Show HN: Built a VFD clock driven by an ESP32 https://ift.tt/3EPlC9Q January 3, 2022 at 06:01AM


Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL


Via टेक ऑटो | दैनिक भास्कर https://ift.tt/2YK7HiL




Show HN: Browser based deep fakes in pure JavaScript https://ift.tt/3mLnjPo January 1, 2022 at 03:47AM
Show HN: Polka Jot v1.0 (just a scratch pad) https://ift.tt/3JwqCDN January 1, 2022 at 01:42AM
Show HN: No Signup, Yet, Authenticated Posts https://applause.chat/ December 31, 2021 at 10:04PM