My biggest takeaway from this parody is that new languages often have 3 or so really interesting, possibly useful features, but also about 30 completely deranged features that guarantee its failure
What were the useful features from DreamBerd: - Quantified lifetimes (by positive numbers, not by time) - Export into different files rather than import modules - Question marks at end of statement for automatic debug info - Regex to narrow down string values - when statements as an event signal The rest is just WHHAAAAA???
@SimGunther quantified lifetimes is more tedious than scope because you'd have to count lines exporting makes no sense because you'd have to switch file each time you want to pull a function from somewhere (auto imports wouldn't work anymore too) question marks doesn't look like the best solution but yeah easy debug sounds cool regex integrated in the language also sounds cool when is just another way to do events on variable modification writing it as when is confusing I think
"AI does not use AI. Instead, any incomplete code will be auto-emailed to Lu Wilson, who will get back to you with a completed line as soon as possible"
A language that transcends languages in that it never once cared for the problems software engineers wanted to solve; however, it still has the cajones to say all this without ONCE mentioning "I took all the things"
//how to do it var var backwards: Bool = false if (backwards { reverse backwards = false else { do_stuff ( if (should_continue ( { backwards = true reverse
I take it that "affects all users forever" also persists multiple invocations of the program, even if the actual declaration is changed. Who's the genius now, Tom?
I just randomly tripped over this channel while looking into stuff for a Rust software renderer project, I had no idea I'd wind up finding a channel that makes programming so genuinely entertaining. I'm still brand new to software development (learned Java in high school, didn't code at all for over 10 years, learned Rust 'cause it was shiny and new and now I'm coding a game from scratch) but it's so easy to be introduced to new concepts and dig up explanations for them while having a laugh on this channel. Subscribed.
I used js `with` several years ago for a CodeWars kata that required you to calculate the area of the intersection of two circles but the kicker was that the solution needed to be under a small character limit. Never used or heard of it again since then (until now, ofc).
This is awesome! The sad part about it is that I actually had to write a parser for a real programming language which literally doesn't define the decimal separator for floats... it's actually an environment parameter so that every sysadmin can pick whatever they trip about (for example, regionalization reasons) and for the source code to be compilable it must conform to what the sysadmin dictates. Of course multiple environments on the same organization may have different values. this by definition then makes your code not portable between different regionalizations (or different-tast sysadmins). This idea is so perfect and awesome that I see why DreamBeard got the idea of the variable currency thingy... That language also has the "noop" instruction thingy too. It just uses another name for it, but whatever...
3:24, that one's not too bad an idea, for example that particular index 0.5 could mean "take 50% of element 0 and (100% - 50%) of element 1 and add them together, give me the result"
10:25 PHP actually used this approach of no quotes string literal, in the first versions any token that wasn't a defined constant was assumed to be a string literal and was output verbatim.
Lifetime scoping by code line, terse debug print syntax with '?' line ending, whitespace-controlled order of execution, regex-constrained string, 'previous' keyword, native HTML templating are some legit cool features.
The problem with regex-constrained string is that if you’re passing data from outside you can’t know at compile time whether the string is valid, and anything else should use something like an enum or a trait rather than a string anyway
The "delete delete!" statement is the way to Nirvana. I've actually run that line in production when nothing has been left to delete. The customer complained that nothing was working anymore. They aren't aware that in reality that was the goal. The machine has reached a state of freedom from suffering and from restart as the weaving of activity of the processor had ceased. The empty state of the memory assigned to the program invites everyone to experience the state of non-state. The aversion against my work, the greed, and the ignorance don't let the customer appreciate the quenching of the activities of the worldly mind that lead to the liberation from samsara.
Not sure why so many people think Dreamberd is satire. I have been doing critical systems AI development for years, and I am going to port everything to Dreamberd! I see no downsides.
As funny as this is, they are onto something with a "few" of these features. I would love a language that is truly perfect. Also, I love the idea of it being insanely flexible. Although it only sounds good in theory because in reality you want to be consistent as possible as a developer.
5:42 I think they stole this feature from a programming language called Icon, which was a successor to the SNOBOL languages. I made a Rust library to implement a lot of Icon's features, but I still don't know how to handle this one
Contributing: ' If you are an influencer, streamer, or content-creator... you must not skip this section during your read-through. Contributions are welcomed to DreamBerd 3! The most helpful way you can help is by donating to the Stonewall charity. This will help to prevent the DreamBerd 3 creator from losing their human rights, allowing maintenance of the project to continue. Note: The contributing guide also helps to shake off unwanted fans of the project.'
9:30 reminds me of VimL, where as long as an identifier is unique to a command you can type the smallest unique part (from left to right though). so for "function" you could do "func" or "fun" but not "union". I don't write VimL anymore.
I love the look and some of the concepts of this language, and they say that there's no loops, but 'reverse!' allows you do do loops :D so that's super neat.
0:52 My first programming language was a BASIC emulator for the Nintendo DS called “SmileBasic” (there’s a switch version available too!) and it had some cursed behavior, such as line breaks working as close parentheses, and ‘?’ being a substitute for print, so a hello world could look like: ?”Hello World It had a toggle for strict variable declarations, if disabled (the default behavior) you didn’t even have to declare a variable, you’d just use it [start of program] value = “Hello World ?value
1:41 Constant pointer to variable data and/or variable pointer to constant data is a C feature and is very nice. Sure, you can always cast the const out, but that's on you. 6:29 Nah, not really. It's a maintainability nightmare. For something that lasts literally 2 lines it's not so bad, but imagine it's 10, or 20. You go to change something in between and have to check everything up the function to see if a lifetime needs to be extended. If only we could explicitly specify when the end of lifetime should be at the closing point, maybe with some kind of stack frame or `free()` call. 9:20 "Yeah" "sure" "ok" "fine" "I guess" "WHAT" 13:59 T R U E 17:32 I actually want to see that `reverse` in a programming game like Exapunks. Looks fun.
The more I think about it, im starting to like the idea of reverse indentation. This might actually be easier to read than non-inverse ones. Though unless its automated probably pure hell when writing
@@bujitself so then which indent does your code start at? If they’re all going backwards, maybe, but you’d have to write code starting in the middle of your monitor
Kotlin has with, extension functions and is working on context receivers which all build upon a similar concept as the JS with. And due to the strongly typed nature of Kotlin, it is actually a extremely useful set of features.
In Scala they’ve had implicit parameters for ages and in the same way, it’s like the js “with” but because the language is strongly typed it’s a bit less insane because you can make it a lot more obvious what you’re going to get
10:06 many Logo interpreters treat some values like strings even without quotes. print [hello world] works in FMSLogo. Don't confuse the brackets with quotes. The square brackets mean that it is a list. Without quotes, hello and world are separate elements of a list of strings so the string is expressed without any quotes, brackets, or anything else. You need to know more contextual information such as the fact it is in a data list to know the unquoted hello is a string vs a command or procedure call. It gets confusing since instruction lists are also often in square brackets and an unquoted string-ish looking value in an instruction list generally means a command or procedure name. A less troublesome but related part of the Logo language is that strings are indicated with only 1 quote generally, if a quote is needed at all. The quote marks the start of a string literal and is ended by the first whitespace after that quote. Some Logo interpreters support a more familiar notation where pairs of apostrophes wrap a string literal but that seems quite rare from the many Logo interpreters I read about.
"This is a language worse than JS!" Please, do not be this closed minded. You haven't even tried it yet and you are already making such bold statements.
const const const is different from const const as it said, it will affect all users globally forever, so once you have declared a variable called, say foo, nobody else can declare that same foo again, it will all refer to the foo you declared
I am actually making an interpreter for this right now. I already got a lexer and an almost working parser, i just have to get binary Expressions to work
the const const const is suposed to NEVER change. and they mean NEVER it basically will be the new truth to the machine, once u declare it so this meme language allows u to do "const const const 1 = 0!" and ur pc is now trashed. all the binary code is now 0s
I know it's a parody, but that question mark debugging thing sounds actually useful. So does the forced garbage collection after a certain amount of lines.
I'm halfway in and need a break to 'process' a bit, but some standouts for me so far : 1) Boolean = True/False/Maybe just quietly created quantum-computing-as-a-service, + 1.5bit storage efficiency in itself could change the storage landscape if SSD firmware starts using this... 2) Negative indentation: Image the possibilities of adding data or code in the previously unused negative spaces. Will it work for RTL languages/editors as well? 3) Numbers as variables: The ability to, with a one-liner, assign a value to a number, could be a watershed moment or very dangerous in the wrong hands. Giving developers the ability to reassign reality itself, raises ethical red flags. What if AI 'learn to code' with this!?!? 4) String interpolation: Has a 'see eye aye' vibe to it, I see the utility, but to include currency with a name raises some privacy eyebrows... PS: This is information overload for one video, it should have been a 3-part series.
7:45. Actually, maybe backwards indentation can be pretty comfortable to read, if you think about it. Well, if you have the time to do it. If you don't have the Java habit of naming your functions.
Ok, I have to admit, when you were making comments about the language and so on... I agreed with some of the comments, but disagreed with some of the other comments. Some things sounded kind of funny, but that was just it! Until ... the moment you enumerated the array indexes... "negative 1, zero, point five..." OMG I HAD HUGE LAUGH AT THAT!!! I really needed that!!!
The with thing is the same as kotlin use pretty much. It´s not that bad if you need to call a bajliion methods on a thing that isn´t a builder pattern that you got from another method call or method call chain. The only weird thing is that the javascript proposal seems to magically imply the variable to every function call in the block.
8:51 I'm confused, 5 minutes ago we were setting the variable 3 to be equal to 3.14 this way right. I would have had to declare const const 3 = 3.14. got it
3 State booleans would have to be stored in 1.58496250072 Bits. 2^1 is 2 (so a 2-state boolean can be stored in one bit) with 2 bits you can represent 4 states. To find the correct bits for 3 states we solve 2^x = 3, which is log_2(3) = 1.58496250072
The parser for the changes they made is actually pretty straight forward, they just add nothing but more headaches for the end user, I love it 🤣 In the case of strings with no quotes it would probably first look up keywords, functions, globals and then any locals stored in each pushed code block on the frame stack (ifs, for next etc, but also function scopes) so it could actually rule out everything else leaving only the possibility of a true valid quoteless string assignment. The tokeniser could potentially identify it as well, matching n characters ahead would handle any number of opening quotes, then you eat every character until you reach a closing quote and just check for matching closing count. For zero quoted strings if you did it at this stage you could lose the ability to invoke functions and some other possible runtime whackyness I hadn't considered with this goofy language. You can probably overcome all of that, a very crude way would be having multiple parsing stages. Anyway, once it has failed to match the token with any keywords, identifiers, funcions etc, it would just assume it has found a string literal token and the parser would handle that the same as every other string literal, quoted or otherwise. [edit] obviously this was written with recursive descent parsing in mind and its been a long time since I wrote my own languages, esoteric or otherwise.
with statement is literally just R but with less half-assed reflection that reading text of statements gives you. With both "with" and {...}.__text__ you will literally get the level of cursedness that R provides
FYI: I just checked the DreamBerd repo now, and it's still growing... 169 commits in this video, 405 commits as of me writing this comment, of which the last was a mere 2 hours ago. lmao. this is just too good... >.< also, it's almost at 10k stars already...
Honestly the negative indentation is kinda cool so you can just indent back when the space is getting too little when nesting nests in nests so you can also make it wavey
I actually needed negative indexes in arrays to describe "previous, this, next" more naturally. Ended up casting negative index to byte and so using only 3 out of 255 array cells.
what? with exists in python and it's kinda cool there, you go: with (expression) as (var): ...code... then you can create a scope with a file opened or something like that. if this sintax were written like with (a = [1,2,3]) then a.toString(); then it would kinda work. I use with a lot to open files: 1 with open(path, 'r') as f: 2 ... f.read() 3 the file is closed here I also had made classes that implemented with, it was used to build procedually an object then save it in memory at the end of the construction. Not necessary but very neat.
1:38, I already think someone should make a "compiler" for the language that straight up bails at the start with the error message "Error: You're programming in DreamBerd? Go back back to your teacher and try explaining that to them, see how quickly they wack you round the back of the head and say your an idiot the moment you mention the ! & ; had their purpose swapped :P"
We need... Direct memory access + Automated memory sizing + Automated scope closure of functions + Declarative SQL-like commands + File based implicit object for access control + Public by default with automated pointer dereferencing + Manual overrides for explicit control of intrafile variables + Automated error reporting with caller, problem variable, threads, and current relevant state That is the perfect language and I call her Jnny. Making her is a pain in the ass. But it'd be worth it. Almost all object initializations could be handled by the serializer/deserializer before compilation.
Variable names starting with a number would be nice and the parser could probably handle that as long as the variable name contains at least one (or maybe two?) non-numerical letter, and valid numbers like 0xABCD and 123e6 are not allowed as variable name. You could then have variable names like 3D_point (or use variable name like: 1st, 2nd, 3rd, etc.)
Lean 4 is as close to perfect as we have currently for the perfect language. But I love how every language "innovation" is just c or javascript with slightly different syntax. No new ways to prevent bugs or improve performance or increase productivity. Just a reskin of existing languages.
@@MH_VOID Dependent types. Proper linear types and not just pseudo affine types in Rust. TCO for recursion. Leanest syntax I've seen in any language supporting this many features. A full blown theorem prover that works in conjunction with regular executing code. Tooling of lean 4 is heavily inspired by the great ecosystem that Rust enjoys. It's got a dependency manager similar to cargo and macros and code generators similar to many you would find in Rust. It's not ready for prime time and is an experimental step after lean 3. But the best thing about the language is that it develops from one version to the next with no backwards compatibility baggage of previous versions. They are trying to make a great language, not support the companies that pay for it and demand their legacy systems prevent the language from fixing old problems and throwing out old stuff. Thus it's a natural consequence that lean 5 will be a true evolution from what already is an excellent language.
godot actually has the "when" feature. you can do stuff like var maxHealth : int = 100 var health : int = 12 : set(value): health = clampi(value, 0 , maxHealth) this code basically means that the health will be clamped between 0 and maxHealth regardless to what you try to set it to, so health = 1000 will set health to 100 instead because maxHealth is 100
It's a bad idea to eat bread while watching a funny video, I just had to cough from all the laughing and spat a fountain of bread crumbs across my desk (the bread I eat is extremely hard, so it falls apart to crumbs when chewed instead of becoming a smooth paste), right at a bunch of cables where the crumbs disappeared between…
I've wanted a semi-esoteric language: It's a real language that's actually useful and can be used to solve problems... But the features and syntax are really weird and it doesn't do things like normal languages, so you end up spending a lot of brain power trying to figure out how to do things (because they are done differently, not because the language is purposefully making things hard... Apart from being weird). EDIT: Also in PowerShell, any argument you give a cmdlet (think "fancy function") is implicitly a string unless ypu tell it that it's not a string. Like variables always start with $ so they are not strings, and parentheses imply an expression, guessing numbers are numbers and maybe there are a few more cases... But apart from that, it's all strings.
My biggest takeaway from this parody is that new languages often have 3 or so really interesting, possibly useful features, but also about 30 completely deranged features that guarantee its failure
Programmers are nevrotic maniacs and the cursed stuff shown here proves it
Based
What were the useful features from DreamBerd:
- Quantified lifetimes (by positive numbers, not by time)
- Export into different files rather than import modules
- Question marks at end of statement for automatic debug info
- Regex to narrow down string values
- when statements as an event signal
The rest is just WHHAAAAA???
@SimGunther quantified lifetimes is more tedious than scope because you'd have to count lines exporting makes no sense because you'd have to switch file each time you want to pull a function from somewhere (auto imports wouldn't work anymore too) question marks doesn't look like the best solution but yeah easy debug sounds cool regex integrated in the language also sounds cool when is just another way to do events on variable modification writing it as when is confusing I think
lol, image the bugs from refactoring and not realizing there was some lifetime limited variable somewhere up above
"AI does not use AI. Instead, any incomplete code will be auto-emailed to Lu Wilson, who will get back to you with a completed line as soon as possible"
Bro, I lost so much at it LMFAO
thanks for reviewing my language!
but please could you please rename your channel to abide by our naming rules
many thanks
I live my life one infringement at a time
DreamBerdegen
I mean he did mention DreamBerd :p
HAHAHA
Oh
It's you!!
I was wondering why it looked familiar
A language that transcends languages in that it never once cared for the problems software engineers wanted to solve; however, it still has the cajones to say all this without ONCE mentioning "I took all the things"
precise
accurate
correct
bestest
@@ThePrimeTimeagenAlmost. It's COJONES
cajones means drawers
@@nicdgonzalez It's been one month.
He said what he said. The man has drawers.
@@nicdgonzalez yea it was kinda funny reading cajones
So loops are actually possible, just use 2 "reverse!"s and lrt the first one be a boolean that's false the first time you pass it.
and an itterative exit for the 2nd loop, problem of course is that the loop logic will have to work both ways round
//how to do it
var var backwards: Bool = false
if (backwards {
reverse
backwards = false
else {
do_stuff (
if (should_continue ( {
backwards = true
reverse
they also can be done easy with signals:
var var count = 0!
when(count < 20) {
//doStuff
count++!
}
The questions is: if you use reverse! and the call a functi, will it start executing from the end?
The `when` keyword is the easiest way of making loops. Check out the examples for some examples!
This was just so good; and that section on ownership? gold. pure gold.
nothing but the best
yeah... "I use DreamBird btw"
I take it that "affects all users forever" also persists multiple invocations of the program, even if the actual declaration is changed. Who's the genius now, Tom?
agreed
indeed that is genius.
the only way to change is is to change computers
You heard him, agreed is genius
"globally", as in, across the globe. Including all other computers and people coding on them.
I stumbled upon TodePond randomly a few days ago and I instantly subscribed! Underrated creator.
agreed
Their video "Define Define" is amazing :)
Java was made to be easy for parsing. This is the first technically unparsable language. God bless.
LL(Infinity) language
easy for parsing for computers
not humans
Isn't there some mathematical proif that perl is unparseable?
I just randomly tripped over this channel while looking into stuff for a Rust software renderer project, I had no idea I'd wind up finding a channel that makes programming so genuinely entertaining. I'm still brand new to software development (learned Java in high school, didn't code at all for over 10 years, learned Rust 'cause it was shiny and new and now I'm coding a game from scratch) but it's so easy to be introduced to new concepts and dig up explanations for them while having a laugh on this channel. Subscribed.
DreamBerd creator actually have an insanely good RUclips channel called TodePond
really?
@@ThePrimeTimeagenyeah his vids are pretty chill, kinda trippy sometimes
Going there right now!
I used js `with` several years ago for a CodeWars kata that required you to calculate the area of the intersection of two circles but the kicker was that the solution needed to be under a small character limit. Never used or heard of it again since then (until now, ofc).
This is awesome!
The sad part about it is that I actually had to write a parser for a real programming language which literally doesn't define the decimal separator for floats... it's actually an environment parameter so that every sysadmin can pick whatever they trip about (for example, regionalization reasons) and for the source code to be compilable it must conform to what the sysadmin dictates. Of course multiple environments on the same organization may have different values. this by definition then makes your code not portable between different regionalizations (or different-tast sysadmins). This idea is so perfect and awesome that I see why DreamBeard got the idea of the variable currency thingy...
That language also has the "noop" instruction thingy too. It just uses another name for it, but whatever...
tf
this is perfect for a Halloween horror story
Can't compete with JDSL because TOM is a GENIUS!
well JDSL isn't just perfect, its divine
This language is ingenios! The Author must be a pupil of Tom.
better than javascript
To be fair, it's not that big of an accomplishment
3:24, that one's not too bad an idea, for example that particular index 0.5 could mean "take 50% of element 0 and (100% - 50%) of element 1 and add them together, give me the result"
Ou could use different types of parantheses to use different interpolation. [] for linear, for spline and such XD
I just learned the author has a YT channel!!!: www.youtube.com/@TodePond?sub_confirmation=1 CHECK AND SUBSCRIBE PLS
2:15 the joke is that const const const affects the entire world because of how powerful it is. It's just an absurd joke.
10:25 PHP actually used this approach of no quotes string literal, in the first versions any token that wasn't a defined constant was assumed to be a string literal and was output verbatim.
Lifetime scoping by code line, terse debug print syntax with '?' line ending, whitespace-controlled order of execution, regex-constrained string, 'previous' keyword, native HTML templating are some legit cool features.
Python and JS also have lifetime scoping inasmuch as they have del and delete.
The problem with regex-constrained string is that if you’re passing data from outside you can’t know at compile time whether the string is valid, and anything else should use something like an enum or a trait rather than a string anyway
I haven't laughed this hard in a long time holy moly
Same here, this is funny as sh** 😂 got me on several occasions 😂😂
The "delete delete!" statement is the way to Nirvana. I've actually run that line in production when nothing has been left to delete. The customer complained that nothing was working anymore. They aren't aware that in reality that was the goal. The machine has reached a state of freedom from suffering and from restart as the weaving of activity of the processor had ceased. The empty state of the memory assigned to the program invites everyone to experience the state of non-state. The aversion against my work, the greed, and the ignorance don't let the customer appreciate the quenching of the activities of the worldly mind that lead to the liberation from samsara.
wow i need ur twitrer acc to follow u
@@ahmedkaram3829 "delete twitter!". Let go of any worldly attachment.
21:02 😂😂he missed the part about incomplete code being emailed to Lu Wilson. What a lanaguge!
dangit! i missed that? that is good
Not sure why so many people think Dreamberd is satire. I have been doing critical systems AI development for years, and I am going to port everything to Dreamberd! I see no downsides.
I honestly laughed so much with this one, that I had to pause multiple times to catch my breath. Absolutely incredible!
DreamBerd.... probably the best 20 minutes of my life right there lol. Absolutely fabulous.
As funny as this is, they are onto something with a "few" of these features. I would love a language that is truly perfect. Also, I love the idea of it being insanely flexible. Although it only sounds good in theory because in reality you want to be consistent as possible as a developer.
This language is the best meme of 2023, oh my god 😸
Starting array indexing at -1 is just brilliant 😹
5:42 I think they stole this feature from a programming language called Icon, which was a successor to the SNOBOL languages. I made a Rust library to implement a lot of Icon's features, but I still don't know how to handle this one
Contributing:
' If you are an influencer, streamer, or content-creator... you must not skip this section during your read-through.
Contributions are welcomed to DreamBerd 3!
The most helpful way you can help is by donating to the Stonewall charity. This will help to prevent the DreamBerd 3 creator from losing their human rights, allowing maintenance of the project to continue.
Note: The contributing guide also helps to shake off unwanted fans of the project.'
❤
And he skipped over it…
Definitely the programming language of all time.
9:30 reminds me of VimL, where as long as an identifier is unique to a command you can type the smallest unique part (from left to right though). so for "function" you could do "func" or "fun" but not "union". I don't write VimL anymore.
I love the look and some of the concepts of this language, and they say that there's no loops, but 'reverse!' allows you do do loops :D so that's super neat.
indeed, and when() allows you to do loops as well.
When is just a global do while loop...@@DFX2KX
0:52 My first programming language was a BASIC emulator for the Nintendo DS called “SmileBasic” (there’s a switch version available too!) and it had some cursed behavior, such as line breaks working as close parentheses, and ‘?’ being a substitute for print, so a hello world could look like:
?”Hello World
It had a toggle for strict variable declarations, if disabled (the default behavior) you didn’t even have to declare a variable, you’d just use it
[start of program]
value = “Hello World
?value
1:41 Constant pointer to variable data and/or variable pointer to constant data is a C feature and is very nice. Sure, you can always cast the const out, but that's on you.
6:29 Nah, not really. It's a maintainability nightmare. For something that lasts literally 2 lines it's not so bad, but imagine it's 10, or 20. You go to change something in between and have to check everything up the function to see if a lifetime needs to be extended. If only we could explicitly specify when the end of lifetime should be at the closing point, maybe with some kind of stack frame or `free()` call.
9:20 "Yeah" "sure" "ok" "fine" "I guess" "WHAT"
13:59 T R U E
17:32 I actually want to see that `reverse` in a programming game like Exapunks. Looks fun.
The more I think about it, im starting to like the idea of reverse indentation.
This might actually be easier to read than non-inverse ones. Though unless its automated probably pure hell when writing
You can legally do that in most languages, it’s just not considered good practice because it’s not clear which scope the code belongs to
@@KayOScode It is clear, just in negative
@@bujitself so then which indent does your code start at? If they’re all going backwards, maybe, but you’d have to write code starting in the middle of your monitor
@@KayOScode You start writing the code from inside out
middle out?
Kotlin has with, extension functions and is working on context receivers which all build upon a similar concept as the JS with. And due to the strongly typed nature of Kotlin, it is actually a extremely useful set of features.
In Scala they’ve had implicit parameters for ages and in the same way, it’s like the js “with” but because the language is strongly typed it’s a bit less insane because you can make it a lot more obvious what you’re going to get
10:06 many Logo interpreters treat some values like strings even without quotes. print [hello world] works in FMSLogo. Don't confuse the brackets with quotes. The square brackets mean that it is a list. Without quotes, hello and world are separate elements of a list of strings so the string is expressed without any quotes, brackets, or anything else. You need to know more contextual information such as the fact it is in a data list to know the unquoted hello is a string vs a command or procedure call. It gets confusing since instruction lists are also often in square brackets and an unquoted string-ish looking value in an instruction list generally means a command or procedure name.
A less troublesome but related part of the Logo language is that strings are indicated with only 1 quote generally, if a quote is needed at all. The quote marks the start of a string literal and is ended by the first whitespace after that quote. Some Logo interpreters support a more familiar notation where pairs of apostrophes wrap a string literal but that seems quite rare from the many Logo interpreters I read about.
"This is a language worse than JS!"
Please, do not be this closed minded. You haven't even tried it yet and you are already making such bold statements.
const const const is different from const const as it said, it will affect all users globally forever, so once you have declared a variable called, say foo, nobody else can declare that same foo again, it will all refer to the foo you declared
I think they should add 4 const to the language for the variables that need to be defined only once in the history of human kind, like pi and e.
Didn't even notice that this video was 23 minutes long because I was too busy admiring what is arguably the highest-effort shitpost of all time
This video has been very informative. I learned about the “with” keyword in Javascript and am now terrified that such evil lurks among us
I am actually making an interpreter for this right now. I already got a lexer and an almost working parser, i just have to get binary Expressions to work
Insanity
Todepond is the name of the authors YT channel by the way
The Union inverse and the " ' hello world " ' tripple quote had me dying!! :D
so glad i recommended this on the subreddit, knew this would be a fire language 🔥
i can't take it anymore. how can one md file make me lough for 1 hour.
it just ... happens
const const const gonna solve all my problems
Prime, it's time to write a compiler for this piece of art ;D
Someone is! The creator had a call with someone who was!
WhenWillProgrammersStopMakingDecisionsForOurSocietyAndJustLeaveUsAloneAlsoHackerNewsIsAVileWebsite is such a great programming language
I am so on board with this you guys. Got a really good perspective for it, to take it all the way. Thanks!
the const const const is suposed to NEVER change. and they mean NEVER
it basically will be the new truth to the machine, once u declare it
so this meme language allows u to do "const const const 1 = 0!" and ur pc is now trashed. all the binary code is now 0s
I know it's a parody, but that question mark debugging thing sounds actually useful. So does the forced garbage collection after a certain amount of lines.
this language is the perfect example of wanting to "fuck around" with people but not wanting to be too obvious
I'm halfway in and need a break to 'process' a bit, but some standouts for me so far :
1) Boolean = True/False/Maybe just quietly created quantum-computing-as-a-service, + 1.5bit storage efficiency in itself could change the storage landscape if SSD firmware starts using this...
2) Negative indentation: Image the possibilities of adding data or code in the previously unused negative spaces. Will it work for RTL languages/editors as well?
3) Numbers as variables: The ability to, with a one-liner, assign a value to a number, could be a watershed moment or very dangerous in the wrong hands. Giving developers the ability to reassign reality itself, raises ethical red flags. What if AI 'learn to code' with this!?!?
4) String interpolation: Has a 'see eye aye' vibe to it, I see the utility, but to include currency with a name raises some privacy eyebrows...
PS: This is information overload for one video, it should have been a 3-part series.
7:45. Actually, maybe backwards indentation can be pretty comfortable to read, if you think about it. Well, if you have the time to do it. If you don't have the Java habit of naming your functions.
3:00 using the building analogy, the lowest floor is a basement, makes perfect sense(((
const void const* const foo = malloc(0)
this can't be edited or reassigned
they just moved all the consts to the front
const const const foo = ...
I have no idea how to code whatsoever, but youtube keeps recommending you to me and i find the content mildly entertaining.
Ok, I have to admit, when you were making comments about the language and so on... I agreed with some of the comments, but disagreed with some of the other comments. Some things sounded kind of funny, but that was just it!
Until ...
the moment you enumerated the array indexes... "negative 1, zero, point five..." OMG I HAD HUGE LAUGH AT THAT!!! I really needed that!!!
The only thing it's missing is a "goto" (naturally with any possible spellings)
The with thing is the same as kotlin use pretty much. It´s not that bad if you need to call a bajliion methods on a thing that isn´t a builder pattern that you got from another method call or method call chain. The only weird thing is that the javascript proposal seems to magically imply the variable to every function call in the block.
8:51 I'm confused, 5 minutes ago we were setting the variable 3 to be equal to 3.14 this way
right. I would have had to declare const const 3 = 3.14. got it
Kinda reminds me of JDSL, where Tom put a “:)” after every statement
Lol! I laughed so hard and so many times in this video!
Thanks Prime and thanks DreamBird foundation!
3 State booleans would have to be stored in 1.58496250072 Bits. 2^1 is 2 (so a 2-state boolean can be stored in one bit) with 2 bits you can represent 4 states. To find the correct bits for 3 states we solve 2^x = 3, which is log_2(3) = 1.58496250072
Someone was on LSD when they created this language.
likely
The parser for the changes they made is actually pretty straight forward, they just add nothing but more headaches for the end user, I love it 🤣 In the case of strings with no quotes it would probably first look up keywords, functions, globals and then any locals stored in each pushed code block on the frame stack (ifs, for next etc, but also function scopes) so it could actually rule out everything else leaving only the possibility of a true valid quoteless string assignment.
The tokeniser could potentially identify it as well, matching n characters ahead would handle any number of opening quotes, then you eat every character until you reach a closing quote and just check for matching closing count. For zero quoted strings if you did it at this stage you could lose the ability to invoke functions and some other possible runtime whackyness I hadn't considered with this goofy language. You can probably overcome all of that, a very crude way would be having multiple parsing stages. Anyway, once it has failed to match the token with any keywords, identifiers, funcions etc, it would just assume it has found a string literal token and the parser would handle that the same as every other string literal, quoted or otherwise.
[edit] obviously this was written with recursive descent parsing in mind and its been a long time since I wrote my own languages, esoteric or otherwise.
The "-3 spaces are also allowed" broke me completely LOL, amazing 10/10
Tears running down my checks through every minute of this. Almost as good as watching Spinal Tap the first time.
5:32 i’d have to look it up to see how it works, but i think kitlang (dead language) has something like that, tho i never used it
with statement is literally just R but with less half-assed reflection that reading text of statements gives you. With both "with" and {...}.__text__ you will literally get the level of cursedness that R provides
The effect of the `with()` feature in JavaScript is basically implied in all memeber functions of a C++ class or struct.
5:05 holy heck. I implemented that feature for python a few years ago to help automate marking, it sure is the devil haha
FYI: I just checked the DreamBerd repo now, and it's still growing... 169 commits in this video, 405 commits as of me writing this comment, of which the last was a mere 2 hours ago. lmao. this is just too good... >.<
also, it's almost at 10k stars already...
Now the problem is, what should I learn for my FAANG interview, JDSL? or DreamBerd?
With MAYBE boolean and WHEN keyword, this language set to work well in quantum computing.
Honestly the negative indentation is kinda cool so you can just indent back when the space is getting too little when nesting nests in nests so you can also make it wavey
I actually needed negative indexes in arrays to describe "previous, this, next" more naturally. Ended up casting negative index to byte and so using only 3 out of 255 array cells.
what? with exists in python and it's kinda cool there, you go:
with (expression) as (var):
...code...
then you can create a scope with a file opened or something like that.
if this sintax were written like with (a = [1,2,3]) then a.toString(); then it would kinda work.
I use with a lot to open files:
1 with open(path, 'r') as f:
2 ... f.read()
3 the file is closed here
I also had made classes that implemented with, it was used to build procedually an object then save it in memory at the end of the construction. Not necessary but very neat.
Man, ive not laughed this hard at a vid in a while 😂. The rollercoaster of emotions! Kudos to the devs of dreamberd!
Made me laugh so hard, haven't laughed this hard in many months. Thank you for evaluating the Dreamberd language!
Oh okay, I think I realized what the const x3 does, lifetimes can’t be used and it can’t even be deleted, that is crazy
the whole "const const" thing is basically like where you put the consts in pointers for c/cpp code
I really needed a good chuckle generator today. This was great.
1:38, I already think someone should make a "compiler" for the language that straight up bails at the start with the error message "Error: You're programming in DreamBerd? Go back back to your teacher and try explaining that to them, see how quickly they wack you round the back of the head and say your an idiot the moment you mention the ! & ; had their purpose swapped :P"
I can only imagine that const const const actually changes the dreamberd binary so that that variable is immutable over all dreamberd compiled files.
We need...
Direct memory access +
Automated memory sizing +
Automated scope closure of functions +
Declarative SQL-like commands +
File based implicit object for access control +
Public by default with automated pointer dereferencing +
Manual overrides for explicit control of intrafile variables +
Automated error reporting with caller, problem variable, threads, and current relevant state
That is the perfect language and I call her Jnny. Making her is a pain in the ass. But it'd be worth it.
Almost all object initializations could be handled by the serializer/deserializer before compilation.
Variable names starting with a number would be nice and the parser could probably handle that as long as the variable name contains at least one (or maybe two?) non-numerical letter, and valid numbers like 0xABCD and 123e6 are not allowed as variable name. You could then have variable names like 3D_point (or use variable name like: 1st, 2nd, 3rd, etc.)
Lean 4 is as close to perfect as we have currently for the perfect language. But I love how every language "innovation" is just c or javascript with slightly different syntax. No new ways to prevent bugs or improve performance or increase productivity. Just a reskin of existing languages.
what's so good about it compared to e.g. Rust?
@@MH_VOID Dependent types. Proper linear types and not just pseudo affine types in Rust. TCO for recursion. Leanest syntax I've seen in any language supporting this many features. A full blown theorem prover that works in conjunction with regular executing code. Tooling of lean 4 is heavily inspired by the great ecosystem that Rust enjoys. It's got a dependency manager similar to cargo and macros and code generators similar to many you would find in Rust. It's not ready for prime time and is an experimental step after lean 3. But the best thing about the language is that it develops from one version to the next with no backwards compatibility baggage of previous versions. They are trying to make a great language, not support the companies that pay for it and demand their legacy systems prevent the language from fixing old problems and throwing out old stuff. Thus it's a natural consequence that lean 5 will be a true evolution from what already is an excellent language.
its why the number of tabs is stored in an integer, otherwise it should be an unsigned integer, but it isnt.
3:23 I was so confused as to why 0.5 was the third position but then I remembered indexes start at 0.5
When a language has extremely amazing features and still manages to disappoint...
godot actually has the "when" feature. you can do stuff like
var maxHealth : int = 100
var health : int = 12 :
set(value):
health = clampi(value, 0 , maxHealth)
this code basically means that the health will be clamped between 0 and maxHealth regardless to what you try to set it to, so
health = 1000
will set health to 100 instead because maxHealth is 100
this is just a property with a custom setter. C# has this.
The irony of Primeagen malfunctioning at the function section.
*the ucin section
It's a bad idea to eat bread while watching a funny video, I just had to cough from all the laughing and spat a fountain of bread crumbs across my desk (the bread I eat is extremely hard, so it falls apart to crumbs when chewed instead of becoming a smooth paste), right at a bunch of cables where the crumbs disappeared between…
This was hilarious. The AI feature that solves callback hell situations at 20:39 is ingenious. All that work on async programming was a waste of time.
The `with` keyword is what gives AlpineJS its magic. Everything still supports it.
I've wanted a semi-esoteric language: It's a real language that's actually useful and can be used to solve problems... But the features and syntax are really weird and it doesn't do things like normal languages, so you end up spending a lot of brain power trying to figure out how to do things (because they are done differently, not because the language is purposefully making things hard... Apart from being weird).
EDIT:
Also in PowerShell, any argument you give a cmdlet (think "fancy function") is implicitly a string unless ypu tell it that it's not a string. Like variables always start with $ so they are not strings, and parentheses imply an expression, guessing numbers are numbers and maybe there are a few more cases... But apart from that, it's all strings.