- 14
- 470
coding_with _ojas
Приєднався 23 кві 2024
My new favourite browser that nobody is talking about !!!
Hello everyone and happy new year, this is coding_with_ojas back with a another video after a long time and in this video I will be talking about my new favourite browser that nobody is talking about. I mean it is true that there are some videos, but I do keep switching browsers and watch reviews about them, and still no video popped up in my youtube page for me so I guess that not many people talk about this browser.
------------------------------------------
Browser download: duckduckgo.com/app
------------------------------------------
I hope you enjoy the video. Have a nice day :)
------------------------------------------
Browser download: duckduckgo.com/app
------------------------------------------
I hope you enjoy the video. Have a nice day :)
Переглядів: 6
Відео
The new firefox css theme I use. And you should too !!
Переглядів 128Місяць тому
Hello everyone, this is coding_with_ojas and today I have a video on the best firefox css theme I use these days that are super good looking and can make your browser look better. I used to use Modblur but now I use this theme. Make sure to like, comment, and subscribe to my channel for more content on customization and coding. My Github repository: github.com/coding-with-ojas/Coding-with-ojas-...
10 VS code extensions you need to use right now !!
Переглядів 41Місяць тому
Hello everyone this is coding_with_ojas and today I will show you 10 vs code extensions that I use on a daily basis and you will too. These extensions are excellent and I am assuring you that you will use atleast one of these extensions. I hope you enjoyed the video and make sure to like, comment and subscribe. I may even include your comment in a video so make sure to comment down below and yo...
How to make a console calculator program using C++
Переглядів 13Місяць тому
Hello everyone, this is coding_with_ojas and today I will show you how to make a console calculator program using C . This video includes using switch statements and input and output. I hope you enjoyed the video and make sure to like, comment and subscribe if you want more content like this. All code in this video is in my GitHub repository. My GitHub repository: github.com/coding-with-ojas/Co...
5 firefox css themes that will make your browser look new.
Переглядів 1412 місяці тому
Hello everyone ! This is coding with ojas taday with a video on customization. Today i will show you some minimal and eye-catching themes and also how to install them !!! This was a good video and a video which is, for the first time, not related to coding, kind of? By the way, nothing of this is sponsered. I liked these themes and wanted to share with you.Sadly, the vertical bars theme didn't ...
How to make a hypotenuse finder program using 3 different programming languages
Переглядів 85 місяців тому
Hello everyone, this is coding with ojas and today I will show you how to make a hypotenuse finder program using 3 different programming languages which are python, java and c . You can check out my github repository to get all the code shown in this video: github.com/coding-with-ojas/Coding-with-ojas-repository Check out my discord server discord.gg/xv4qx5Ms. In this discord server you can tel...
how to make a pig game using python
Переглядів 375 місяців тому
Hello everyone this is coding with ojas and today I will show you how you can use python to make a PIG game which you can play with your friends. Disclaimer - I DO NOT encourage gambling ! Please don't use this code to gamble money or anything. My Discord server - discord.gg/9dCcvd49You can join my discord server and talk to me, help me make the server better, and give me youtube ideas. You can...
How to use the json module in python to save and load data
Переглядів 56 місяців тому
Hello everyone this is coding with ojas and today I will show you how you can use the python json module to save and load data. Hope you enjoy the video and have a nice day. Links: Discord server: discord.gg/7Gra9CBk Please help me by join my discord server and showing me how I can share the github repository link with all of you.
4 tips to make your code look better
Переглядів 127 місяців тому
Hello everyone this is coding with ojas and today i will show you how you can make your code look better. I hope you enjoy the video and use the tips to make your code look better Chapters: 0:00 intro 0:22 Tip 1 3:18 Tip 2 7:13 Tip 3 16:17 Tip 4 30:16 outro #coding #python #tips #codingtips #codingtricks #pycharm
How to make a shooter game using pygame in python | Extra | Part 3
Переглядів 128 місяців тому
Hello everyone this is coding_with_ojas and today i have released the 3rd part on the series 'How to make a shooter game using pygame in python'. This video will show some extra things you could do with your game like add lost screen, add a background image and some minor adjustments.Hope you enjoyed the video and have a nice day! #code #python #game #pygame #shooter
How to make a shooter game using pygame in python | Part 2
Переглядів 178 місяців тому
Hello everyone, this is coding with ojas and i have finally gotten the second part on how to make a shooter game using python's pygame module. Sorry about the late video, I didn't got time to make the second part for some weeks and i finally got time today to make it. Hope you enjoyed the video and followed it correctly.Have a nice day. By the way sorry that i cant provide the code it is too mu...
How to make a shooter game using pygame in python | Part 1
Переглядів 348 місяців тому
Hello everyone This is coding with ojas Today i will make a simple space shooter game using pygame module in python.This it the part 1 of this video. Link for part 2: ua-cam.com/video/G9D5HcQASno/v-deo.html If you completed the video then great job. Pat your self on the back. Have a nice day 😄 #python #shooter #code #pygame #programming
how to make a rock paper scissors program using tkinter.
Переглядів 88 місяців тому
Hello everyone! Today I will be making a simple rock paper scissors program using tkinter module in python. Hope you have a nice day. By the way I couldn't provide the code as it was too much big to fit in here. If you want the code then sorry but I couldn't provide the code. You can still watch the video and make the code #code #game #programming #python #rockpaperscissors
How to make a simple rock paper scissor program using python
Переглядів 128 місяців тому
Hello everyone ! Hope you enjoyed the video. Here is the code: ''' import random import time choices = { 1: 'rock', 2: 'paper', 3: 'scissor' } while True: player_choice = input('Type rock, paper or scissor (or type "quit" to quit): ').lower() computer_choice = choices.get(random.randint(1, 3)) if player_choice != 'rock' and player_choice != 'paper' and player_choice != 'scissor' and player_choi...