Featured post

INTERVIEW WITH frankie(n)

 https://whatsmusic.de/frankien-interview-creating-the-singer-songwriter-genre-standing-against-racism-and-a-memorable-open-mic-episode/

Monday, December 12, 2022

Pouring Through a Crisis: How Budweiser Salvaged Its World Cup


By Sarah Lyall via NYT Sports https://ift.tt/EjoTXt1

The Cruel Spectacle of ‘The Whale’ https://t.co/0GcAtAqJuL


from Twitter https://twitter.com/frankienash54

December 12, 2022 at 07:55AM
via frankienash54

Recommended Recipe for you:

Turn off your lights at midnight

In ‘White Lotus,’ Beauty and Truth Are All Mixed Up


By Carina Chocano via NYT Magazine https://ift.tt/HQFmP79

The Wife Left, but They’re Still Together


By Kelly Coyne via NYT Style https://ift.tt/fMbWUVD

2-Minute Bursts of Movement Can Have Big Health Benefits


By Dani Blum via NYT Well https://ift.tt/kz0w8Ta

The Cake Recipe That Was a Secret for Two Decades


By Ligaya Mishan via NYT Magazine https://ift.tt/fCR2BgA

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

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

Sunday, December 11, 2022

The Misfires Are the Point: Dressing Gen Z for ‘The White Lotus’


By Callie Holtermann via NYT Style https://ift.tt/mT3WVD7

Anthony Fauci: A Message to the Next Generation of Scientists


By Anthony Fauci via NYT Opinion https://ift.tt/O2T0xwJ

Kari Lake Sues Arizona’s Largest County, Seeking to Overturn Her Defeat


By Alexandra Berzon, Ken Bensinger and Charles Homans via NYT U.S. https://ift.tt/E47SAh9

Blowback Over Griner’s Release Exposes Depth of America’s Divisions


By Jonathan Weisman and Ken Bensinger via NYT U.S. https://ift.tt/hQpyWNG

When a Workplace Affair Becomes Public


By Gina Cherelus and Katherine Rosman via NYT Style https://ift.tt/6FIuTKo

Plantar Fasciitis Is a Real Pain


By Dani Blum via NYT Well https://ift.tt/iFORSag

The Cruel Spectacle of ‘The Whale’


By Roxane Gay via NYT Opinion https://ift.tt/v8pK1Rz

Saturday, December 10, 2022

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

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 02:31AM

Concern grows about Paul Whelan, an American imprisoned in Russia. https://t.co/pD7zPLr0Ow


from Twitter https://twitter.com/frankienash54

December 10, 2022 at 07:55AM
via frankienash54

Recruited for Navy SEALs, Many Sailors Wind Up Scraping Paint


By Dave Philipps via NYT U.S. https://ift.tt/ES5DlWy

Recommended Recipe for you:

Get an email with space news from Universe Today

The Last Stand of Soccer’s Greatest Generation


By Rory Smith via NYT Sports https://ift.tt/CgzRfbi

Scientists Have Designed a ‘Vagina on a Chip’


By Azeen Ghorayshi via NYT Science https://ift.tt/eH4D7Su

Friday, December 9, 2022

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

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

Kirstie Alley’s Dance With Hollywood https://t.co/I9X9U2ksto


from Twitter https://twitter.com/frankienash54

December 09, 2022 at 07:55AM
via frankienash54

Recommended Recipe for you:

Automatically share new links you post on Facebook to Twitter

Latest on Idaho Killings: Police Looking for Driver of Car Seen Near Crime


By Nicholas Bogel-Burroughs and Mike Baker via NYT U.S. https://ift.tt/25Ci4PH

Off-Duty F.B.I. Agent Fatally Shoots Person at D.C. Subway Station


By McKenna Oxenden and April Rubin via NYT U.S. https://ift.tt/8iCtA70

Concern grows about Paul Whelan, an American imprisoned in Russia.


By Michael Crowley via NYT World https://ift.tt/BS3M4TD

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

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

