Пікірлер
@alexandrkalabin7645
@alexandrkalabin7645 8 күн бұрын
38:50 алгоритмическая оптимизация.
@johnconstantine6331
@johnconstantine6331 19 күн бұрын
13:01 Нихрена не понял. Как тест может создать сессию (т.е, на сколько я понимаю, открыть браузер - get(url)) на одном инстансе ггр, а потом вдруг сделать запрос на другой?
@belrestro
@belrestro 20 күн бұрын
Вот вопрос о интенсивном I/O в даном случае тестировалось I/O по сути на уровне nodejs, но если тестировать сквозной worker -> to master -> to web
@belrestro
@belrestro 20 күн бұрын
как пример конвертация, компрессия стриминг
@felixtaktashev470
@felixtaktashev470 24 күн бұрын
Кажется я стал немножечко умнее, но это не точно
@BlushSmith
@BlushSmith Ай бұрын
Докладчик очень хорош, спасибо!
@timur2887
@timur2887 2 күн бұрын
сомнительно, но окэй
@yankotliarov9239
@yankotliarov9239 2 ай бұрын
Basically boils down to "write JS functional and not OOP" which is ok if you can, but its really unfair to say you can do anything functional. There are strong cases for OOP and good programmer should always consider both approaches when solving problem.
@nirmalanirmala-vn5wo
@nirmalanirmala-vn5wo 2 ай бұрын
Thank you
@spasemaker3040
@spasemaker3040 2 ай бұрын
жідо софт дє?
@konstantinchvilyov9602
@konstantinchvilyov9602 2 ай бұрын
naming [ˈneɪmɪŋ] наименование, название, обозначение, наречение, назначение имён
@konstantinchvilyov9602
@konstantinchvilyov9602 2 ай бұрын
Bulkhead [ˈbʌlkhed] - Переборка, перегородка, надстройка
@konstantinchvilyov9602
@konstantinchvilyov9602 2 ай бұрын
metric [ˈmetrɪk] система показателей
@konstantinchvilyov9602
@konstantinchvilyov9602 2 ай бұрын
Dynamo [ˈdaɪnəməʊ] генератор, производитель, демон
@konstantinchvilyov9602
@konstantinchvilyov9602 2 ай бұрын
Panache [pəˈnæʃ] щегольство, рисовка.
@konstantinchvilyov9602
@konstantinchvilyov9602 2 ай бұрын
resilience [rɪˈzɪlɪəns] упругость, устойчивость
@konstantinchvilyov9602
@konstantinchvilyov9602 2 ай бұрын
Scaling [ˈskeɪlɪŋ] масштабирование, увеличение, шкалирование.
@konstantinchvilyov9602
@konstantinchvilyov9602 2 ай бұрын
Gizmo [ˈgɪzməʊ] is contraption, stuff, thingies, thingamajig, thingummy, widget. Graal [grɑːl]. Substrate [ˈsʌbstreɪt] is underlayer, base plate, wafer, ground, undercoat, base.
@konstantinchvilyov9602
@konstantinchvilyov9602 2 ай бұрын
healing [ˈhiːlɪŋ] исцеление, излечение
@rrd_webmania
@rrd_webmania 2 ай бұрын
Danger Driven Development 😂
@my_world_through_my_eyes
@my_world_through_my_eyes 2 ай бұрын
Уши режет "руинглиш". Намного лучше, когда говорят либо полностью на английском, либо полностью на русском. Почему нельзя, например, сказать поддерживать проект, вместо сюпортить проект... Звучит как женщина из видео, которая даёт интервью в магазине и непонятно, на каком языке она говорит...
@IlyaArlenka
@IlyaArlenka 3 ай бұрын
Ничего не понял, но очень интересно)
@andy_floria7303
@andy_floria7303 3 ай бұрын
Респект автору. Очень полезно!
@user-kq2ww6ie5c
@user-kq2ww6ie5c 3 ай бұрын
I love this giy, but looks like he’s going to slap every one that asks question and berate him à la Gordon Ramsay
@carry-on-chaos4032
@carry-on-chaos4032 3 ай бұрын
о каком репо идёт речь в начале ? скиньте ссылку пожалуйста
@davedoublee-indiegamedev8633
@davedoublee-indiegamedev8633 3 ай бұрын
There is a lot of good advice here. However, I think he is going too deep into the "don't use it" approach. The reason arrow functions have an arrow is because of .map, it's where we use it the most. He is probably also in the minority against TS -- people use it and like it for good reason.
3 ай бұрын
"I need the freedom to express myself" - he makes fun of this argument for differing code style, but it honestly does make sense. I've seen code that was written a certain way, and the way it was written expressed to me some interesting idea about how to interpret or understand the sort of code that was written. For example, I once saw code with this unconventional syntax: ```javascript someObject. some(). chaining(). pattern(); ``` We're used to seeing the lines delimited behind the `.` operator rather than following it. I asked who I was working for at the time about it and they told me javascript used to disallow delimiting lines before the dot (or before something that makes it obvious the statement is continuing, almost like how you'd use `\` to escape a line-feed in bash). So that at the very least is a piece of history I would not have learned if somebody updated the code style. Another interesting idea expressed in this formatting is that the last character of each line tells you something about the next line. Hey, that's kind of valuable. It's through this idea that I came up with my own unconventional syntax - bare with me, I'll explain: ```javascript someObject .some() .chaining() .pattern() ; ``` By wasting an extra line and making the code look weird, this actually drastically improves readability. You can scan down the source code in a vertical line without having to collect knowledge about everything off to the site to find out where callbacks are closed etc. Honestly though, I think we shouldn't have to write syntax when we could instead have keyboard-driven structured data editors that only allow inputting valid code, which present the code to you in a way that takes advantage of the visual cortex a little bit more.
@user-lh6xe3zi1t
@user-lh6xe3zi1t 3 ай бұрын
бла бла бла и ни одного примера
@bailahie4235
@bailahie4235 3 ай бұрын
Nice lecture! This lecture not long before the war in Ukraine started, you'd almost forget how good the computer scientists/devs from Ukraine are with all the focus on that war... Some of my former colleagues (in the Netherlands) are from the Ukraine, so I worked with them for years... Hope it ends soon, and preferably Ukraine gets its whole country back.
@user-zm2bl8nv5d
@user-zm2bl8nv5d 4 ай бұрын
ну шо там, как поживает кордова в 2024м? )
@user-bz7xl4gq7c
@user-bz7xl4gq7c 5 ай бұрын
Дуже класно, дякую!
@user-yv6rm7bb5w
@user-yv6rm7bb5w 5 ай бұрын
Невозможно слушать
@saexpat
@saexpat 6 ай бұрын
Hello, can you share the slide, please? Thanks
@mnivityok
@mnivityok 2 ай бұрын
Isn't the video enough for you?
@saexpat
@saexpat 2 ай бұрын
@@mnivityokI can’t read the text on some of them
@mnivityok
@mnivityok 2 ай бұрын
@@saexpat It's not possible to share the link here. It gets removed.
@saexpat
@saexpat 2 ай бұрын
Thanks for your response, no worries. My OTA is breaking my modem. I was hoping to see if a solution was somewhere in the presentation
@mnivityok
@mnivityok 2 ай бұрын
@@saexpat This presentation is rather helpful for hacking/developing Android OTA solutions. It doesn't provide some quick fixes.
@abaitoguzbayev5736
@abaitoguzbayev5736 6 ай бұрын
01:17 Само приложение 14:55 Написание тестов 23:32 AutoFixture ...
@andrewkazanin1591
@andrewkazanin1591 6 ай бұрын
Очень мощно! 💪
@KirillBon
@KirillBon 6 ай бұрын
Привет из 2023) отличный доклад, до сих пор актуальный.
@user-tl6ct9df2k
@user-tl6ct9df2k 6 ай бұрын
Слишком много рунглиша, многие слова можно вполне перевести на русский.
@rainbowGrizz
@rainbowGrizz 6 ай бұрын
Докладчица молодец: заранее приготовила тексты issue, UI, классы... Чтобы на ерунду время не тратить. Очень ценю такой подход. А вот митапы skillbox раньше чаще всего попадались. Там докладчики тоже код пишут в реальном времени, но фигарят без какого-либо плана и полдоклада выбирают названия для методов. Часто очень так.
@alecule
@alecule 6 ай бұрын
Why is he dressed like a pseudo hipster?
@MafJora
@MafJora 6 ай бұрын
Сложновато для восприятия новичку будет. Но для начинающего автоматизатора с уже набитым ударами о грабли опытом - очень годно!
@user-th3zi1ii7t
@user-th3zi1ii7t 6 ай бұрын
Есть много спорных моментов, как относительно подходов, так и реализации. Паразитная нагрузка на базу для снятия тамстампов, излишняя сложность организации нагрузочного тестирования. Достаточно было обложиться мониторингами на каждый сервис, проверсти изолированные тесты, и один общий интеграционный
@rusmaakatupal4723
@rusmaakatupal4723 6 ай бұрын
It will be very hard for C# to truly compete with "High Performance scnenarios" like needed in embeded systems but this might be sufficiant for game dev. C# Unity use to suck so hard and they have come a long way up. That one part about "array of structures" made it worth it to watch. There is one very important point he missed though... --> .Net introduced a new heap section called "pinned object heap". It avoids fragmenting the heap which is the problem when temporaly pinning arrays with "fixed" statments, and is perfect for deeling with buffers in unsafe context. Although it remains significantly slower than static and unmanaged memory, I have high hopes than one day we will be able to pin complex objects and not only primitve array data types. PS : If your a web/cloud dev I might have wasted your time beg my pardon :'P
@Navidmon1369
@Navidmon1369 7 ай бұрын
👍So Interesting
@dan-kn3dm
@dan-kn3dm 7 ай бұрын
Not using `this` seems to me quite extreme. Sure, if you do FP you probably don't need it, but that's not for everyone and for every project. Not liking fat arrow fn just because of its looks is not a great argument. And if you are not a die hard FP fan, `class` is actually a very useful construct. So I am not sure a lot of the stuff that Douglas presented is anything more than his personal preference.
@vm9398
@vm9398 7 ай бұрын
Why are you presenting the English version - yet speaking runglish -- sounds terrible.. I have been a professional Sr QA Analyst for 25 y in USA.. Never heard nonsense like this before..
@vladoss4643
@vladoss4643 8 ай бұрын
Читаю "Владимир Крамник" Асинхронное и многопоточное... Думаю чегоооо????? (Люблю шахматы)
@mkohivlog8988
@mkohivlog8988 8 ай бұрын
Success is exchange of knowledge and ideas to learn from each other and applying together. Organisation is not a school classroom where goal is individual to achieve. It is obvious if we think of ourselves and declare what is best but take a tour outside the window and imagine they are infinite stars who I think would understand what language thier words should have gone through until they join us and I think we are not yet in advance proportion to meet their numbers. I believe in learning what I lack no matte what. Writing, shaping, applying and computing should be rethink to understand in each deeply and collective and cooperative work need nothing else but communication to see what we or the organization want.
@Das.Kleine.Krokodil
@Das.Kleine.Krokodil 9 ай бұрын
Спасибо
@olegnikitindev
@olegnikitindev 9 ай бұрын
Интересно! Спасибо
@alikyurchenko2760
@alikyurchenko2760 9 ай бұрын
👍👍👍
@Das.Kleine.Krokodil
@Das.Kleine.Krokodil 10 ай бұрын
На каком уровня правильнее применять эти техники? Например, граничные значения, пары В модульных тестах, в интеграционных?
@Das.Kleine.Krokodil
@Das.Kleine.Krokodil 10 ай бұрын
55:10 вроде там можно было использовать ELSE