HN user

zdwolfe

69 karma

https://twitter.com/zdwolfe

Posts1
Comments48
View on HN

I find it odd that any LLM could be considered open source. Sure the weights are available to download and use, but you can't reasonably reconstruct the output model as it's impractical for an individual to gather a useful dataset or spend $5,000,000+ of GPU time training.

Seems to not be working. I tried the same prompt twice. My trial credits were used but there was no image generated, nor do they appear in My Images.

Not OP, but I too wrote something nearly identical with whisper so I could creep on old EthosLab videos. Here's the gist:

from pytube import Channel

import whisper

channel_yt = Channel(channel_url)

video_yt = channel_yt.videos[0]

video_yt_stream = video_yt.streams.filter(mime_type="video/mp4").filter(res="720p").first()

video_yt_video_file_path = video_yt_stream.download()

audio = whisper.load_audio(video_yt_video_file_path)

model = whisper.load_model("tiny")

transcript = model.transcribe(audio)

Neat, I am working on something similar with almost all the same tech you mentioned (CDK, R53, TS, APIGW+Lambda), and a Dockerized dev env with everything set up. It's meant to be a boilerplate I copy for new side projects. DM me on twitter (same username) if you'd like to compare notes or collaborate.

Many folks in this thread are recommending which specific subreddits and blogs they like, but I thought I'd comment on the "how" of my web routine that I found useful.

I use feedly.com to follow HN, blogs, subreddits, and news outlets. I split up "Backlogging" and "Reading" as separate activities, which I think promotes focus when reading.

To "backlog", I browse through my feedly feed of HN/Reddit/blogpost titles, marking the ones that sound interesting to "Read Later".

Then later I read through those "read later' posts, saving the best ones in lists and highlights/notes for the future.

As for specifics,

1. https://www.reddit.com/r/ExperiencedDevs/

2. https://www.joelonsoftware.com/

3. https://martinfowler.com/

4. https://refactoring.fm/

I agree they're omnipresent practices, but still good reading for new-ish devs. Probably about half of my comments on young FAANG peers PRs are "greatest hits" from Code Complete and Clean Code like variable naming, etc.

macOS Monterey 5 years ago

Wow, I didn't realize that was a common problem, and didn't realize it was related to external monitors. Thanks for the link!

From the years 2012-2019 I hardly talked to my parents or siblings at all. I would fly back home to visit one of the two sides of my family during the holiday season, but that was it.

Looking back at those years, I (unconsciously) fit neatly into the mold suggested by this article (an emphasis on personal happiness, rejecting relatives that hold clashing beliefs, resentment from divorce, etc).

Ironically due to COVID lockdown in the last 18 months I found both myself and my wife rekindling relationships virtually (video games, discord/zoom calls, random BS texting, snapchat) with uncles, cousins, siblings, and parents that we hadn't really talked to in years. It's honestly been wonderful.

If you feel the article speaks to you, I encourage you to give estranged relatives a shot, or at least think about it. It's easiest to maintain momentum not talking to someone at all, but you might be missing out.

One thing that worked for me to break the ice was to start a group SMS chat with parents and siblings and just share random goings-on, pictures, etc.