Wednesday, December 7, 2022

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

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/Uf3Tvwe 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/NF1zxYo [1] https://ift.tt/a7EQtnK [2] https://ift.tt/urEnPLe https://ift.tt/Uf3Tvwe December 6, 2022 at 10:46AM

Show HN: A working GPT-generated Hacker News extension to highlight new comments https://ift.tt/6IxXCAY

Show HN: A working GPT-generated Hacker News extension to highlight new comments I worked with ChatGPT to produce a very simple extension for Hacker News. Each commit contains my prompt in the commit message, and the commit is entirely composed of ChatGPT output (it took 25 prompts to get this repo to its current state) No files were changed at all from what ChatGPT suggested, but the `gpt-output` file is an append-only log of ChatGPT's verbatim output (so you can select any commit and see exactly what was prompted and what ChatGPT responded with) I'm using this extension now, and it works I was hoping to get a sense of whether ChatGPT could debug its own code, and fix bugs, and to my surprise, it can! I had to prompt it to tell me where to put debug messages, and then provide the error output of course. https://ift.tt/vJnH4mP December 6, 2022 at 11:57PM

Who Will Care for ‘Kinless’ Seniors? https://t.co/PLokwsEhA4


from Twitter https://twitter.com/frankienash54

December 07, 2022 at 07:55AM
via frankienash54

Recommended Recipe for you:

Add YouTube to your lifestyle analytics with Welltory

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

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 05:36PM

Hertz to Pay $168 Million to Customers Accused of Auto Theft


By Livia Albeck-Ripka via NYT Business https://ift.tt/iRhOISC

Tuesday, December 6, 2022

Show HN: Edupops (Antler VN2) – Learn with Short Videos https://ift.tt/vJxk924

Show HN: Edupops (Antler VN2) – Learn with Short Videos https://edupops.com December 6, 2022 at 09:19AM

With Mauna Loa’s Eruption, a Rare Glimpse Into Earth https://t.co/rbxaad6K98


from Twitter https://twitter.com/frankienash54

December 06, 2022 at 07:55AM
via frankienash54

Recommended Recipe for you:

Update your Android wallpaper with NASA's image of the day

When High Fashion and QAnon Collide


By Elizabeth Paton, Vanessa Friedman and Jessica Testa via NYT Style https://ift.tt/YTLE4QD

Bob McGrath, Longtime ‘Sesame Street’ Star, Dies at 90


By Anita Gates via NYT Arts https://ift.tt/HUMnlcI

Who Will Care for ‘Kinless’ Seniors?


By Paula Span via NYT Health https://ift.tt/bhMKTIV

Show HN: OpenFGA is now a CNCF Sandbox Project https://ift.tt/HenoNhj

Show HN: OpenFGA is now a CNCF Sandbox Project https://ift.tt/iDvslQh December 5, 2022 at 10:27PM

Monday, December 5, 2022

Recommended Recipe for you:

When you're tagged in a Facebook photo, save it to Google Drive

What Euthanasia Has Done to Canada


By Ross Douthat via NYT Opinion https://ift.tt/M5mkqzx

Your Body Knows You’re Burned Out


By Melinda Wenner Moyer via NYT Well https://ift.tt/xhXiuEK

Show HN: Tenebra game PC port of popular Commodore 64 game https://ift.tt/9HbDBPQ

Show HN: Tenebra game PC port of popular Commodore 64 game Guide the hapless protagonist to the exit, while keeping in mind that he is afraid of darkness and refuses to walk in the dark areas. https://ift.tt/5AiOTIG December 5, 2022 at 03:50AM

Show HN: Controversial quiz game generated by ChatGPT https://ift.tt/xecHw7F

Show HN: Controversial quiz game generated by ChatGPT https://ift.tt/acZtupV December 5, 2022 at 02:44AM

With Mauna Loa’s Eruption, a Rare Glimpse Into Earth


By Oliver Whang via NYT Science https://ift.tt/DY3mRex

Show HN: Automatically generate commit messages using ChatGPT https://ift.tt/ZUHPnKo

