Тёмный
No video :(

Jonathan Blow - How to program independent games - CSUA Speech 

Alexandre Franco
Подписаться 1,5 тыс.
Просмотров 177 тыс.
50% 1

Jonathan Blow's speech at the UC Berkeley's Computer Science Undergraduate Association, in the same school he himself went, on April 1, 2011.
the-witness.net/news/ check it out if you're interested.

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

 

11 сен 2013

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 157   
@AlexBezhan
@AlexBezhan 6 лет назад
I will just write notes here for my future self: - Avoid optimization (and wasting time thinking about it). You don't usually need it in most cases. - Use Arrays for everything. Data structures are about optimization. - Don't build generalized systems. They are worse than hard-coded ones. - Deleting code is better than adding code. - Prefer big top-to-bottom straightforward functions, instead of function calls
@TimmacTR
@TimmacTR 5 лет назад
Thanks
@benaloney
@benaloney 3 года назад
Function calls are clearer than giant functions in my opinion, they make it easier to read blocks of work, without requiring comments. They just need to be scoped, so they aren't accidentally reused or shared between different contexts...
@dfghj241
@dfghj241 2 года назад
what constitues a generalized system?
@Twister915
@Twister915 2 года назад
Love it but first and second points seem to be in direct conflict
@latinoce
@latinoce 2 года назад
@@dfghj241 im guessing something like unity vs custom game engine
@goranmilovano
@goranmilovano 10 лет назад
Take note: This is hard-earned wisdom.
@HAL_NlNETH0USAND
@HAL_NlNETH0USAND 2 года назад
The bots have invaded our lord and saviour's domain. We must defend.
@MichaelPohoreski
@MichaelPohoreski 7 лет назад
@17:50 _"If I think somethings wrong with that they did, but what they did is kind of beyond my capability, maybe I just don't understand why they did what they did."_
@jasoneads6825
@jasoneads6825 10 лет назад
This guy is solid, and has a finger on the pulse of every shiny-eyed fresh CS grad ready to build their first big new better-then-ever program... with the latest algorithmic arcana and the cleverest metal-tight optimizations... and an array of other ill-prepared habits our academia and early instincts seems to foster. He accurately and logically tears those self-destructive attitudes down in pursuit of a better paradigm he defines fairly well considering time constraints. I have seen suffering over these issues in every programming organization or group I have worked with since becoming a programmer.
@edcunningham5562
@edcunningham5562 Год назад
why tf do you speak like that
@treenopie
@treenopie 8 лет назад
"It's easy to see benefits of an idea developed for benefit's sake." Quotable.
@vernongrant2199
@vernongrant2199 7 лет назад
This is so awesome. Working on a large project for a year now... wish I watched this before I started.
@mathfridge
@mathfridge 7 лет назад
Almost ship it in a year or two. No not two ... a year! Game releases 5 years later! :P
@tech6hutch
@tech6hutch 3 года назад
Wait yeah, why’d it take so long lol
@datalus_
@datalus_ 3 года назад
@@tech6hutch 3d is hard
@nerdError0XF
@nerdError0XF 3 года назад
​@@tech6hutch because The Witness is a unique game, with unic ideas, art style, level design and puzzles. Blow's games is not a conveyor of shit as most games now
@ryanleemartin7758
@ryanleemartin7758 3 года назад
@@nerdError0XF a conveyor of shit! haha awesome
@getyaboogieon
@getyaboogieon 7 лет назад
I agree with everything he's said here - All of the mistakes he mentioned exactly describe the mind-set of a new programmer. I'm in the business/ERP space but even there (where the computer science and optimisation elements are less important than functional correctness), these rules absolutely apply. These are lessons that are only learnt with experience.
@SneedsFeeduckAndSeeduck
@SneedsFeeduckAndSeeduck 8 месяцев назад
no modern software would pass the xbox certification lol
@pkingo1
@pkingo1 10 лет назад
A generalized system is worse than a specific one.. counter-intuitive to most programmers but found out through my own experience that its very true.
@friendlyfripptit2228
@friendlyfripptit2228 2 года назад
thanks for uploading!! I've been looking for this
@LordEveryman
@LordEveryman 9 лет назад
Thank you very much for posting this.
@chriscampell6864
@chriscampell6864 9 лет назад
Thank you for this invaluably helpful presentation!
@DavidHanhandyj443
@DavidHanhandyj443 8 лет назад
"We're going to work on it for another year or 2..." - well, the upper bound was reasonably accurate.
@nameguy101
@nameguy101 8 лет назад
+David Han (handyj443) The title slide says this talk was done in April 2011. So it was actually almost 5 years before release.
@jeffwells641
@jeffwells641 8 лет назад
+Nameguy He's talked about that before. At that time (2011-ish) the game was basically done. It was all in crappy programmer art, but the game was there. So all he had to do was hire someone to do the visuals and tweak a few things as needed. There was a point when they decided to seriously upgrade the visuals, which meant hiring more people and pushed the release date back significantly.
@lordmyrann
@lordmyrann 8 лет назад
+Jeffery Wells I was thinking about that as he mentioned his "cost of life" metric for efficiency: another side effect of moving slow is that the state of the art keeps progressing, meaning by the time you make something perfect, it seems out-of-date. Witness has an interesting polished-but-classic quality to it for that reason, I imagine.
@1337pianoman
@1337pianoman 8 лет назад
+lordmyrann I think the witness has done alright on that front because it is quite a unique art style
@wesofx8148
@wesofx8148 7 лет назад
"I prefer it to be a thousand lines long doing one linear sequence of events. I don't want to hide that fact!" This made me laugh a lot. Blow is making an important point I think. I used to take pride in shrinking all my functions by making lots of little functions, but you have to recognize when that's unnecessary.
@PauloConstantino167
@PauloConstantino167 3 года назад
calling a function is expensive. inline code is always faster :)
@zhulikkulik
@zhulikkulik 5 месяцев назад
@@PauloConstantino167not only that. Reading a function that calls 100 other functions is hard because you have to scroll the file up and down all the time and sometimes even switch between the files to figure out what is going on. It's effectively a function call overhead multiplied by the fact that your brain doesn't run at 3,5GHz and doesn't have 16 gibs of ram.
@AntonioElena
@AntonioElena 7 лет назад
I like a lot of this advice because I basically love contrarian advice. There is so much group / herd "thinking" and mindless adherence to certain dogmas that it is almost an ethical duty to go against some of that. That being said, most of this advice is well-known from decades back ("Premature Optimization is the root of all evil" D. Knuth) but it is worthwhile to repeat again and again. One of my faves is actually removing code or accomplishing some functionality without introducing a lot of extraneous staff (libraries, frameworks, etc), much satisfying that adding complexity for the sake of very small efficiencies (the "very marginal benefits" mentioned in the video), or sometimes for the sake of using some design pattern that ultimately changes nothing other than complicate the code. This is something that happen with what I call "junior-seniors" and is a frequent nerd temptation to all of us, including me, of course. And one of everyone's favorites: generic systems, when a "Generalized system is usually worse than a specific one", which somehow seems to be counter-intuitive. There is something deeply human in this however, the desire to feel smart, to somehow come on top of our insecurities and of our peers.
@the_original_dude
@the_original_dude Год назад
I wish people would advise others to think for themselves, instead of promoting generalizations. It's not "your mileage may vary", it's "your mileage WILL vary" (usually, hopefully)
@etodemerzel2627
@etodemerzel2627 11 месяцев назад
Actually, you're misusing Knuth's quote. He was talking about low-level optimization, which is rarely done nowadays. What Jonathan is talking about is quite different.
@MortenBunesGustavsen
@MortenBunesGustavsen 10 лет назад
What a refreshing talk...This is the way to program that I also have found being most effective.... It's a bit like a the commersial I once read for matlab, "if you save 2 days of programming, then it doesn't matter that the calculation takes 10 minutes longer"
@azizas9366
@azizas9366 8 лет назад
Nice talk. Thank you Jonathan blow and Berkeley.
@leonader9465
@leonader9465 8 месяцев назад
I'm a huge fan of Jonathan Blow, and this is by far his most useful speech imo.
@MarkArcher1
@MarkArcher1 6 лет назад
I love this talk. It's interesting that the first point is about how you need to optimize your time coding and to do that you need to not waste time optimizing code. It's sort of an ironic way to make the point that human time is way more important than computer time.
@doomersek
@doomersek 6 лет назад
30:43 _"If there is some code that is like a 1000 lines long and only does one linear sequence of events, I actually prefer to be a 1000 lines long doing one linear sequence of events."_
@ArturMatveichenkov
@ArturMatveichenkov 5 лет назад
Please add the subtitles or auto-transcript for those with hearing loss. Thank you!
@64jcl
@64jcl 6 лет назад
The readability is the key problem of generic systems, OOP and all kinds of frameworks. The more layers of generic nonsense that a system has, and the more "magic symbols" it needs the programmer to learn in order to actually understand the code, the worse it is. We are now living through a period of new frameworks popping up every month that is supposed to make your life easier, but its essentially a waste of time. Spend your time learning the core language and how to do things without a single library, that makes you a good programmer.
@Eng1neering
@Eng1neering 9 лет назад
Wow...this was so good.
@kverlin
@kverlin 10 лет назад
Thank you very much!
@swyxTV
@swyxTV 4 года назад
i wish this had auto generated subtitles. a bit hard to hear some of his words
@raphaeld9270
@raphaeld9270 5 месяцев назад
24:40 "Generalized systems are less self-documenting than specific systems" That's a pretty good point. It is more concrete by default.
@JMROMERO95
@JMROMERO95 8 лет назад
This was a great talk!
@ashtonwall5518
@ashtonwall5518 3 года назад
19:47 GENIUS, thank you Jonathan
@obiwanus
@obiwanus 9 лет назад
2011 + 1 year of polishing = 2015, and The Witness is not released yet :)
@higgins007
@higgins007 4 года назад
Hi, I'm here from the future, The Witness shipped and is quite a big success for him :)
@obiwanus
@obiwanus 4 года назад
@@higgins007 Hi, I'm from a little bit further in the future, and you know we have this virus now that prevented Jon from announcing his new game :)
@meanmole3212
@meanmole3212 2 года назад
​@@obiwanus Hello from the further, further future! Getting ready and excited for the public beta release of his language Jai while having VERY high expectations for it considering Rust going full speed converting pissed off C++ programmers on their side.
@obiwanus
@obiwanus Год назад
@@meanmole3212 Hello from the even further future. Still no public beta, but the language is looking very good. The future me has tried Rust and ditched it after one year, because of the friction involved and the fear that it's going to become another C++ eventually.
@zhulikkulik
@zhulikkulik 5 месяцев назад
⁠@@obiwanus I'm from an even further further future. Just passing by to say that this comment section branch is hilarious😂
@alakamyok1261
@alakamyok1261 8 лет назад
amazing talk but i wish auido quality was better
@K4itsh
@K4itsh 4 года назад
six years old, but still applies. Thanks!
@owenpalmer8242
@owenpalmer8242 Год назад
9 now!
@ukslim
@ukslim 10 лет назад
Great talk. I think the slides are a while ahead of the audio?
@JansProduction
@JansProduction 10 лет назад
***** Probebly him switching too early :P
@felixrabe
@felixrabe 5 лет назад
@@alexandrefranco3101 Well, it's still off by one slide :/ (At least somewhere around 10:00 to 25:00.)
@inarifoxking
@inarifoxking 3 года назад
Just to be clear, when he says arrays of records he means arrays of structs? I’ve never heard the term record before.
@tech6hutch
@tech6hutch 3 года назад
Yeah.
@littlboz
@littlboz 5 лет назад
27:15 he is referring to en.m.wikipedia.org/wiki/The_Mythical_Man-Month
@notthere83
@notthere83 6 лет назад
Huh... did not expect that The Witness only has a few thousands LOC more than Braid. While I realize that the amount of content is mostly just assets, I figured that all the complexities of dealing with a 3D environment would require many more LOC than a 2D game.
@meanmole3212
@meanmole3212 2 года назад
Maybe he got smarter and followed his own principles. There more code you remove the better.
@nyrtzi
@nyrtzi 4 года назад
So I should be looking for CS papers that tell me how to simplify things in order to get them done faster in development. And to concentrate on using the kind of data structures which help me get things done fast and not add complexity costs down the line. Which sounds kind of like some of the agile ideas, YAGNI, etc. where you postpone optimization and other decisions for until you need them while keeping the code simple enough so that it's flexible and cheap to rewrite if necessary.
@Xonatron
@Xonatron 7 лет назад
17:30 "Operational wisdom"... exactly.
@AtmoStk
@AtmoStk 3 года назад
35:30 the truly important part
@teknoarcanist
@teknoarcanist 10 лет назад
24:00 Blow is basically saying, a swiss army knife will never be as good at cutting bread as a bread knife, or as adept for uncorking a wine bottle as a corkscrew.
@crybirb
@crybirb 9 лет назад
I think you missed the point. Also, with just a bread knife or with only a corkscrew you`re limited to opening wines or cutting bread, instead eating a half good cutted bread with a not-so-good-opened whine.
@thatoneuser8600
@thatoneuser8600 2 года назад
Except that's not what he's saying.
@dfghj241
@dfghj241 2 года назад
can anyone explain why straightforward functions are better than many function calls? i could not follow his explanation
@etodemerzel2627
@etodemerzel2627 11 месяцев назад
Because you can just read a big straightforward function from top to bottom. But with many small functions, you have to jump around in the code to read them, and the worst of all, you have to remember what they do.
@zhulikkulik
@zhulikkulik 5 месяцев назад
Calls to other functions inside a function turn it into "choose your own adventure book". A straightforward function reads like a normal book. Of course nobody says you must never split a function into subfunctions. It's just that when you have one function that does one thing and no parts of it are needed anywhere else - you should probably just put some comments in there and leave it like that. You typically extract something you copy paste for 3rd-5th time in several different functions.
@dfghj241
@dfghj241 5 месяцев назад
@@zhulikkulik 2 years later I think I got it based on practice. Thanks
@reefatbakht
@reefatbakht Месяц назад
@@dfghj241nice, can you give your insights and some examples of how you learnt?
@blankeyezero
@blankeyezero 5 месяцев назад
Im having trouble differentiating between refactoring and optimization here... In most times refactoring made optimizing my life better
@amber_toiletbowlfingers
@amber_toiletbowlfingers 2 года назад
33:30 _stomach rumbles_ ~Jonathan Blow, 2011
@opie_
@opie_ 8 лет назад
Right!
@_-_-_-_
@_-_-_-_ 7 лет назад
I know, right?
@santiagoluib3
@santiagoluib3 7 лет назад
Right? ... Right? ... Right?? Yeah!
@flyerderek6073
@flyerderek6073 Год назад
Wow
@victorb9503
@victorb9503 8 лет назад
56:15 nice stuff
@azngoku666
@azngoku666 4 года назад
"This isn't fooling anyone anymore" ... wish this were true :{
@meanmole3212
@meanmole3212 2 года назад
It's interesting to take all this talk about optimization and put it in the context of his presentation where he demonstrates how slow Photoshop is. Well what now? He says here that optimization is (often) bad but now he is pissed that it takes too long for Photoshop to open because it has not been optimized very well.
@higgins007
@higgins007 Год назад
"How to Program Independent Games"
@T0m1s
@T0m1s 3 месяца назад
Photoshop is (likely) pessimized to hell. There's a nice middle ground between pessimization and optimization.
@GonziHere
@GonziHere 17 дней назад
Had that same thought. However, what he advocates for is a simple code. I'm like 99% sure that photoshop isn't it. His main point is that simple actually is fast. I also like "pessimization" where your architecture choices are slow, you (should) know that and you use them extensively anyways.
@ns4235
@ns4235 3 года назад
1:00:10 how jon programs in c++
@dscheme4427
@dscheme4427 5 лет назад
23:51 research papers. Can't agree more. I'm not an idiot (I like to think) and was recently reading some graph layout papers. Indecipherable. Pseudo code v.bad. Missing chunks of information needed in order to actually get any benefit. basically, most of the time you need to do it yourself, through trial and error.
@cabeloDoPardal2
@cabeloDoPardal2 9 лет назад
18:10 they are fast,
@notthere83
@notthere83 6 лет назад
Haha I wonder whether he ever apologized to John Romero.
@jbach
@jbach 9 лет назад
Don't agree with many of the suggestions, but still a worthwhile watch for any aspiring game developers
@tatoforever
@tatoforever 7 лет назад
Industry average lines of code 3200 per year? What? I write that in a couple of week...
@TechArtAid
@TechArtAid 7 лет назад
He wrote 75 000 lines in 3 years of making Braid (aside from design, marketing, QA etc.) :) The 3200 are probably a figure like the one from Mythical Man Month. As he said - the average includes a lot of "bureaucratic" roles and projects. And cases like cleaning legacy code, where you actually have a "negative" contribution to lines count.
@Beeftitan
@Beeftitan 10 лет назад
i can do that 3250 lines of code in a week
@superknife24
@superknife24 9 лет назад
im honestly curious, how do you pull that off?
@_hburd
@_hburd 9 лет назад
superknife24 ctrl-c ctrl-v ctrl-v ctrl-v ctrl-v ctrl-v....
@drink5863
@drink5863 8 лет назад
i remember like one year ago, i could write 1000-2000 lines of code a week, i mean its really not that hard !
@acetylslicylsyra
@acetylslicylsyra 7 лет назад
It all depends on what you are writing. In some cases you are choked by the complexity of what you are trying to make and other times you are choked by the speed of your fingers.
@pajeetsingh
@pajeetsingh 5 лет назад
This is the kind of practical knowledge and wisdom you gain when you make your game from scratch and not use Unity or Unreal. It's your choice. You want to become like him or you just want to sell game.
@daleowens7695
@daleowens7695 3 года назад
"just want to sell game" You mean like Braid or Witness?
@dfghj241
@dfghj241 Год назад
@@daleowens7695 yea i'd rather sell games.
@dayanrodriguez9430
@dayanrodriguez9430 4 года назад
Limited life resource parameter.
@ishdx9374
@ishdx9374 3 года назад
3250 per YEAR? I write this much every month
@T0m1s
@T0m1s 3 месяца назад
That's probably a bad thing, as that code needs to be run, and people need to read it. You should produce fewer lines of code (with more or less the same functionality).
@s1ats_
@s1ats_ 5 лет назад
8:27 ... Or 3 lmao
@vembdev
@vembdev 2 года назад
I like simple c++ :D.
@etodemerzel2627
@etodemerzel2627 11 месяцев назад
So, what you're saying is that you like C?
@znubionek
@znubionek 6 лет назад
1:03:00 he talks about failing certification on xbox 360 if the framerate is dropping. was it like for xbox live arcade only? cus lots of games are and were dropping frames on consoles so how does it gets certified lol pubg is literary payed for by microsoft and runs and looks and plays like shit
@haykav
@haykav 6 лет назад
KISS - Keep It Simple Stupid
@Kenbomp
@Kenbomp 4 года назад
Like who uses bst?s. Oh cs professor's. Simple is usually better. Easier to debug.
@GabrielHasbun
@GabrielHasbun 10 лет назад
I would have to disagree with what Blow said at 33:10, that not admitting personal mistakes is human nature. I'd say that is prevalently cultural garbage dragged from certain tribes back in yesteryear an individual convincing the tribe about an accorded action(hunting a specific gazelle), then being wrong(choosing the fast one) and being punished(as it was the cultural habit in such tribe.) Today, western cultures unfortunately tend to demean mistakes as well, rather than create testbeds so that people can sand-box ideas into potentially great products, but risking also failure and certain level of harm. Hopefully that is changing.
@HarinduDilshan
@HarinduDilshan 7 лет назад
I disagree on using arrays instead of other data structures. Using arrays is an optimization(memory). So if you don't care about any optimization a use a linked list or something which has more memory usage etc.
@noxabellus
@noxabellus 7 лет назад
Ok but he's not saying don't optimize, he's saying optimize for years of life required, first. And in his case, because of how he thinks, using arrays broadly is an optimization towards that end and is therefore beneficial.
@HarinduDilshan
@HarinduDilshan 7 лет назад
But most of the stuff he says about optimizations is true. " optimize code is harder to read , harder to maintain .... has more assumptions". In the same vain arrays make assumptions about the data type, number of elements. On the other hand a Python List( because I can't think of one in C++) doesn't make those assumptions. You can just use it without first finding about the number of elements. You can reuse it easily. It's easy to change.
@noxabellus
@noxabellus 7 лет назад
Ah yea I get what you're saying I suppose. Still I don't think he's suggesting that we do that, only saying thats his system. He probably has a mental/library work around for those problems. Arrays do have some issues, but for many the performance benefits far out weigh those negatives.
@HarinduDilshan
@HarinduDilshan 7 лет назад
:) I agree. It's probably because of the domain( games).
@64jcl
@64jcl 6 лет назад
No doubt this is more important in games where generally you code around a minimum memory requirement. So there is no need for lists and growing heaps, due to the fact that you know what the maximum length an array should become, and you need to be sure there is in fact memory to allocate this array before actually starting it. Imagine playing a game halfway through and then allocation fails and the game crashes and dies. Accessing an array is also very fast and easy so the code generally is very readable and easy to debug. In JIT type languages a lot of the performance is lost due to a garbage collection going crazy from having to collect all kinds of objects, so if you know how the maximum number of objects you need of a type before hand and just pre-allocate the memory, your code will run way faster and the GC can go to sleep.
@WaitButHow
@WaitButHow 7 лет назад
I wonder, if he wants to optimize years of his life per program implementation, why he started on Jai? Isn't this new language of his (an attempt at optimizing C++) taking him too much time already and will take even more than it has already taken? He could probably write a game or two in this timeframe, or just enjoy life, not write anything for a while (there's plenty of other things to do without getting bored). IDK, Jai just sounds like a contradiction to me to what he is saying here. I have to say, I've done a lot of native and web development, just not C++, don't know how bad it is, so maybe I'm wrong and Jonathan will have more life left and games written after having finished Jai, but I'm skeptical.
@64jcl
@64jcl 6 лет назад
No doubt making a language that better than C/C++ must also be a fun project on its own. The fact that he is also using it for the next game he is developing, makes it all the better - not only does he make a game, but also the language he wants to write it in.
@BaremetalBaron
@BaremetalBaron 6 лет назад
Actually, he said quality of life was one of his core reasons for making Jai. He gets to spend the rest of his life not stressing over the things in C++ that make him want to tear his hair out. He said when he first got Jai working to a point he could actually use and play with it, he basically breathed a sigh of relief and decided he would never use C++ again for any game after the Witness shipped. Indeed, in his mission statement for Jai, he said that "the joy of programming" was a critical concern in the design of the language.
@Closecall30
@Closecall30 4 года назад
You don't consider that he may wants to improve the productivity of other game developers in general, so a more altruistic angle, by sacrificing his own time
@Cons-Cat
@Cons-Cat 2 года назад
Watch his presentations on the language if you want to know what he has to say about it....
@fennecbesixdouze1794
@fennecbesixdouze1794 2 года назад
@4:40 Was Jonathan Blow really this stupid back in 2011? Is he still? Any programmer who is tasked with writing an entire green tech project is going to write tens to hundreds of thousands of lines of code in a year. That doesn't mean you're "more productive", it just means you're doing a different kind of production: green tech. Green tech is when you spew out thousands of lines of shitty code that everyone else gets to maintain in the years to come. The reason the industry average is ~3000 is because people don't work on green tech: they spend most of their time maintaining mature software products, where your time is spent deleting bad code and replacing it with shorter, more concise and more maintainable code (a net negative in "lines written"), or investigating bugs in mature products where you can spend 90% of the time figuring out what is going wrong and end up simply editing a few lines (no new lines written) to fix it.
@fernandobrandt7230
@fernandobrandt7230 2 года назад
That's not even the point of the presentation please go touch some grass
@minch333
@minch333 11 лет назад
Bit too complex for me, I don't code
@yellow6297
@yellow6297 4 года назад
I'm able to do 350 lines per hour, all bugs removed as well. I'd be able to make braid in just 22 12 hour days. It feels great to be intelligent.
@yellow6297
@yellow6297 3 года назад
@@chyza2012 I finished the entire engine in under a week. I got bored with making the story and doing game design so I went and worked on something else.
@vembdev
@vembdev 2 года назад
@@yellow6297 Denial like this is where your data intellectually goes very off. You are not able to make braid in 22 12 hour days in no reality, because it will in no reality take just 22 12 hour days due to the hundreds of things you have no experience and discipline to overcome.
@photoallergic
@photoallergic 8 лет назад
2300 lines of code per year? Industry standard? What is he talking about? 2k lines a day is more like it.
@ManyDog
@ManyDog 7 лет назад
photoallergic he said it was most likely due to bureaucratic numbers due to people not being productive.
@etodemerzel2627
@etodemerzel2627 5 лет назад
2k lines a day? Don't lie to yourself.
@T0m1s
@T0m1s 3 месяца назад
Only 2300 lines a day? So lazy. It should be at least 10000 lines a day.
Далее
Jonathan Blow Q&A Session Nov2017
1:51:18
Просмотров 35 тыс.
The Witness Documentary
47:59
Просмотров 660 тыс.
Викторина от ПАПЫ 🆘 | WICSUR #shorts
00:56
50 Game Camera Mistakes
1:00:53
Просмотров 499 тыс.
Jonathan Blow on Italo Calvino and Video Games
1:20:35
Просмотров 17 тыс.
The most important talk on programming by Jonathan Blow
22:55
Object-Oriented Programming is Bad
44:35
Просмотров 2,3 млн
Games are interesting! A conversation with Jonathan Blow
2:08:14
Game Engine Programming: Drop-Down Console
3:24:51
Просмотров 36 тыс.
Jonathan Blow - Truth In Game Design
48:02
Просмотров 59 тыс.
Викторина от ПАПЫ 🆘 | WICSUR #shorts
00:56