There is also the query API for treesitter, which makes it much easier to deal with treesitter as it provides easy pattern matching. You might want to consider using that to find the declarations.
I do web dev stuff and just started learning the c family, it’s just so satisfying watching someone acquire gorilla grip on a forrest filled with unknowns and burning qs. So neat knowing what happens when I use the little :TS* commands from neovim , and all the lights magically turn on
Treesitter is following the naming and node structure based on the grammar rules defined in the C standard (which is pretty archaic). Node type of 'declaration' in that case would also include all variable declarations (globals in a header) but that wont matter if you're parsing a header file alone, except maybe in the case of something like an stb header that has definitions and local variables also as part of the the header file
Really loved seeing both you and prime both diving into tree-sitter! I've used it for a bit of custom linting, and also loved how easy it was to use and even modify/write the grammar. I used rust bindings btw ;)
What I love about Tsoding streams is how I don't feel alone and crazy when I realise how programming in 2023 is weird AF. Yes, life could be much simpler without those over-hyped languages/libraries with hundreds of layers of leaky abstractions and vendor locking. I loved how JAI "just worked" with GDB at 47:47 and I wish Java could do the same (since that's the language that is paying my bills).
@@sharathkumark9692 Only IDEs can debug decently on Java. JDB and JPDA are just gimmicks. Since I don't use IDEs, then I can only rely on good old "print debugging".
if u just look at the C language grammar.js u should be able to see what are all the possible combinations u might want to handle. and then IF u update the grammar.js version, then u can just see if any of those definition you relied on has changed or not.
I don't get the "Rust and it's consequences thing". Having used C and C++ on and off since 1983, among a pile of other languages, most of the Rust I write is in the style of C. Maybe the Rust folks would look down on me for not creating "idiomatic Rust" but I don't care, it does what I want and it catches a lot of my stupid mistakes, all is well.
Write Rust however you want. That's why it's powerful. You don't need to use impl at all (except if you want to utilize traits). Of course if you build a public API, it's better to be more idiomatic, but for your own things it doesn't matter. Additionally the non-C part would also be having global variables. Alternatively you just pass some struct(s) around by mut ref where needed. If you need thread safety, you can always wrap them in Arc or Mutex.
@@dealloc My take on it is that in C, C++ and other such languages it is easy to accidentally write code that will misbehave in unexpected ways. So it's wise to write code in the way that has evolved over time among other users of the language. That is to say be "idiomatic" in your use of the language. That way people immediately recognise what you are doing at is I likely to be OK. Anything "weird" looking will raise suspicions. But Rust won't let you make the vast parity of those mistakes, unless you go out of your way with "unsafe". Therefore I feel there is no need to be "idiomatic" in Rust. The compiler will not let you be "weird". Anything you write that actually compiles is "idiomatic" Rust as far as I'm concerned. Including my C style Rust. I was never much into global variables in C. So I'm not missing the ease of doing that when writing Rust.
@Tsoding wanted to understand the difference of binding and porting? Are they same or are they different? From the English name, what I would understand is, binding a c lib from jai, end of the day the c code gets executed. When we say port, we literally implement the c code in jai. Is that right ? Thank you .
Honestly, I have a bone to pick with Treesitter's C parser. I might just try to re-implement it in C from the get go and fix the stupid bug that makes it impossible to work on large macros.
so, in the comments of the last video, someone was arguing with me against using regex because of the preprocessor. since you are now using an external preprocessor anyways, you could easily parse your function declarations with a regular expression, couldnt you?
How come noone mentioned package.json being there with `build` script? 🤭 I suppose Tsoding hates javascript that much to never had anything to do with it but seeing package.json almost always means there's a build or run script in there, just like you can assume Makefile expects you to run `make`.
Obviously no one will writing bindings from C for C. Because you don't need bindings for that, you have access to everything already. It's like looking at a list of places you visit from denmark in a day and complaining that it doesn't list denmark. Yes, you can get to denkmark within a day if you are already in denmark, lol
Jon (John? I don’t remember how he spells it. The guy behind “The Witness”) iirc doesn’t want to lose full control of the development until it is done, and feels that making it publicly available before it is done will quickly invite forks and such, which, if there are still major changes he wants to make, may cause substantial incompatibility and community fragmentation , and so he is waiting until it is done to fully release it.
I'm not agree with what you said in Rust. You could code simple things with just fn. And the build system is super simple so it must be why it was so simple to rebuild it why debug symbol.
if the ast used in the editor is _not_ the one generated by the actual build tools used, this whole treeshitter thing is a novelty at best, dangerous at worst.
But it rust is used in all platform kernals.... windows, mac, linux, android(which is also linux) and i guess ios also... which is on par with popularity of C.... :) so you have a weird definition of joke...
There is a discord invite link in the about section of his twitch channel. (I would link it here, but youtube comments and links don't really work well together.)
There is also the query API for treesitter, which makes it much easier to deal with treesitter as it provides easy pattern matching. You might want to consider using that to find the declarations.
those are language bindings thats why c not listed
It's written in C, so under heading "Language bindings" you will not find it, right? AKA C Programmers trolling C Programmers 😁
I do web dev stuff and just started learning the c family, it’s just so satisfying watching someone acquire gorilla grip on a forrest filled with unknowns and burning qs. So neat knowing what happens when I use the little :TS* commands from neovim , and all the lights magically turn on
the brain is fascinating fr
Treesitter is following the naming and node structure based on the grammar rules defined in the C standard (which is pretty archaic). Node type of 'declaration' in that case would also include all variable declarations (globals in a header) but that wont matter if you're parsing a header file alone, except maybe in the case of something like an stb header that has definitions and local variables also as part of the the header file
> не трясите мой триситтер
~ Zozin, 2023
I would like to see an emacs showcase it s really nice seeing you navigate and edit that fast
learn yourself
55:07 the obly language tsoding doesn't hate is non-existing one 😂
Really loved seeing both you and prime both diving into tree-sitter! I've used it for a bit of custom linting, and also loved how easy it was to use and even modify/write the grammar.
I used rust bindings btw ;)
When did prime did it?
1:01:29 ladies and gentlemen, I am sorry to announce, but tsoding died of ligma
Omg, that is hilarious
who is steve jobs
i feel really dumb, what was so funny there?
@@andrewa471don't worry, you are not stupid, you just don't know russian
"People don't appreciate simplicity" - that sooo reall across many aspect of life 🤣
What I love about Tsoding streams is how I don't feel alone and crazy when I realise how programming in 2023 is weird AF. Yes, life could be much simpler without those over-hyped languages/libraries with hundreds of layers of leaky abstractions and vendor locking. I loved how JAI "just worked" with GDB at 47:47 and I wish Java could do the same (since that's the language that is paying my bills).
Why? I heard java has debugger
@@sharathkumark9692 Only IDEs can debug decently on Java. JDB and JPDA are just gimmicks. Since I don't use IDEs, then I can only rely on good old "print debugging".
@@ecosta Really? I thought it would be like gdb. Is python debugger like that or actually usable
@@sharathkumark9692 To be honest, I never debugged Python. I imagine it might be decent because Python is more console-friendly than Java.
@@sharathkumark9692I debug Python with debugpy and nvim-dap(-ui) and it's awesome. ipdb is cool, too
This is an incredible resource, wonderful, thank you so much, !
i unironically wrote my graduation thesis with tree sitter and stack graph, now i have Vietnam-style memories
BASED😂 i am not a bot I just find half-thoughts to have comedic value
Cannot wait for Jai to be public.
Are there any infos on when this will happen?
Is it better than rust 🤔
Wait for 5 years
@@wondays654 Anything is better than rust
Probably just after the game it is being used for is released.
about flashbang sites, the "dark reader" extension is pretty effective at detecting and correcting sites stuck in sunglasses-mode
finished watching the vid. loved it when he sit all over the trees. truely a moment
you shouldn't be ashamed of simplicity! you shouldn't be ashamed of not having hash maps in the language you use!
Both are true.
I think “fine” is also a reasonable term in addition to “granular”,
I guess “fine-grained” combines both?
i think they didn't list C as the C is not 'binding' as that is what the library is written in
Tree sitter is hyped because neovim and maybe the LSP craze. (Btw look at TS plus Telescope as a generic coocle)
if u just look at the C language grammar.js u should be able to see what are all the possible combinations u might want to handle.
and then IF u update the grammar.js version, then u can just see if any of those definition you relied on has changed or not.
I don't get the "Rust and it's consequences thing". Having used C and C++ on and off since 1983, among a pile of other languages, most of the Rust I write is in the style of C. Maybe the Rust folks would look down on me for not creating "idiomatic Rust" but I don't care, it does what I want and it catches a lot of my stupid mistakes, all is well.
Write Rust however you want. That's why it's powerful. You don't need to use impl at all (except if you want to utilize traits). Of course if you build a public API, it's better to be more idiomatic, but for your own things it doesn't matter.
Additionally the non-C part would also be having global variables. Alternatively you just pass some struct(s) around by mut ref where needed. If you need thread safety, you can always wrap them in Arc or Mutex.
@@dealloc My take on it is that in C, C++ and other such languages it is easy to accidentally write code that will misbehave in unexpected ways. So it's wise to write code in the way that has evolved over time among other users of the language. That is to say be "idiomatic" in your use of the language. That way people immediately recognise what you are doing at is I likely to be OK. Anything "weird" looking will raise suspicions.
But Rust won't let you make the vast parity of those mistakes, unless you go out of your way with "unsafe". Therefore I feel there is no need to be "idiomatic" in Rust. The compiler will not let you be "weird". Anything you write that actually compiles is "idiomatic" Rust as far as I'm concerned. Including my C style Rust.
I was never much into global variables in C. So I'm not missing the ease of doing that when writing Rust.
Industrial revolution and it's consequences: rust
i've just fixed bug i was trying to fix for a while with this video in background :)
You are welcome!
Laughed pretty loudly at the fortnight joke
I like this man's hair
i also like that it's probably because he doesn't want to pay for hair cut lol
@Tsoding wanted to understand the difference of binding and porting? Are they same or are they different?
From the English name, what I would understand is, binding a c lib from jai, end of the day the c code gets executed. When we say port, we literally implement the c code in jai.
Is that right ?
Thank you .
The screen is so bright I got flashbanged.
It _is_ C, why would it need bindings to C?
Great session, thanks! :D
Poggy coding man’s uploaded
Poggy coding man is crazy 😂 legend.
Did not know about make -B. Nice.
[33:36] - realization that tree-sitter is a _pretty decent_ parser generator.
Man I love your channel
@2:55 this joke was like 100/100 truth :D
Honestly, I have a bone to pick with Treesitter's C parser. I might just try to re-implement it in C from the get go and fix the stupid bug that makes it impossible to work on large macros.
I know nothing of the implementation, but macros never highlight in my source files in neovim and I believe it uses treesitter... really frustrating
this is the tree-sitter video of all time
19:38 did I hear that correctly...?
so, in the comments of the last video, someone was arguing with me against using regex because of the preprocessor.
since you are now using an external preprocessor anyways, you could easily parse your function declarations with a regular expression, couldnt you?
How come noone mentioned package.json being there with `build` script? 🤭 I suppose Tsoding hates javascript that much to never had anything to do with it but seeing package.json almost always means there's a build or run script in there, just like you can assume Makefile expects you to run `make`.
new mic pog?
7.1 GiB is rookie numbers, i got you by almost an order of magnitude my guy
actually i found a second folder that is almost just as large, so i've got you by over 16x
we nyeed it 😂, i love your accent bro 🙌🇷🇺
39:20 How did you duplicate the line in emacs?
github.com/rexim/dotfiles/blob/25f8ddc6717e56f110e812fd0cec2f1a1dc9d8be/.emacs.rc/misc-rc.el#L120-L132
parser c raylib pp
kek
YEAH, THEY DO NOT DOCUMENT, THEY HAVE SHAME
Удается ли тебе пользоваться Чат ГПТ из России?
Я его пару раз поюзал через прокси. Прикольно было поначалу. А потом он мне надоел, лол.
beatbox god
are you using emacs or vim?
emacs
Obviously no one will writing bindings from C for C. Because you don't need bindings for that, you have access to everything already.
It's like looking at a list of places you visit from denmark in a day and complaining that it doesn't list denmark. Yes, you can get to denkmark within a day if you are already in denmark, lol
What is Jai beta, and why isn't it exposed to public?
Jon (John? I don’t remember how he spells it. The guy behind “The Witness”) iirc doesn’t want to lose full control of the development until it is done, and feels that making it publicly available before it is done will quickly invite forks and such, which, if there are still major changes he wants to make, may cause substantial incompatibility and community fragmentation ,
and so he is waiting until it is done to fully release it.
@@drdca8263 thx
@@drdca8263 He doesn't release it because he's still traumatized by The Looker
missed opportunity to call it tree-shitter
1:51:15 xD
I'm not agree with what you said in Rust. You could code simple things with just fn. And the build system is super simple so it must be why it was so simple to rebuild it why debug symbol.
video ql largo xD
first lol anw LEYSSSS GOOO
пасаси
if the ast used in the editor is _not_ the one generated by the actual build tools used, this whole treeshitter thing is a novelty at best, dangerous at worst.
comment5
Rust is a joke
Your mom was serious
But it rust is used in all platform kernals....
windows, mac, linux, android(which is also linux) and i guess ios also... which is on par with popularity of C....
:) so you have a weird definition of joke...
@@vaisakh_km PLEASE give reference that rust is heavily used in these oses you mention..
Can you share your discord server?
Pr0n folder: 7.1 Gig 🙂😁.
Пасаси
how do i join your discord
There is a discord invite link in the about section of his twitch channel.
(I would link it here, but youtube comments and links don't really work well together.)
@@remrevo3944Thanks. Found it.
parser.c...