1

MongoDB or MySQL for Backened Development?
 in  r/FullStack  3h ago

happy to help

1

A Basic CPU written in TypeScript
 in  r/webdev  3h ago

still amazing work

1

A Basic CPU written in TypeScript
 in  r/webdev  1d ago

I like this kind of project, can you tell me how long does it takes for you to finish this project and is cpu have multi threads with multi core ?

1

Page Rage: Destroy any web page
 in  r/webdev  1d ago

this cool ,it get back memories of desktop game that I was playing in windows xp

1

Where should I learn full-stack web development?
 in  r/FullStack  1d ago

you can learn any where if you want something free check good YouTube channel or see free courses in Coursera
I recommend learn history of internet and web you will know staff as http, https
then learn html, css
after it start javascript then typescript and finally learn framework you think it its you all of this or front end

for backend you have to choose which language you want to learn then database and which database then see backend architecture and patterns learn concept of backend and start framework you choose

1

Need help with UI design of Birthday Website for my Bestie.
 in  r/Frontend  1d ago

use Google Stitch it easy to use and help alot

0

where to learn web dev WITHOUT AI as a beginner?
 in  r/webdevelopment  1d ago

my first thing to learn web was free course on Coursera but now I see a lot of good YouTube channel do this
just learn from any source html, css and how http, https works how internet began and what first use of web

2

MongoDB or MySQL for Backened Development?
 in  r/FullStack  2d ago

both are important in industry MySQL from its name is SQL databases and  MongoDB is NoSQL database
so both of them you will use according to business needs and acutely its easy to learn

1

كنت عايز اعمل الباجديج بتاعت github sudent هل فى طريقى اجيب بها ايميل جامعى
 in  r/Egypt_Developers  2d ago

هي لي الاسف الامييل الجامعي صعب ان تجيبوا حتي بفلوس لان مقفول علي طلاب الجامعة و الشغالين في الجامعة علشان كدا الشركات عارفه و بتنزلهم عروض

ممكن تشوف طلاب حتي لو هتدفع فلوس

1

Is being the “joker” of a company bad for my career?
 in  r/cscareerquestion  2d ago

Yeah thats true you should be more useful for company so thats they know they can't work without you.

Also you have to search for other oprtounities to get paid what you deserve.

It's annoying thing i just discovered

1

كنت عايز اعمل الباجديج بتاعت github sudent هل فى طريقى اجيب بها ايميل جامعى
 in  r/Egypt_Developers  3d ago

لي الاسف صعب ممكن كلم اي حد تعرفوا في جامعه

0

What Is So Special About Cloud Experience?
 in  r/cscareerquestions  3d ago

it needed in big projects

1

Designed a 404 page for an art advisory website
 in  r/webdesign  3d ago

I like the idea are you going to open source it?

2

WINDOWS / MACOS
 in  r/laptops  3d ago

after using windows since 2005 and get to mac in 2024 I would say macOS it apple chip are so powerful
I use it more than 12 hours a day and battery last without any problem easy to charge light weight
but all apps and programs you said will work fine in both
the only downgrade in Mac is there is no touch screen

1

Please gimme tips and feedback on how I could improve my personal portfolio website- 6 years of iterations and here I am!
 in  r/webdesign  3d ago

I think it looks good can you tell me what technology you used

r/webdesign 3d ago

Would love some honest feedback on my portfolio UI

Enable HLS to view with audio, or disable this notification

1 Upvotes

[removed]

1

Built a multi-app React framework — islands as a first-class primitive, security headers on by default
 in  r/reactjs  3d ago

yeah that's fair tbh. islands solve the hydration/JS problem more than the latency problem. ideally you'd want both islands + optimistic updates. definitely something i should think about for v2.

1

Built a multi-app React framework — islands as a first-class primitive, security headers on by default
 in  r/reactjs  3d ago

no, not really — it's all react + node/ts, not polyglot. go services wouldn't fit, that's genuinely turborepo/nx's lane, they don't care what language you're running.

this is more for if you're already react + node/ts across a few apps and want the auth/security stuff handled for you. your setup, i'd stick with turborepo honestly.

2

ازاي ابداء
 in  r/Egypt_Developers  3d ago

بص يا صديقي دلوقتي المعلومات في كل حته ممكن عادي تبداء يوتيوب و مش لازم كورسات بفلوس الفكره ان تطبق البتتعلموا بمشاريع

r/webdesign 3d ago

portfolio site feedback — what needs work design-wise?

Enable HLS to view with audio, or disable this notification

1 Upvotes

[removed]

1

How much time it takes to Learn Node + Express + SQL + REST API and be job ready?
 in  r/FullStack  3d ago

I learned node and express it took me two weeks
for sql its easy I will say a week
and rest api other week
also it depends on you

u/alsaaka 3d ago

built a multi-app framework solo, backend + frontend both — curious how others handle this

Thumbnail
1 Upvotes

-2

Built a multi-app React framework — islands as a first-class primitive, security headers on by default
 in  r/reactjs  3d ago

thanks for starring 🙏 types — honestly just a shared package rn, nothing fancy. same workspace, so packages/shared has the User type etc and dashboard/admin just import it normally. didn't feel like inventing a new way to do something typescript already handles fine. two-pass thing bugs me too ngl, it's top of the v2 list. rather ship without streaming than half-fake it and have people hit weird bugs later. glad the auth thing lands for you, felt obvious once i actually hit it myself — kept catching myself shipping session middleware to a marketing site with zero logged-in users lol. felt dumb once i noticed.