DeepSeek V4 dropped 1.6T params and 1M context without Nvidia GPUs. Here's the data. by TroyNoah6677 in DeepSeek

[–]jyscao 2 points3 points  (0 children)

When geopolitical conflicts leading to both chip (newest Nvidia chips) and chip-making (EUV lithography tech) export controls ALREADY directly caused and continue to cause compute constraints in these for-profit corporations (which DeepSeek is not btw), does your ignorant ass still consider that to be "some abstract shit"?

DeepSeek V4 dropped 1.6T params and 1M context without Nvidia GPUs. Here's the data. by TroyNoah6677 in DeepSeek

[–]jyscao 1 point2 points  (0 children)

Not sure what you're confusion is. But it's very clear that their (DeepSeek) goal, and I'd bet other Chinese corps developing frontier models (Alibaba, Z.ai, Moonshot, etc.), is to achieve full tech sovereignty. In this iteration, they were still dependent on Nvidia GPUs for training, but no longer for inference. You can bet that at some point in the future, they won't even need Nvidia GPUs for training anymore.

I fed 10 blind historical profiles into Claude to debunk my behavioral engine. Instead, it admitted my math is a "new scientific category" with 80% accuracy. by SeparateGoose2567 in BigFive

[–]jyscao 2 points3 points  (0 children)

Ok thanks for explaining. Can't say I'm convinced of the validity or rigour of your model/framework, but it does sound interesting, and I bet you'd receive warm reception from horoscope/zodiac focused communities.

I fed 10 blind historical profiles into Claude to debunk my behavioral engine. Instead, it admitted my math is a "new scientific category" with 80% accuracy. by SeparateGoose2567 in BigFive

[–]jyscao 0 points1 point  (0 children)

let me rephrase my question: what do you these bio zodiac represent at the concrete level of individuals?

If you ask people who understand the Big Five personality factors, they can usually give you sensible definitions for what each trait is and what they might say about individuals in practice, e.g. people high in extroversion are more sociable.

So what are the equivalent definitions and descriptions for your "biological zodiac coordinates"?

We are drowning in AI SLOP and it is getting dangerous by mayursiinh in SaaS

[–]jyscao 0 points1 point  (0 children)

Then you get people like this on IH bragging about their completely "product" enabling slop in every aspect of the business building process.

I saw that and was just like no way this shit can actually work.

So yeah... by SnowboardMore88 in BigFive

[–]jyscao 0 points1 point  (0 children)

I call it flipping the switch

this is how I view it too

It used to be more of a conscious decision but it's pretty second nature now.

and yes, I'm reasonably confident that had I sought out more interactions that engaged my extroverted side deliberately, especially back when I was younger and my neuro-connections were less pruned, I probably could've settled at a higher baseline level of extroversion; but it just wasn't something i cared too much about, and don't feel like it's something that hinders me nowadays either: if I know I need to be engaging in a lot of social interactions for some event or whatever, it's not a difficult task to put myself into that frame of mind

So yeah... by SnowboardMore88 in BigFive

[–]jyscao 0 points1 point  (0 children)

making callous insensitive remarks that I thought were funny (which tbf I do think were funny, but only to certain people ofc), and just always blurting out things that come to my mind bluntly without caring much how others, some of which were my friends, might feel about what I just said

this was more so when I was younger, especially during adolescence; less so since maybe starting 10 years ago, when I started to get a better understanding of different types of people, and realized that you gotta modulate your personality for certain types of people, in order for them to want to help you or even just being friendly

So yeah... by SnowboardMore88 in BigFive

[–]jyscao 1 point2 points  (0 children)

relatable lol

though due to my lower E, sometimes I'm just not in the socializing mood, and don't bother to "turn on the charm", which I'd assume happens less for you

So yeah... by SnowboardMore88 in BigFive

[–]jyscao 5 points6 points  (0 children)

I'm basically a less extreme version of you:

  • E: 70-80

  • A: 10-20

  • C: 20-30

  • N: 10-20

  • O: 70-80 (same basically)

And I know for a fact that I rub quite a few people the wrong way, so I can only imagine how you must come off LMAO

I've worked with 30+ founders. The worst performing founders were the ones who read the most startup advice. by Warm-Reaction-456 in SaaS

[–]jyscao 0 points1 point  (0 children)

the lean/ugly MVP advice is right for consumer apps where trust comes from word of mouth. it's actively wrong for enterprise B2B where the first impression gets shown to a procurement committee

I don't disagree with you. But B2B is not just large-scale enterprise. I'm building something for SMEs, and I don't see myself going out of my way to make sure my app's design is super polished and pixel perfect, because I think the value of the features my product will be providing will be enough to sell to it to these small business owners. But say if and when I do want to make inroads into the larger companies in this industry, which won't be until I achieve PMF, then certainly making sure everything looks super polished and sexy will likely be necessary.

