Code vs Data (Metaprogramming) - Computerphile

Sdílet
Vložit
  • čas přidán 17. 05. 2018
  • Why are code and data so separate? Robert Smith of Rigetti Quantum Computing explains how he uses Lisp code to generate Lisp data which he can use as Lisp code...
    / computerphile
    / computer_phile
    This video was filmed and edited by Sean Riley.
    Computer Science at the University of Nottingham: bit.ly/nottscomputer
    Computerphile is a sister project to Brady Haran's Numberphile. More at www.bradyharan.com

Komentáře • 288

  • @ninjalacoon
    @ninjalacoon Před 6 lety +67

    Linear algebra has this same kind of duality between data and function. A matrix is just a collection of data in most cases but when you multiply a matrix by some other matrix or a vector the matrix acts as a transform or a "function/code" on the data that passes through it. A change of basis is a transform matrix that acts as a function while at the same time could be further transformed by rotations and scaling matrices and act again as just data.

    • @Luredreier
      @Luredreier Před 5 lety +3

      Think of meta programming as inventing something new like multiplication or even pluss in math prior to those things being invented.
      Or any other new concept.
      For instance, there was a time when no one had invented zero.
      Math at the time had to be done with numbers with a value since there was no zero.
      In a programming language with metaprogramming you can invent such a new concept as zero, define it and use it instead of defining it every single time you need to use the concept.

    • @Evan490BC
      @Evan490BC Před 4 lety +1

      Well, almost. A matrix is a *representation* of an operator relative to the given basis.

    • @pablo_brianese
      @pablo_brianese Před 3 lety +1

      Love this comment

    • @OverThinkKS
      @OverThinkKS Před 2 lety +1

      Please learn about geometry algebra

  • @alanvitullo
    @alanvitullo Před 6 lety +384

    Dude, please start a programmer's channel with a LOT more code. These videos are a tease.

    • @debjyotibiswas3793
      @debjyotibiswas3793 Před 6 lety +32

      Agreed. Show me some code.

    • @greenlight2k
      @greenlight2k Před 6 lety +5

      If you want more code, check out "The Coding Train" channel ;-)
      Its... Javascript... but there you go...

    • @TheCandyDragon
      @TheCandyDragon Před 6 lety +2

      aah, that channel is so fun

    • @debjyotibiswas3793
      @debjyotibiswas3793 Před 6 lety +2

      Yes Daniel Shiffman is very cool. But hate JS are there any other channels which are not JS.

    • @debjyotibiswas3793
      @debjyotibiswas3793 Před 6 lety +1

      Yes and JS is very easy to understand. The problem arises when JS is used interchangeably with node and starts doing weird things.

  • @user-zz6fk8bc8u
    @user-zz6fk8bc8u Před 6 lety +127

    @2:52: *Reversed reverse Polish Notation* or as sane people would call it... polish notation ;-)

    • @SouravTechLabs
      @SouravTechLabs Před 6 lety

      @science no it's at 2:50

    • @user-zz6fk8bc8u
      @user-zz6fk8bc8u Před 6 lety +3

      @Sourav Goswami - Thanks. Fixed it.

    • @SteveHodge
      @SteveHodge Před 6 lety +13

      Or as people who prefer descriptive rather than arbitrary names for things, "prefix notation".

  • @tsunaminoai
    @tsunaminoai Před 6 lety +206

    "So could you give us an example?"
    "Oh sure, definitely. So lets say you wanted to draw an owl. First you just draw some circles. Right? Then you draw the rest of the owl, which I wont do here because its obvious."

    • @qwertyman1511
      @qwertyman1511 Před 6 lety +18

      as i understand it:
      first, a function is a set of instructions.
      second, we can create data during runtime.
      third, we can interpret data as instructions.
      fourth, we can run interpreted data as a function.
      you created code at run time.
      the program wrote parts of itself.

    • @cj37373
      @cj37373 Před 6 lety

      Andrew McAuliffe you can base code on input from the user if you desire so

    • @ElagabalusRex
      @ElagabalusRex Před 6 lety +4

      The way he described it, metaprogramming is the same as creating a library, which doesn't sound right.

    • @quadricode
      @quadricode Před 6 lety

      ElagabalusRex you can create libraries of syntactic abstractions. That’s part of the point. :)

    • @quadricode
      @quadricode Před 6 lety

      Kris2510 great, written out example!

  • @Passiday
    @Passiday Před 6 lety +16

    @5:20 - I've been there, too. Writing the loop in assembly and forgetting to INC the counter. Those days the only cure was rebooting your pc.

  • @sweetspotendurance
    @sweetspotendurance Před 6 lety +10

    I love listening to this guy talk, I don't know why

  • @jaymalby
    @jaymalby Před 6 lety +18

    Really nice broad pass over metaprogramming 👍

  • @benjaminfacouchere2395
    @benjaminfacouchere2395 Před 6 lety +27

    I don't know, all this meta & functional programming seem so powerful because you can allegedly write compact code.
    The problem I see is the same as with Perl: Can a third party actually decipher that code, or do we have to add 10 lines of comments for every line of code?

    • @LordShigi
      @LordShigi Před 6 lety +9

      Well, you don't really have to decipher it. At least not any average Joe has to. This technique lets you develop your own DSL (domain specific language) which will be really intuitive to its users.
      You can leave the writing of the actual interpreter to people that have the necessary skills to understand it.

    • @benjaminfacouchere2395
      @benjaminfacouchere2395 Před 6 lety

      @Arkhitekton Idk. So if I let users extend my program by letting them write plugins in a DSL is this already seen as meta-programming? What's the boundary - compilation vs. interpretation? Or has it more to do with Harvard vs. von Neumann architecture?
      Can you give me a practical example?

    • @LordShigi
      @LordShigi Před 6 lety +4

      Ever used CSS or JavaScript? You had the opportunity to use a DSL there. When you write "nav > ul li.top:hover" you are abstracted away from all of the details of how the interpretation of that line works. It is interpreted for you by some interpreter in the browser, and yet you know exactly what that line does.
      This kind of support is quite hard to do in languages that do not support metaprogramming. It is not impossible in any way, but it does require you to spend more time on building up the scaffolding to make it work.

    • @malusmundus-9605
      @malusmundus-9605 Před 2 lety

      @@LordShigi yesss when I see ppl say "you can't do this in c/c++" I'm always like uhhhh yeah u can XD

  • @ArumesYT
    @ArumesYT Před 6 lety +4

    This duality between data and code is much more common than most people think. One very simple example: most of us view a .c file as code. But to the compiler, it's data.

    • @Roxor128
      @Roxor128 Před 6 lety

      Exactly. The very existence of compilers and interpreters relies on that duality.

    • @davidwuhrer6704
      @davidwuhrer6704 Před 6 lety +2

      But can a C program evaluate, change, compile, and assemble it's own data at runtime?

  • @-notakil
    @-notakil Před 6 lety +6

    I want more from Robert Smith. This guy is good.

  • @gejyspa
    @gejyspa Před 6 lety +2

    I remember back in the early 1980s, when programmable calculators starting blurring the lines between computers and calculators, I read a quote (which I'm sorry I don't recall the author of) which said that the difference between calculators and computers is that the latter can operate on their own programs as if they were data and vice-versa, whereas the former cannot.

  • @SilverPsycheMetal
    @SilverPsycheMetal Před 6 lety

    Great video! I enjoyed the explanations and written examples. Thanks Mr. Robert Smith. 😊

  • @emilemil1
    @emilemil1 Před 6 lety +40

    To me that for-loop example seems very similar to defining a function that takes other functions as its arguments, though perhaps with a nicer syntax. Would love some more in-depth examples.

    • @marios1861
      @marios1861 Před 5 lety +4

      the for loop takes a variable name, the starting value, the ending value, the increment and the body of code to be executed with each iteration. Can you make a function that you give as input a body of code? Can you bend the syntax of the language you use in any way you see fit?

    • @albertosimeoni7215
      @albertosimeoni7215 Před 2 lety

      Is the standard C++ loop...
      The right example in C++ for metaprogramming are Virtual classes / methods

  • @scottfranco1962
    @scottfranco1962 Před 6 lety +5

    "reverse RPN" is not Reverse Reverse PN, it is just PN. Polish notation is like + 1 2 or add 1 and 2, RPN is 1 2 +. Polish notation was specifically prefix notation, which was considered more natural than 1+2 because you can write +1 * 2 3 to mean 1+(2*3), and indeed, this is a common notation used in compiler intermediate codes. However, RPN is considered even more natural than this because 2 3* 1+ exactly expresses operands and the operators that use them in proper order. Thus get 2, get 3, multiply, then get 1, and then add to the result of 2*3. It also is stack machine friendly.
    If there never were such a thing as polish notation, I'd agree that reverse RPN makes sense, but polish notation was a thing before RPN.

    • @Roxor128
      @Roxor128 Před 6 lety +1

      Oh, dear. The comment-formatting system has gotten tripped up by your example and parsed the asterisks for multiplication as instructions to make the text bold.

    • @scottfranco1962
      @scottfranco1962 Před 6 lety

      Thanks! Fixed it.

    • @Roxor128
      @Roxor128 Před 6 lety +1

      I really wish they'd just use a subset of HTML or pseudo-HTML for the formatting. These errors would be so much less likely.

  • @KnownNever
    @KnownNever Před 6 lety +11

    Am I correct to say that Lisp as he describes it is better off for math problems while C is better off for dealing with memory... cause that makes scenes why you would rather use Lisp over C for something like Quantum problems as stated in last video

    • @vyrsh0
      @vyrsh0 Před 3 měsíci

      All abstract problems, while C is better for memory as you said

  • @NoirpoolSea
    @NoirpoolSea Před 6 lety +2

    Fun fact: ".. prefix notation is similar to postfix notation such as RPN." Beginning with the HP 48 calculator instead of using RPN the manual refers to RPL which is not defined. A search on the web gives the unofficial acronym of "Reverse Polish LISP" which it is. If i enter "{1 2 3 * +}" and press ENTER that program is placed on the stack. Pressing EVAL then evaluates the expression leaving "7" on the stack. Notice how the parens dissapear in RPN/RPL. There is no PROGRAM/RUN mode switch on this machine; everything is eval mode and is placed on the stack!

  • @vicplichota
    @vicplichota Před 6 lety +2

    Forth is another wonderful language that still stands the test of time. This vid mentions Postscript, which is very much a variant of Forth.

  • @Majorohminus
    @Majorohminus Před 6 lety +17

    I'd love to see someone debug a metaprogram that contains thousands of lines of business logic :)

    • @albertosimeoni7215
      @albertosimeoni7215 Před 2 lety +4

      During my job in a company i find a procedure that was modified costantly in 4 years ( a T-SQL store procedure) that has around 3000 rows with some part of code that write code that was executed...
      It takes about 1 week to under stand it...and about 1 time over 2 month it need to be modified...The source of this madness is called SAP

    • @Alsteraib985
      @Alsteraib985 Před 3 měsíci +1

      A lot better than the Java mess.

  • @ZeedijkMike
    @ZeedijkMike Před 6 lety +1

    I'm getting all warm and fuzzy when I see the _LISP_ syntax. Brings back good memories from when I used it with AutoCAD.

  • @brianbarefootburns3521
    @brianbarefootburns3521 Před 6 lety +3

    Would be interesting to see a clarification of how this topic compares to compilers in general -- because, of course, compilers are programs that write programs. I was waiting for the comparison and distinction to be made in this video, but it never happened.

  • @APSStevens
    @APSStevens Před 6 lety +1

    I will remain indebted for sparking my interest in Lisp.

  • @grivar
    @grivar Před 6 lety +64

    Duality: Tom Scott or John Green?

    • @jaymalby
      @jaymalby Před 6 lety +2

      RE now I can’t unsee it 😂

    • @AlterMacGyver
      @AlterMacGyver Před 6 lety +3

      Trick question, Griffin McElroy

    • @taba1950
      @taba1950 Před 6 lety

      Arguably better than both

    • @mal2ksc
      @mal2ksc Před 6 lety

      Tom Green.

    • @grivar
      @grivar Před 6 lety

      Or is is John Scott?

  • @lawrencedoliveiro9104
    @lawrencedoliveiro9104 Před 6 lety +1

    4:23 That’s what a compiler for a high-level language does. The original name for this concept, from the 1950s, was “automatic programming”. At that time, the high-level language source was not considered the “program”: that name was reserved for the actual machine code that the computer could interpret.

  • @mrbrianparker
    @mrbrianparker Před 6 lety +5

    I've yet to hear a convincing argument for LISP including this vid.

  • @DevinBigSeven
    @DevinBigSeven Před 6 lety +1

    Could have introduced defmacro since that is often what is used at pre-compile time to turn the new syntax into something that the compiler will understand.

  • @safirswe
    @safirswe Před 3 lety +1

    I want to look at the video teased at the end, "fighting obsolescence", but can't find it anywhere. Anyone got a link?

  • @StaryWymiatacz
    @StaryWymiatacz Před 6 lety +4

    More Robert! :D

  • @Hoobz01
    @Hoobz01 Před 6 lety

    At the end credit there's a snippet on the 'current state of quantum computing'. Where's that vid?
    I can't find it.

  • @LuizBGomide
    @LuizBGomide Před 6 lety +30

    How different is that from ANY other interpreter? Or writing instructions directly to memory updating code on fly?

    • @TakanashiYuuji
      @TakanashiYuuji Před 6 lety +9

      It's not. Most languages have some kind of 'eval' feature.

    • @heller166
      @heller166 Před 6 lety +13

      yeah i also don't understand what is so special about it.

    • @AMcAFaves
      @AMcAFaves Před 6 lety +14

      It is a more abstracted way to modify code. You are modifying the code at an Abstract Syntax Tree level. (And with abstraction can come more power.)

    • @cmckain13
      @cmckain13 Před 6 lety

      TakanashiYuuji 0ⁿ

    • @nitowa
      @nitowa Před 6 lety +11

      The special part is, that the program doesn't have to be recompiled by the programmer to introduce new features, formally this is called "at runtime". Simply speaking your program is conjuring itself while it's running, and doesn't come with all the necessary code (as defnined in the video) but instead it has the data necessary to create the code.
      A popular counterexample would be C, which requires you to compile it for the given architecture before executing it. C cannot add (for example) a function that was passed from the keyboard as C-code, despite being valid C code, and it cannot be executed at runtime.
      If you're looking for an "interpreted" language, you might find Java to be a suitable example (I know it's technically compiled, but it's also interpreted at the same time, so there's that). Although Java may modify the JVM runtime however it likes, changing the functionality of a method/function is prohibited, which severely limits its at-runtime capabilities (in practice it's possible but produces very patternized code and complex structures)

  • @byteaesx1373
    @byteaesx1373 Před 6 lety

    Very well explained.

  • @defense200x
    @defense200x Před 6 lety +26

    This is a rather confusing example of the usage of Metaprogramming

    • @quadricode
      @quadricode Před 6 lety +6

      Unusual Activities you didn’t have for loops before, now you do. Is it confusing because everybody already has them? Maybe a better example would be: Imagine you wanted to specify logical constraints a la prolog. You can use metaprogramming to add such a facility to your program. But that means you’d have to explain what prolog is...

    • @webgpu
      @webgpu Před 6 lety +1

      that's what you get when you assign that "confusing" guy to present this video..

    • @defense200x
      @defense200x Před 6 lety +1

      I mean, I get it, actually I would to turn data into code for a project I'm currently working on but the language im working in (C++) won't let me :p

    • @zacharymetz9975
      @zacharymetz9975 Před 6 lety

      you could implement a scripting language then you could execute instruction that were created

  • @juancarlosgallegos3902
    @juancarlosgallegos3902 Před 6 lety +17

    I did not really understand this, he seems to be skipping some important details in his explanation?

    • @maestbobo
      @maestbobo Před 3 lety +1

      I mean, it's obvious what he's saying. I don't understand what you're finding difficult about it.

  • @daniellindner355
    @daniellindner355 Před 5 lety

    is all of this related to code? like Metaprogramming and/or Software defined Networking? Where can i learn these things? Are they being taught in Computer Science?

  • @BeastinlosersHD
    @BeastinlosersHD Před 6 lety +1

    How is the for loop example (and how it is an example of metaprogramming if a for loop didnt originally exist in the syntax) different from inline functions or #define

  • @habtamuassegahegn4283
    @habtamuassegahegn4283 Před 4 lety

    hey phile can you explain exactly about symbolic data from the book structure and interpration of computer program

  • @MidnightSt
    @MidnightSt Před 6 lety

    i personally, since the moment I learned about variables that can store functions, see this distinction of "code vs. data" as wholly arbitrary.
    code is data describing how to transform data.
    it's all just data, the difference is in how you interpret it.

    • @malusmundus-9605
      @malusmundus-9605 Před 2 lety +1

      Every abstraction in programming has meaning in the correct context... otherwise we're just talking about 1's and 0's

  • @lawrencedoliveiro9104
    @lawrencedoliveiro9104 Před 6 lety +5

    5:37 Assuming the increment of i lies at the bottom of that squiggle somewhere ... otherwise you’ve just written an endless loop.

  • @umblapag
    @umblapag Před 6 lety +1

    Interesting to learn a bit about lisp

  • @inomo
    @inomo Před 3 lety

    @Computerphile can we have a video about the Julia programming language?

  • @RoGeorgeRoGeorge
    @RoGeorgeRoGeorge Před 6 lety +4

    Where's the rest?

  • @dickjohnson4447
    @dickjohnson4447 Před 6 lety

    5:37 this is what you had to write to iterate ten times, yes but in assembly you could:
    times 10 instr
    instr (some instruction you want to do 10
    times)

  • @udxs6782
    @udxs6782 Před 6 lety +5

    Isn't RRPN just Polish Notation?

  • @zacharymetz9975
    @zacharymetz9975 Před 6 lety

    Whats the difference between lisp and a langue where i can run the eval() from javascript?

  • @aDifferentJT
    @aDifferentJT Před 6 lety +3

    2:53 normally called Forward Polish Notation

  • @AB-Prince
    @AB-Prince Před 6 lety +1

    Could you do a video on how to group logic gates to acomplish complex actions, such as multiplication, division, and converting binary to different two exponent bases

    • @davidwuhrer6704
      @davidwuhrer6704 Před 6 lety

      I think they already did, using domino bricks.

    • @rafeu2288
      @rafeu2288 Před 2 lety

      I would recommend you check the video game "Turing Complete" on steam, it goes there and beyond, allowing you to learn how to implement a full 8-bit Harvard Style computer.

  • @acharris
    @acharris Před 5 lety +1

    Is it possible to get similar meta programming capabilities in languages other than lisp? IE are there other programming languages that can do similar meta programming?

    • @rafeu2288
      @rafeu2288 Před 2 lety

      Rust lang is another language with a somewhat powerful macro system. But it seems Homoiconicity is one of the qualities that make meta-programming easier to implement.

    • @glowingone1774
      @glowingone1774 Před rokem +1

      Nim, im not sure about "rust" but people have built whole DSL's with it in nim.

  • @sugarfrosted2005
    @sugarfrosted2005 Před 6 lety +1

    It's strange as a comparability theorist, I consider data and code to be the same thing. Though we explicitly use numbers for both.

  • @Mike-qt4fr
    @Mike-qt4fr Před 6 lety +4

    Love this man!

  • @realNAKAMI
    @realNAKAMI Před 6 lety

    "write a programm that writes programms", many of us do that already. for example a few days ago i wrote a simple python script to dynamically to my needs created LaTeX source code. also,
    automatically generating config files (config files may be considered as code sometimes) follows this scheme. more interesting: if the program and the generated program both are in the same language.

  • @RealCaptainAwesome
    @RealCaptainAwesome Před 6 lety

    I had a guy demo lisp for me yesterday for the first time, now it is everywhere.

  • @lawrencedoliveiro9104
    @lawrencedoliveiro9104 Před 6 lety +4

    Von Neumann understood this perfectly well. The only ones who have forgotten tend to use languages like Java or C#. Oh, and PHP.

    • @GreyDeathVaccine
      @GreyDeathVaccine Před rokem +3

      Don't be a hater. Use the best tool to solve problem at hand.

    • @chpsilva
      @chpsilva Před 9 měsíci

      ​@@GreyDeathVaccine couldn't have said better

  • @noxabellus
    @noxabellus Před 6 lety

    I would just like to suggest to anyone that is interested in this, check out terra lang :) It's basically a scriptable compiler and deserves more love

  • @TheSpidercricket
    @TheSpidercricket Před 5 lety

    Please make a video about how code generation works. E.g. LLVM

  • @Jacksonbanan
    @Jacksonbanan Před 6 lety

    I really want them to make a video on Rudy attacks

  • @NitinSethi22
    @NitinSethi22 Před 6 lety

    Beautiful

  • @greenlight2k
    @greenlight2k Před 6 lety +3

    Hmmm... can i think about this similar to Lambda-Expression in C# or Java?
    Which, like... IS program code at compile time and BECOMES data at runtime?
    Or, is that too far fetched? ^^

    • @jakejakeboom
      @jakejakeboom Před 6 lety +1

      A lambda expression is a functional concept so yes, that's somewhat similar.

    • @kwanarchive
      @kwanarchive Před 6 lety +1

      The comparison breaks down when you try to pick apart the lambda-expression - which you can't do in C# or Java. You can create a lambda, but you can't pull it apart and pick bits and pieces out of it.
      With metaprogramming, you would be able to compose functions together, and then later on, pick them apart and, say, recompose the functions in a different way based on some conditions for optimization.
      C# and Java have no way to do this.

    • @shanehebert396
      @shanehebert396 Před 6 lety +2

      Currying using lambdas is an example of how to achieve some of what the video talks about.

    • @Luredreier
      @Luredreier Před 5 lety

      You can then get data that becomes code at runtime too...

  • @dandan7884
    @dandan7884 Před 6 lety +3

    so how can we do this in ruby?
    metaprogramming in ruby was a selling point but the only thing we hear today is rails. the language bent to the framework
    how can we do metaprogramming in ruby?

    • @DonVittorio
      @DonVittorio Před 6 lety +4

      Quite easy actually, due to the fact that everything is an object, you can construct many different things (classes, methods for specific objects, ...) with ease. Ruby's syntax also allows to create quite clean DSL's!

    • @dandan7884
      @dandan7884 Před 6 lety

      can you show me an example (external url)? im not a ruby dev so id like to see that working
      people use metaprogramming in rails too?

    • @DonVittorio
      @DonVittorio Před 6 lety +2

      Well, rails is already a full blown framework, I'm not sure if you ever really need to do metaprogramming there. However, a simple example would be the attr_accessor function, which creates getters and setters for a field of a class.
      class Person
      attr_accessor :name
      end
      Is a functions which basically gets converted to
      class Person
      def name
      @name
      end
      def name=(value)
      @name = value
      end
      end
      This isn't exactly like the metaprogramming shown in the video, but you're still creating new "keywords" to make life easier. You can't do the same thing in Java for example (at least not when I used to write Java)

    • @f1r3w4rr10r
      @f1r3w4rr10r Před 6 lety

      I think one of the best examples for metaprogramming are how ORMs (Object-Relational Mappers) create the Ruby classes for database tables. In Ruby you do not have to define methods to get and set the value for every single column. Most of the time, all you need to write down is your class name and point the ORM at the right table. The ORM will then for example use MySQL queries to get the column definitions of the table and define the methods for you, at run time. This defining of code on the fly and adding it to classes and objects is the metaprogramming. All this happens in memory. In contrast, Java for example would have the ORM literally write source code files for you, where it defines all those methods before compiling. You should then never touch those, because the next time you generate them, your changes are lost.
      With Ruby then, you have the advantage that you don't have to change anything in case of a change to a part of a table, that your code does not touch.
      Some keywords you can look up in ruby: "include", "extend" (both when called in a class definition and when called on an instance object), "send", "method_missing", "define_method" and of course the 'dreaded' "eval".

  • @BeCurieUs
    @BeCurieUs Před 6 lety +2

    Hmmm still not getting it, I hope there are more of these.

    • @CaptainJeoy
      @CaptainJeoy Před 4 lety

      It's just a method of abstracting useful functions as an evaluable data

  • @MrCmon113
    @MrCmon113 Před 6 lety +1

    How is that different from other languages and interpreters?
    I'm pretty sure you could do the same thing in C++ or Java or Haskell without any "duality".
    Also I thought computer scientists had largely abandoned meta programming.

  • @dmitryponyatov2158
    @dmitryponyatov2158 Před 5 lety

    What do you think about using Marvin Minsky frames as the base for metaprogramming language?
    I took his idea, only one element type: Frame object can hold scalar value, associative array (names slots points to other frames) and array holds pointers to other frames _in order_.
    In results, I can construct networks of directed interconnected objects, looks very very close to the attribute grammar structure.
    The key is some subset of data must have active nature: they must be executable, or more precise evaluatable in some execution context.

    • @dmitryponyatov2158
      @dmitryponyatov2158 Před 5 lety

      I played with this concept a lot, using some sort of FORTH script language to construct and manipulate such a structure type. Results look attractable. To represent say program-like structures I can inherit base Frame class to set of classes close to any generic script language -- functions, loops.

    • @dmitryponyatov2158
      @dmitryponyatov2158 Před 5 lety

      But what stops me going further this way: complexity rises too fast when I try to rewrite system in itself (metacircular implementation). Maybe I should not try to generate Python code too earlier, and I first should describe the system only at a very high level, I don't know.

  • @rkpetry
    @rkpetry Před 6 lety +1

    *_...but tight code is used repeatedly-on scads of data; (Amer. scads, Brit. jillions)..._*
    *_...on the other hand, the similarity shows in loop parameters, i++, list descriptors,..._*
    *_...((in the control/addressing variables-but not, in the data itself/results per se))..._*

  • @NiDeCo
    @NiDeCo Před 6 lety

    Haskell doesn't have for-loops though :P
    It uses recursion, it being functional and all.

  • @mattmaloney5988
    @mattmaloney5988 Před 6 lety

    Is this different than using eval in JavaScript?

  • @yanwo2359
    @yanwo2359 Před 6 lety

    What a joy it must be to debug a Lisp program.

  • @YourMJK
    @YourMJK Před 6 lety

    Can't you also create assembler code in a C program and then execute it? Isn't that the same?

    • @kwanarchive
      @kwanarchive Před 6 lety +2

      You can't take the generated code and make it into data again within the language. You'd have to disassemble the generated code, recreate the C from it (which is hard due to optimizations) and somehow make it recompilable.
      The other way is for your C program to create a miniature VM to interpret byte code your program creates, but that, again, takes you out of the language.

  • @UseQPixinDune
    @UseQPixinDune Před 3 lety

    Aren't compilers in general an implementation of metaprogramming?

  • @BitcoinJake09
    @BitcoinJake09 Před 6 lety

    I remember programming in QBasic with subs and things like be for learning java and functions :p

  • @gawicks
    @gawicks Před 6 lety +1

    Are macros the same thing as Metaprogramming?

    • @charleslambert246
      @charleslambert246 Před 5 lety

      Haritha Wickremasinghe They are a form of meta-programming.

  • @CypressPunk34
    @CypressPunk34 Před 6 lety +4

    wouldnt reversed reverse polish notation just be polish notation?

  • @JP-re3bc
    @JP-re3bc Před 6 lety +21

    He forgot to increment i in the pseudocode

    • @CrushaKRool
      @CrushaKRool Před 6 lety

      al Khwarismi And to have the initial check of the loop, which usually means an unconditional jump to its end, right after initializing i.

    • @quadricode
      @quadricode Před 6 lety

      The pseudo code is definitely inaccurate!

  • @SteinCodes
    @SteinCodes Před 5 lety

    So Macros are also a type of MetaProgramming?? right!

  • @m.h.6470
    @m.h.6470 Před 6 lety

    so its like the eval function in javascript and php which have been around for ages... and are generally considered as "dangerous", especially if you use it with user input.

    • @malusmundus-9605
      @malusmundus-9605 Před 2 lety

      Anytime you handle data from an unknown source it's dangerous... you have to predict what might come and handle it.

    • @m.h.6470
      @m.h.6470 Před 2 lety +1

      @@malusmundus-9605 and therein lies the hubris... unless you restrict the data, you can't possibly predict everything and handle it - especially with user input. A hacker can use these weak points to execute code without your knowledge and gain access to systems or data.

  • @MasthaX
    @MasthaX Před 6 lety

    Isn't it true most programming languages have an eval function where you could pass data (string, var, number, etc) to be evaluated and executed?

    • @notnullnotvoid
      @notnullnotvoid Před 6 lety +4

      Only some scripting languages have this, and compiled languages generally can't. Eval also usually operates on program text, rather than directly on a generated AST.

  • @rozaepareza
    @rozaepareza Před 6 lety +16

    I want to see a non-contrived example

    • @jaymalby
      @jaymalby Před 6 lety +4

      The trouble with metaprogramming is that all it does is give the user the same power as a programming language designer. What that means is if your programming language doesn’t have something, you can add it. The problem for explaining metaprogramming is the non-contrived examples have all either been implemented in other languages by language designers (so they seem silly nowadays), are really trivial (but nice) conveniences, or take a lot more time than they had here (like adding a new programming paradigm as a library).

    • @quadricode
      @quadricode Před 6 lety

      Elijah Malaby this is a really great explanation!

    • @webgpu
      @webgpu Před 6 lety

      quadricode being hyper sarcastic :)

    • @badsyntax173
      @badsyntax173 Před 6 lety

      Meta programming is just another layer of abstraction. You have assembly code to make processors do what you want, you have languages to make assembly code do what you want. This is a language to make a language to do what people want. A really powerful tool especially in academia and research. Simple examples will make not convey the power of the concept and always feel contrived. Non simple examples are non contrived but hard to explain

    • @jeffreyjdesir
      @jeffreyjdesir Před 5 lety

      @@badsyntax173 The power in 'code as data' is thanks to macros. there's no real equivalent of a macro in languages like Java or Python. While Java's added a 'reflect' library that keeps a table of functions created in namespace, it still doesn't treat them equally 'first class citizens'.
      There's no way for example to define '+' (plus) as '-' (minus)...or multiply or any function you want really. There's no constraint or workaround in having predictable code adjusting itself.

  • @tohopes
    @tohopes Před 6 lety +4

    So... functional programming then?

    • @Luredreier
      @Luredreier Před 5 lety

      Not quite.
      It's a programming paradigm.
      You *can* do this with a functional programming language (well some of them).
      But this and functional programming isn't the same exact thing.

  • @lawrencedoliveiro9104
    @lawrencedoliveiro9104 Před 6 lety

    CZcams just showed me a 24-minute ad--that’s over *three times* longer than the video I wanted to watch.
    Never mind--I just let it play with the tab muted, while I did something else. That way you still get the ad revenue, right?

  • @Wizball
    @Wizball Před 6 lety

    A bit retro to use dot matrix paper ;)

  • @donotsellmydata2089
    @donotsellmydata2089 Před 3 lety

    To iterate is imperative and to recuse is functional?

  • @capoiosct
    @capoiosct Před 6 lety +4

    nim-lang.org can do that and its procedural.

    • @AMcAFaves
      @AMcAFaves Před 6 lety

      capoiosct If that is the case, then nim wouldn't just be procedural, it would be multi-paradigm, because then you could just write macros to add OOP, functional or any other paradigm functionality to the language. :-)

  • @punkkap
    @punkkap Před 2 lety

    >Is there a simple example of that?

    • @esobrev
      @esobrev Před 6 měsíci

      he literally gave an example

  • @piotrz3403
    @piotrz3403 Před 6 lety +2

    reverse reverse polish notation = polish notation

  • @Eichro
    @Eichro Před 6 lety +1

    I'm assuming that in Lispland eval isn't evil?

    • @surabax
      @surabax Před 6 lety +1

      You don't use eval directly in Lispland, you define macros instead.

  • @user-pw5by5jw8p
    @user-pw5by5jw8p Před 6 lety +2

    code = evaluated data

  • @NikiHerl
    @NikiHerl Před 6 lety +4

    Please try to get the interviewees to explain their subjects more concretely (i.e. with code samples)

  • @bimbumbamdolievori
    @bimbumbamdolievori Před 3 lety +2

    A very powerful tool which I lost control over on day 2🤣🤣🤣now i kinda see where the elixir quote comes from...

  • @hikaruyoroi
    @hikaruyoroi Před 6 lety +4

    I really like this guy

  • @abdulrahmanalzeidi3811
    @abdulrahmanalzeidi3811 Před 6 lety +1

    this is somewhat similar to templates in c++ no?

    • @jaymalby
      @jaymalby Před 6 lety +4

      guild man similar- C++ templates generate code for you, but in very rigid and structured ways and you write the templates in a special templating language instead of using C++ code to manipulate other C++ code directly as a data-structure.

  • @LLoydsensei
    @LLoydsensei Před 6 lety +1

    Eval is a common misspelling of evil

  • @damejelyas
    @damejelyas Před 6 lety

    Write programs that can write programs he means create a language and use it

  • @ncgallagher
    @ncgallagher Před 6 lety +3

    this guy is great

  • @ProjektRakete
    @ProjektRakete Před 4 měsíci

    Is this the latest "Programmers are also human" video?

  • @chenzhuoyu1992
    @chenzhuoyu1992 Před 6 lety

    Arbitrary code execution built into the language itself

    • @quadricode
      @quadricode Před 6 lety

      Zhuoyu Chen everything is determined at compile time, unless you use EVAL yourself at runtime.

  • @lawrencedoliveiro9104
    @lawrencedoliveiro9104 Před 6 lety

    Code is just data to a lower-level processor.
    What is the lowest-level processor? Is it the laws of physics?

  • @samsharma8621
    @samsharma8621 Před 6 lety

    Wheres mike pound

  • @DavidBadilloMusic
    @DavidBadilloMusic Před 6 lety

    Isn't this metaprogramming sort of what High-Level programming languages are?

  • @diegonayalazo
    @diegonayalazo Před 2 lety

    Thanks

  • @rodbhar6522
    @rodbhar6522 Před 6 lety

    Lisp looks like an overly complex version of Forth

  • @WarZzed300
    @WarZzed300 Před 5 lety

    You can also directly obfuscate your code for exemple, turning it into base64 data and create "eval" function that decode and read it. So powerful !

  • @33Duce
    @33Duce Před 6 lety +2

    Uh, what?

  • @jorabart
    @jorabart Před 4 lety +1

    Hmm, since code is written exactly the same as data, I wonder if I could write a program that reads a different program and then tells me if that program would eventually stop?