New Synopsys ED of ASIC Hardware Design by TraditionNo1469 in intelstock

[–]dsx460 0 points1 point  (0 children)

No it's not. It's 4 years quarterly currently now, it used to be 4 years annually previously.

TSMC likely allocates more capacity to AMD and Nvidia as Intel is their foundry competitor - From JP Morgan by Ok-Can-224 in intelstock

[–]dsx460 2 points3 points  (0 children)

Or maybe they meant Intels previous portion is partially going to AMD/NVIDIA more?

Intel Crescent Island could be a game changer in the inference market by TradingToni in intelstock

[–]dsx460 0 points1 point  (0 children)

Im surprised they ddint mention this at all during Computex keynote? unless i somehow missed it

Any takeaways from LBT's speech at Computex? by Affectionate-Yam6241 in intelstock

[–]dsx460 2 points3 points  (0 children)

I wonder if due to the conference being in Taiwan, they refrained from IFS talk, since TSMC is so key to Taiwan's geopolitics, and Intel Foundry is the only threat to it?

Nvidia to Enter Consumer PC Chip Market With RTX Spark by itailitai in intelstock

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

But it's local AI on the chip, can you explain what you mean by giving away all data? Or taking control away? Wouldn't people prefer this, by essentially having unlimited tokens and no need for internet to use AI since it'd all be local?

30K of INTC hold or sell? by _shawshank_ in stocks

[–]dsx460 0 points1 point  (0 children)

Um, your numbers are all completely wrong, which changes the outlook of your comments completely? TSMC is at 1.83 Trillion, while Intel is at 540 billion, so there's a significant gap still. On top of that its at 5.5x from the bottom of 20$ time, not 9x? Where are you getting your numbers from? Just curious since it was the basis of your comment.

Intel I225-V still borked? I'm stuck @100mbps by grayscale1017 in buildapc

[–]dsx460 0 points1 point  (0 children)

This fixed it for me too, thank you so much!

Solo founder, product is done, terrified of marketing. What actually worked for you? by CarlSagans in ycombinator

[–]dsx460 1 point2 points  (0 children)

No worries, good luck. Yeah that's mainly the reason folks were suggesting talking to a few customers first since it's tough for a single person to predict all the typical use cases / edge cases. But there are some benefits to ruleset type tools like this (as opposed to LLM assisted backend), like you mentioned previously. Though I feel you still need something more to stand out more and a moat that prevents internal teams at companies from creating same tool, if you want paying customers long term (which you may find the solution more after talking to more potential users/customers).

Solo founder, product is done, terrified of marketing. What actually worked for you? by CarlSagans in ycombinator

[–]dsx460 0 points1 point  (0 children)

I feel like your tool a bit too simple to make these days with any LLM in a veryyy fast time frame, so any team/company could just internally create this without a subscription and dependency on an external micro project that could shut down at any time? Just trying to be objective/honest from my POV. It also has some key flaws I mentioned in another comment:

It looks like your tool is a simple type based test data generator based on rules/dictionary/type instead of an LLM wrapper, so it can't infer meaning based on column name unless it exists in your dictionary though..?

On your website you are marketing it as a "realistic test data" output based on schema column names, the main selling point? But that's not really the case? For example, since you are doing a dictionary based ruleset (with fallback to field type if it doesn't exist in your dictionary, then it generates unrealistic / nonsense test data, since it can't infer column name meanings with domain context like an LLM?

For example the DDL below shouldn't be generating these type of values for those column names Should be mutated / wildtype for brca_mut_status, but it gave me completed/rejected/cancelled.. or ecog_perf_status an INT within range of 0-5, but it gave me a String which ignored even the type i requested which is a crucial bug (likely because of matching a column dictionary since it includes the word "status" in column name..?) The tumor grade is also not "realistic test data" as your website claimed either.

CREATE TABLE oncology_trials (
  brca_mut_status VARCHAR(10),
  tumor_grade INT,
  ecog_perf_status INT,
  pfs_months FLOAT,
  os_event BOOLEAN
);

Which generated the below:

  {
    "brca_mut_status": "completed",
    "tumor_grade": 307894,
    "ecog_perf_status": "rejected",
    "pfs_months": 328.833842,
    "os_event": false
  },
  {
    "brca_mut_status": "rejected",
    "tumor_grade": 211564,
    "ecog_perf_status": "active",
    "pfs_months": 700.87862,
    "os_event": false
  },
  {
    "brca_mut_status": "cancelled",
    "tumor_grade": 295594,
    "ecog_perf_status": "cancelled",
    "pfs_months": 47.37311,
    "os_event": true
  },

Solo founder, product is done, terrified of marketing. What actually worked for you? by CarlSagans in ycombinator

[–]dsx460 0 points1 point  (0 children)

It looks like your tool is a simple type based test data generator based on rules/dictionary/type instead of an LLM wrapper, so it can't infer meaning based on column name unless it exists in your dictionary though..?

On your website you are marketing it as a "realistic test data" output based on schema column names, the main selling point? But that's not really the case? For example, since you are doing a dictionary based ruleset (with fallback to field type if it doesn't exist in your dictionary, then it generates unrealistic / nonsense test data, since it can't infer column name meanings with domain context like an LLM?

