Пікірлер
@ShadowTodem
@ShadowTodem 18 минут бұрын
Very nice
@dawutowezow6009
@dawutowezow6009 Күн бұрын
How to i add animation
@saleh3888
@saleh3888 Күн бұрын
17:00
@jenniferokafor3156
@jenniferokafor3156 2 күн бұрын
Is frontend not too saturated at this time? Would they all get jobs?
@GroovieKetchup
@GroovieKetchup 2 күн бұрын
Thank you so much for your helpful tutorial! I was able to fix the error and everything works great now. I really appreciate your time and effort 🙏
@anonymousgamer2839
@anonymousgamer2839 2 күн бұрын
Dude I just pulled up neovim and used nvchad-git for customization. From that point no turning back for me :). @8:24 What are you doing, why don't you just try unzipping it. It is a zip file unless a .xlsx binary. Even vim can open it without any problems if it is a zip file.
@bryandelacruz9066
@bryandelacruz9066 3 күн бұрын
2:50 I never imagine i will see this damn train meme in videos like this lool
@NOREL_shorts
@NOREL_shorts 3 сағат бұрын
Hahaha it is not an instagram, chill
@mbob6
@mbob6 3 күн бұрын
Its been 6 months
@kingharis-e3i
@kingharis-e3i 5 күн бұрын
this video is not for beginners
@Rasheed-y6y
@Rasheed-y6y 8 күн бұрын
Hi sir! There is no link for download please.😢
@KiranSuntankar
@KiranSuntankar 9 күн бұрын
How we can get databases of this application
@FameTame
@FameTame 9 күн бұрын
theme lol pls
@dev_ression
@dev_ression 8 күн бұрын
@@FameTame Palenight
@devrimsarikaya
@devrimsarikaya 11 күн бұрын
teşekkürler
@Mercilessly.
@Mercilessly. 11 күн бұрын
hey i need help with an error saying "errpr fetching current weather data. please try again"
@suryaramesh6696
@suryaramesh6696 12 күн бұрын
Had a few errors, asked chatgpt to correct them and it's all working. Thank you for this amazing tutorial!
@dev_ression
@dev_ression 11 күн бұрын
@@suryaramesh6696 legend. ChatGPT will be your best friend in these instances!
@SnailyDevBrand
@SnailyDevBrand 14 күн бұрын
7:47 you can just refresh the page
@thetroiimaster
@thetroiimaster 15 күн бұрын
I'm mad. Tabnine fixed an issue immediately which took me hours of trying to fix with no avail.
@VisibleLineQ
@VisibleLineQ 15 күн бұрын
Good work. but, when using the iPhone calculator, we see the operation path, but it's not completely accurate because it doesn't display the arithmetic symbols. For example, it shows '12 3' instead of '12 + 3'.
@bhanusaini789
@bhanusaini789 16 күн бұрын
computer has ability to turn on...codehub😜😜
@ememoffiong1728
@ememoffiong1728 18 күн бұрын
I followed all the steps but my calculator is not working
@dev_ression
@dev_ression 14 күн бұрын
What error are you receiving?
@Prompt-Bit
@Prompt-Bit 18 күн бұрын
GlassIt-VSC
@SarahJay-v5s
@SarahJay-v5s 19 күн бұрын
This is really useful for beginners. I think I’ll share this with my friends who are just starting with VS Code!
@peterdefreitas-m8j
@peterdefreitas-m8j 19 күн бұрын
Great video! I recently started using the Astirna New Tab extension, and it really helps me keep track of my tasks while coding. Definitely a game changer!
@nathanfowler9541
@nathanfowler9541 20 күн бұрын
This calculator only works for floating numbers unless dividing, switching to negative, or creating a percentage
@motutalaputa
@motutalaputa 21 күн бұрын
THANK YOU!! I'm just getting into coding and this was so easy to follow
@Cacowninja
@Cacowninja 22 күн бұрын
0:00 Start
@irenakinz2988
@irenakinz2988 22 күн бұрын
You saved my lifeee, literally😮‍💨😂 thnk uuuuuuu so
@dev_ression
@dev_ression 19 күн бұрын
Glad I helped!
@goodmantshabalala-ei9vm
@goodmantshabalala-ei9vm 24 күн бұрын
Great tutorial but speak while coding it helps us to understand the context better rather than you coding fast and not sharing wat u doing mate
@dev_ression
@dev_ression 19 күн бұрын
I'll keep this in mind for future videos, thank you
@Warthog06
@Warthog06 24 күн бұрын
Vscode is VERY underground
@dev_ression
@dev_ression 23 күн бұрын
Extremely! I've never heard of it before!
@storykids123
@storykids123 27 күн бұрын
good video
@ISAX16
@ISAX16 27 күн бұрын
should've added a pause feature for this game
@lucidboy9436
@lucidboy9436 28 күн бұрын
tabnine isnt free so pls let us know that
@cucciolo182
@cucciolo182 28 күн бұрын
Really nice. It's crazy how much things have changed in just nine months.
@Mila_zef
@Mila_zef 28 күн бұрын
# Just copy and paste this python code guys i hope it helps import tkinter as tk from tkinter import ttk def handle_button_click(clicked_button_text): current_text = result_var.get() if clicked_button_text == "=": try: # Replace custom symbols with Python operators expression = current_text.replace("÷", "/").replace("×", "*") result = eval(expression) # Check if the result is a whole number if result.is_integer(): result = int(result) result_var.set(result) except Exception as e: result_var.set("Error") elif clicked_button_text == "C": result_var.set("") elif clicked_button_text == "%": # Convert the current number to a decimal by dividing it by 100 try: current_number = float(current_text) result_var.set(current_number / 100) except ValueError: result_var.set("Error") elif clicked_button_text == "±": # Convert the current number to its negative try: current_number = float(current_text) result_var.set(-current_number) except ValueError: result_var.set("Error") else: result_var.set(current_text + clicked_button_text) # Create the main window root = tk.Tk() root.title("Calculator") # Entry widget to display the result with larger font size result_var = tk.StringVar() result_entry = ttk.Entry(root, textvariable=result_var, font=("Helvetica", 24), justify="right") result_entry.grid(row=0, column=0, columnspan=4, sticky="nsew") # Button layout buttons = [ ("C", 1, 0), ("±", 1, 1), ("%", 1, 2), ("÷", 1, 3), ("7", 2, 0), ("8", 2, 1), ("9", 2, 2), ("×", 2, 3), ("4", 3, 0), ("5", 3, 1), ("6", 3, 2), ("-", 3, 3), ("1", 4, 0), ("2", 4, 1), ("3", 4, 2), ("+", 4, 3), ("0", 5, 0, 2), (".", 5, 2), ("=", 5, 3) ] # Configure style for theme style = ttk.Style() style.theme_use('default') style.configure("TButton", font=("Helvetica", 16), width=10, height=4) # Create buttons and add them to the grid for button_info in buttons: button_text, row, col = button_info[:3] colspan = button_info[3] if len(button_info) > 3 else 1 button = ttk.Button(root, text=button_text, command=lambda text=button_text: handle_button_click (text), style="TButton") button.grid(row=row, column=col, columnspan=colspan, sticky="nsew", ipadx=10, ipady=4, padx=5, pady=5) # Configure row and column weights so that they can expand proportionally for i in range(6): root.grid_rowconfigure(i, weight=1) for i in range(4): root.grid_columnconfigure(i, weight=1) # Set the window size to 9:16 ratio width = 500 height = 700 root.geometry(f"{width}x{height}") # Make the window non-resizable root.resizable(False, False) # Keyboard control root.bind("<Return>", lambda event: handle_button_click("=")) root.bind("<BackSpace>", lambda event: handle_button_click("C")) # Run the main loop root.mainloop() # Now that's it and it's done
@raeestheviewer224
@raeestheviewer224 Ай бұрын
One thing I notice about coding a calculator myself is that the percentage sign "%" never work properly or me. It doesn't stop the code from running and if you did 10%100 it'll give you the right answer but if you were to do 10%20 it'll still give you 10 instead of 2. I don't understand why though??
@Dovud-e5l
@Dovud-e5l Ай бұрын
buvini omi
@malekameer2226
@malekameer2226 Ай бұрын
why my css is not working
@bloodykiller639
@bloodykiller639 Ай бұрын
did u put <link> in html?
@isntitepic8912
@isntitepic8912 7 күн бұрын
Put <link> tag in html
@bluebify
@bluebify Ай бұрын
*process 😅
@phenoumene
@phenoumene Ай бұрын
hi again! could be great to see chapters in your videos - thank you again!
@phenoumene
@phenoumene Ай бұрын
i've chosen Bearded Icons thanks for your advices ✌
@seitbekir
@seitbekir Ай бұрын
Many things on this video is just outdated and not useful, but makes more garbage in process of building code. Really, the useful is excel vie the only. And just because it was randomly included. For example, it might be very good if your showed how to configure language server for various llvm languages, or stuff like running code generating via LLAMA. But this is just… fix typo, seriously? Formatted on save (which is already available and no need for extension). And there is a formatted rules for a reason, not just to make it pretty. It is to make less non-feature related changes in repo. And people use more specific for matters like prettier or biome. Ok, nice start for juniors, but I really recommend to try to mask better for your own usage and team collaboration. Also, here is nothing about git…
@dev_ression
@dev_ression Ай бұрын
@@seitbekir Thank you for the feedback man, I appreciate it. You’ll notice the video is stamped “9 months ago”. If you’d like me to make an updated video I’d be more than happy to :)
@millionaireshortsSubscribe
@millionaireshortsSubscribe Ай бұрын
i couldnt find to complete button section
@vivdelux
@vivdelux Ай бұрын
What IDE do you use?
@albyx
@albyx Ай бұрын
Really enjoyed this video but could you please make an update video? It seems that Tabnine now offers multiple tiers, and they have an extension that is a 'hub'? And there also seems to be a tool that installs multiple extensions, including tabnine/coderunner/live server. Apologies in advance!
@hlse7en
@hlse7en Ай бұрын
What's the name of the theme?!
@NKATEKOCHAUKE-b7i
@NKATEKOCHAUKE-b7i Ай бұрын
What's the name of an app you using??
@theseus013059
@theseus013059 Ай бұрын
1. Prioritising Tasks 0:18 2. Code in blocks of time 0:51 3. Use Version Control 1:39 4. Automate repetitive tasks 2:09 5. Effective debugging 2:32 6. Optimize Dev Environment 3:11 7. Code reviews + pair programming 3:54 8. Write clean code 4:48 9. Stay updated 6:03 10. Manage distraction 6:40 11. Healthy work habits 7:28 12. Effective Communication 8:18 13. Refactor regularly 9:06 14. Test-Driven Development 9:33 15. Utilize online resources 10:09
@saiteja7985
@saiteja7985 Ай бұрын
Tq bro
@dev_ression
@dev_ression Ай бұрын
@@saiteja7985 thanks for watching!