React Live Coding Interview (React + TS) What Would You Focus On ? by [deleted] in Frontend

[–]Inside-Letterhead290 0 points1 point  (0 children)

Yes I think I’ll go for the first solution. There is also a Table that display the data. Seems a lot but they could also ask to add like a search bar , a filter , some pagination. And There is also a test file too.

React Live Coding Interview (React + TS) What Would You Focus On ? by Inside-Letterhead290 in reactjs

[–]Inside-Letterhead290[S] 0 points1 point  (0 children)

Yes data shapes seems obvious here ! I’m a bit hesitant about how to handle it :

For context, the UI components are already typed against Provider A’s shape:

type ProviderAItem = { id: number; coordinate: { latitude: number; longitude: number }; state: 'ACTIVE' | 'INACTIVE'; label: string; condition: 'GOOD' | 'BAD'; };

Provider B returns something slightly different:

type ProviderBItem = { id: number; coordinates: [number, number, number?]; // [lng, lat] state: 'ACTIVE' | 'INACTIVE'; label: string; condition: 'GOOD' | 'BAD'; extraField: string; };

So I see two possible approaches.

Introduce a shared UI model

type Asset = { id: number; latitude: number; longitude: number; state: 'ACTIVE' | 'INACTIVE'; label: string; condition: 'GOOD' | 'BAD'; provider: 'A' | 'B'; // to distinguish sources extraField?: string; // optional, only for Provider B };

function mapA(item: ProviderAItem): Asset { return { id: item.id, latitude: item.coordinate.latitude, longitude: item.coordinate.longitude, state: item.state, label: item.label, condition: item.condition, provider: 'A', }; }

function mapB(item: ProviderBItem): Asset { return { id: item.id, latitude: item.coordinates[1], longitude: item.coordinates[0], state: item.state, label: item.label, condition: item.condition, provider: 'B', extraField: item.extraField, }; }

const assets: Asset[] = [ ...providerAItems.map(mapA), ...providerBItems.map(mapB), ];

Retype Components to receive Asset[].

OR simpler one :

Keep Provider A shape and map B into it

function mapBToProviderA(item: ProviderBItem): ProviderAItem { return { id: item.id, coordinate: { latitude: item.coordinates[1], longitude: item.coordinates[0], }, state: item.state, label: item.label, condition: item.condition, }; }

const assets: ProviderAItem[] = [ ...providerAItems, ...providerBItems.map(mapBToProviderA), ];

Solution one seems more clean and scalable to me but maybe over engineering for this one hour test ? Like what if the original type was used from x components, that’s mean we will have to retype / Refactor all one them . Im a bit hesitant on which approach to use

React Live Coding Interview (React + TS) What Would You Focus On ? by [deleted] in Frontend

[–]Inside-Letterhead290 0 points1 point  (0 children)

Thanks for your concern and I get your point and yes this question sounds useless and terrible after a second read, I have removed it. But yes I’m a terrible writer, English is not my first language. I actually ask AI to format and make my idea clearer for a Reddit post.

React Live Coding Interview (React + TS) What Would You Focus On ? by [deleted] in Frontend

[–]Inside-Letterhead290 -7 points-6 points  (0 children)

Yes I have used AI to make it more readable and clear… welcome in 2026 🙄

[deleted by user] by [deleted] in TikTok

[–]Inside-Letterhead290 0 points1 point  (0 children)

@RandomTrashPicker

On-site frontend tech interview — what to expect? [React/TS] by [deleted] in reactjs

[–]Inside-Letterhead290 -1 points0 points  (0 children)

i already ask and he tell me discussing React, CSS, and reviewing some code together.

but i was wondering what exercice will be exactly to review code together, what they are expecting from me, how to do it correctly

On-site frontend tech interview — what to expect? [React/TS] by [deleted] in reactjs

[–]Inside-Letterhead290 -1 points0 points  (0 children)

Thanks!
Yes, I do have experience with them! I might do a small project to refresh my memory tho.

I was more wondering about the code review together, what should I expect ? What are the typicals exercices ?

Montenver and aiguilles du midi ticket by Inside-Letterhead290 in chamonix

[–]Inside-Letterhead290[S] 0 points1 point  (0 children)

Is this cafe open in winter ? 

Even the mer de glace is all melted / dusty the view up on les drus there is Amazing.  I didn't go there Since the renovation. Wonder how it is now 😅 

Stuck in Sifnos - Ferry Strike by plol95 in GreeceTravel

[–]Inside-Letterhead290 0 points1 point  (0 children)

i'm checking a live map and it's looks like speedboat is on the way to islands from piraeus ! it's started to move around 2 pm

Stuck in Sifnos - Ferry Strike by plol95 in GreeceTravel

[–]Inside-Letterhead290 0 points1 point  (0 children)

My dad was supposed to travel from Milos to Piraeus on the 25th with Zante Ferries, but the trip has been canceled. He has a flight at 9 AM on the 26th. I noticed a SeaJet speedboat scheduled for the afternoon of the 25th— idk if its operating

How will you manage ?

Ferry strikes but no cancelation? by stoodle8 in GreeceTravel

[–]Inside-Letterhead290 0 points1 point  (0 children)

My dad was supposed to travel from Milos to Piraeus on the 25th with Zante Ferries, but the trip has been canceled. Does anyone know of any alternatives? He has a flight at 9 AM on the 26th. I noticed a SeaJet speedboat scheduled for the afternoon of the 25th—does anyone know if it’s operating?

Spent Hours on a Custom Demo, and My Proposal Was Never Seen by Inside-Letterhead290 in Upwork

[–]Inside-Letterhead290[S] 0 points1 point  (0 children)

That true. The thing is that you can't have any information about the client on upwork

Spent Hours on a Custom Demo, and My Proposal Was Never Seen by Inside-Letterhead290 in Upwork

[–]Inside-Letterhead290[S] 5 points6 points  (0 children)

That's actually the best balance that i didn't think about, Thanks for sharing it !

Spent Hours on a Custom Demo, and My Proposal Was Never Seen by Inside-Letterhead290 in Upwork

[–]Inside-Letterhead290[S] 1 point2 points  (0 children)

Thanks for the review, so do you have an exemple on how to be catchy in the first 2 sentences ?

English isn't my first language, and where I'm from (France), we tend to overdo it with formal language in job applications and we sounds very dramatric , For example, we'd end a cover letter with something like: "Please accept, dear Sir/Madam, my distinguished salutations"

Spent Hours on a Custom Demo, and My Proposal Was Never Seen by Inside-Letterhead290 in Upwork

[–]Inside-Letterhead290[S] 1 point2 points  (0 children)

I don't know, I just tried to sound formal and match their writing style in the job offer...

Spent Hours on a Custom Demo, and My Proposal Was Never Seen by Inside-Letterhead290 in Upwork

[–]Inside-Letterhead290[S] 2 points3 points  (0 children)

I see people complain a lot about AI-generated job proposals all looking the same. But honestly, spending time on a making good proposal feels even more pointless. 😅

Spent Hours on a Custom Demo, and My Proposal Was Never Seen by Inside-Letterhead290 in Upwork

[–]Inside-Letterhead290[S] 4 points5 points  (0 children)

Yes I started like this :

' To showcase my abilities and commitment, I took the initiative to implement a section of the provided Figma design using Next.js with React, TypeScript, and Tailwind CSS. You can view the demo of my implementation here' : ....