Over the Wire: Bandit Lvl 1 - 5
19:03
Dockerize your Python app
9:46
3 жыл бұрын
Deploy Python app to PythonAnywhere
15:25
NEW M1 iPad Pro 11" (2021) Unboxing
9:53
Python Tutorial: args and kwargs
6:23
My First Youtube Video
2:28
3 жыл бұрын
Пікірлер
@prashantgupta8241
@prashantgupta8241 9 күн бұрын
Thankyou 😅
@FKVOS_GANG_452
@FKVOS_GANG_452 13 күн бұрын
Thanks Bro for Telling how to create website 😁
@thegoongoons8316
@thegoongoons8316 Ай бұрын
I am struggling on the syntax like it doesnt make sense the for loop in the bracket
@CollinzyDfungi
@CollinzyDfungi 2 ай бұрын
is it just a static page that it loads? because it doesnt load anything i have on my fullstack website. it only loaded a html message
@DogwaterRBLX
@DogwaterRBLX 2 ай бұрын
But you didn't show the part how to publish the website on the internet and how to get a domain for a subdomain
@joshuapaquera9184
@joshuapaquera9184 2 ай бұрын
Awesome... Straightforward! Thanks for the HUGE help!!!
@onesimplecuban
@onesimplecuban 3 ай бұрын
Do I have to put underscores when naming my folder ?!? I don’t get it
@devrimsarikaya
@devrimsarikaya 3 ай бұрын
thank you it helped me a lot
@EkerokuJoseph
@EkerokuJoseph 3 ай бұрын
😂😂
@sadge6430
@sadge6430 3 ай бұрын
Jgr
@sadge6430
@sadge6430 3 ай бұрын
65
@NicoleSummer8
@NicoleSummer8 3 ай бұрын
🎉👍💪🫶🏻
@XYasser93
@XYasser93 4 ай бұрын
Is it possible to deploy a python with html for frontend and db stuff all in pythonanywhere?
@000phoenix00092000
@000phoenix00092000 4 ай бұрын
very useful
@atillaalagoz4100
@atillaalagoz4100 4 ай бұрын
Thanks 🍀
@abdulahm.kenneh4777
@abdulahm.kenneh4777 4 ай бұрын
I mush be a fool if i don't subscribe to your channel, i spent 24 hours on bunch of shit and got it here with ease. Bravo
@douglasgjr
@douglasgjr 4 ай бұрын
Great tutorial! Thanks!!
@NadidLinchestein
@NadidLinchestein 4 ай бұрын
What should I do after finishing Scrimba?
@frnic0las
@frnic0las 4 ай бұрын
Hey, just found out this video and it's still relevant 1 year after. One thing already mentioned, PythonAnywhere erases your own app.py at first but it's ok. Did you have time to record the video to make the pull automatic? Although I believe a basic python script that calls a bash script in a cron job could do the job.
@CollinzyDfungi
@CollinzyDfungi 2 ай бұрын
ello from flask isnt whats on my website
@veodarkie520
@veodarkie520 5 ай бұрын
Thank you man
@project_wolf_x
@project_wolf_x 5 ай бұрын
A few shortcuts for VS is type ! then it'll put out all the html code and then download live server so you can run it from VS and then it'll update your website as you save
@SHADOW_KING909
@SHADOW_KING909 5 ай бұрын
Any other app or the thing u saying i have window 7 low end laptop
@carmafia5606
@carmafia5606 6 ай бұрын
Nowadays you can make website with single tick who knows thay ai will take a job of every coder human
@Mr.Vishal.J
@Mr.Vishal.J 6 ай бұрын
Just Type Shift + ! That's it if you are lazy...😂...
@Soo-qd1co
@Soo-qd1co 6 ай бұрын
replit is bad due to output not working (pygame)and some features like folders not working correctly. though its okay for basic learning for variables types like that.
@anhquantranle961
@anhquantranle961 6 ай бұрын
You lost me at best editor lol
@Jackies-pu3do
@Jackies-pu3do 6 ай бұрын
The most dumbest tutorial I've ever seen
@devmrnecro4215
@devmrnecro4215 6 ай бұрын
can someone tell me how is it connected to github??
@rayhanaananya5209
@rayhanaananya5209 6 ай бұрын
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Flappy Bird</title> <style> canvas { border: 1px solid black; display: block; margin: 0 auto; } </style> </head> <body> <canvas id="gameCanvas" width="480" height="320"></canvas> <script> // Get the canvas element var canvas = document.getElementById("gameCanvas"); var ctx = canvas.getContext("2d"); // Bird variables var birdX = 50; var birdY = canvas.height / 2; var birdRadius = 20; var gravity = 1; var jumpStrength = -15; // Pipe variables var pipeWidth = 50; var pipeGap = 100; var pipeSpeed = 2; var pipes = []; // Game loop function draw() { // Clear the canvas ctx.clearRect(0, 0, canvas.width, canvas.height); // Draw bird ctx.beginPath(); ctx.arc(birdX, birdY, birdRadius, 0, Math.PI * 2); ctx.fillStyle = "yellow"; ctx.fill(); ctx.closePath(); // Move bird birdY += gravity; // Draw pipes for (var i = 0; i < pipes.length; i++) { ctx.beginPath(); ctx.rect(pipes[i].x, 0, pipeWidth, pipes[i].top); ctx.rect(pipes[i].x, pipes[i].bottom, pipeWidth, canvas.height - pipes[i].bottom); ctx.fillStyle = "green"; ctx.fill(); ctx.closePath(); // Move pipes pipes[i].x -= pipeSpeed; // Check collision if (birdX + birdRadius > pipes[i].x && birdX - birdRadius < pipes[i].x + pipeWidth) { if (birdY - birdRadius < pipes[i].top || birdY + birdRadius > pipes[i].bottom) { alert("Game Over!"); location.reload(); // Restart the game } } } // Remove off-screen pipes if (pipes.length > 0 && pipes[0].x + pipeWidth < 0) { pipes.shift(); } // Add new pipe if (pipes.length === 0 || pipes[pipes.length - 1].x < canvas.width - 200) { var pipeTopHeight = Math.random() * (canvas.height - pipeGap); pipes.push({ x: canvas.width, top: pipeTopHeight, bottom: pipeTopHeight + pipeGap }); } // Check if bird hits the ground if (birdY + birdRadius > canvas.height) { alert("Game Over!"); location.reload(); // Restart the game } // Request animation frame requestAnimationFrame(draw); } // Bird jump document.addEventListener("keydown", function(event) { if (event.keyCode === 32 || event.keyCode === 38) { // Spacebar or Up arrow key birdY += jumpStrength; } }); // Start the game loop draw(); </script> </body> </html>
@5pm_Hazyblue
@5pm_Hazyblue 6 ай бұрын
1:12 "Hello World!" 8:00 "Hello from Flask!" This guy: "exact the same code" 🤣🤣🤣🤣🤣🤣🤣🤣
@CollinzyDfungi
@CollinzyDfungi 2 ай бұрын
same with me. it didnt load my website.. it just show me hello from flask
@mynameisreallycool1
@mynameisreallycool1 6 ай бұрын
How do you make the website public though?
@realwhybrandn
@realwhybrandn 7 ай бұрын
What size you did you get
@guest_tristan55
@guest_tristan55 7 ай бұрын
Instructions unclear, i accidently made a full website
@x.ellent_juice
@x.ellent_juice 7 ай бұрын
wait till they have to do css & javascript & etc
@Carsporty
@Carsporty 7 ай бұрын
How i can give my site a url that i can share it?
@orangeloverfan
@orangeloverfan 8 ай бұрын
ty man
@ashajankalyansewatrust
@ashajankalyansewatrust 8 ай бұрын
I was searching how can make a website they gave me by write 🤣😅🤣
@condrovromanita1324
@condrovromanita1324 8 ай бұрын
does it works on hp?
@KyleBillie
@KyleBillie 8 ай бұрын
Any computer
@SubhanIII
@SubhanIII 8 ай бұрын
Ok yeah but How do you customize it like professional website?
@KyleBillie
@KyleBillie 8 ай бұрын
You have to tell the computer by putting in the HTML codings. It's all on KZbin just be patient and be dedicated.
@bumblebeess9515
@bumblebeess9515 8 ай бұрын
Thank you for showing this, proof not every website needed to be from an actual paying app
@Fayroll5
@Fayroll5 8 ай бұрын
Fact: in vs code u can just type ! And then enter to get the default code u need to start coding.
@pankajmauryadev
@pankajmauryadev 9 ай бұрын
That's how we all started🥹
@yatoyabuko1461
@yatoyabuko1461 9 ай бұрын
How to put pictures in it?
@Mr-ey3cf
@Mr-ey3cf 9 ай бұрын
Terimakasih (thank you) from indonesia...
@joey-typing
@joey-typing 9 ай бұрын
AND TYPE THIS?????? DON'T LISTEN TO THIS PERSON NO BACKEND????? NO SERVER???????
@BSweets2012
@BSweets2012 9 ай бұрын
What about the rest?
@KyleBillie
@KyleBillie 8 ай бұрын
It's all on KZbin you have to tell the computer by using the language of HTML
@traconisek
@traconisek 9 ай бұрын
well this is something average high school kid can do (or chatGPT) Real question how to get the code from pythonanywhere to github?!
@kartikcodes
@kartikcodes 9 ай бұрын
bro forget to add <head> tag
@CLASSIFIEDMEMBER
@CLASSIFIEDMEMBER 9 ай бұрын
0:01
@DGneoseeker1
@DGneoseeker1 9 ай бұрын
Those of you who have tried the Evo and the original Titan... is the Evo any more comfortable? On the original Titan the backrest is RIDICULOUSLY HARD and hurts my back in minutes.