Тёмный

programming war crimes 4 

elseif
Подписаться 8 тыс.
Просмотров 259 тыс.
50% 1

some people nowadays...
Discord: dsc.gg/elseif (@el.if)

Опубликовано:

 

29 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 332   
@Eliasdbr
@Eliasdbr 11 месяцев назад
The misplaced space in the rm -rf path was brutal
@SaHaRaSquad
@SaHaRaSquad 11 месяцев назад
Steam on Linux also had this kind of bug once. Under specific circumstances an internal script returned a wrong value and then it recursively deleted all user-owned files on the filesystem.
@OrgStinx
@OrgStinx 10 месяцев назад
Press F to pay respect to our issuer
@quazar-omega
@quazar-omega 10 месяцев назад
​@@SaHaRaSquad What?? Well, now I'm incredibly scared of running anything 💀 When did that happen btw?
@SaHaRaSquad
@SaHaRaSquad 10 месяцев назад
@@quazar-omega That was in 2015, it's been fixed for quite a while.
@_aurora60
@_aurora60 10 месяцев назад
@@OrgStinxf
@funguslord77
@funguslord77 10 месяцев назад
"if (!false)" is just way funnier than it has any right to be and I'm not entirely sure why now excuse me while I do my best to forget the cursive code
@xkufse2413
@xkufse2413 10 месяцев назад
I laughed a lot on the git-blame-someone-else part
@vegardpig8634
@vegardpig8634 11 месяцев назад
ok but the even-odd one is actually pretty cool
@timelessnesses
@timelessnesses 11 месяцев назад
list comprehension be quirky
@MagicGonads
@MagicGonads 10 месяцев назад
@@timelessnessesit's a slice not a list comp
@timelessnesses
@timelessnesses 10 месяцев назад
@@MagicGonads string slicing be quirky
@JDarkona
@JDarkona Год назад
Here's an even_or_odd spanish variation which is slightly more cursed. def par_o_impar(num): return "impar"[[2, 0][num % 2]::] you're welcome
@gabrielsalvador4118
@gabrielsalvador4118 10 месяцев назад
dios mio
@WindsorYeh
@WindsorYeh Год назад
That notes written code is exactly what I do.
@panampace
@panampace 5 месяцев назад
Same, all the time. It’s called brainstorming
@He4vener
@He4vener 8 месяцев назад
I remember when i was 15 we had IT lessons in school and we had some basic programming lessons. During these i've been a bit more curious than others and been using more advanced codes (like arrays and combinations of other functions and such) to get the tasks done for which i was getting asked to NOT do that and do what teacher asked despite being credited for more effective solutions. Ones i've been looking through existed functions i found goto function (moves compilation process to the selected line, allowing to loop it and split the code into multiple pieces) that i found really usefull for todays task and used it like in half of the whole code. The face that teacher showed when he saw my code was so funny, especially when he literally called me "IT Criminal" After that incident i've started learning coding on my own at home while following teachers instructions instead of improvising and flexing with my skills
@sponTheGam
@sponTheGam 6 месяцев назад
The comment //Pray to god this works reminded me of an assignment I had done last week and then I realized it was due in 10 minutes and hadn’t submitted it yet luckily I had it done so I just had to upload it. appreciate the save though!
@baseddepartment9656
@baseddepartment9656 9 месяцев назад
0:26 Those are just normal Java class names.
@juangabrielcabana8270
@juangabrielcabana8270 Год назад
1:05 i felt that one
@loctite417
@loctite417 9 месяцев назад
1:04 is actually brilliant way to avoid using branches. Just hope that no one ever need to edit it in any way
@mr.rabbit5642
@mr.rabbit5642 8 месяцев назад
BRANCHES?? Just call it "isEven" and return negation of x AND 1. (or "isOdd where you AND the argument with 1). And you don't even have to worry about any bits but the least significant. Literally cannot find a better way. There's no room for branches or any stupid stuff when you do it in a single clock cycle.
@nerdycatgamer
@nerdycatgamer 8 месяцев назад
@@mr.rabbit5642 we're not returning true or false, we're returning a string with the word 'even' or 'odd', ya dingus. most likely slower than a naive branching approach tho because the "::" operator in the string index (i have no clue what language this is and haven't seen that operator) is almost certainly more expensive than a single branch.
@BlueEyesWhiteTeddy
@BlueEyesWhiteTeddy 8 месяцев назад
​@@nerdycatgamer Python and [num % 2:: 2] means start from index num % 2 (0 or 1) and go to the end (This is because there is a lack of number inbetween the two colons). Do it in steps of 2. Indexing works like: a[start:end:stepsize]
@mr.rabbit5642
@mr.rabbit5642 8 месяцев назад
@@nerdycatgamer yeah I mean, true, but you can still wrap it into another function with ternary return isEven()? 'even' : 'odd'. Sure, call it a "branch" but it makes no difference, and using the :: operator implements like 30 branching operations within. And that all aside from the fact that often resolving unncecessary conditions is even worse, not only in the long run, than "branchless" return isEven()*'even'+(1-isEven())*'odd' I sure like the concept of branchless coding, but it's a myth in higher level languages. ESPECIALLY PYTHON, ya dingus :D
@nerdycatgamer
@nerdycatgamer 8 месяцев назад
@@mr.rabbit5642 This is literally what my point was, what are you going on about? I literally said this 'branchless approach' is not going to be more branchless than a simple ifelse, and is going to probably be slower due to the user of the :: operator to iterate.' You were the one being incorrect by acting as if this function returns a boolean. Sure, you can wrap that boolean in a ternary and that being better... which is exactly what i said about an ifelse being better because of the overhead of the '::' operator.
@JM_Tushe
@JM_Tushe 11 месяцев назад
0:26 This is my favorite. 😂😂😂
@lykanno5137
@lykanno5137 Год назад
1:03 that even or odd sh*t was vile. Just absolutely bonkers 😂 like who does that
@AtariWow
@AtariWow 11 месяцев назад
I'm trying to think if it would be at all useful for a code golf.
@zhabiboss
@zhabiboss Месяц назад
1:03 python string manipulation is godly
@xingyanglan6836
@xingyanglan6836 9 месяцев назад
the even or odd one reminds me of the tortise and hare algo for duplicate number
@mikoblixel
@mikoblixel 5 месяцев назад
the even and odd number function is clever
@ABlueThing
@ABlueThing 10 месяцев назад
(!false) seems like someone was too lazy too change the condition
@SnoFitzroy
@SnoFitzroy 8 месяцев назад
I'm an amateur prgrammer at best and even i was like "no...nooo...ENOUGH!!!!" by the end LMFAOOOOO
@Anon-do7lo
@Anon-do7lo 4 месяца назад
1:05 is actually cool. Not useful but not a war crime
@ThePizzabrothersGaming
@ThePizzabrothersGaming 5 месяцев назад
0:47 i think the buggest warcrime there is the component logic all being inside render()
@fadyaldhaim4766
@fadyaldhaim4766 Год назад
1:10 how did this test fail if both expected and actual values are the same 😂
@zxph
@zxph Год назад
Idk, maybe one was a string? beats me
@benjaminv02
@benjaminv02 11 месяцев назад
yeah classic Junit, its usually strings and then zero width widespace guys messing it up
@qwoolrat
@qwoolrat 11 месяцев назад
wrong type i tgink😢
@SuperOtter
@SuperOtter 10 месяцев назад
Man I've had this happen so often. Typically causes by not defining the equals methods
@polyacov_yury
@polyacov_yury 6 месяцев назад
This is actually pytest. There you can write stuff like "assert 2+2=5" and get "AssertionError: Actual: 4, Expected: 5". To get that output they had to botch the f*ck out of the assert statement, though. Something like: test_success = actual_value == expected_value assert test_success != False
@Просто_Иван
@Просто_Иван 5 месяцев назад
1:05 I hate that this works, but I love it
@bobbobson6290
@bobbobson6290 8 месяцев назад
0:28 that's genious! Why didn't I think of that? That saves so much space.
@DegradationDomain_stuff
@DegradationDomain_stuff 9 месяцев назад
I like how they solve that even/odd problem
@deumnoctis
@deumnoctis 11 месяцев назад
Pls tell me the git blame some else isn't real
@blockify
@blockify Год назад
intellisense suggestion: remove all backups
@xd_oxy
@xd_oxy 7 месяцев назад
i thought this video about programming irl war crimes :(
@atillacodesstuff1223
@atillacodesstuff1223 8 месяцев назад
the even odd thing is kinda brilliant
@adansmith5299
@adansmith5299 9 месяцев назад
dont mind if i just method perpendicularlly
@tomashula2779
@tomashula2779 10 месяцев назад
Okey, listen here. The horizontal stacking is actually very cool.
@americanbagel
@americanbagel 6 месяцев назад
0:26 Java moment
@Caue113_
@Caue113_ 5 месяцев назад
There you go, I put the *:hover{ display: none } for the funnies and i couldnt stop laughing everytime i wanted to see the video and everything becomes bright white. 2 views for you madlad
@zperk13
@zperk13 19 дней назад
0:43 I've made this exact mistake lol
@fedotik827
@fedotik827 9 месяцев назад
The last one got me
@cactusfishy1596
@cactusfishy1596 9 месяцев назад
eovdedn got me
@Tvde1
@Tvde1 11 месяцев назад
1:06 is just a really dumb skill issue
@kickedtomato
@kickedtomato 11 месяцев назад
0.26 minecraft's code
@laQuys
@laQuys 11 месяцев назад
if (!!!false)
@Fluxdeken
@Fluxdeken 11 месяцев назад
😂😂 //pray to god this works
@n6-nguyentuananh293
@n6-nguyentuananh293 8 месяцев назад
phương trình vô nghiệm ::>
@purpinkn
@purpinkn 6 месяцев назад
it was too fast.
@entangledatoms7153
@entangledatoms7153 10 месяцев назад
This is !(!(!false)!true)
@cIassmethod
@cIassmethod 9 месяцев назад
Сортировать месяца по алфавиту 😱☠️
@konstantinsotov6251
@konstantinsotov6251 11 месяцев назад
rm -rf /usr got me, ain't gonna lie) Basically that's the reason why i hate Bash - 1 extra space and it deletes your system
@TinyDeskEngineer
@TinyDeskEngineer 10 месяцев назад
"// pray to god that this works" sounds more like a normal code comment than a war crime
@sa1t938
@sa1t938 10 месяцев назад
It's because the comment was suggested by GitHub copilot, Microsoft 's code completion AI
@KangJangkrik
@KangJangkrik 9 месяцев назад
The senior engineer is an atheist lmao
@eldonad
@eldonad 9 месяцев назад
I think what's funny is also that, if you look closely, the text is in italic where it was normal before, which is usually how GitHub Copilot and such suggest the end of sentences. So this was the Machine praying.
@nnnik3595
@nnnik3595 9 месяцев назад
​@@eldonadno that was the search Interface. First part was searched for. The latter part was what the search returns.
@death_parade
@death_parade 8 месяцев назад
@@eldonad Doesn't that just mean he has typed this line before as well? autocomplete
@Asango
@Asango 10 месяцев назад
The Discord bot inductively prompting itself with its own responses is great
@kacperspisz4239
@kacperspisz4239 10 месяцев назад
image if military ai drone would start self promting targets due to bad code
@David280GG
@David280GG 6 месяцев назад
Mf uses discord with 10% zoom
@emirs769
@emirs769 6 месяцев назад
My reddit bot once did this and kept going for 6~ hours (I was asleep) and the mods eventually had to step in and timeout it for a week. Fun times.
@Azurryu
@Azurryu 10 месяцев назад
You know what I hate? The person who thought a whole calendar and clock interface would be easier to use than just typing in the date and time. Because that bullshit became the standard with no fallback on mobile to just enter the values as text.
@inakilbss
@inakilbss 10 месяцев назад
it's to avoid format mixups, i've sometimes tried inputting dates in one format only to realize it wasn't valid cause the page expected a different one
@rom.ya.3799
@rom.ya.3799 10 месяцев назад
​@@TollyHSome people might not notice placeholder text. Good intermediate variant would be to have month choice as a dropdown menu.
@wege8409
@wege8409 10 месяцев назад
Bro I have seen some where you can't change the year, you have to go MONTH BY MONTH. I'm pretty sure I saw one on the X sign up page. That's 336 clicks for me.
@ineverknowdoyou
@ineverknowdoyou 9 месяцев назад
i would solve that by forcing iso format. type "20" and it will only let you type a number after, itll force the user to really look at the format hint 😊
@chudchadanstud
@chudchadanstud 9 месяцев назад
​@@inakilbssThat's what labels are for
@LunarSoul255
@LunarSoul255 9 месяцев назад
1:04 is clever. Not something you should ever use in serious code, but a good way to show you can think outside the box.
Год назад
1:03 that one is actually pretty cool
@bassycounter
@bassycounter Год назад
that's what I'm saying
@bassycounter
@bassycounter 11 месяцев назад
@@5cover i’m sure it’s something that could be implemented into other languages though, not just python
@5cover
@5cover 11 месяцев назад
@@bassycounter yes but python makes it easy and even praises it sometimes
@davi.alexandre
@davi.alexandre 11 месяцев назад
*ternary operator would like to know your location*
@lunafoxfire
@lunafoxfire 11 месяцев назад
@@5cover ... tbh that just makes no sense... you can write terrible code in any language...
@unknownguywholovespizza
@unknownguywholovespizza Год назад
The npm vulnerabilities warning gave me a lot of anxiety and depression whenever I used it
@nnnik3595
@nnnik3595 9 месяцев назад
Ours at work is worse
@unknownguywholovespizza
@unknownguywholovespizza 9 месяцев назад
@@nnnik3595 well we have no choice but to live with it 💀
@nnnik3595
@nnnik3595 9 месяцев назад
@@unknownguywholovespizza yeah. Not a lot I can do about it.
@thememecartextras9638
@thememecartextras9638 9 месяцев назад
0:46 Just had this happened to me as I was making the lowercase variable of a selectable race "lower_race". No problems there, even better with it being on a school computer.
@NoNameAtAll2
@NoNameAtAll2 6 месяцев назад
/r/pcmasterrace watching at everyone else struggling at inputting code:
@just_me_100
@just_me_100 10 месяцев назад
1:11 That got me
@BrainStormzFTC
@BrainStormzFTC 5 месяцев назад
That, kids, is why you always sand only the finest of type-safe languages. Sometimes I swear Python is designed to have as many footguns as possible...
@ezyybin604
@ezyybin604 12 дней назад
@@BrainStormzFTCjavascript is worse way worse
@그냥사람-e9f
@그냥사람-e9f 11 месяцев назад
0:38 Most secure Korean banking app:
@그냥사람-e9f
@그냥사람-e9f 11 месяцев назад
"Trust us your account getting hacked was not because of our shitty app that has 10 year old OpenSSL version with literal billions of vulnerability statically linked and compiled with DEP disabled or because we transfers passwords encrypted with goofy ahh 64 bit key instead of hashes, it's because you didn't install our 'anti keylogger' which definitely isn't a kernel keylogger that causes kernel panic when you type faster than 0.5 wpm"
@TheManinBlack9054
@TheManinBlack9054 6 месяцев назад
​@iytdominotikno, people just like using random countries for memes since no one would correct them
@그냥사람-e9f
@그냥사람-e9f 5 месяцев назад
​​​@@TheManinBlack9054no, Korean banking apps are actually that bad. They statically link openssl and proceeds to never update it, they wrote kernel keylogger easy as hell to tap into to prevent keylogging, said kernel keylogger introduces XSS, and the same kernel keylogger is easy as hell to crash and probably also equally easy to exploit Those garbages aren't "security app" they're literal backdoors Oh, also they don't have auto update so even when they fix some of the "vulnerability" (def not backdoor) there's no way for users to know At least they don't do these nonsense on mobile (more like they can't, I bet they would have done the same shit on mobile too if it was possible)
@VinsCool
@VinsCool Год назад
At 28 seconds I thought this was perfectly fine getter/setter stuff until I realised how it was actually typed on screen lol
@felixfourcolor
@felixfourcolor 10 месяцев назад
0:28
@EdKolis
@EdKolis 10 месяцев назад
Wait, it was actually typed that way? I thought it was just edited to fit on the screen and the war crime was the getter/setter bloat.
@HrHaakon
@HrHaakon 9 месяцев назад
It's not totally fine to write your own getters and setters in Java though. Use lombok or records.
@Turalcar
@Turalcar 8 месяцев назад
The worst thing is that it looks like it could compile
@j.j.currier5916
@j.j.currier5916 10 месяцев назад
0:49 Plot twist: They knew people might look into the source of the test. So they named the picture wrong.
@ぐうたらぼっち-e7t
@ぐうたらぼっち-e7t 9 месяцев назад
I find the "even_or_odd" function somewhat beautiful.
@Eldritch_
@Eldritch_ Год назад
local sanity = false
@else1f
@else1f Год назад
get your lua out of here
@Eldritch_
@Eldritch_ Год назад
@@else1f yes
@kezzyhko
@kezzyhko Год назад
@@else1f
@assarlannerborn9342
@assarlannerborn9342 Год назад
Const happiness= -Infinity
@xXUnhingedDevXx
@xXUnhingedDevXx 11 месяцев назад
@@assarlannerborn9342 Lol I like how it's a constant so it just straight up can't change
@georgecop9538
@georgecop9538 Год назад
0:23 dereferencing a pointer already freed 💀
@NotFlame
@NotFlame 9 месяцев назад
* : hover{ display:none; } had me dying lmfao
@hoodiegal
@hoodiegal 5 месяцев назад
the "peekaboo" code :)
@NotFlame
@NotFlame 5 месяцев назад
@@hoodiegal yea xD
@PhoenixClank
@PhoenixClank 4 месяца назад
I'd add !important at the end.
@dany_fg
@dany_fg 9 месяцев назад
I once had to teach someone in my programming course (I was a student) how to write a database, because instead of a one to many table he created 20 extra columns and most were empty. We were about a week from the final project presentation.
@edwinwang5594
@edwinwang5594 9 месяцев назад
Pffffff a week is more than enough time to turn things around. Try three days... Now that I think of it, how the hell did I survive college?
@Mempler
@Mempler 10 месяцев назад
tbh, horizontal function stacking would actually be an interesting feature, pain to maintain. but interesting
@sharpfang
@sharpfang 8 месяцев назад
I say on modern wide screens split the display of the code into columns. The actual code could be still just vertical but you get 2-3 screens worth of code, side by side.
@matj12
@matj12 8 месяцев назад
That should be an IDE feature. The IDE would detect narrow pieces of code and automatically typeset them in two columns among longer lines displayed in a single column. So the underlying text would not change; just the IDE would present it in a different way.
@asdfqwerty14587
@asdfqwerty14587 8 месяцев назад
@@matj12 I think it would be awful in practice. In the specific example they showed it might not look so bad.. but you have to consider all of the cases - there will be cases where there are some functions with a different widths than others (so the number of columns starts changing erratically), some functions with different heights than others where they don't line up neatly, and anything that causes the size of the window containing the code to change can cause the number of columns displayed to change (for instance, opening a search menu could cause this too which would get really frustrating in a lot of cases). I'm fairly certain it would just become a huge mess in practice and cause way more harm than good.
@SnoFitzroy
@SnoFitzroy 8 месяцев назад
Lua:
@makinnir
@makinnir 8 месяцев назад
⁠i love lua
@iamfastre
@iamfastre 10 месяцев назад
this “vulnerabilities” screenshot is just the usual npm install
@vandarkholme4745
@vandarkholme4745 10 месяцев назад
One phd I worked with wrote float is_yes=my_analysis() if is_yes=500 And in another python file he transposed something twice in a row
@callyral
@callyral 9 месяцев назад
"programming war crimes" implies the existence of a programming war
@Noam-Bahar
@Noam-Bahar Год назад
0:25 least ugly tailwind code
@AwesomeCadecraft
@AwesomeCadecraft Год назад
0:46 ok the real cursed thing is the indentation of line 17-21 💀
@dasten123
@dasten123 11 месяцев назад
why? _EDIT:_ oww good grief! I see it now
@yankotliarov9239
@yankotliarov9239 10 месяцев назад
It's a f*ing prettier with 80 characters limit turns everything into a bloat
@toyocolla
@toyocolla Год назад
Im kinda new to programming so most of these war crimes are beyond my comprehension. Still, most of these feel threatening for some reason.
@toyocolla
@toyocolla 11 месяцев назад
@@bloodbonnieking c++
@elena.krittik
@elena.krittik 10 месяцев назад
​@@bloodbonnieking Why does this sound threatening too 😭
@entropy4959
@entropy4959 10 месяцев назад
@@bloodbonniekingwhich languages would result in divine anger?
@kacperkonieczny7333
@kacperkonieczny7333 10 месяцев назад
​@@entropy4959jQuery /yes I know it is a library
@alexm9104
@alexm9104 10 месяцев назад
@@entropy4959 "vanilla" JS obviously.
@itszify554
@itszify554 10 месяцев назад
//pray to god that this works Thats how i write code every day
@milolouis
@milolouis 10 месяцев назад
Wow RU-vid is awful on mobile. Can't even pause without a giant screen blocking pause button
@kolobras2676
@kolobras2676 9 месяцев назад
Я никогда бы не додумался до ТАКОЙ проверки числа на чётность, как на 1:04
@that_random_goto_statement
@that_random_goto_statement Год назад
0:29 why my drunk ass thought this would work
@IcyLucario
@IcyLucario 9 месяцев назад
0:48 I can't believe I didn't think of saving and image/using dev tools to check an image name in college.
@gdplayer1035
@gdplayer1035 9 месяцев назад
that exam screenshot is relatable
@takatamiyagawa5688
@takatamiyagawa5688 9 месяцев назад
At least it's being fair.
@HrHaakon
@HrHaakon 9 месяцев назад
The Java one is horrendous, because you just have to use lombok, and put @Data to get getters and setters, if you want those. I'm a bit shaken and I need an(other) adult.
@Cuprite1024
@Cuprite1024 6 месяцев назад
"Pray to god that this works." I'm not even a programmer and I can relate just from editing existing scripts. Lol.
@alfaalkaaf5335
@alfaalkaaf5335 11 месяцев назад
0:18 someone just want to see the world burn
@adolphin9348
@adolphin9348 3 часа назад
So, r/programmerhumor sorted by top posts of all times
@janekwikariak1079
@janekwikariak1079 3 месяца назад
If I recall corectly, 0:35 is taken from github page of Mocha DOOM, which is a pure java port of DOOM, which explains a lot
@user-iz5pd7tj6q
@user-iz5pd7tj6q 10 месяцев назад
I dont know programming and this just seems like alchemical textbooks from 1600's
@EdKolis
@EdKolis 10 месяцев назад
Programming is a lot like witchcraft. There are magical incantations that can be dangerous if used incorrectly, and everyone argues about how to write them.
@cheese.and.quackers
@cheese.and.quackers 10 месяцев назад
1:03 this is genius
@cycrothelargeplanet
@cycrothelargeplanet 5 месяцев назад
0:31 I had a stroke reading that
@morgan3692
@morgan3692 7 месяцев назад
if (true) return true; else return false;
@A_literal_cube
@A_literal_cube 10 месяцев назад
1:00 isn't that what every programmer does the first time they try to do something?
@dvxv4016
@dvxv4016 9 месяцев назад
*every time
@A_literal_cube
@A_literal_cube 9 месяцев назад
@@dvxv4016 yeah, that makes sense
@sharpfang
@sharpfang 8 месяцев назад
No. First time there's no hope it will work, none at all. The first time is just spotting bugs. Now, if your code compiles and seems to work the first time over, this is a serious reason to worry and you should stop, and start analyzing the code in-depth because that means the bug is insidious, hard to detect and causes only occasional but catastrophic results
@EdKolis
@EdKolis 10 месяцев назад
Yesterday I got a compile error saying I can't convert from type T to type T. It only came up after I ran my app, though. And the app ran just fine... 🙄
@artiekra
@artiekra 10 месяцев назад
1:02 Lol my Codeium literally just did the same, as 2nd suggestion First was "Pray to web host")
@dasten123
@dasten123 11 месяцев назад
0:29 Took me a while to get it, but at first I thought I actually kind of like it
@kerbereal934
@kerbereal934 6 месяцев назад
if true == variable then
@ThisIsAUsername69
@ThisIsAUsername69 5 месяцев назад
0:30 Ok but hear me out...
@FlytoTheSpace
@FlytoTheSpace 2 дня назад
The fact git-blame-someone-else is liked by Linus Torvalds is crazy For those who don't know it, He's the Creator of LINUX
@SamCyanide
@SamCyanide 5 месяцев назад
The git blame someone else is absolutely a war crime, but 0:51 is based correct filename (no alt text tho) Also nice end cards blocking the video and not a single source listed. Blocked and reported.
@redpacific359
@redpacific359 5 месяцев назад
0:53 nice font bruh
@ilikerainandburger
@ilikerainandburger 6 месяцев назад
i found one yesterday: if(a == b == c) rather than if(a == b && b == c) the first one means that you are trying to compare a boolean with a number.....though the IDEA could probably understand this but still......the war crime
@NexusGamingRadical
@NexusGamingRadical 6 месяцев назад
I actually broke down at git-blame-someone-else Congratulations, "You're officially an asshole"
@nikitasamarskyy
@nikitasamarskyy Месяц назад
0:36 every f..ng Microchip example project for any MCU Jesus Christ it's so annoying
@DoNotTrustTheSVN
@DoNotTrustTheSVN Год назад
0:54 Vietnamese cursive in a nutshell
@Mutrax4706
@Mutrax4706 6 месяцев назад
0:33 you know you did smth VERY wrong, when intellisense cant come with a better suggestion than just getting rid of it all
@VisioAuri
@VisioAuri 6 месяцев назад
*::hover { display: none; } I've done this a couple of times as a prank.
@matthewrease2376
@matthewrease2376 10 месяцев назад
0:20 why would that only affect Ubuntu? Should be based on shell first of all, not OS, second, each shell should treat that the same...
@elijahshadbolt7334
@elijahshadbolt7334 10 месяцев назад
It was probably part of a much bigger file that has platform specific conditions before it will let execution reach that erroneous line of code.
@NichtDu
@NichtDu 10 месяцев назад
Maybe it was the dev branch and the other distros only use the stable version
@matthewrease2376
@matthewrease2376 10 месяцев назад
@@NichtDu Ubuntu on a dev branch and Arch on a stable? 🤔
@NichtDu
@NichtDu 10 месяцев назад
@@matthewrease2376 well arch obviously doesn't use the ubuntu installer but a bunch of other distros do
@sebastiangimenez4332
@sebastiangimenez4332 10 месяцев назад
the if(!false) is killing me
@OneLabToRuleThemAll
@OneLabToRuleThemAll 8 месяцев назад
*_me just using pointers normally_* bro with his alphabetical stack of pointers pointing to the last pointer: 1:08
Далее
Programming War Crimes | Prime Reacts
10:36
Просмотров 372 тыс.
programming war crimes 3
2:43
Просмотров 214 тыс.
Новый вид животных Supertype
00:59
Просмотров 193 тыс.
Witch changes monster hair color 👻🤣 #shorts
00:51
Undertale is a horribly made game
10:32
Просмотров 589 тыс.
I made the stupidest Coding Language ever...
4:47
Просмотров 15 тыс.
cursed programming 5
3:17
Просмотров 198 тыс.
What is the Smallest Possible .EXE?
17:04
Просмотров 398 тыс.
The Unhinged Nature of GTA V Source Code
2:16
Просмотров 1,3 млн
programming war crimes 2
2:17
Просмотров 883 тыс.