Skip to main content

Posts

Showing posts from March 13, 2022

Show HN: Transcrib, a speech-to-text Android app for WhatsApp voice notes https://ift.tt/FTy752r

Show HN: Transcrib, a speech-to-text Android app for WhatsApp voice notes Hi, I made a subscription based Android app to transcribe and read WhatsApp voice notes, supporting all the most common languages. It can be tried for free for 3 days, I'd love to get some feedback! https://ift.tt/epdtM6H March 19, 2022 at 11:00PM

Show HN: Fridays = Pizza Day https://ift.tt/pRmvlHe

Show HN: Fridays = Pizza Day After reading an article about what Google’s doing to drive orders to food delivery apps rather than restaurants’ websites, I decided to build a bot. It randomly tweets pizza places where you can order directly from their website. I’ll be delighted if it helps restaurants somehow. https://twitter.com/worldofpizza * The article about Google vs restaurants: https://ift.tt/WXvdYUz March 18, 2022 at 06:24PM

Show HN: I'm writing an MMORPG game for learning programming https://ift.tt/L8nWDNC

Show HN: I'm writing an MMORPG game for learning programming Hi, I've been developing an HTML5 MMORPG game where people can submit code to play a game, like collect items, destroy defense towers or kill monsters, etc.. I've been working on this for over 1.5 yrs (all my spare time) and now it's ready for preview, does anyone want to try it out? It's mostly opensource (and the rest will be opensource sooner or later) Please access it with PC, it's an HTML5 game: https://bytelegend.com/ I really want it to expand to more languages, but right now I've only finished Java part. I wonder if anyone can help me with other languages. Besides, I'm not a good game story designer, but I really really want it to be a game with a fantastic story. Any help will be appreciated. https://bytelegend.com March 18, 2022 at 03:55PM

Show HN: PDF API – Generate, convert, and modify PDF documents https://ift.tt/EN3wAkF

Show HN: PDF API – Generate, convert, and modify PDF documents Hi HN, Arek here. We’re super excited to officially launch PSPDFKit API [1]. PSPDFKit API is a collection of HTTP APIs that enable you to convert, generate, and edit documents without running any service on your infrastructure. What differentiates our API from others is that you can chain together multiple “actions” as part of a single API request. For example, you can convert, OCR, watermark, edit, and flatten a document — all in one call. Available actions [2]: - PDF Generator - PDF Converter - Image Converter - OCR - Watermark - Merge - Split - Duplicate - Delete - Flatten Our documentation includes sample code for JavaScript [3], Python [4], Java [5], C# [6], PHP [7], and the command line. We also have a Postman collection [8]. Let us know what you think or if you have any questions. [1] https://ift.tt/FtW2U7s [2] https://ift.tt/kg7GpIN [3] https://ift.tt/VDrnakQ [4] https://ift.tt/nflL6JP [5] https://ift.tt/ITW9vry [6]

SHOW HN: Stripe STOLE OUR $159k https://ift.tt/MWgoYBS

SHOW HN: Stripe STOLE OUR $159k We built a marketplace called bringshopper.com where we bring shoppers to newly started businesses. We had a call with their sales team and as they suggested we used Stripe Standard Connect and direct charges. When we bring shoppers successfully we charged higher application fees to cover our costs and there was no upfront costs We even built feature to cover negative balances of connected accounts by cutting their ad budget And one day Stripe blocked our account, and disabled all our connected accounts and said they WILL NOT RELEASE OUR FUNDS AND WILL USE TO REFUND ALL CUSTOMERS. Now there are multiple things: 1) They didn't refund anyone as we are a platform account we have no charges under us to refund 2) They didn't release funds either They TOOK OUR FUNDS, $159k to be exact They can't refund customers of all connected accounts and use our funds as they advertise in stripe.com/connect/pricing that Stripe Standard Connect is not responsibl

SFMTA to Replace All Parking Meters in the City

