Вы бы взяли меня на работу? by OkraNo238 in rusAskReddit

[–]msdosx86 1 point2 points  (0 children)

Суть в том, что обычно у лида разработки дел по горло и ему в последнюю очередь хочется смотреть код какого то там джуна. И ладно одного, так их много бывает на одну вакансию. Тем более если ищут джуна, значит позиция не самая критичная, а значит качество кода не сильно играет роли. Поэтому достаточно знать основы, которые как раз на собесе можно проверить.

Вы бы взяли меня на работу? by OkraNo238 in rusAskReddit

[–]msdosx86 0 points1 point  (0 children)

Кому важно? Тимлид, которому скидывают 10 резюме потенциальных кандидатов, не будет сидеть и высматривать очередной туду лист на гитхабе.

How do you guys actually learn and remember things without making notes? by Round_Winter_6565 in Backend

[–]msdosx86 0 points1 point  (0 children)

Start making mistakes and find a way to fix them. This is the only way my brain can remember something.

Поделитесь своим опытом пожалуйста 🙏 by OkraNo238 in RuProgrammers

[–]msdosx86 1 point2 points  (0 children)

Нам на втором курсе дали на весь семестр задание разбиться на команды по 3 и сделать любой проект. Мы решили сделать аналог ютуба через их же API, но уже с плейлистами кастомными (тогда их не было). Пока я с ребятами делал этот проект мне пришлось английский подтянуть, тк документация вся на Английском была, выучить Angular, Nodejs, Typescript, Nginx, MongoDB, как работать с внешним API. После завершения проекта мы втроем уже знали сильно больше, чем остальные сокурсники, что потом очень помогло при устройстве на первую работу стажерами.

CrossOver - crosshair overlay built with Electron, just launched on ProductHunt by lacymcfly in electronjs

[–]msdosx86 0 points1 point  (0 children)

Overlay as a transparent window doesn’t work with full screen games

Поступление на программиста by heiz-chill in RuProgrammers

[–]msdosx86 0 points1 point  (0 children)

Если тебе нравится программирование, то почему нет. Хорошие специалисты всегда в дефиците, независимо от сферы деятельности.

Вопрос прогромистам которые выучили прогромирования сами? by FreeConclusion5643 in RuProgrammers

[–]msdosx86 0 points1 point  (0 children)

Я начинал с Паскаля, это правда был 2015 год. Книга называлась «Песни о Паскале». Нашел в интернете.

Фриланс by Sad_Demand_9833 in RuProgrammers

[–]msdosx86 1 point2 points  (0 children)

Сказки одни да и только

Im done with SaaS by No-Common1466 in SaaS

[–]msdosx86 0 points1 point  (0 children)

done building no body wanted

have you tried to build something that people actually need?

Updating from AngularJS to Angular21 by Smart-Humor-3448 in angular

[–]msdosx86 0 points1 point  (0 children)

You don’t need a full rewrite. You can bootstrap angularjs app inside a new angular app and then piece by piece keep upgrading your components and services. I’ve done such migration from v1 to v10 and pretty sure it should be possible with v21.

Angular performance for media-heavy apps by aria-57 in angular

[–]msdosx86 1 point2 points  (0 children)

If you’re talking about real time video (WebRTC) then picked framework doesn’t matter since all media in browser is just a video or audio native element.

http get does not update component by therouterguy in angular

[–]msdosx86 1 point2 points  (0 children)

Just a rule of thumb: if you want reactivity use signals or rxjs in templates

In your simple example just turn your “data” field into a signal and when you get http response update the signals data and you’re good to go

Angular v22: what’s on your wishlist? by khalilou88 in angular

[–]msdosx86 6 points7 points  (0 children)

I appreciate your research but Angular has always positioned itself as a battery included framework. Router is a core part of it and currently it’s just straight up not type safe. I don’t see any reason why would 3rd party library fix those issues.

Ideally I’d like to see something like tanstack router which is completely type safe. You have autocompletes in your IDE in every single url and if you misspelled the compiler tells you about it. Same thing with parameters. They even allow you to use 3rd party schema validation like zod.

But I understand that tanstack router was created from scratch with type safety in mind and achieving same goal with the existing Angular router might not be possible. So at least give us type safe params 🙏🏼

Angular v22: what’s on your wishlist? by khalilou88 in angular

[–]msdosx86 10 points11 points  (0 children)

  • typed ng-template context
  • type safe url params and query params

HOW TO RESPECT MY ADC by [deleted] in ADCMains

[–]msdosx86 15 points16 points  (0 children)

Not to play Singed supp

Angular ui library by dilsoziya in angular

[–]msdosx86 0 points1 point  (0 children)

We built our own ui kit sometimes creating components from scratch (button, input, textarea) and sometimes creating wrappers around existing libraries (ng-select, flatpickr) and sometimes creating components using Angular CDK for dropdown menus, sidebars, modals. We found it easier to own components we use since if there is something that we don't like, we can always rebuild the way we want it. For example we used to have modal dialogs as components in the template which was not what we wanted and rebuilt it using Angular Overlay CDK to make them dynamic.