What to expect & face reveal
7:09
3 жыл бұрын
Cup song but kitchen gun.
0:06
3 жыл бұрын
Avocado Junkie - Manhattan Twist
3:24
How to download songs
2:23
3 жыл бұрын
My journey.
1:34
4 жыл бұрын
Fun with military!
8:10
4 жыл бұрын
MY FACE!!!!!!
0:25
4 жыл бұрын
Mr Bullet first Game play!!!!!
3:33
5 жыл бұрын
Geometry dash moving parts Episode 1
7:33
Пікірлер
@Hhh93053
@Hhh93053 6 күн бұрын
The og song got deleted I guess they annoyed KZfaq too much
@user-sk2zx6ui7u
@user-sk2zx6ui7u 6 күн бұрын
Аааа осуждаю
@user-tt1gz4ie5j
@user-tt1gz4ie5j 13 күн бұрын
CHIPI CHIPI CHAPA CHAPA LUBI LUBI LABA LABA MAGICO MI DUBI DUBI BOOM BOOM BOOM BOOM CHIPI CHIPI CHAPA CHAPA LUBI LUBI LABA LABA MAGICO MI DUBI DUBI BOOM BOOM BOOM BOOM!!!!!!🥰😍🤩😍🥰😺😸😺😸😼😽😻😻ฅ⁠^⁠•⁠ﻌ⁠•⁠^⁠ฅฅ⁠^⁠•⁠ﻌ⁠•⁠^⁠ฅ PLEASE KILL Me 😻😽😼😸😺🥰😍🤩 🤩😍🥰😺😸😼😽😻🤩😍🥰😺😸😼😽♾️
@kellbyspode6589
@kellbyspode6589 21 күн бұрын
☝️ P R O M O S M
@NIIC
@NIIC 29 күн бұрын
1 Hour isn't enough
@etsyasher_
@etsyasher_ Ай бұрын
BOYKISSER FOREVERR!!
@evolethorellana8185
@evolethorellana8185 2 ай бұрын
Boykisser canta la chipi chipi chapa chapa dubi dubi Daba daba magico dubi dudi Bom Bom Bom Bom la musica ❤❤❤❤🎉😊
@Fract292
@Fract292 2 ай бұрын
blud called me “bad boy” ☠️☠️☠️
@d4nk3t
@d4nk3t 2 ай бұрын
I mean it’s my cat I said it to, but if you wanna be a pet lmao
@Fract292
@Fract292 2 ай бұрын
@@d4nk3toh ok also no
@d4nk3t
@d4nk3t 2 ай бұрын
I hit a concurrent viewer count of 18 today, and I'm so grateful for this stream, love yall <3
@Eights_Coronel-864
@Eights_Coronel-864 3 ай бұрын
Am I the only person who is enjoying this?
@MarshallPirtyparty
@MarshallPirtyparty 3 ай бұрын
꧁𝓗𝓮𝓵𝓵𝓸꧁❤
@user-jf8wm3li7i
@user-jf8wm3li7i 3 ай бұрын
Chipi chipi chapa chapa la la la 🎉
@Piupiuros
@Piupiuros 3 ай бұрын
?
@callisoncaffrey
@callisoncaffrey 4 ай бұрын
I see Windows, I leave.
@d4nk3t
@d4nk3t 4 ай бұрын
Womp womp
@bernardolopes1868
@bernardolopes1868 4 ай бұрын
Great video man!
@NikPower-gs6hs
@NikPower-gs6hs 4 ай бұрын
try using the cli instruction before you call the C entry point and remove every sti instruction and do not forget you cannot use int eighty in your code because it is a Linux thing
@nyafu_uwu
@nyafu_uwu 4 ай бұрын
im honored to be friends with one of the greats
@ghassendhaoui2519
@ghassendhaoui2519 4 ай бұрын
can i ask you a dumb question ? how do u get to this level of coding in c; are there like must do projects that will get u to this level? because i know the basics and i ve coded some crud apps but nothing complex yet and i dont know where to start to get gud haha
@d4nk3t
@d4nk3t 4 ай бұрын
Honestly just follow the OSDEV page like a bible. It is so helpful, learn as much C as possible first, or join me in one of my streams (right now) if you wanna ask more :3
@NikPower-gs6hs
@NikPower-gs6hs 4 ай бұрын
practice is key here
@nneonwave
@nneonwave 4 ай бұрын
Good effort! can you tell me what theme is that
@d4nk3t
@d4nk3t 4 ай бұрын
Thanks! The theme is a custom made nuget package from my visual studio code theme I made. It’s quite blinding to some, but purple is my favorite color.
@jaktwo
@jaktwo 4 ай бұрын
@@d4nk3t lifes too short to care about blinding other people!
@jidinengofwen1008
@jidinengofwen1008 4 ай бұрын
@D4nk3t I want to build a simple shell what do I need to understand to do that
@NikPower-gs6hs
@NikPower-gs6hs 4 ай бұрын
you can make a simple 16bit shell with just assembly
@NikPower-gs6hs
@NikPower-gs6hs 4 ай бұрын
There may be a problem with the linker, assuming the issue is that only the putc function works, and not any string function. When calling putc the compiler generates code where the ASCII value is pushed directly on the stack, while the call is relative. This means that even if there is a problem with the memory origin for the data section, it will still work fine. But then when passing a string everything messes up. For halt use the "cli;hlt"instructions for when the IDT is enabled and "jmp $" for when is not, instead of using ports to halt the system. A custom datatype for strings at this stage introduces bugs and problems. I did not follow the entire stream so I do not know for sure, but it seems you do not have a memory management system, which makes a string datatype completely useless (you can use char[] and use sizeof() to get the size of the string, besides having strings in C is useless, since you cannot to operator overloading). Also seems your program triple faults. Again this might be because of the linker. Without a closer inspection and access to at least the important parts of the source code it is hard to find the problem. The issue for triple faults might be interrupts too, which if not implemented correctly (some issue with the IDT) can also crash the system. Use the halt I have said previously and use the cli instruction at the very beginning of the kernel asm
@d4nk3t
@d4nk3t 4 ай бұрын
I very much appreciate it. And yes, it does end up triple faulting somewhere. I was embarrassed to upload my source because of how bad it was, but honestly, feedback is more important. Later today I’ll upload it to GitHub so everyone can take a look. Thanks for helping out. Kudos to you!
@NikPower-gs6hs
@NikPower-gs6hs 4 ай бұрын
@@d4nk3ttrust me, I have seen much worse code. From a first glance I'd say you are trying to over complicate things you can work on later on and improve. The build system seems unnecessary complex (you can have a single Makefile to do it all instead of many scripts). I might be able of finding the problem, if I see your code, though no promises. Last I would suggest to write a bootloader first, since in reality that is what you are doing right now. Then you will have enough design experience to fully write the kernel however you want. PS: you can very easily work on a full Windows system without using any Linux/Unix virtualization or Powershell. Just for reference I work on Windows 7 just fine, and modern Windows has much less compatibility problems too.
@NikPower-gs6hs
@NikPower-gs6hs 4 ай бұрын
@@d4nk3t when you create the repo just reply to this comment
@d4nk3t
@d4nk3t 4 ай бұрын
@@NikPower-gs6hs I see. I also use bash because I’m much more familiar with it. After the stream, I do actually have a script that allows me to build certain parts with certain parameters. GitHub is at: github.com/AzureianGH/AzureOS
@d4nk3t
@d4nk3t 4 ай бұрын
@@NikPower-gs6hsI have at: github.com/AzureianGH/AzureOS
@lpsinko9705
@lpsinko9705 4 ай бұрын
nice what resources you used to learn how to make an os with c?
@d4nk3t
@d4nk3t 4 ай бұрын
Honestly, I just searched the web and learned a lot from OSDEV, truly everything is just memory management. If you practice, you’ll figure out it’s pretty simple
@user-lm1fg8op6i
@user-lm1fg8op6i 4 ай бұрын
😘🤗☺😘🤭❤❤❤❤💖💌😸
@gbinewjerusalem3161
@gbinewjerusalem3161 4 ай бұрын
OWO
@NellyPawes
@NellyPawes 4 ай бұрын
this is my brain 24/7
@AmandaPennel
@AmandaPennel 4 ай бұрын
I’ve listened to this for hours . In the car and in my room. I can yell it at school without getting called furry!
@laszloadamkotaszek6025
@laszloadamkotaszek6025 5 ай бұрын
This is seven
@Poketoonix
@Poketoonix 5 ай бұрын
finally the start is not fucking broken but now its not a perfect loop smh
@JAMMMVR
@JAMMMVR 5 ай бұрын
All the furries are getting addicted to this too……
@ProtogenWolf.
@ProtogenWolf. 5 ай бұрын
Esta cancion no para salirme en yt voy a destruir yt aaash
@speakermanTitanam
@speakermanTitanam 5 ай бұрын
Cool
@Tunawater
@Tunawater 5 ай бұрын
It sounds terrifying at 2X speed
@Brick0
@Brick0 5 ай бұрын
I HATE THAT MEMEEEEEEEEE and stop doing memes with spanish memes (im spanish)
@meepandmeepyfamilyvideos2850
@meepandmeepyfamilyvideos2850 5 ай бұрын
2x speed is just mad funny
@Ur_local_sewer_rat
@Ur_local_sewer_rat 5 ай бұрын
its been 5 years i cant escape it
@NaturedSwisha
@NaturedSwisha 5 ай бұрын
SOMEONE GET THEM A MEDIC, THEY CLAIM ITS BEEN 5 YEARS EVEN THOUGH ITS BEEN OUT FOR ONLY MONTHS!!! HES DELUSIONAL
@_who_tfstolemyoriginalname
@_who_tfstolemyoriginalname 5 ай бұрын
Its boxing day at my aunt's while listening to this 🤠 (Yes i have a lack of braincellls)
@Kittie_kit300
@Kittie_kit300 5 ай бұрын
YESSSS THE POWERRRRRRRR
@Bepo_l0ves_boNes
@Bepo_l0ves_boNes 5 ай бұрын
You like kissing boys dont you~?
@franciscamartinez8698
@franciscamartinez8698 5 ай бұрын
You like kissing boys don't you ^W^ uwu
@The_Baby_Lynx
@The_Baby_Lynx 5 ай бұрын
Melting my brain- but it's so good.. 12:46
@user-fr2od3jx4u
@user-fr2od3jx4u 5 ай бұрын
pls delet furry kal
@_Real_ava_kit_
@_Real_ava_kit_ 5 ай бұрын
I love this song
@Angel_DustxX
@Angel_DustxX 5 ай бұрын
I said to my brother “I’ve been watching this for a hour straight” and he said “try watching something else you might need therapy”
@Kittypop00
@Kittypop00 5 ай бұрын
I’m already at 40:01
@B1nar10countryballsOFICIAL
@B1nar10countryballsOFICIAL 5 ай бұрын
💀
@Flowerboi321
@Flowerboi321 5 ай бұрын
Banging my head on a wall while listening to this ^^
@3X0TIC_Furry
@3X0TIC_Furry 5 ай бұрын
La hora loca de los ñinos TRANSLATING... The crazy hour of the children
@Im_a_dumb_Alice
@Im_a_dumb_Alice 5 ай бұрын
Help why do i love the song
@user-go1fn1fw4k
@user-go1fn1fw4k 5 ай бұрын
&=(",£#;,÷?$¡÷£;"&$@
@user-qq4pp2on1x
@user-qq4pp2on1x 5 ай бұрын
people who sat there for 1 hour 33 minutes