Тёмный

The Best Refactoring You’ve Never Heard Of 

Compose Conference
Подписаться 2,8 тыс.
Просмотров 15 тыс.
50% 1

Опубликовано:

 

1 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 25   
@Apreche
@Apreche 5 лет назад
I was extremely close to not finishing this talk because of the audio issues. I was wearing headphones, and the static noises were like stabbing in my ears. Great talk, though.
@ashnur
@ashnur 5 лет назад
Same here, I don't understand why someone haven't had a day to put some slight audio post-processing on this to filter those extremely loud noises...
@okjacob
@okjacob 4 года назад
youtube-dl -i --youtube-skip-dash-manifest 'ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-vNwukfhsOME.html' ffmpeg -i The\ Best\ Refactoring\ You’ve\ Never\ Heard\ Of-vNwukfhsOME.mkv -filter_complex "compand=attacks=0:points=-80/-900|-45/-15|-27/-9|0/-7|20/-7:gain=5" -c:v copy -c:a libvorbis out.webm
@DanHaiduc
@DanHaiduc Год назад
I downloaded it and played it through VLC with its Compressor effect.The values of the sliders I liked are: 0.1 1.5ms 100ms -30dB 9.7:1 10dB 6.7dB.
@dupersuper1000
@dupersuper1000 5 лет назад
Despite the audio problems, this is one of the best talks I’ve seen on the topic of continuations and program structure. Thank you for sharing!
@hotpawsmathsandscience3124
@hotpawsmathsandscience3124 3 года назад
i like how he says DO DO
@09goral
@09goral 4 года назад
I hard it's called "reification", not "defunction …" I can't even repeat it.
@mathandemotion
@mathandemotion Год назад
For everyone who is suffering because of the audio: Easyeffects with noise reduction and autogain makes it sound pretty ok :)
@English1108
@English1108 2 года назад
I just want to say this technique is obnoxious. Pretty much the whole point of the this technique would be to apply it to the task of iteratively walking through a tree structure and accumulating a value from it. When this gets brought up on the internet, its always (like this video) walking through a tree structure and NOT accumulating a value or, like other articles, accumulating a value from a sequence structure (like summing a list). Table stakes for this technique to be useful is walking a tree AND accumulating a value - but once you do that, the method shown here just doesn't work - why? because you have 2 different conceptual stacks to maintain (one to maintain position in the tree and one to accumulate the value) and the inlining no longer works the same way and there is just nothing out there that bridges the gap.
@1210divs
@1210divs 2 года назад
Correct! Talk is kind of misleading. The reason why the tree traversal function prints the traversal path instead of returning it as a list is because it CAN'T accumulate the path and return it.
@williamd4866
@williamd4866 Год назад
​@@1210divs That's not true! As TJ above mentions, you can accumulate a value like a list through a tree using this technique. The things you end up accumulating together are just represented by functions arguments for the continuation.
@1210divs
@1210divs Год назад
@@williamd4866 I will believe you if you show me a version of the code from this video that returns the output as a sequence rather than printing it.
@williamd4866
@williamd4866 Год назад
@@1210divs Something like this would accumulate a list in CPS: List listTree(Tree tree, Function kont) { if (tree != null) { return listTree(tree.left, (L) -> { return listTree(tree.right, (R) -> { return kont(L + [tree.content] + R); }); }); } else { return kont(List()); } }
@1210divs
@1210divs Год назад
@@williamd4866 at this point, you are no longer using the continuation and doing plain old recursion that will lead to stackoverflow.
@LimmeAlone
@LimmeAlone 5 лет назад
the cringe @ 24:20 :D
@AlexDresko
@AlexDresko 5 лет назад
I can't. I just can't. Please re-record this with better audio and I think it would be stellar.
@kaqqao
@kaqqao 2 года назад
Excellent talk. Terrible audio. But excellent talk.
Далее
Fast Accumulation on Streams
25:36
Просмотров 631
Bidirectional Type Checking
41:31
Просмотров 6 тыс.
Ко мне подкатил бармен
00:58
Просмотров 186 тыс.
ТАРАКАН
00:38
Просмотров 1,6 млн
The Flaws of Inheritance
10:01
Просмотров 946 тыс.
Yes, IHaskell Can Do That!
26:12
Просмотров 1,9 тыс.
Decrusting the tokio crate
3:31:48
Просмотров 100 тыс.
Clean Code - Uncle Bob / Lesson 1
1:48:42
Просмотров 1,9 млн
"You are a Program Synthesizer" by James Koppel
39:58
Simple Code, High Performance
2:50:14
Просмотров 252 тыс.
Ко мне подкатил бармен
00:58
Просмотров 186 тыс.