_contact-me
personal-info
folderbio
folderinterests
foldereducation
high-schoolhigh-school
universityuniversity
education
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** /** * About Me * * I am Nguyễn Hải, a Frontend Developer who started as an intern * and now working officially in the field of web development. * Currently a final-year IT student at Văn Lang Sài Gòn College. * * I have hands-on experience with React, Tailwind, and JavaScript, * and also explore backend with Node.js, Prisma, and PostgreSQL. * * Recently, I am working on an IoMT (Internet of Medical Things) * project to manage medical devices and environment parameters, * which strengthens my interest in Full-stack development and * software solutions for healthcare. * * My career goal is to become a Full-stack Developer and * contribute to impactful projects that improve daily life. */
@username
Created 5 months ago
💬details
3 stars
function initializeModelChunk<T>(chunk: ResolvedModelChunk): T { const value: T = parseModel(chunk._response, chunk._value); const initializedChunk: InitializedChunk<T> = (chunk: any); initializedChunk._status = INITIALIZED; initializedChunk._value = value; return value; }
My work here was 5 months ago. It was for the project called "...". Some other text can be placed here.
@username
Created 9 months ago
💬details
0 stars
export function parseModelTuple( response: Response, value: {+[key: string]: JSONValue} | $ReadOnlyArray<JSONValue>, ): any { const tuple: [mixed, mixed, mixed, mixed] = (value: any);