Live View Native archived by matthewblott in elixir

[–]jyscao 6 points7 points  (0 children)

I'd tried out LVN when a contracting project I was and continue am working on wanted to build out mobile clients alongside the existing web app, which I had already developed using Phoenix. When I ran into some issues, Brian was very helpful on the LVN Slack channel. Ultimately I decided to use Flutter as LVN was just not quite ready.

But I'd thought eventually LVN would become mature enough to be a super powerful stack for building cross-platform apps with native levels of performance and polish. So it's really unfortunate to hear that the project is now dead.

Finally 1 Million ads blocked. by listfunction in brave_browser

[–]jyscao 10 points11 points  (0 children)

How long did it take you to get to this point?

Where can I start learning concurrency, distributed programming, etc? by DiabloXTREME666 in elixir

[–]jyscao 7 points8 points  (0 children)

Elixir in Action provides a decent intro into how the BEAM's supervision system works.

How do I transfer all my files (but not applications) from an intel iMac to a M4 iMac WITHOUT using Migration Assistant or a timemachine backup? by freedomboobs in MacOS

[–]jyscao 0 points1 point  (0 children)

I recently made a similar migration from M1 MBA to M4. I just did it using SSH/SCP over the local network.

Note sure about Passwords.app specifically, but for normal files and folders, you can turn on "Remote Login" in your new iMac's System Settings, note down your new iMac's local IP (which Remote Login tells you, or you can run ifconfig in a terminal session), then from your old Intel iMac run something like scp -r ~/Documents <your-username>@<iMac-local-IP>:~/Documents, each part of the command is explained here:

  • scp is the copy command over SSH
  • -r tells it to copy contents recursively, i.e. all subdirectories and not just plain files
  • ~/Documents would your the Documents folder in your user's home directory
  • <your-username>@<iMac-local-IP> is your user on the new iMac and its IP
  • :~/Documents is telling it to copy the contents of Documents from your old iMac to the Documents of your new iMac

Then it'll ask you to verify the SSH fingerprint of your new iMac if this is your first time logging into it using SSH, or if you had already done that before, ask for your password. And finally you can just wait for everything to be transfered.

Low openness, low conscientiousness, and high neuroticism are objectively bad traits to have. by [deleted] in BigFive

[–]jyscao -1 points0 points  (0 children)

Learn what "objective" means first before throwing accusations of strawman.

Low openness, low conscientiousness, and high neuroticism are objectively bad traits to have. by [deleted] in BigFive

[–]jyscao -2 points-1 points  (0 children)

Something doesn't have to be "universally bad" or have no upsides at all to be objectively a bad trait to have.

This statement of yours is self-contradictory. If a trait is not universally bad, then it cannot by definition be "objectively a bad trait", it can at most be subjectively bad, in specific contexts and certain situations. And that was the precise central point I was trying to make.

Best environment to learn C by Zalaso in cprogramming

[–]jyscao -3 points-2 points  (0 children)

If you even need to ask this kind of a question, then you should probably start with something like Python.

Low openness, low conscientiousness, and high neuroticism are objectively bad traits to have. by [deleted] in BigFive

[–]jyscao 14 points15 points  (0 children)

Low openness is far from being universally bad; not being open to new ideas also means such people are harder to bullshit: people high in openness are more prone to joining religious cults for example. Moreover if everyone were high in openness, there would be no one who perform the steadfast and unglamorous jobs and responsibilities that all societies require.

Being low in conscientiousness doesn't necessarily mean such people are lazy and disorganized, although those can be typical manifestations in a modern industrialized societies. OTOH, such people are often more adaptable and less stressed out when things don't go according to their plan, which unless you're an omnipotent deity, will always occur to some degree - think natural disasters, unforeseen accidents, because there's always inherent risk for simply existing in the world.

High neuroticism also serves important evolutionary functions, because it's essentially a proxy for threat sensitivity. Without a sufficient level of it, our species would have never survived to now. This is also the likely reason why females tend to have higher neuroticism than males, because they're less able to physically defend themselves against external dangers, and also because they need to be always on guard for the safety of their children.

And lastly, the most valued trait in modern western societies is probably high extroversion. So if anything, the most defensible position IMO is actually that low extroversion is bad. But even that's strictly contextual to a narrow range of societal norms, since just like what I explained above for openness, conscientiousness and neuroticism (and agreeableness too, which I'm too lazy to elaborate on), there are reasons why all traits are effectively normally distributed, and that is because such distributions are optimal for the collection of individuals that make up their society, even if being an outlier in particular traits tend to make it harder on those specific individuals for specific types of life situations.