Is frontend not too saturated at this time? Would they all get jobs?
@GroovieKetchup2 күн бұрын
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 🙏
@anonymousgamer28392 күн бұрын
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.
@bryandelacruz90663 күн бұрын
2:50 I never imagine i will see this damn train meme in videos like this lool
@NOREL_shorts3 сағат бұрын
Hahaha it is not an instagram, chill
@mbob63 күн бұрын
Its been 6 months
@kingharis-e3i5 күн бұрын
this video is not for beginners
@Rasheed-y6y8 күн бұрын
Hi sir! There is no link for download please.😢
@KiranSuntankar9 күн бұрын
How we can get databases of this application
@FameTame9 күн бұрын
theme lol pls
@dev_ression8 күн бұрын
@@FameTame Palenight
@devrimsarikaya11 күн бұрын
teşekkürler
@Mercilessly.11 күн бұрын
hey i need help with an error saying "errpr fetching current weather data. please try again"
@suryaramesh669612 күн бұрын
Had a few errors, asked chatgpt to correct them and it's all working. Thank you for this amazing tutorial!
@dev_ression11 күн бұрын
@@suryaramesh6696 legend. ChatGPT will be your best friend in these instances!
@SnailyDevBrand14 күн бұрын
7:47 you can just refresh the page
@thetroiimaster15 күн бұрын
I'm mad. Tabnine fixed an issue immediately which took me hours of trying to fix with no avail.
@VisibleLineQ15 күн бұрын
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'.
@bhanusaini78916 күн бұрын
computer has ability to turn on...codehub😜😜
@ememoffiong172818 күн бұрын
I followed all the steps but my calculator is not working
@dev_ression14 күн бұрын
What error are you receiving?
@Prompt-Bit18 күн бұрын
GlassIt-VSC
@SarahJay-v5s19 күн бұрын
This is really useful for beginners. I think I’ll share this with my friends who are just starting with VS Code!
@peterdefreitas-m8j19 күн бұрын
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!
@nathanfowler954120 күн бұрын
This calculator only works for floating numbers unless dividing, switching to negative, or creating a percentage
@motutalaputa21 күн бұрын
THANK YOU!! I'm just getting into coding and this was so easy to follow
@Cacowninja22 күн бұрын
0:00 Start
@irenakinz298822 күн бұрын
You saved my lifeee, literally😮💨😂 thnk uuuuuuu so
@dev_ression19 күн бұрын
Glad I helped!
@goodmantshabalala-ei9vm24 күн бұрын
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_ression19 күн бұрын
I'll keep this in mind for future videos, thank you
@Warthog0624 күн бұрын
Vscode is VERY underground
@dev_ression23 күн бұрын
Extremely! I've never heard of it before!
@storykids12327 күн бұрын
good video
@ISAX1627 күн бұрын
should've added a pause feature for this game
@lucidboy943628 күн бұрын
tabnine isnt free so pls let us know that
@cucciolo18228 күн бұрын
Really nice. It's crazy how much things have changed in just nine months.
@Mila_zef28 күн бұрын
# 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Ай бұрын
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Ай бұрын
buvini omi
@malekameer2226Ай бұрын
why my css is not working
@bloodykiller639Ай бұрын
did u put <link> in html?
@isntitepic89127 күн бұрын
Put <link> tag in html
@bluebifyАй бұрын
*process 😅
@phenoumeneАй бұрын
hi again! could be great to see chapters in your videos - thank you again!
@phenoumeneАй бұрын
i've chosen Bearded Icons thanks for your advices ✌
@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Ай бұрын
@@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Ай бұрын
i couldnt find to complete button section
@vivdeluxАй бұрын
What IDE do you use?
@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Ай бұрын
What's the name of the theme?!
@NKATEKOCHAUKE-b7iАй бұрын
What's the name of an app you using??
@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