HackerTrans
TopNewTrendsCommentsPastAskShowJobs

WesleyJohnson

no profile record

comments

WesleyJohnson
·vor 22 Tagen·discuss
59,400 - It said I'm a person of few words. It also recommended I read a dictionary. I feel some kind of way about that. :D

Fun!
WesleyJohnson
·vor 22 Tagen·discuss
I knew I shared a name with a former NBA Forward, but I did not know about some of the other well-known figures. Sadly (or thankfully?) I'm not listed anywhere, even in the hallucinations.
WesleyJohnson
·vor 2 Monaten·discuss
You certainly stumbled onto it much sooner in life than I did. It wasn't until I had children in my late 30s that this dawned on me - and has perplexed me ever since. Funny indeed.
WesleyJohnson
·vor 2 Monaten·discuss
Oh wow, I hadn't thought of taste, but you're exactly right. Fascinating subject.
WesleyJohnson
·vor 2 Monaten·discuss
Amazing. I'm so glad to have a name for this.
WesleyJohnson
·vor 2 Monaten·discuss
I'm sure this isn't an original thought, but I wonder how others see colors. Irrespective of color blindness, is what I know as red appear as blue to someone else? How would you even know or describe it? "Red, like a strawberry, tomato, or apple." And they say, "Yes, exactly." But what they're truly seeing is what YOU know as blue. They see something different than you do, but to them that color has always been called red - even though, if you were to see it as them, it's blue.
WesleyJohnson
·vor 3 Monaten·discuss
This discussion has been particularly insightful. I'm 47 and have been drinking 2 to 3 Mtn Dew Kickstarts a day for probably 10 years. I don't feel high, or jittery, or like I'm bouncing off walls. I have no trouble falling asleep, even drinking caffeine right up until bed time. But, I also have trouble focusing, am working with a psychologist on a possible ADHD (primarily inattentive) diagnosis, never dream, and am very forgetful.

Based on everything I'm reading below, and a "discussion" with Gemini, it's highly probable all of this is related. I know AI isn't a doctor, and confirmation bias and all of that, but even if it's all nonsense - backing off on caffeine or quitting entirely can only help.

So I'm going to star to day, by trying to not have any after 2pm. My regular bedtime is around midnight, so that's 10 hours. We'll see how it goes.

Thanks HN!
WesleyJohnson
·vor 3 Monaten·discuss
"X is just old" is a tired criticism of most things in my experience. Bloated would've sufficed, even if it's subjective.
WesleyJohnson
·vor 4 Monaten·discuss
The issue I had with RAG when I tried building our own internal chat/knowledge bot was pulling in the relevant knowledge before sending to the LLM. Domain questions like "What is Cat Block B?" are common and, for a human, provide all the context that is needed for someone to answer within our org. But vectorizing that and then finding matching knowledge produced so many false positives. I tried to circumvent that by adding custom weighting based on keywords, source (Confluence, Teams, Email), but it just seemed unreliable. This was probably a year ago and, admittedly, I was diving in head first without truly understanding RAG end to end.

Being able to just train a model on all of our domain knowledge would, I imagine, produce much better results.
WesleyJohnson
·vor 4 Monaten·discuss
And then Trump can sign the checks again....

Sarcasm aside, I agree the refunds should go back to consumers, not the importers. I don't have a source, but I have to imagine the lion's share of companies that were hit with tariffs increased their prices, and the consumer paid the bill.
WesleyJohnson
·vor 4 Monaten·discuss
What businesses were legitimately going to go bankrupt by the increased tariffs? I'm not defending the tariffs, mind you, but I don't buy that every company had to increase prices to offset the additional taxes. Many could've taken the hit and been fine, except profits would be down and shareholders would be angry.
WesleyJohnson
·vor 4 Monaten·discuss
I had the same thought. Even if it wasn't the original intent, it sure is a preferable outcome.
WesleyJohnson
·vor 4 Monaten·discuss
What player is going to step in and do what Anthropic wouldn't? Or, worse, will the DoW try to author its own AI to go where private AI won't?
WesleyJohnson
·vor 5 Monaten·discuss
Very uncultured and untraveled caucasian here. I got 10/18, surprising myself. Probably plenty of luck, but at least 5 or 6 I was quite confident about. Not sure how.
WesleyJohnson
·vor 5 Monaten·discuss
The article has mounds of data that to speak to exactly how the clothing sizes ARE the issue. Inconsistencies within brands, across brands, shifting vanity sizes, and shapes designed to fit only 12% of women. And yet, the top comment is about obesity...

Yes, obesity is clearly an epidemic. But discounting the entire article's premise to point that out?
WesleyJohnson
·vor 5 Monaten·discuss
But they're not lowest-common-denominator products. If they were, clothing designers would be tailoring clothes for a rectangular figure. The article clearly shows that only 12% of women have that "hourglass" figure and yet, by design, almost all the clothing manufacturers are tailoring their clothes for this shape, regardless of size.
WesleyJohnson
·vor 6 Monaten·discuss
My disconnect is I can't read sheet music. So I can hear it, then memorize where it is on the piano/keyboard... but that just teaches you play piano by ear. It doesn't teach you how to play music in the traditional sense.

I guess this showing you the sheet music as you find the notes can help with that, but as others noted - I'd like a "mess around" mode, before a "test" mode.
WesleyJohnson
·vor 7 Monaten·discuss
Any tips or resources on how to get started? I drew a lot of comics as a kid/teen, and I've done 3d modeling as a hobbyist. But using physical media for sculpting has always seemed daunting.
WesleyJohnson
·vor 7 Monaten·discuss
I didn't intend to imply "best" even in the scope of a team, let alone every software engineer in the world. But, I understand your point and it's fair.
WesleyJohnson
·vor 7 Monaten·discuss


  manage.py makemigrations myapp --empty --name add_some_view
(in the migration file)

  operations=[migrations.RunSQL("Create View some_view AS ....", "DROP VIEW IF EXISTS...."]
(in your models.py)

  class SomeView(models.Model):
       class Meta:
           db_table = 'some_view'
           managed = False

  manage.py makemigrations myapp --name add_some_view_model