Is This The END of PROGRAMMING?
2:37
I Created Game in MS Paint!
2:21
3 ай бұрын
IS Python OVERRATED?
1:14
Жыл бұрын
Can you EDIT VIDEO with Python?
1:28
Пікірлер
@BigThreeVision
@BigThreeVision 5 күн бұрын
but u hae 1252
@BigThreeVision
@BigThreeVision 5 күн бұрын
have
@PracticalCoding.
@PracticalCoding. 5 күн бұрын
Raspi server lag from time to time
@pseudounknow5559
@pseudounknow5559 6 күн бұрын
Jak zrobiles głos po angielsku ? To ty mówisz ?
@PracticalCoding.
@PracticalCoding. 4 күн бұрын
poprzez TTS (tekst na mowę)
@pseudounknow5559
@pseudounknow5559 4 күн бұрын
@@PracticalCoding. woooow bardzo fajnie. A jaki uzykes software ? (sorry za zly polski to nie jest moje jezyk pierwszy)
@PracticalCoding.
@PracticalCoding. 3 күн бұрын
@@pseudounknow5559 są z tym strony darmowe jak i płatne, ja używam póki co 101soundboards ale patrząc na ilość reklam to nie polecam zbytnio
@the-real-random-person
@the-real-random-person 6 күн бұрын
Bro, it just refreshed while I was watching.
@PracticalCoding.
@PracticalCoding. 6 күн бұрын
you're lucky, it refreshes once a 9 minutes
@omar-diab-dev
@omar-diab-dev 6 күн бұрын
The video has 750 views now.
@PracticalCoding.
@PracticalCoding. 6 күн бұрын
Thanks for update, raspi crashed when I was gone
@PracticalCoding.
@PracticalCoding. 7 күн бұрын
Update: Day 2 I'm trying to rewrite code for raspberry pi, but daily 10k API tokens went off, so counter should work tomorrow at 9am
@codziennypotok
@codziennypotok 6 күн бұрын
Wrzucisz już kod z ograniczeniem do 10k API tokenów na dzień?
@PracticalCoding.
@PracticalCoding. 5 күн бұрын
@@codziennypotok api googlowskie w wersji darmowej samo w sobie ma ograniczenie do 10K/dzień, widnieje to gdzieś w konsoli API
@ancymondev
@ancymondev 7 күн бұрын
zmien jezyk na angielski jak tlumaczysz po angielsku
@PracticalCoding.
@PracticalCoding. 7 күн бұрын
no właśnie o tym nie pomyślałem a przy nagrywaniu mi się ledwo strona wczytywała i już nie kombinowałem
@Vedranation
@Vedranation 7 күн бұрын
Short, clean, on the point. Very cool!
@PracticalCoding.
@PracticalCoding. 7 күн бұрын
Thanks!
@koijamnibarson1231
@koijamnibarson1231 8 күн бұрын
How to undo this
@PracticalCoding.
@PracticalCoding. 8 күн бұрын
1. Shut down your PC 2. Go to task manager by Ctrl+Shift+Esc, search for some Python task and shut it down, you must use keyboard or 3. Just click Q if you programmed exit function
@pelaajahacks8358
@pelaajahacks8358 9 күн бұрын
this is what i learned programming. i learn way faster using the documentation, but i also hate reading, interesting
@PracticalCoding.
@PracticalCoding. 9 күн бұрын
code: import time from google.oauth2.credentials import Credentials from googleapiclient.discovery import build from google_auth_oauthlib.flow import InstalledAppFlow from google.auth.transport.requests import Request import os SCOPES = ["www.googleapis.com/auth/youtube.force-ssl"] def authenticate(): creds = None if os.path.exists("token.json"): creds = Credentials.from_authorized_user_file("token.json", SCOPES) if not creds or not creds.valid: if creds and creds.expired and creds.refresh_token: creds.refresh(Request()) else: flow = InstalledAppFlow.from_client_secrets_file( "client_secret.json", SCOPES) creds = flow.run_local_server(port=0) with open("token.json", "w") as token: token.write(creds.to_json()) return creds def get_video_views(youtube, video_id): request = youtube.videos().list(part="statistics", id=video_id) response = request.execute() views = response["items"][0]["statistics"]["viewCount"] return views def update_video_title(youtube, video_id, views): title = f"This video has {views} views" request = youtube.videos().update( part="snippet", body={ "id": video_id, "snippet": { "title": title, "categoryId": "27" } } ) response = request.execute() # Główna funkcja def main(video_id): creds = authenticate() youtube = build("youtube", "v3", credentials=creds) while True: views = get_video_views(youtube, video_id) update_video_title(youtube, video_id, views) print(f"Title updated") time.sleep(300) if __name__ == "__main__": video_id = "ID" main(video_id)
@BlueSheep777
@BlueSheep777 6 күн бұрын
chatgpt momento. Witaj bracie 🫡
@Asthriona
@Asthriona 14 күн бұрын
I strongly agree and disagree at the same time, I do agree on the fact that only watching tutorials and ctrl+c ctrl+v from the author's GitHub or whatever is bad. don't do that. You need to know how to use those tutorials, like watching a video about something you want to do, or related to your own projects. Also No, all tutorials do not show the "perfect way" In my early days I spend hours trying to find mistakes either I did, or the author made (and probably fixed later (or not some don't run their code for the whole video)) That research teach you how to read docs, searching google for the error you get and whatnot. and slowly but surely, you naturally won't watch the video anymore, You don't need them as you learned. Note: Not everyone learn the same, this is based on my own experiences, I have friends who learned only by reading docs for example.
@markf72
@markf72 16 күн бұрын
blanked out the important part
@Chady-f2x
@Chady-f2x 22 күн бұрын
Respect 🔥🔥🔥
@eternalblue_
@eternalblue_ 24 күн бұрын
works very well thank you but why are you scared to show your local address ? 🤣
@PracticalCoding.
@PracticalCoding. 22 күн бұрын
beginner's mistake 🤣
@toucansam7796
@toucansam7796 21 күн бұрын
@@PracticalCoding. lol
@Odon_Code
@Odon_Code Ай бұрын
im trying to become full stack in web development when i go on yt people dont really recommend it im just trying to build my family a website what do you think?
@PracticalCoding.
@PracticalCoding. Ай бұрын
as a beginner making websites and learning about fullstack technologies is a great idea, even if you won't work as a fullstack dev you will have general programming knowledge
@Odon_Code
@Odon_Code Ай бұрын
@@PracticalCoding. thanks for the tip
@Smyle001
@Smyle001 Ай бұрын
found your channel, u deserve more subs dude great content 🙏🏾
@Odon_Code
@Odon_Code Ай бұрын
This guy is Criminally underrated YT algorithm better recommend his videos to more people
@PracticalCoding.
@PracticalCoding. Ай бұрын
i wish so, but today new video dropping and maybe this will get more attention
@Odon_Code
@Odon_Code Ай бұрын
@@PracticalCoding. i understand how you feel my man but you should never give up and keep working soon your videos will blow up one by one i promise that but anyways do you have a discord? im new to coding my self just learned some basic programming languages XD
@PracticalCoding.
@PracticalCoding. Ай бұрын
few days ago i created instagram account @practical_coding_, you can message me there
@lime360_official
@lime360_official Ай бұрын
as a person who does not use youtube coding tutorials i can say that this video is relatable
@IvanCarry-g6v
@IvanCarry-g6v Ай бұрын
Appreciate the detailed video on Microsoft Edge for Android. Immersive Translate has been really helpful for translating entire pages. What other features or extensions do you find useful?
@RRPTV-ob3nl
@RRPTV-ob3nl Ай бұрын
Need full tutorial How to install mistserver and live website
@thunderdrum-ly1ul
@thunderdrum-ly1ul Ай бұрын
this guy doesn't get enough attention
@PracticalCoding.
@PracticalCoding. Ай бұрын
Code: github.com/SneakyCode/photoeditor/
@SaranshmanojSingh
@SaranshmanojSingh Ай бұрын
from ursina import * from ursina.prefabs.first_person_controller import FirstPersonController class Voxel(Button): def __init__(self, position=(0,0,0)): super().__init__( parent=scene, position=position, model='cube', origin_y=0.5, texture='white_cube', color=color.white, highlight_color=color.lime, collider='box' # Add collider to the voxel ) def input(self, key): if self.hovered: if key == 'left mouse down': Voxel(position=self.position + mouse.normal) elif key == 'right mouse down': destroy(self) def update(): if held_keys['escape']: mouse.locked = not mouse.locked if mouse.locked: mouse.visible = False else: mouse.visible = True # Movement controls using arrow keys if held_keys['up arrow']: player.position += player.forward * time.dt * 5 if held_keys['down arrow']: player.position -= player.forward * time.dt * 5 if held_keys['left arrow']: player.position -= player.right * time.dt * 5 if held_keys['right arrow']: player.position += player.right * time.dt * 5 app = Ursina() # Create a grid of voxels for z in range(8): for x in range(8): voxel = Voxel(position=(x,0,z)) player = FirstPersonController() player.collider = 'box' # Add collider to the player app.run()
@VustFlood
@VustFlood Ай бұрын
"and these errors are just details" why this reminds me of the joke "this isn't a bug, it's a feature"
@PracticalCoding.
@PracticalCoding. Ай бұрын
because both are true
@VustFlood
@VustFlood Ай бұрын
@@PracticalCoding. ok, btw cool project
@John_winston
@John_winston Ай бұрын
Can't watch the video but i do can comment, so is it dead or not worth it? Honestly i would like to get into programming but instead of as main source, would have it as side or part time job instead
@MX1732
@MX1732 Ай бұрын
The real mistake: Geting only 1G of ram
@yannisgk
@yannisgk 12 күн бұрын
another mistake: using rpi as a desktop computer .
@nintendoeats
@nintendoeats Ай бұрын
Just to help out anybody else: The streaming Service in english is "Custom..." and it is at the top of the list (not alphabetical). The server URL you provide to OBS looks like srt://192.168.123.123:1234
@deebwsh2567
@deebwsh2567 Ай бұрын
عندما قمت بتحميله ظهر كبرنامج cmd .. shell. ولم يظهر كبرنامج كما هو في الشرح
@jokelot5221
@jokelot5221 Ай бұрын
You gonna still have to learn to code to guide the AI to do the tedious work for you. Unless AI becomes sentient and decides that enough is enough 😨😂
@Cortex-A78
@Cortex-A78 Ай бұрын
For me coding is a grind.
@streelet8647
@streelet8647 Ай бұрын
Nice short my friend!
@maialso6096
@maialso6096 Ай бұрын
Loved the video !!
@Entropy1318
@Entropy1318 2 ай бұрын
By force of habit, I happened to scroll down into the comments after having finished watching the video, only to see 3 pre-existing ones. I expected this to be like a 100k+ channel, there's no way 💀
@PracticalCoding.
@PracticalCoding. 2 ай бұрын
quality like a 100k channel, views like a new one
@polymetric2614
@polymetric2614 2 ай бұрын
thank you for making this video 1 minute and 53 seconds
@janeandcruella7931
@janeandcruella7931 2 ай бұрын
I don't understand much of the choice given that I'm a young French person who doesn't really like English but I love seeing you passionate and making thoughtful videos. keep it up (this text was created by google translate) ❤️
@PracticalCoding.
@PracticalCoding. 2 ай бұрын
KZbin is a good place to learn new languages, I'm also not a english native but through making videos I learnt a bit
@janeandcruella7931
@janeandcruella7931 2 ай бұрын
I love your videos Practical Coding ❤️
@sbubwoofer
@sbubwoofer 2 ай бұрын
this is probably the best video on KZbin. Many people nowadays have worked themselves into not thinking, insofar they will have the surplus self-introspect necessary to joke about how short their attention spans are, or how rotted their brain is, but they end up locking themselves into a mindset of cynicism, which leads them to going around in circles, chasing their own tail; their tail being a paper-trail of abandoned projects and aspirations. Endlessly surface-level, endlessly entry-level. A reason I hold to this video's importance is because it is, itself, a reflection to some entangled "beginner programming in Python full tutorial 4 hours" video somewhere on this site. Insofar it is clear, it doesn't overwhelm nor does it over-encumber you with information to forget. Each word is concise in meaning and direction, all the while it would be understandable and digestible to the people who need to see it in the first place, those in the limbo of tutorial hell. There is a shared experience somewhere. An experience of ignoring, scoffing at documentation written by the developers of the language/framework to literally describe every feature in detail, because it sets off a subconscious uneasiness at actually engaging in learning, actual knowledge, something scary. Because the feeling you get when you sink your milk teeth into the flesh of a multiple hour long video is one resembling praise from an adult. Once you jump over the "hurdle" you invented for yourself just so you'd feel accomplished at dancing the dance of others, information like money, you get to stare into the abyss like a puppet dangling from your own hand. Your video, your own Zeitgeist, free humanity and absolution of guilt you create for yourself, the one thing that allows you to forget about that game developing hobby you left behind... another time, another place, new fields, fresh grass. Globules of dirty water rolled into a cigarette. Stubbing it on your packed lunch. The ocean calls out to you. You feel lonely alone, but five minutes in the novelty, and the connection with the prison guard's droning voice as he tells you that you can set the amount of bananas to 7 with bananas=7, before it falls through your fingertips like sand grasped to prevent you from free-falling for hours. You smashed the hourglass but your hands aren't the ones bleeding. Time is everywhere now. You can put it where you want. You can put it where you want. You can put it where you. HTML. CSS. Javascript. Web development. Wide eyes. No hit. No hit. You're not even hunting for prey like a drug addict anymore, because you can click on your prey; the lamb is 100% free, a full tutorial lamb, a full beginner's guide lamb, beginner to intermediate lamb, starting with variables and ending with try: catch:. You are the prey, your endless dreams are feasted upon, and your soul is left to spill into the hourglasses' sand when they crack your body to get the yolk of your wasted time. I mean, is it good for you to spend your days like this? When was the last time you felt love? When was the last time you allowed yourself to lest in vain? When was the last time nature existed? Do you remember what a Boolean is? The man was telling you, he poured that ambrosia tea into your left ear canal, it slowly overflows, now, are you true to yourself, or are you True? Are you? If so, then. Sand and water is an ocean. An ocean, is, was,i si is, is ,wass. And the earth was static, and void. Public class,.. n tbingIn Together he made the skfdand the ceiling and the carpet and the stale, recycled air of oyruyru roomrm, and the feeling of hunger eating away at you iteratively, and ehe made you all this in 11 hours 100% comprehensive with mini-projects.CTRL-C. CTRL-V. what did iwrite ont he stack>?"I make challenges so I can succ"eed. I type everything out on the screena gain in a new file so it will finally sink in again i type aout what the man wrtoe butnim tryping it again i willellearn it all it's myine i tawill take the informat the jf it' the ut tht htthe the the the hrtt the the the Abiitlity for myself.. I know I am different form because I think.because i casn think i wont be exploited. im ont op , im. I know this time is the real time because I am currently here and thehbe is keyword a fidft drmo. gi look trhiung s up i lok up garbage colleciton on a search engineir search enginer ofptimatistioan xml HTML doctype: kdm aweomse pfuture and and forget wha ti ment sna.. Every mistake that I've glossed over and never took the time to remember, let alone think about, let alone learn from; I do not learn from. From. for. for (Learning is from. import learning as watching. The longer th smatrter. m(me). The smarter the smatter. the longer. the. mty futrue. my past. like a movie. like the game i'll make.t the. like the sea and the sun and the asun and the CTRL-C CTRL-V. i like the way my professor tsays..,/ i like the way he tells me that he thinks im smart because i don't right click to copy things.,i miss shcol. i,.,.., i'm getingg distracted agians,. logner videos for a longer mind. TWENTY MInutes in. a day. longer mnind. neveerm iund. it collapses into rhyming. my mom used to tell me i was good at maths, my steacher and my fiened/. i knew peiolel. i knew places. i knew myself. i know i knew because i yearn depserately for a better life, but i can only see a better life in washed, insincere.nostaliga. is that because i am ultimately hop[e,ss?, because that's what i want to be, because that's the easy way out, becauase my metaphtyoysclal lazinesss fbeleeds intop the rfbaric of wikipedia mapages. is that becaudse im just waiting for an excuse to die? cvan you copy dyinh?has it iwneir the AI deleopevptiment yotuuebe videods. what happens when my computer dies : ? i know, when my computer dies, i stand up, nlood rushines into myhead it's cool and fast ejne., and its's late. it's rwlalty late. npw she's asleeept. i like to say it's early because ity sin, it's 1 in the mornigns. today was another day ,tomrowows was another daysasneurotic over decisions, without refleicntin on decisisons; another daybeing and thingkning and knowing asngd growing from copying others., but that's okay, its; art,. it's art like the app i;'klkl mnake it's a game and it will sell well and i'kk finally buy my imom stuff and sher'll smnile and that's what i wanted,./ it's what i wanted';. i t;'wa s what i wanted. i wanted to be the proud ,.,i whjust wnanter. i wanted the errors tp fix themselves/. they are my ultimate enem,yl because they reflect my owns fialikings. i rudimenerally say in my head that i accept my failings becaudse i ahte myself, but im; ultimatelyt just anotehr liar. like the 1.2 million liars on this turtroail.im dscrolling down sidstrascted to resd thre commemnts//// because closing the browser,;ds tab in anger will make it beterr, before i come back tomororw as alwasy,s/. as True. WHile treum, i almsot feel like i know where ima goniug.,,be cause i canc,./,. i am,,,. artt, art is .,,. the./,,./ way ;./././da momey,./,./ bnlodo,,./ tearts,..,.,., prorraminng./,. differemt,,.,..,,.,.,. forever.,.,.,. ever,.,.,,.,. ever..,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, fakadsf, adskk lsd,.s.a, flas ,d..a sd.fas ,d.f, asd.f ,as.df ,a.d,fa.d,a. ,fa.s,f .adsf,ads.fads,fads .f,a sdf,.as d.fads f ,asf.,ads.fa s.f,a f.,afui jsdsfadsut wnatdfserd her to be proedsfaudc of me afgindfsas, one fnndsdflsa timdsfdemre, kdsflkee she sudbdsfsued toe, id kill .,asf. a,sf.a ,sf.,a f.,af,.a ds.,sdklsadjlkjdkdf adfas df asdfajlsdkf asdfasf as fl;asdf; while True: banana = 7
@b213videoz
@b213videoz 2 ай бұрын
Clickbait! You didn't create a game in Paint alone, you have some code. Dislike.
@Senzix_Vackson
@Senzix_Vackson 2 ай бұрын
bruh i am getting errors on visual studio code
@Heavy_Lvy
@Heavy_Lvy 2 ай бұрын
the code is so messy aghhhh
@LynxWayne-q8w
@LynxWayne-q8w 2 ай бұрын
If he is saying stop watching tutorial than first stop watching his tutorial bcoz it is also a tutorial. everybody has there own choice in which form they wanna learn. docs , videos , books etc.
@paca2058
@paca2058 2 ай бұрын
I agree about everything you said except the math part. I was one of the worst students in math class but somehow I manage to write good code. I guess that's only because I'm curious and also I make tons of mistakes on daily and I want to learn on them. I do research all the time, sometimes even I'm writing step by step code only if understood it, and if I didn't on first, I just read it again and debug it on blank scripts (what it does, is good or bad, does it fit in my scenario). Bonus part is that I'm full of ideas(I just figure out a way how to solve something but check is the solution okay for the situation),but only as an approach not 100% idea plan. Anyways very nice video.
@fungunsun1
@fungunsun1 22 күн бұрын
As a math person, coding has very little to do with math. But some software areas are very math dependent like ML. But definitely not all of them.
@Mobilegamesedits
@Mobilegamesedits 2 ай бұрын
bro your so underrated i just subbed and liked
@HongyiLi-jm1rh
@HongyiLi-jm1rh 3 ай бұрын
how did this only have 60 views. Keep up the good job man!
@thatskadoosh
@thatskadoosh 3 ай бұрын
Omg! Let’s make this 60k!
@PracticalCoding.
@PracticalCoding. 2 ай бұрын
I dunno. KZbin algorithm is a mess.
@ID-iken
@ID-iken 3 ай бұрын
the BEST
@PracticalCoding.
@PracticalCoding. 3 ай бұрын
it can be better with AI (new video today)
@jacksonsmith...
@jacksonsmith... 3 ай бұрын
awesome video 🎉❤
@PracticalCoding.
@PracticalCoding. 3 ай бұрын
thanks
@angus1637yt
@angus1637yt 3 ай бұрын
The only ones are tic tac toe
@DazaiUchiha101
@DazaiUchiha101 3 ай бұрын
bro u editing is fire
@PracticalCoding.
@PracticalCoding. 3 ай бұрын
bro 2 minutes of editing takes me 5 hours