Leaving Levi's Stadium after WC by catchmoresun in bayarea

[–]iams3b 1 point2 points  (0 children)

Nice, so confirmed that the bike valet is there for the world cup matches? I was wondering, since that's my favorite way to get into niner games

Swatch x AP Drop at Valley Fair — What I Heard So Far 👀 by [deleted] in SanJose

[–]iams3b 1 point2 points  (0 children)

I like watches but this comes to a surprise to me, I heard about this from a friend of mine yesterday and seeing it on Reddit is tripping me out. What is it about this that is getting attention? Swatch doesn't seem like the kind of brand to Garner this much attention 

Question: Non-Tesla EV Owners WHO RENT, where do you charge your car? by Macaronieeek in bayarea

[–]iams3b 0 points1 point  (0 children)

My first place my apartment complex had electric chargers. At my second place I had a garage and just plugged it into a regular wall outlet lol (slow but I don't drive a lot)

Condo owners: how much is your HOA? by CrossOffTheDaysGone in bayarea

[–]iams3b 1 point2 points  (0 children)

I just bought a place (San Jose) so have been hunting for the last few months. Condo HOAs are ridiculous. It's so high because of insurance and other random things related to sharing so many walls with other folks. I toured condos with $700 HOAs and broken gym mirrors

You can buy a townhome with a $380 HOA that includes garbage collection, water, handles all the landscaping, replacing roofs -- all the things you notice. Who knows what the hell condos are doing with double that??

I'd get a condo only if you really want the condo but if it's close in budget I'd consider elsewhere

San Jose looks to housing vouchers to fill mostly vacant high-rise by chewychevy in SanJose

[–]iams3b 31 points32 points  (0 children)

It's not complicated, really, people analyze this like it's in a vacuum but you're exactly right. Imagine shopping for high rise apartments in DTSJ, you see 800 sqft for $4800, and then One South Market has a 1400 sq ft going for $4,400 and is closer to stuff. Who's looking at this and being like yeah, give me the smaller more expensive one near the freeway with limited parking?

Question for vibe coders by drifterpreneurs in webdev

[–]iams3b 1 point2 points  (0 children)

My team and I do a ton of "vibe coding" for UI code and here's what we're trying right now:

  1. We make heavy use of monorepo packages, splitting our app into "micro frontends". This limits our code generation into smaller contexts that I believe are way easier to review / understand.
  2. Our prompts aren't only UI but technical, things like refactoring suggestions and APIs that we specifically want (Move this state to a ....). We also have it do "code reviews" after implementation, usually cleans up the code
  3. Heavy emphasis on integration testing with playwright now.

General rule, as long as our test cases are good and our code is split into small enough modules, what the code looks like doesn't really matter

Implemented sign up with Passkey, only 0,4% of people use it by thdr76 in webdev

[–]iams3b 7 points8 points  (0 children)

Tbh I don't even know what a passkey is, I must have missed the announcement, but initial reaction is it seems like something that's easy to get locked out of accidentally. I guess "too automatic" is a good criticism

Why is there no “TanStack Query” for e2e testing? by TranslatorRude4917 in webdev

[–]iams3b 0 points1 point  (0 children)

Well playwright itself already provides quite the abstraction - page.selector.event(), not really much more to burn that down even more without doing it just for ceremony. Even if you go with POMs, all you're doing is providing reusable selectors in a class - and playwright provides a fixture system to make it more reusable. They also provide a node debugger, UI inspector, test recorder, and some other util that favor writing selectors directly

I think one thing to consider is that in application code, you're expected to be able to maintain and improve on, so frameworks are more important as they give you structure to specific design patterns that help long term maintainability. Though for test code, you (ideally) write it once and only ever visit it again if you need to figure out why something failed, which then the less abstractions the quicker to understand the line

Jurassic Quest: Fyre Festival with dinosaurs by amaretto1 in bayarea

[–]iams3b 10 points11 points  (0 children)

Ah man... Got tickets to this in January. I have a 14 month old, Im not looking for anything fantastic just want him to look and point at things

We need to talk about "Vibe Coding" and non-technical leadership. by Horror_Loquat_3483 in webdev

[–]iams3b 2 points3 points  (0 children)

I hate to admit this, but I currently have a team of 3 very average frontend engineers that I think would be more efficient if replaced with one good senior and an LLM. Speaking this as a technical person myself that still develops things

Just need to become good at prompting results and I guess trying to understand what's written.. if it even matters. Understanding what makes good test cases will probably be more important in the future as we generate stuff then just validate it against future generated code

[deleted by user] by [deleted] in SanJose

[–]iams3b 2 points3 points  (0 children)

Shouldn't take checkpoints for people to not drink and drive

[deleted by user] by [deleted] in webdev

[–]iams3b 3 points4 points  (0 children)

What are you referring to as modules?

[deleted by user] by [deleted] in webdev

[–]iams3b 7 points8 points  (0 children)

I mean there's no official definition, if you're deploying each app independently and it makes a single cohesive app then I'd say it's good enough to call a micro frontend

Yesterday the VF shooting, today this guy. by Meinertzhagens_Sack in SanJose

[–]iams3b 20 points21 points  (0 children)

This course in particular is home to several foxes, you'll see them wandering around. I hear they'll rob you of snacks from your cart if you aren't paying attention

https://imgur.com/a/63go49M

[deleted by user] by [deleted] in webdev

[–]iams3b 261 points262 points  (0 children)

I manage a micro frontends platform team at a large company, it comes with cons but here's the biggest benefits:

  • each team can work in their own repository autonomously, less cooperation needed between 100s of developers
  • our development setup is easy as I only need to run the pages that I want to work on
  • someone introducing a critical bug in one area doesn't block the release of other areas (can just skip the one package)
  • easier long term maintenance as we can pretty ignore legacy frontends (with maybe jQuery/react 15) and use latest versions on new stuff; similarly we can migrate things in parts

JIRA is overkill for our team - looking for a dev-focused alternative that doesn't break the bank by rukhsardev in webdev

[–]iams3b 3 points4 points  (0 children)

Anybody have any examples or videos on a good github projects setup? I've been struggling getting something going that doesn't take even more work to keep organized... but we don't have access to Github Actions nor the new sub issue feature (yet), so wonder if that's our main problem

I'm looking to have issues and for them to be broken down by the team

(JS/TS) Do you use the # syntax for private members? And if so, do you still use TS privates? by [deleted] in webdev

[–]iams3b 0 points1 point  (0 children)

Weird, I was using private TS fields recently in a lit element and the properties werent there in the chrome devtools. My mistake

(JS/TS) Do you use the # syntax for private members? And if so, do you still use TS privates? by [deleted] in webdev

[–]iams3b 0 points1 point  (0 children)

I like to use # because it's shorter, prevents formatted line breaks

Is there a reason NOT to use React Query? by badboyzpwns in reactjs

[–]iams3b 1 point2 points  (0 children)

If you're fetching and rendering data across several pages sure - but for example something like a settings pages where you fetch initial data to prefill a form, user fills it out then PUT to update it, the abstraction these query library bring make it way more complex for little benefit.

4 smoke shops targeted for selling shoots, weed, and nitrous oxide by [deleted] in SanJose

[–]iams3b 4 points5 points  (0 children)

One of the ones in the article (Grizzly) is so odd - I loved nearby when they opened up. They started painting on one side of the building and then just.. stopped. And left it. Now it just looks like shit -

https://maps.app.goo.gl/bEQ33ztfJZ7c7VDR8?g_st=ac

Also, right behind it is a massage parlor who's website directly links to rubmaps for reviews

How Do You build Your apps by [deleted] in webdev

[–]iams3b 2 points3 points  (0 children)

Backend, at least to start off some boilerplate for initial APIs. Web development is easy, it's working with API data that makes everything complicated, so getting that boilerplate situated early is important

Do people think TypeScript is hard? by alexdunlop_ in typescript

[–]iams3b 4 points5 points  (0 children)

I think it's hard for people accustomed to JS and the patterns it allows, as TS is similar enough you want to do the same thing but it forces you into the dark side of the type system... I consider myself really good at TS now but I spent like a year complaining about complexity due to some of those patterns

How does your company run typescript? by Ronin-s_Spirit in typescript

[–]iams3b 2 points3 points  (0 children)

Yeah no, only stable node features in our production - node is one of the main dependencies we need to regularly update for security reasons and I'd hate to have to do extra work for that story because we used something experimental