SFMTA to Replace All Parking Meters in the City By Jessie Liang San Franciscans will see new parking meters on city streets beginning in early March 2022. Staff from the SFMTA’s Parking Meter Shop will replace the meters at all the nearly 27,000 paid parking spaces in the city because those meters have reached the end of their useful lives, and because many of the meters rely on 3G communications technology that soon will be phased out by the wireless companies. The first new meters will be installed in the South of Market and Mission Bay neighborhoods.  SFMTA staff will provide notices on vehicle windshields when the new meters are activated.  The new meters will provide several benefits, including larger and more legible screens, more intuitive user interface, more powerful batteries, and more resistance to vandalism.   The following neighborhoods will move to a pay-by-license-plate system with new paystations. South Beach SoMa Mission Bay Civic Center Hayes Valley Fisher

Virtual Permit Transition Summary

Virtual Permit Transition Summary By Stephen Chun Effective April 1, 2022 the SFMTA will transition annual Residential Parking Permit (RPP) permits from physical stickers to virtual permits. This will streamline the RPP application and administration process. This change will not apply to other permit types—including 1 Day, Visitor, Press, City Vehicle, Teacher and Contractor permits.   Currently, about 70,000 San Francisco residents living in RPP areas purchase an annual parking permit in sticker form each year. Those renewing their permit at the same address can pay online and receive their permit in the mail.  People buying new permits can do so (a) in-person at the Customer Service Center, where the customer receives their physical sticker at time of purchase, (b) by-mail, or (c) online, and receive their permit in the mail.   Virtual permits have several benefits, such as:  Permit is active as soon as it is paid. No waiting for a permit to be mailed.  Permits can be purc

Show HN: I made Devzat – It's like discord but in the terminal, over SSH https://ift.tt/28MLD6f

Show HN: I made Devzat – It's like discord but in the terminal, over SSH Run `ssh devzat.hackclub.com` to try it out! The repo is here: https://ift.tt/OJgTkqe (golang). It has markdown and emoji support, DMs, channels, and it can show images too. You can send code, and it gets syntax highlighted (you can change the theme). You can ping people like so: @user and it sends them a \a, which should play an audible sound if the terminal allows it. There's inbuilt games and rainbow names and a lot of other small things I don't remember right now. You might find the auth system interesting: it's based on a hash of ssh pubkey (bans use that and a hash of IP, so it isn't so easy to get around a ban) Also an interesting issue: bots that go around trying to brute force ssh into random IPs with common usernames. My current solution is banning if rapid successive joins are detected. March 16, 2022 at 12:02AM

Show HN: Fast subdomain enumerator written in Rust https://ift.tt/IzqXVhm

Show HN: Fast subdomain enumerator written in Rust Hello! I'm learning Rust and also information security, so what better way to learn than to put a tool together practicing both skills? I've tried to use a couple of different tools for subdomain enumeration (part of the Discovery-party when it comes to penetration testing), but none of them were very fast, even if the DNS resolver I pointed them towards is, so I wrote my own tool that leverages concurrency to check a lot of subdomains, fast! It's written in Rust, main parts being using Tokio and async_channels, and I think it works good enough for a first release. I wanted to get recursive subdomain enumeration to work too, but couldn't figure out how to send into the same channels I'm reading from and knowing when to close the actual channels. Will work on that next! If you want to check out the project, it's located here: https://ift.tt/4cq0ZAf I'd love your feedback on the code, idea or anything in gener

Show HN: Vim Reference Guide https://ift.tt/NhKvw7J

Show HN: Vim Reference Guide Hello! "Vim Reference Guide" is intended as a concise learning resource for beginner to intermediate level Vim users. I hope this guide would make it much easier for you to discover Vim features and learning resources than my own blundering experience. To celebrate the release, ebook version is free to download till 31-Mar-2022: * https://ift.tt/b0nf6oc * https://ift.tt/ckjXdmn Some of my other ebooks and bundles are on sale and I'm currently creating short 1-3 minute videos to highlight Vim features. You can find these details in the above links. Visit https://ift.tt/yKjAQ7t for markdown source and other details related to the book. Hope you find these resources useful. Let me know your feedback. Happy learning :) https://ift.tt/ruDthiF March 15, 2022 at 05:56PM