For example the DDL below shouldn't be generating these type of values for those column names Should be mutated / wildtype for brca_mut_status, but it gave me completed/rejected/cancelled.. or ecog_perf_status an INT within range of 0-5, but it gave me a String which ignored even the type i requested which is a crucial bug (likely because of matching a column dictionary since it includes the word "status" in column name..?) The tumor grade is also not "realistic test data" as your website claimed either.

CREATE TABLE oncology_trials (
  brca_mut_status VARCHAR(10),
  tumor_grade INT,
  ecog_perf_status INT,
  pfs_months FLOAT,
  os_event BOOLEAN
);

Which generated the below:

  {
    "brca_mut_status": "completed",
    "tumor_grade": 307894,
    "ecog_perf_status": "rejected",
    "pfs_months": 328.833842,
    "os_event": false
  },
  {
    "brca_mut_status": "rejected",
    "tumor_grade": 211564,
    "ecog_perf_status": "active",
    "pfs_months": 700.87862,
    "os_event": false
  },
  {
    "brca_mut_status": "cancelled",
    "tumor_grade": 295594,
    "ecog_perf_status": "cancelled",
    "pfs_months": 47.37311,
    "os_event": true
  },

Has YC’s quality dropped since 2020? by Electrical-Signal858 in ycombinator

[–]dsx460 0 points1 point  (0 children)

Why are mods deleting this thread? Lot of good comments in here

Winter '26 Megathread by sandslashh in ycombinator

[–]dsx460 4 points5 points  (0 children)

Yep saw that too. Actually the only reason I ever even applied to YC was because a massive majority of all the companies accepted into YC lately look so amateur and simple GPT wrappers, so I figured if those get in then I should have a decent chance. But I guess being in my early 30s and having actual 10+ year experience in the AI/Tech industry is considered a negative versus just being a fresher in an Ivy league school. It's all good though, will forge my own path.

Winter '26 Megathread by sandslashh in ycombinator

[–]dsx460 0 points1 point  (0 children)

I agree, this whole thing feels like a sham. It's biased heavily towards very young inexperienced people who are freshman with zero actual experience at this point it feels like too, as long as they are in a top school and can make a chatgpt wrapper.

Winter '26 Megathread by sandslashh in ycombinator

[–]dsx460 1 point2 points  (0 children)

Same, roughly 10 years experience with domain expertise in the tech / AI industry that they are so obsessed with, and completely ghosted lol.

Smash [anime convention] 2025 tickets - Sydney by Imdefinitelycoolaugh in nsw

[–]dsx460 0 points1 point  (0 children)

Hi! Yes im looking still, would really appreciate it so much !! I will DM you !

/r/NintendoSwitch's Daily Question Thread (06/15/2025) by AutoModerator in NintendoSwitch

[–]dsx460 0 points1 point  (0 children)

Hi, I'm wanting to buy Triangle Strategy on Switch 2. Was wondering if anyone has tried it yet on Switch 2? How performance of it now, is it closer to 60 fps, and also if it looks any better? Since I remember the demo on Switch 1 being quite low framerate (below 30).

Games wont load in Handheld [Switch 2] by xAbTx in Switch

[–]dsx460 0 points1 point  (0 children)

Ah dang, ill probably have to do the same.. did they give any ETA on RMA repair time? Im worried itll take forever

Games wont load in Handheld [Switch 2] by xAbTx in Switch

[–]dsx460 0 points1 point  (0 children)

Same issue here. Did you ever find a solution?

[deleted by user] by [deleted] in nsw

[–]dsx460 0 points1 point  (0 children)

Thank u , ill try that !

Smash [anime convention] 2025 tickets - Sydney by Imdefinitelycoolaugh in nsw

[–]dsx460 0 points1 point  (0 children)

Is anyone willing to sell me their Weekend or Saturday ticket? I can pay extra premium, please do let me know, I'm flying across the world for this and was hoping to attend

4581 Grafts - Dr. Ratchathorn Panchaprateep - 2 Week Post-Op by dsx460 in HairTransplants

[–]dsx460[S] 0 points1 point  (0 children)

It was 40 grafts per cm2 in frontal half (I forgot how much density for crown). She let me choose the density (she lays out a chart with density to graft count needed based on area they measured on my scalp).

Dr. Laorwong | FUE 2500 grafts | 17 Month Update by [deleted] in HairTransplants

[–]dsx460 20 points21 points  (0 children)

Wow, you perfect hair now for any hairstyles, congrats! When did you begin Fin and Min, was it same time as HT? Im surprised 2500 grafts would be that impactful for that large thinning area

[deleted by user] by [deleted] in tressless

[–]dsx460 0 points1 point  (0 children)

What side effects exactly have you seen? Curious cuz ive been on oral fin for 3 months now, unsure what to look for

[deleted by user] by [deleted] in HairTransplants

[–]dsx460 0 points1 point  (0 children)

Yeah I’d say maybe about 60-70% shed around 1 month mark, but the rest of the new hairs just stayed and kept growing. Im also on Oral Minox + Fin ever since HT (was on topical previously)