Show HN: Automatically generate commit messages using ChatGPT https://ift.tt/QIczDfO December 4, 2022 at 10:08PM

Saturday, December 3, 2022

Dumping of ‘Green Book’ Actor’s Body Leads to Corpse-Hiding Charge


By Ed Shanahan via NYT New York https://ift.tt/ZMrWqjT

Recommended Recipe for you: https://t.co/xY0Ud29gFo


from Twitter https://twitter.com/frankienash54

December 03, 2022 at 11:45AM
via frankienash54

Show HN: Clerkie AI – the code debugging buddy you've always wanted https://ift.tt/voGJrty

Show HN: Clerkie AI – the code debugging buddy you've always wanted https://ift.tt/JIfyh6p December 3, 2022 at 05:19AM

Sam Bankman-Fried Blames ‘Huge Management Failures’ for FTX Collapse https://t.co/23JIDzMUxK


from Twitter https://twitter.com/frankienash54

December 03, 2022 at 07:55AM
via frankienash54

Recommended Recipe for you:

Remote download to Google Drive

California Panel Sizes Up Reparations for Black Citizens


By Kurtis Lee via NYT Business https://ift.tt/sPL0vGY

Friday, December 2, 2022

The Full Guest List for the State Dinner


By Aishvarya Kavi via NYT U.S. https://ift.tt/bBYHFVe

Biden, Demoting Iowa and Prizing Diversity, Wants S.C. as First Primary


By Katie Glueck and Reid J. Epstein via NYT U.S. https://ift.tt/HRG7hM5

‘Breach of the Big Silence’: Protests Stretch China’s Censorship to Its Limits https://t.co/2XQZ79nyep


from Twitter https://twitter.com/frankienash54

December 02, 2022 at 11:45AM
via frankienash54

Show HN: I made a Google Chrome extension automatically with ChatGPT https://ift.tt/fHmX7ku

Show HN: I made a Google Chrome extension automatically with ChatGPT https://ift.tt/KPTDZl6 December 2, 2022 at 08:55AM

How to Watch the Christmas Tree Lighting at Rockefeller Center https://t.co/hNSZX7AqQ5


from Twitter https://twitter.com/frankienash54

December 02, 2022 at 07:55AM
via frankienash54

Recommended Recipe for you:

Share new Facebook image uploads to Twitter

Sam Bankman-Fried Blames ‘Huge Management Failures’ for FTX Collapse


By David Yaffe-Bellany via NYT Business https://ift.tt/A2tP6Yn

Thursday, December 1, 2022

Christine McVie’s 12 Essential Songs


By Lindsay Zoladz via NYT Arts https://ift.tt/E64rhc2

Show HN: We have built a benchmark platform for graph databases https://ift.tt/ZHUXT76

Show HN: We have built a benchmark platform for graph databases https://ift.tt/i7KaC9o December 1, 2022 at 08:34AM

Show HN: SinglePage – Quickly and anonymously publish a page to the web https://t.co/Ey0G6Rly5v https://t.co/elx7hFduUi


from Twitter https://twitter.com/frankienash54

December 01, 2022 at 07:55AM
via frankienash54

Recommended Recipe for you:

Facebook Pages to LinkedIn Pages via Buffer

‘Breach of the Big Silence’: Protests Stretch China’s Censorship to Its Limits


By Paul Mozur, Muyi Xiao and John Liu via NYT Business https://ift.tt/qmOVuUA

How to Watch the Christmas Tree Lighting at Rockefeller Center


By Hurubie Meko via NYT New York https://ift.tt/4jDyzns

Show HN: Notion Standup – Get daily reports on your tasks on Notion https://ift.tt/6I2J1Te

Show HN: Notion Standup – Get daily reports on your tasks on Notion Notion Standup helps you to receive daily standup reports on email and other channels for your and your team's current and overdue tasks on Notion. Stay updated always with daily reports through email, Slack, Discord, Webhook, Zapier, and Telegram. https://ift.tt/F9y1lUY December 1, 2022 at 01:40AM