Call the compiler, fax it your code

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 พ.ค. 2024
  • Hi, I'm Lex (they/them)
    I made a very silly fax service.
    In the video it is running on York Hackspace's internal phone system.
    It also ran at EMFCamp 2024 on the copper telephone network.
    Source code is here: github.com/lexbailey/compilerfax
    Enjoy :)
    --- Explanation of what's going on in this video ---
    This is a regular fax machine sending a normal fax to fax service that I built. The service runs on a Raspberry Pi that has a fax modem attached to it. It appears to any other fax machine just like a normal fax machine. Both the Raspberry Pi and the fax machine in the video are connected to a PABX (a local telephone exchange) in York Hackspace. The phone exchange there is not connected to the public network at all (at the time of filming, at least), and so you can only make local calls.
    The Hackspace PABX is very old, and only supports pulse dialing (it doesn't support the more modern DTMF dialing). As far as I can tell, the fax machine can only do DTMF, and can't do pulse. This is why there is a hamburger phone attached to the same phone line. The hamburger phone can do pulse dialing. At the start of the video, I put the printed source code on the fax scanner glass, and then pick up the hamburger phone and dial the number for the fax service running on the Raspberry Pi. The Pi is connected to extension 8, so I dial 8.
    Once I hear that the Raspberry Pi has accepted the incoming call, I press the button on the fax machine to start sending a fax. The Raspberry Pi listens to the incoming fax and saves it to the SD card. The fax service running on the Pi then performs OCR on the incoming fax. The result of the OCR is saved as a C file. That C file is then compiled with GCC, and then the resulting binary is executed. Of course, compilation might fail, in which case the program will not run.
    Regardless of the result of the compilation and execution, the fax service will generate a report and fax it back to the sender. (This can only happen if the sender included a reply number in the program. That's what the //REPLY=7# line is for. The fax machine is connected to extension 7. Unfortunately I couldn't figure out how to get caller ID working.) The report will contain any compiler errors or warnings, and any output from the program, if it ran.
    --- FAQ ---
    Q: What happens if you send a program that doesn't terminate? (An infinite loop)
    A: At the time of filming, it would have waited forever for the program to complete, and thus it would not reply at all and would stop processing incoming faxes. I have since added some time limits. You get 20 seconds to compile, and 60 seconds to run. After that the program is terminated and the report is sent back with a message indicating that a timeout occured.
    Q: What if you need more than one page to send all your code?
    A: You can send a multi-page fax, but I'm not sure what will happen after it is received. Whatever happens it certainly won't work correctly. It will either: just ignore all pages after the first one, or try to OCR them all at once and fail to read the code. I would like to fix that though. Support for multipage sources would be nice.
    Q: Is it sandboxed?
    A: Yes.
    Q: Is the sandbox actually secure?
    A: I've done the best I can to secure it, but there might still be issues. Try and break it for yourself! The code is all on github: github.com/lexbailey/compilerfax
    Q: Can you specify the compilation options? If so how?
    A: No, unfortunately. I could maybe add in a way to do this, perhaps a special comment at the top of the file. For now though it will always compile with a fairly simple command: gcc -lm program.c -o program
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 330

  • @Suzumi-kun
    @Suzumi-kun หลายเดือนก่อน +1089

    the hamburger phone makes it perfect

    • @ygnb5608
      @ygnb5608 29 วันที่ผ่านมา +12

      and it's so funny because i literally just made a doublestacker cheeseburger 5 minutes ago

    • @Foga001
      @Foga001 21 วันที่ผ่านมา +2

      Hamburger, cheeseburger, Big mac, whopper

    • @jakint0sh
      @jakint0sh 6 วันที่ผ่านมา +1

      I’m happy to be the person that ticked this comment over to 1k likes from 999, really, this made my day

    • @Foga001
      @Foga001 6 วันที่ผ่านมา

      @@jakint0sh Must have been a really satisfying feeling. Congrats man!

  • @davidjohnston4240
    @davidjohnston4240 หลายเดือนก่อน +1371

    Well it's faster than compiling a rust program locally.

    • @Slushee
      @Slushee หลายเดือนก่อน +108

      As much as it pains me to admit as a rust user, you're right

    • @marianivanov6431
      @marianivanov6431 หลายเดือนก่อน +4

    • @thezipcreator
      @thezipcreator หลายเดือนก่อน +27

      I still don't know why Rust's compiler is so slow lol. Zig's compiler runs about as fast as gcc and it also (for now) uses LLVM like Rust does so I don't get it.

    • @davidjohnston4240
      @davidjohnston4240 หลายเดือนก่อน +7

      @@thezipcreator I mainly program in Python and C, but I like Zig and expect Zig to replace my C usage once the inline assembler issues are both addressed and stabliized.

    • @valshaped
      @valshaped 29 วันที่ผ่านมา

      ​​​​​​​​​​​​@@thezipcreator1. Rust's trait solver is a proof engine, the type system is Turing complete (or very nearly), and library authors love to do horrible things with it.
      2. Rust's proc-macros are compiler plugins that have to be compiled separately, *linked,* and then dynamically loaded. This is probably where most of the overhead is coming from if your project is slow to compile.
      3. Every proc macro is independently responsible for parsing code, transforming the resulting AST, and re-"serializing" it back into a token tree which the compiler then parses into Rust code (which can then call another proc macro, repeating the whole process)
      It's all pretty cursed, tbh. The general rule is more proc macros = more pain, but everyone loves derive macros so much.
      4. Monomorphization (stamping out non-generic copies of generic code) also has a lot of overhead, and in the worst case, the compiler will give LLVM a ton of redundant or entirely dead code, which may or may not get cleaned up by the optimization passes
      5. The compiler treats an entire crate as a C compiler treats a single C file; that is, a *crate* is the Rust compiler's compilation unit.

  • @kyium_
    @kyium_ หลายเดือนก่อน +709

    The only true use for fax now in this day and age is doing stuff like this. This is one of the worst things i've seen as a programmer, I love it.

    • @illsmackudown
      @illsmackudown หลายเดือนก่อน +6

      i disagree

    • @DerKlemm-Crafter
      @DerKlemm-Crafter หลายเดือนก่อน +29

      In Germany we call a Fax high-tech

    • @hoofie2002
      @hoofie2002 29 วันที่ผ่านมา +33

      Nope you are wrong. It's still used in hospitals and by doctors because it's fast, can handle non-electronic documents and gives you confirmation of delivery or at least acceptance at the other end.

    • @mr_biscuit
      @mr_biscuit 29 วันที่ผ่านมา

      @@hoofie2002 You just discribed somthing that can be done better and more securely via email. It is unfortunately still used in many places but fax really should not be used on anything of importance in 2024. I think @kyium_ 's point was that it's the only "good use" of fax.

    • @user-nz8rv8ft5q
      @user-nz8rv8ft5q 28 วันที่ผ่านมา +6

      still used by ISP in Italy to close the subscription.

  • @Fasteroid
    @Fasteroid 29 วันที่ผ่านมา +527

    "We're hoping that it's gonna print Hello World 10 times"
    > literally prints it on a piece of paper
    lol

    • @Beredro
      @Beredro 29 วันที่ผ่านมา +49

      I was hoping for 10 Pages each with "Hello World"

    • @ygnb5608
      @ygnb5608 29 วันที่ผ่านมา +4

      @@Beredro SAME LOL

    • @schtormm
      @schtormm 28 วันที่ผ่านมา +3

      @@Beredro that would've been even funnier

    • @ten-faced-carrot
      @ten-faced-carrot 14 วันที่ผ่านมา +1

      That was the original meaning of print, a long long long time ago

    • @Zaxphion
      @Zaxphion 9 วันที่ผ่านมา

      I wanted 10 pages of 1 line hello world

  • @SonOfMeme
    @SonOfMeme 29 วันที่ผ่านมา +615

    Hot diggity! Maybe one day we'll be able to hook our computers up to the phone lines directly and have them communicate without needing to print and fax stuff!

    • @RitamSanyal
      @RitamSanyal 28 วันที่ผ่านมา +3

      🌚

    • @mgancarzjr
      @mgancarzjr 28 วันที่ผ่านมา +25

      Hah! What next, washing machines and televisions talking to each other?

    • @fishyc43sar
      @fishyc43sar 27 วันที่ผ่านมา +9

      Maybe one day we can do computer stuff like spreadsheets, word processing and networking on portable telephones directly! Who knows?

    • @davidjohnson5635
      @davidjohnson5635 20 วันที่ผ่านมา +3

      Pah! That’s never going to happen!

    • @mgancarzjr
      @mgancarzjr 20 วันที่ผ่านมา +2

      @@fishyc43sar _Yeah, but your scientists were so preoccupied with whether or not they could, they didn't stop to think if they should._ - Dr. Ian Malcolm

  • @BlueSheep95
    @BlueSheep95 หลายเดือนก่อน +291

    Now I know what my computer scientist friend, a German civil servant, does all day long.

    • @geolykt
      @geolykt 29 วันที่ผ่านมา +19

      Ah so that is why faxing is still so common around here

    • @ololh4xx
      @ololh4xx 29 วันที่ผ่านมา +8

      No we are actually using modern tech - in between binge-watching TH-cam, drinking coffee and having ultra-long, completely useless online meetings ... which reminds me to go and get my next batch of coffee ... brb

    • @commander3494
      @commander3494 29 วันที่ผ่านมา +10

      @@ololh4xx "we are actually using modern tech"
      Meanwhile, Deutsche Bahn is hiring Windows 3.11 engineers... or so I've been told, at least

    • @ololh4xx
      @ololh4xx 28 วันที่ผ่านมา +8

      @@commander3494 nah, they only require the will to *use* this tech, not to develop it further. Thats because they *will* phase it out once it breaks ... problem with that : it doesnt break. We also use ancient tech to some extent but it also doesnt get any new development. Have you heard of the expression "never change a running system"? This is the result of that.

    • @user-nz8rv8ft5q
      @user-nz8rv8ft5q 28 วันที่ผ่านมา

      ​@@ololh4xxstagnation is death, just prolongated then usual.
      This is what's wrong with EU, they are trying to find an excuse for museum relics that are still working- these are dangerously outdated, they cannot handle requests, they are not reliable or at least doesn't follow adequate reliability needs.
      Like Italian doctor appointment system CUP that most of the time is down and everyone is handling papers with barcodes that no scanner produced only for this purpose cannot read them.
      Then you go somewhere like Uzbekistan, 3rd world poor post-soviet country: the only paper that you will have in appointment system is a ticket with exact date and number in queue, rest is made electronically
      Does it falls down?
      First 2 month it was, after a year it mostly works.
      As by today, on 23rd may of 2024 for the appointment to the doctor in Italy you had to find sometime, take 1 hour off, sit in the queue and then make an appointment that will take at least for 3 month for any kind of doctor.
      In contrary, in Uzbekistan, this will take 1 week if this is very specific, rare doctor.
      The other way around is just an old-fashioned queue.
      Why it is like that?
      Outdated IT, outdated practices, outdated spendings, outdated approaches for solving the problems(basically, restyle of 100 years old ways of looking on things), outdated requirements and projections for resource-planning.
      Why nothing is changed?
      OH, it it just works, why then we should change that!?
      Oh yes, "works".
      It is so miserable that it takes years to do a small job that in normal case will take a month, but instead will take 6 month because of outdated quazi-paper burocacy, understaff, business-only-stimulation and so on.
      Even people working there feel so miserable by situation, just in order to compensate that they have printed a banner with amount of materials changed or work done.
      But small building restructurization: change windows, change insulation, change roof sealant, paint exteriors is already took 3 years to do.
      A single building to do the scheduled repair.
      In poor countries it takes 3 years to build a skyscraper in historic center 500 years old in the city.
      It is all outdated, everything is old.
      You go to the flea market: freshest used computer is 10 years old, they do sell casually what should be in museum because it is 40 years old computer hardware or 24 years old phone.
      When you start speaking with people they don't even realise that they are living in 2024, not in 2002 or 2010.
      Stagnation and probably decadance in everything is how nowadays eu can be described.
      Damn, the entire airspace industry holds on shitty excel tables: how many it guys are produced by university annually?
      The damn army of people know how to write a code for a tracker software like oversimplified jira.
      It just works!
      Yeah, until the certified fuel tank of upcoming rocket made by ESA is thrown on dump like some trash.
      The miserable shame is so high that people just escape from their mind to paper marryworld pretending that nothing happens, just one more deadline shift for couple od weeks this month: one more, one another, unfortunately one more, so sudden one more deadline shift...

  • @spaenny
    @spaenny 29 วันที่ผ่านมา +120

    The government of Germany would like to speak with you.

  • @jemand771
    @jemand771 28 วันที่ผ่านมา +95

    what it feels like waiting for jenkins to schedule your job

  • @thescratchguy428
    @thescratchguy428 29 วันที่ผ่านมา +65

    Imagine having to wait a whole 10 minutes of compiling C++ just for it to decline your fax

    • @WelshProgrammer
      @WelshProgrammer 27 วันที่ผ่านมา +17

      This is exactly how it used to be, give the mainframe sysops your code on paper or magnetic tape, wait up to 48 hours for them to load and compile it to see if it was right, maybe have the sysop call you and scream that it created an infinite loop and used up a whole bunch of paper tape or boxed tractor feed paper.

    • @pacomatic9833
      @pacomatic9833 11 วันที่ผ่านมา +1

      @WelshProgrammer No time limit for loops? smh 😔

  • @martijnvds
    @martijnvds 29 วันที่ผ่านมา +153

    That's a... C-fax.

    • @WelshProgrammer
      @WelshProgrammer 27 วันที่ผ่านมา +9

      Found the British people 🤣

    •  17 วันที่ผ่านมา

      Oh no 😂

    • @user-hb4xe6vf2y
      @user-hb4xe6vf2y 15 วันที่ผ่านมา

      c fax fax

  • @tartyto
    @tartyto 16 วันที่ผ่านมา +12

    gives a new meaning to the print function

  • @khatharrmalkavian3306
    @khatharrmalkavian3306 16 วันที่ผ่านมา +13

    Faxed the code to the compiler, now I'm just waiting for the hamburger to ring.

  • @depressedandndy7373
    @depressedandndy7373 28 วันที่ผ่านมา +70

    We are not caveman, we have technology.
    The technology:

    • @depressedandndy7373
      @depressedandndy7373 28 วันที่ผ่านมา +3

      This actually pretty fit the theme of a SaaS stuff, will be nice if some body combine fax and OCR to make a remote build service for fun

  • @MattGrayYES
    @MattGrayYES 25 วันที่ผ่านมา +28

    “That’ll be the compiler now” got me laughing out loud. Good work!

  • @MineXplayPL
    @MineXplayPL 29 วันที่ผ่านมา +96

    I was hoping for Segmentation Fault, but awesome anyway!

  • @OriginalJetForMe
    @OriginalJetForMe 29 วันที่ผ่านมา +53

    This is amazing. Programmers have gotten soft, with their rapid build cycles; they don’t check their code for errors before compiling any more. This will make them better programmers.

    • @rkvkydqf
      @rkvkydqf 27 วันที่ผ่านมา +1

      Imagine same thing but with a build system and maybe a copy served over http

    • @Aresydatch
      @Aresydatch 12 วันที่ผ่านมา

      Or getting a crappy 4 Gigabyte HDD laptop and forcing them to use it for development will do that

  • @davidjohnson5635
    @davidjohnson5635 20 วันที่ผ่านมา +7

    Working at a life insurance company using a mainframe implementation that’s barely been updated since the 60s, this hits differently.

  • @ncot_tech
    @ncot_tech 29 วันที่ผ่านมา +125

    This is amazing! Just think of the time saved compared to typing out all those punched cards and posting them off to the computer centre for compilation.
    What happens if you ask it to compile and run an endless loop?

    • @u2bear377
      @u2bear377 29 วันที่ผ่านมา +23

      It'll spend all your paper in revenge.

    • @X-3K
      @X-3K 25 วันที่ผ่านมา +8

      just program the fax to detect any infinite loops, _easy_

    • @hpsmash77
      @hpsmash77 19 วันที่ผ่านมา +4

      ​@@X-3Klaughs in Gödel's Incompleteness Theorem

    • @ApertureSciencePsycho
      @ApertureSciencePsycho 3 วันที่ผ่านมา +1

      read description bruv

  • @WelshProgrammer
    @WelshProgrammer 27 วันที่ผ่านมา +11

    A true hacker, here's me with my own local dial-up ISP, this guy goes one step further and puts OCR and a Compiler on the other end of the line. Fantastic.

  • @hhhpestock951
    @hhhpestock951 28 วันที่ผ่านมา +15

    This is the kind of _forward-thinking_ protocol we need to instantiate at our University levels

  • @shinypb
    @shinypb 28 วันที่ผ่านมา +10

    This is so perfectly cursed. I love it completely.

  • @dahliavkarma6124
    @dahliavkarma6124 16 วันที่ผ่านมา +6

    Japan resident here, can confirm this is how things work in Japan /j

  • @Chickenbreadlp
    @Chickenbreadlp 29 วันที่ผ่านมา +13

    Now I know how German public offices write and compile their software 😆

  • @AterNyctos
    @AterNyctos 29 วันที่ผ่านมา +16

    Call the corn piler, fax it your cob

  • @Lumity0
    @Lumity0 13 วันที่ผ่านมา +3

    Average day of an engineer that is working on electronics and computing.

  • @mjdxp5688
    @mjdxp5688 10 วันที่ผ่านมา +3

    I had an absolutely psychotic college professor who demanded that we print out our source code and turn it in. I have a feeling they would use this.

  • @RhydianJenkins
    @RhydianJenkins หลายเดือนก่อน +17

    Still a faster compile time than Rust

  • @sumofty
    @sumofty 27 วันที่ผ่านมา +7

    Ayo, new tech job interview hoop to jump through just dropped

  • @irus1024
    @irus1024 25 วันที่ผ่านมา +4

    Welcome to the world of enterprise software development!

  • @Ruby-wj8xd
    @Ruby-wj8xd หลายเดือนก่อน +23

    i love everything about this

  • @Metruzanca
    @Metruzanca หลายเดือนก่อน +26

    This is so stupid. I love it. Thank you for making this.

  • @ololh4xx
    @ololh4xx 29 วันที่ผ่านมา +45

    thats probably a boomers' dream come true. Best be adding a batch-processing arrangement of sorts and you've got your successful boomer-product

    • @crism8868
      @crism8868 29 วันที่ผ่านมา +7

      tfw your boomer boss gives you a piece of paper with code, asks you to fax it, and place the paper with the output at his desk

    • @gg630504
      @gg630504 28 วันที่ผ่านมา +1

      Szinte teljes lyukkártya érzés. Csak túl gyors.
      Almost full punch card feel. It's just too fast.

  • @maxint2680
    @maxint2680 3 วันที่ผ่านมา +1

    Time to hire a senior-level compiler with 7-year of experience.

  • @OhhCrapGuy
    @OhhCrapGuy 28 วันที่ผ่านมา +5

    This is certainly one of the achievements of all time.

  • @soundsgood9766
    @soundsgood9766 27 วันที่ผ่านมา +2

    Thats a microservice if I've ever seen one.

  • @jeslinmx22
    @jeslinmx22 29 วันที่ผ่านมา +3

    Me telling my grandkids how computing was like before smartphones. Had to walk uphill and downhill through the snow to get to the fax machine too.

  • @Dr-Zed
    @Dr-Zed 29 วันที่ผ่านมา +9

    Thanks, I need a burger phone now.

  • @pixobit5882
    @pixobit5882 27 วันที่ผ่านมา +2

    I was hoping that it really prints 10 pages of Hello World

  • @baranxlr
    @baranxlr 28 วันที่ผ่านมา +5

    I love the spider sticker :3

  • @zhexymusic
    @zhexymusic 29 วันที่ผ่านมา +3

    Awesome! I need one so I could actually think on what I've coded. And optimized for less space immediately. Beautiful.

  • @thygrrr
    @thygrrr 24 วันที่ผ่านมา +3

    "whats your library calling convention? extern C?"
    "Extern FAX"

  • @wiezba2910
    @wiezba2910 3 วันที่ผ่านมา +2

    in Poland on final matura examination from IT which we write after completing highschool we must write our code with a PEN on a piece of PAPER. You have some high tech equipment there imagine if everyone had access to that stuff.

  • @markusTegelane
    @markusTegelane 2 วันที่ผ่านมา

    actual compilation took 0 seconds, but most of the time here was spent waiting for the fax to go back and forth

  • @miguelguthridge
    @miguelguthridge หลายเดือนก่อน +7

    I absolutely adore this

  • @runforitman
    @runforitman 26 วันที่ผ่านมา +2

    Wow now i can compile code from the comfort of my own home!

  • @crism8868
    @crism8868 29 วันที่ผ่านมา +17

    When the compiler phones back:
    Boomers: "ahh the sweet sound of a phone call in the morning 🥰"
    Millenials: *panic attack*

  • @taylorhancock5834
    @taylorhancock5834 3 วันที่ผ่านมา

    I’ve never had a good excuse to fax things, but well, I guess I now have a new thing to setup so I’ll finally have one. This is wonderful (also nice enby flag sticker)

  • @jerrylu532
    @jerrylu532 หลายเดือนก่อน +5

    This is just lovely

  • @YEWCHENGYINMoe
    @YEWCHENGYINMoe 13 วันที่ผ่านมา +2

    I thought he was gonna eat the hamburger 💀

  • @roostertechchan
    @roostertechchan หลายเดือนก่อน +12

    It's so absurd and I love it!

  • @heliusuniverse7460
    @heliusuniverse7460 15 วันที่ผ่านมา +2

    finally the japanese can begin to code

  • @FabricOfExistence
    @FabricOfExistence 26 วันที่ผ่านมา +2

    Germany approves this method 🇩🇪

  • @JACKHARRINGTON
    @JACKHARRINGTON วันที่ผ่านมา

    I thought this was going to be a philosophy video about pretending that compilers aren't super fast so that you pay attention to your code more.

  • @illegalcoding
    @illegalcoding 29 วันที่ผ่านมา +3

    OMG THE BURGER PHONE

  • @simon-james
    @simon-james 20 วันที่ผ่านมา +2

    I was expecting it to fax back machine code.

  • @hyakin7818
    @hyakin7818 26 วันที่ผ่านมา +6

    Congratulations you just made a complicated terminal

  • @nobyra
    @nobyra 27 วันที่ผ่านมา +5

    Great visualization of standard input stream being something besides the keyboard and standart output not being shown in a screen.

  • @AK-vx4dy
    @AK-vx4dy 24 วันที่ผ่านมา

    Brillant !!! Like a first mainframes almost ;)

  • @shadamethyst1258
    @shadamethyst1258 18 วันที่ผ่านมา +6

    Hello, I would like to suggest this at work, but I'm afraid we don't have a hamburger phone. Will it work with a non-hamburger phone too?

    • @computingthedetails
      @computingthedetails  18 วันที่ผ่านมา +7

      yes! you can also use a banana phone 🍌

  • @atomstarfireproductions8695
    @atomstarfireproductions8695 29 วันที่ผ่านมา +13

    You should set up a phone number and an instance for the public to fax their code to and see what people send in

    • @computingthedetails
      @computingthedetails  29 วันที่ผ่านมา +15

      I would love to do that. Right now that would require me to have access to a landline, and unfortunately I don't. It's quite expensive to get one too. I am going to take this to EMF Camp very soon, so if you're going there you can play with it during the weekend. :) After that I might try hooking it up to the public phone system via a SIP service, if I can get one cheap enough that it's worth doing.

    • @satibel
      @satibel 29 วันที่ผ่านมา

      @@computingthedetails you can get a service for 10 bucks a month, so you could probably make a patreon or such to fund it.
      or given the probably very low amount of people interested in that, using your own sip server and use local numbers for each project.

    • @moongazer07
      @moongazer07 28 วันที่ผ่านมา +2

      @@computingthedetails you may want to not have foreign code run as root/admin and you might want to have either a os backup and image or use a vm in case someone tries to do the c code equivalent of rm -rfd /

  • @soyitiel
    @soyitiel 27 วันที่ผ่านมา

    This was somewhy beautiful

  • @honestduane
    @honestduane 28 วันที่ผ่านมา +5

    If a service like this actually did exist, I guarantee somebody would send it a system("format C:") request.
    Still, this has gotta be the most cursed usage of the fax machine I've seen in a decade. at least. So I love it.

    • @mini_bomba
      @mini_bomba 27 วันที่ผ่านมา +4

      more like rm -rf /

    • @xandermckay9806
      @xandermckay9806 27 วันที่ผ่านมา

      @@mini_bombaakshually rm -rf / -no-preserve-root

  • @Tyrasuki
    @Tyrasuki หลายเดือนก่อน +1

    This is incredible

  • @GimmilFactory
    @GimmilFactory 28 วันที่ผ่านมา

    The nerdiest thing I've seen in a while. Absolutely love it.

  • @JustAddFlux
    @JustAddFlux 29 วันที่ผ่านมา +3

    This is ridiculous and silly.
    I love it ^_^

  • @bluesquare23
    @bluesquare23 28 วันที่ผ่านมา +1

    That’ll be the compiler now.

  • @4.0.4
    @4.0.4 25 วันที่ผ่านมา +1

    To be fair, the "print" command is named after actual printing. Just like New Lines are preceded by Carriage Return (CRLF) on windows.

  • @PaprikaX33
    @PaprikaX33 21 วันที่ผ่านมา +1

    I definitely expect a "missing semicolon in line 3027"

  • @Meladoom2
    @Meladoom2 26 วันที่ผ่านมา

    Modern aspiring programmers have to write code in a copybook with a pen

  • @CubeAtlantic
    @CubeAtlantic 25 วันที่ผ่านมา

    Hamburger Phones look legit unique & it looks relaxin' to call :O

  • @Wheeze_NL
    @Wheeze_NL 19 วันที่ผ่านมา +1

    Excellent!
    Maybe Caller ID will work in a newer phonesystem?

  • @zbelios1623
    @zbelios1623 26 วันที่ผ่านมา

    imagine after waiting like 2 minutes for it to run your code it just prints out: "Segmentation fault"

  • @screwandwrenchrob4778
    @screwandwrenchrob4778 28 วันที่ผ่านมา

    Ive never wanted a fax machine... until now.

  • @CraftMine1000
    @CraftMine1000 27 วันที่ผ่านมา

    This is beautiful

  • @20EsOfficial
    @20EsOfficial 26 วันที่ผ่านมา

    The hamburger phone is so OP I liked the video before i even finished it

  • @KeritechElectronics
    @KeritechElectronics 29 วันที่ผ่านมา

    Ain't heard PSK noises for a long time...
    The project has a dial-up mainframe feel for sure.

  • @internetmaryann
    @internetmaryann 26 วันที่ผ่านมา

    Real IT, not this artificially hyped AI. I love it.
    Besides, you can send off your colleagues, saying you wait for an important call from the compiler.
    Win-win.

  • @TemperThetaDelta
    @TemperThetaDelta 28 วันที่ผ่านมา

    this is what compiling c looked like back in the day

  • @patchbyte6856
    @patchbyte6856 27 วันที่ผ่านมา

    That hamburger phone is awesome 😭

  • @pete.n.
    @pete.n. 3 วันที่ผ่านมา

    Remote code execution at it's finest :)

  • @twidisiscool
    @twidisiscool 24 วันที่ผ่านมา

    Fax machines are awesome it’s too bad that they’re not as popular anymore

  • @Watterdev
    @Watterdev หลายเดือนก่อน +2

    I love it. Please come to next cccamp so I can try it out🥺👉👈

    • @computingthedetails
      @computingthedetails  หลายเดือนก่อน +1

      I have never been to CCC, but that is something I want to fix. I'll certainly try to be at the next one :)

  • @qwardel7799
    @qwardel7799 17 วันที่ผ่านมา +1

    nice enby spider

  • @thecaptainnoodles
    @thecaptainnoodles 27 วันที่ผ่านมา

    this is what elon musk expected twitter programmers to do

  • @win_ini
    @win_ini 19 วันที่ผ่านมา

    then you get the compiled binary fax'd back to you! brilliant!

  • @melody3741
    @melody3741 9 วันที่ผ่านมา

    What? This is actually dope you can play with coding without a computer

  • @derpythecate6842
    @derpythecate6842 26 วันที่ผ่านมา

    Ah yes, cloud computing over fax

  • @mskiptr
    @mskiptr 29 วันที่ผ่านมา +1

    I was torn between expecting some modern OCR contraption and an actual service from like IBM back in the day lamo

  • @ModdinMC
    @ModdinMC 27 วันที่ผ่านมา

    Damn that’s very cool

  • @fireninja8250
    @fireninja8250 29 วันที่ผ่านมา +1

    The print function should print pages

  • @philipmurphy2
    @philipmurphy2 21 วันที่ผ่านมา

    Fax like the old days

  • @GabeLily
    @GabeLily 29 วันที่ผ่านมา +1

    This would have probably been very convenient in 1964

  • @tcscomment
    @tcscomment หลายเดือนก่อน

    i love this

  • @JosephM101
    @JosephM101 25 วันที่ผ่านมา

    Finally! I can code with a typewriter!!!

  • @MatmarSpace
    @MatmarSpace 24 วันที่ผ่านมา

    It's so dope 😆

  • @tubeincompetence
    @tubeincompetence 28 วันที่ผ่านมา

    "This is so dumb... I love it!"

  • @AnIdiotAboard_
    @AnIdiotAboard_ 26 วันที่ผ่านมา

    All we need to do now is fax it a kernal and await the matrix!

  • @Workshopshed
    @Workshopshed 25 วันที่ผ่านมา

    Am wondering if I can add a fax noise whenever I commit code to the cloud?

  • @tweetyguy7347
    @tweetyguy7347 6 วันที่ผ่านมา +1

    Seems like you’re using a c++ compiler because in c, a return 0 in the main function isn’t implicit

  • @dombo813
    @dombo813 16 วันที่ผ่านมา

    I'd enjoy seeing a version of this that can work on handwriting, so you wouldn't have to use a computer at any stage in writing your code