High Definition Standard Definition Theater
Video id : 5kj5ApnhPAE
ImmersiveAmbientModecolor: #bda08b (color 2)
Video Format : 22 (720p) openh264 ( https://github.com/cisco/openh264) mp4a.40.2 | 44100Hz
Audio Format: Opus - Normalized audio
PokeTubeEncryptID: 26f7e157eb675aa60b46de65cc38edd6abe92c449f09489dca58aca72e650bdf5a09a997d85b96d0c4e48397474a61f0
Proxy : eu-proxy.poketube.fun - refresh the page to change the proxy location
Date : 1715696309480 - unknown on Apple WebKit
Mystery text : NWtqNUFwbmhQQUUgaSAgbG92ICB1IGV1LXByb3h5LnBva2V0dWJlLmZ1bg==
143 : true
OSCON 2010: Rob Pike, "Public Static Void"
Jump to Connections
112,092 Views β€’ Jul 22, 2010 β€’ Click to toggle off description
oscon.com/

Rob Pike (Google, Inc.),
"Public Static Void"
Metadata And Engagement

Views : 112,092
Genre: Science & Technology
Date of upload: Jul 22, 2010 ^^


Rating : 4.911 (37/1,631 LTDR)
RYD date created : 2022-02-20T18:24:32.023846Z
See in json
Tags
Connections
Nyo connections found on the description ;_; report a issue lol

YouTube Comments - 76 Comments

Top Comments of this video!! :3

@AtanasovPetar

6 years ago

I watched all Rob Pike talks because he is so god damn funny. "What was wrong with the old integer 80?"

92 |

@caesarbala

5 years ago

Watching 9 years after talk still make sense

40 |

@noahz

11 years ago

"False dichotomy between static and dynamic languages." Wish I could give this 100 likes.

42 |

@danielsmith5626

3 years ago

I like hearing the little bits of laughter coming through his mike even though he's completely deadpan the entire time.

3 |

@ArunShankartheRealOne

2 years ago

10 years after he spoke, Java has become a Chimera. I started working in JAVA after 5 years , and language is almost unrecognizable to me.

4 |

@krupalshah1914

7 years ago

This talk is from 2010 and it proves the things he is talking about. If you see newer programming languages like Swift, Kotlin or ES6; they are all converging to the same language. Still, the software world suffers from those old-aged problems: error prone code, readability and sharing of code, programmer productivity, compilation speed etc. If those languages are very good, why they can't solve for those who write them? After a long time; People will realise this and Go will be very successful because of its simplicity. There is no doubt about it.

21 |

@rkulla

13 years ago

his analysis seems right on to me. Language designers are like the people who make James Bonds weapons. Sometimes they make programmers cool and useful stuff and sometimes it's overly complex crap. At least when things are open source, we get some say in it, which is how it should be.

7 |

@Syntax753

9 years ago

I agree with Rob's general view on patterns. It's brief so he's probably got a lot more to add to that given time, but overall a pattern does indeed highlight a weakness in the language. If something can be so predictably designed/written often enough to have a name, then it should be inherent within the language. The other (main) issue I personally have with patterns is that it gives the impression that there's a stock solution for every possible problem and all a coder needs to do is find the right pattern to apply. From my experience this is usually a result of education where being a good student in programming correlates with being able to regurgitate the most applicable pattern given an exam-type scenario. Over the years in dev (and interviewing coders has been part of that), I've come to the conclusion that patterns remove what is actually the most important aspect of logic/coding - the "grey area" as I call it. A pattern offers the idea that every "real-world" scenario can be resolved by using a method which 100% resolves it and it's just about applying the right pattern. This makes patterns ideal for someone who can "fill in forms" as Rob elegantly puts it. Why doesn't Java/C just have "applyVisitorPattern(Object Visitor, List Guests)" etc if that is truly a generic solution? The reality of course is this grey area. Hardly any code solution is 100% of one thing - it's probably 30% of business logic, 20% of database design, 20% of memory management, 20% of conscision, 15% of UX considerations, 25% of optimisation, 15% configuration etc And that doesn't add up to 100% which makes a lot of devs uncomfortable if their idea of coding is 100% code using a pattern. In interviews I tend to ask why they want to be a coder, and if the answer is "because I love it" then they have the job. And so far, I've never heard one mention of patterns after 7 years of RnD.

30 |

@tieigisi

12 years ago

Man this video made me feel like i just drank a glass of cool fresh water after a long walk through the scorching desert. Really well put. Industrial code is REALLY verbose... java does not help either. It seems more like a 3in1 instant coffee: Just pour some code in there, and it will turn into this beautiful cool new app. But we all know it's not exactly the real thing, like a good made arabica espresso.

28 |

@jaymalby

7 years ago

It frustrates me that people keep forgetting that the Lisp community has been slowly working on all of these problems for decades and has solved a lot of them by now... Clojure and Common Lisp, for example, are incrementally compiled (so you can work interactively without loosing performance), optionally statically typed (so, once you've worked out an interface, you can get static type checking, but it doesn't slow you down when you're experimenting), and have great concurrency primitives (CSP, CAS, STM, immutable data structures, etc.). Plus, because of the power of lisp macros, it's easy for libraries to add new features to the language/compiler in a sane manner, so complex code patterns can be easily abstracted away.

14 |

@leimy2k

13 years ago

@nickik21 The go compiler does make pretty fast code, and it's not heavily optimized. People can go ahead and make an LLVM based Go compiler if they want to. They went with a code base they were really familiar with, which was the Plan 9 C compilers as a basis for the Go compilers. Go is pretty expressive, it's got closures. it's got a nice approach to interfaces and types. It's got concurrency built into the language as well as a CSP like programming model.

3 |

@speedTurtle

8 months ago

Essentially a critique of Sjoustroup with Java catching bullets because it just happened to be with C++ when Pike rolled up with his Golang crew.

|

@josephfatur1747

5 years ago

Just a beginner's observation, but when I read my forty-some books on Java programming, I see many code examples that are unnecessarily complicated with constructors and tiny methods calling each other, presumably in the name of encapsulation and code reuse. This code could be written easily in a procedural style. I'm led to believe that Brian Will is right: "Object Oriented Programming Is Bad". Why do I need forty books? Because the many ways of doing the same things in Java all need explanation - and I guess they are hard to explain because most of the explanations are poor.

10 |

@w1keee

3 years ago

public static void main(String[] args) // Java vs func main() // Go Now guys, go won in my book

3 |

@XorLavir

13 years ago

@farastray1 Are we talking about .net or C# as a language? Because .net has IronRuby and IronPython. >NET apis suffer from the same flaws as Java. That is disputable. I didn't saw in this presentation any mentioning about Java library flaws we could project on .net. >WCF is destroying productivity That is disputable. It is not every way tool. It is pretty small part of libraries. You don't have to use it, right? I also can mention such marvelous project as Nemerle meta-programming.

|

@TheBunyk

6 years ago

6:27 What was wrong with old integer 80? ROFL

1 |

@MrXStark

12 years ago

Computer Science is like LIFE. You first say that herbs are medicines(medival), then we replace them with incantations(premedival), followed by Unani(5th Century), 17th Century(Allopathy), 21st century we go back to herbs. Similarly, Go is an example that verbosity provided by C++ and Java HINDERS programmers more than it supports them. Python is also another example of why we should have LOVED C.

4 |

@hansiraber

13 years ago

i guess he's right in many ways. just curious he hasn't mentioned scala for more than 2 seconds. they seem to down the exact same road...

1 |

@you238

13 years ago

I use C and Python on a daily basis and it works pretty well for the two areas I develop for, very low-level embedded, and dumb apps for my Windows box.

2 |

@farastray1

13 years ago

@XorLavir the .NET apis suffer from the same flaws as Java. Any little thing is a big chore and there's a community culture of accepting -- or shall I even say embracing -- undue complexity. The thing that continues to make Python or Ruby pleasant to work in is that the communities as a whole are pragmatic and will call you out if you write constipated code. This is what .NET needs but suffers from too many years of neglect and bs initiatives - just look at how WCF is destroying productivity.

6 |

Go To Top