Jonathan Blow - How to program independent games - CSUA Speech

  Рет қаралды 176,511

Alexandre Franco

Alexandre Franco

11 жыл бұрын

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.

Пікірлер: 156
@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
@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 11 ай бұрын
why tf do you speak like that
@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.
@treenopie
@treenopie 8 жыл бұрын
"It's easy to see benefits of an idea developed for benefit's sake." Quotable.
@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."_
@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
@vernongrant2199
@vernongrant2199 7 жыл бұрын
This is so awesome. Working on a large project for a year now... wish I watched this before I started.
@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.
@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
@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.
@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"
@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.
@chriscampell6864
@chriscampell6864 9 жыл бұрын
Thank you for this invaluably helpful presentation!
@LordEveryman
@LordEveryman 9 жыл бұрын
Thank you very much for posting this.
@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 10 ай бұрын
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.
@friendlyfripptit2228
@friendlyfripptit2228 2 жыл бұрын
thanks for uploading!! I've been looking for this
@azizas9366
@azizas9366 8 жыл бұрын
Nice talk. Thank you Jonathan blow and Berkeley.
@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."_
@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.
@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.
@leonader9465
@leonader9465 8 ай бұрын
I'm a huge fan of Jonathan Blow, and this is by far his most useful speech imo.
@SneedsFeeduckAndSeeduck
@SneedsFeeduckAndSeeduck 8 ай бұрын
no modern software would pass the xbox certification lol
@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😂
@ArturMatveichenkov
@ArturMatveichenkov 5 жыл бұрын
Please add the subtitles or auto-transcript for those with hearing loss. Thank you!
@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.
@ashtonwall5518
@ashtonwall5518 3 жыл бұрын
19:47 GENIUS, thank you Jonathan
@JMROMERO95
@JMROMERO95 8 жыл бұрын
This was a great talk!
@Xonatron
@Xonatron 7 жыл бұрын
17:30 "Operational wisdom"... exactly.
@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.
@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.)
@K4itsh
@K4itsh 4 жыл бұрын
six years old, but still applies. Thanks!
@owenpalmer8242
@owenpalmer8242 Жыл бұрын
9 now!
@alakamyok1261
@alakamyok1261 8 жыл бұрын
amazing talk but i wish auido quality was 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.
@littlboz
@littlboz 5 жыл бұрын
27:15 he is referring to en.m.wikipedia.org/wiki/The_Mythical_Man-Month
@amber_toiletbowlfingers
@amber_toiletbowlfingers 2 жыл бұрын
33:30 _stomach rumbles_ ~Jonathan Blow, 2011
@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.
@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.
@AtmoStk
@AtmoStk 3 жыл бұрын
35:30 the truly important part
@dfghj241
@dfghj241 2 жыл бұрын
can anyone explain why straightforward functions are better than many function calls? i could not follow his explanation
@etodemerzel2627
@etodemerzel2627 10 ай бұрын
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?
@santiagoluib3
@santiagoluib3 7 жыл бұрын
Right? ... Right? ... Right?? Yeah!
@blankeyezero
@blankeyezero 5 ай бұрын
Im having trouble differentiating between refactoring and optimization here... In most times refactoring made optimizing my life better
@opie_
@opie_ 8 жыл бұрын
Right!
@_-_-_-_
@_-_-_-_ 7 жыл бұрын
I know, right?
@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.
@victorb9503
@victorb9503 8 жыл бұрын
56:15 nice stuff
@azngoku666
@azngoku666 3 жыл бұрын
"This isn't fooling anyone anymore" ... wish this were true :{
@ns4235
@ns4235 3 жыл бұрын
1:00:10 how jon programs in c++
@cabeloDoPardal2
@cabeloDoPardal2 9 жыл бұрын
18:10 they are fast,
@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 11 күн бұрын
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.
@flyerderek6073
@flyerderek6073 Жыл бұрын
Wow
@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.
@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
@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).
@vembdev
@vembdev 2 жыл бұрын
I like simple c++ :D.
@etodemerzel2627
@etodemerzel2627 10 ай бұрын
So, what you're saying is that you like C?
@haykav
@haykav 6 жыл бұрын
KISS - Keep It Simple Stupid
@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.
@s1ats_
@s1ats_ 5 жыл бұрын
8:27 ... Or 3 lmao
@Kenbomp
@Kenbomp 4 жыл бұрын
Like who uses bst?s. Oh cs professor's. Simple is usually better. Easier to debug.
@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.
@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
@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....
@minch333
@minch333 10 жыл бұрын
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.
The Witness Documentary
47:59
Noclip - Video Game Documentaries
Рет қаралды 659 М.
Clown takes blame for missing candy 🍬🤣 #shorts
00:49
Yoeslan
Рет қаралды 42 МЛН
🤔Какой Орган самый длинный ? #shorts
00:42
Я обещал подарить ему самокат!
01:00
Vlad Samokatchik
Рет қаралды 6 МЛН
The most important talk on programming by Jonathan Blow
22:55
Not Sure
Рет қаралды 197 М.
Jonathan Blow: Design Reboot
1:00:36
rubbermuck
Рет қаралды 40 М.
Jonathan Blow Q&A Session Nov2017
1:51:18
Game Dev Graz
Рет қаралды 35 М.
The Implementation of Rewind in Braid
26:56
GDC
Рет қаралды 129 М.
How to Do 90% of What Plugins Do (With Just Vim)
1:14:03
thoughtbot
Рет қаралды 878 М.
Working Across Differences in Collaborations & Partnerships
1:06:36
UC Berkeley Events
Рет қаралды 17 М.
Jonathan Blow: Indie Prototyping
45:39
rubbermuck
Рет қаралды 149 М.
Hammock Driven Development - Rich Hickey
39:49
ClojureTV
Рет қаралды 288 М.
Data-Oriented Demo: SOA, composition
1:32:47
Jonathan Blow
Рет қаралды 156 М.
Это Xiaomi Su7 Max 🤯 #xiaomi #su7max
1:01
Tynalieff Shorts
Рет қаралды 2 МЛН
Todos os modelos de smartphone
0:20
Spider Slack
Рет қаралды 63 МЛН
S24 Ultra and IPhone 14 Pro Max telephoto shooting comparison #shorts
0:15
Photographer Army
Рет қаралды 10 МЛН