Code Gyaan
Code Gyaan
  • 85
  • 43 724
Install Office 2024 From Microsoft for Free on MAC | Genuine Version| Download Office 2024
Download and Install Office 2024 for Mac From Microsoft for Free
#Install_Office_2024_Free
#Activate_Office_Free
✅ Please Subscribe, Comment, And Like The Video✅
The Links you need:-
(The Article Link)Install Office 2024 :- learn.microsoft.com/en-gb/office/ltsc/preview/overview-mac-preview
Buy Links:-
Buy Office 365 Personal From Microsoft:-
www.microsoft.com/en-us/micro...
office 2024 free download, Download and Install Office 2024 for Mac from Microsoft, microsoft office 2024 download, microsoft office 2024, download office 2024 free, download office 2024 offline installer free, office 2024 free download mac, office 2024 free download full version, how to download office 2024 for mac from microsoft, Download and Install Office 2024, microsoft office 2024 download free, excel, activate office 2024, office, 2024, free, install office 2024 free download, Download and Install Office 2024 for Mac, microsoft office 2024 download, download office 2024 free, download office 2024 offline installer free, office 2024 free download mac, office 2024 free download full version, how to download office 2024 for mac from microsoft, Download and Install Office 2024, microsoft office 2024 download free, excel, activate office 2024, office, 2024, free, install office 2024 free download, Download and Install Office 2024 for Mac, microsoft office 2024 download, download office 2024 free, download office 2024 offline installer free, office 2024 free download mac, office 2024 free download full version, how to download office 2024 for mac from microsoft, Download and Install Office 2024, microsoft office 2024 download free, excel, activate office 2024, office, 2024, free, install office 2024 free download, Download and Install Office 2024 for Mac, microsoft office 2024 download, download office 2024 free, download office 2024 offline installer free, office 2024 free download mac, office 2024 free download full version, how to download office 2024 for mac from microsoft, Download and Install Office 2024, microsoft office 2024 download free, excel, activate office 2024, office, 2024, free, install office 2024 free download, Download and Install Office 2024 for Mac
มุมมอง: 3 207

วีดีโอ

useClickOutside custom hook - React JS Interview Question - Frontend Machine Coding round interview
มุมมอง 9293 หลายเดือนก่อน
This video helps you in understanding and creating a custom hook where if user click outside of a given an element, The useClickOutside custom hook is a React hook used to detect clicks outside of a specified element. It involves creating a hook that uses a ref to track the element and adds an event listener to detect clicks outside of it. When a click outside is detected, a specified callback ...
useFirstRender custom hook - React JS Interview Question - Frontend Machine Coding round interview
มุมมอง 3973 หลายเดือนก่อน
This video explains how you can write a hook that tells a component whether it is a first render or not - useFirstRender The useFirstRender custom hook in React is used to determine if a component is rendering for the first time. It uses a useRef to track if the component has been rendered before. On the first render, it returns true, and on subsequent renders, it returns false. This is useful ...
Learn Django in 1 hr with Project
มุมมอง 6404 หลายเดือนก่อน
The Ultimate Django URL Shortener Project :- Welcome to our channel! In this video, we explore an exciting URL Shortener project created by Akash Bhaskar. This Python-based application simplifies long URLs into short, easy-to-share links. Whether you're a developer looking for a new project or just curious about URL shortening, this video will guide you through the setup, key features, and how ...
React js interview question (useTimeout hook)- front end machine coding round interview experience
มุมมอง 6464 หลายเดือนก่อน
This video explains how you can create your own useTimeout hook in react. The useTimeout custom hook in React provides a way to execute a function after a specified delay. It simplifies the use of setTimeout by managing the timer lifecycle, ensuring the timer is cleared when the component unmounts or the delay changes. This hook is useful for scenarios where you need to perform delayed actions ...
React interview quiz question - React re-render and misconceptions around it
มุมมอง 254 หลายเดือนก่อน
Let's understand when and how React components re-renders and solve a react interview quiz question around react component re-render cycle. State Changes Always Cause Re-renders: Not all state changes cause re-renders. React uses shallow comparison for state and props to determine if a re-render is necessary. Props Changes Always Trigger Re-renders: Similar to state, props changes trigger re-re...
how to approach and write any polyfill in JavaScript (ex: map polyfill)
มุมมอง 834 หลายเดือนก่อน
#javascript #javascriptinterview #frontenddeveloper A map polyfill in JavaScript provides functionality for environments that do not support the native Array.prototype.map method. It replicates the behavior of the map method, allowing you to apply a provided function to each element in an array, creating a new array with the results. The polyfill ensures compatibility across older browsers by a...
React JS Interview Questions ( useMemo Hook Polyfill )- Frontend Machine Coding Interview Experience
มุมมอง 1284 หลายเดือนก่อน
#JavascriptInterview #ReactInterview #reactjs The useMemo custom hook in React is designed to optimize performance by memoizing the result of a computation. It takes a function and a list of dependencies as arguments, and only re-computes the memoized value when one of the dependencies changes. This helps to avoid expensive calculations on every render, thus enhancing the efficiency of the comp...
React JS Interview Questions ( Custom useEffect Hook ) - Frontend Coding Interview Experience
มุมมอง 1034 หลายเดือนก่อน
A useEffect polyfill is typically used in React applications to ensure compatibility with older browsers or environments that do not support the useEffect hook natively. Here's a summary of how you can create a custom useEffect polyfill: Understanding useEffect: useEffect is a hook in React that allows you to perform side effects in function components. It replaces lifecycle methods like compon...
Quiz 113 - Javascript Arrays interview question #js #javascript #jsquiz
มุมมอง 274 หลายเดือนก่อน
#frontend #javascript #frontenddeveloper In JavaScript, array.push() is a method that is used to add one or more elements to the end of an array. Here's a breakdown of how it works: Syntax: array.push(element1, ..., elementN) array: The array you want to modify by adding elements to its end. element1, ..., elementN: One or more elements you want to add to the end of the array. Functionality: Th...
Quiz 131 - Async await with try catch Javascript #js #javascript #jsquiz
มุมมอง 274 หลายเดือนก่อน
The key to getting this question right is that async functions return a new promise. console.log(a() b()): false. async functions always return a new promise, so even if a() had the exact same implementation as b() (or vice-versa), it would still return false. However, do note that a() returns the promise returned by f() wrapped in another promise, while b() returns the result of the promise re...
How to build a Simple Card Component in ReactJS - Beginner Friendly Tutorial
มุมมอง 1014 หลายเดือนก่อน
Learn how to make a card component using React in this tutorial. This tutorial uses Composition design pattern. This video will help you in understanding code reusability, splitting project into components, best coding practices. In this video You will learn 1. Props validation using prop-types library. 2. Basics of ReactJs 3. Functional components 4. Passing Props 5. HTML Basics 6. CSS Basics ...
Pipe Function and Compose Function | Javascript Functional Programming Tutorial
มุมมอง 804 หลายเดือนก่อน
Pipe: The concept of pipe is simple - it combines n functions. It’s a pipe flowing left-to-right, calling each function with the output of the last one. Compose: The concept of pipe is simple - it combines n functions. It’s a pipe flowing right-to-left, calling each function with the output of the last one.
Quiz 131 - Async await with try catch Javascript #js #javascript #jsquiz
มุมมอง 1774 หลายเดือนก่อน
In the provided code, there are two asynchronous functions a() and b(), and a function start() which invokes them sequentially. Let's analyze each function: a(): - It uses await with Promise.reject(1), which immediately rejects the promise with the value 1. - Since await is used, the rejection is caught by the try...catch block. - However, Promise.reject(1) immediately throws an error, so the c...
Implement curry function in Javascript
มุมมอง 2594 หลายเดือนก่อน
Implement curry function in Javascript
Quiz 12 - Function Arguments #js #javascript #jsquiz
มุมมอง 624 หลายเดือนก่อน
Quiz 12 - Function Arguments #js #javascript #jsquiz
Quiz 11 - Implicit Type Coercion II Javascript #js #javascript #jsquiz
มุมมอง 484 หลายเดือนก่อน
Quiz 11 - Implicit Type Coercion II Javascript #js #javascript #jsquiz
Quiz 10 - Equal operator and booleam #js #javascript #jsquiz
มุมมอง 404 หลายเดือนก่อน
Quiz 10 - Equal operator and booleam #js #javascript #jsquiz
Quiz #9 - Null and undefined javascript #js #javascript #jsquiz
มุมมอง 324 หลายเดือนก่อน
Quiz #9 - Null and undefined javascript #js #javascript #jsquiz
Quiz #8 - Implicit Type Coercion #js #javascript #jsquiz
มุมมอง 444 หลายเดือนก่อน
Quiz #8 - Implicit Type Coercion #js #javascript #jsquiz
Quiz #7 - Javascript Increment Operator interview questions #js #javascript #quiz
มุมมอง 474 หลายเดือนก่อน
Quiz #7 - Javascript Increment Operator interview questions #js #javascript #quiz
Quiz #6 - Javascript Arrow function interview questions #js #javascript #quiz
มุมมอง 744 หลายเดือนก่อน
Quiz #6 - Javascript Arrow function interview questions #js #javascript #quiz
Quiz #5 - Javascript Scope from BFE.dev Javascript interview questions #js #javascript #quiz
มุมมอง 594 หลายเดือนก่อน
Quiz #5 - Javascript Scope from BFE.dev Javascript interview questions #js #javascript #quiz
Quiz #4 - Promise then callbacks II from BFE.dev Javascript interview question #js #javascript #quiz
มุมมอง 674 หลายเดือนก่อน
Quiz #4 - Promise then callbacks II from BFE.dev Javascript interview question #js #javascript #quiz
Quiz #3 - Promise then callbacks from BFE.dev Javascript interview questions #js #javascript #quiz
มุมมอง 1244 หลายเดือนก่อน
Quiz #3 - Promise then callbacks from BFE.dev Javascript interview questions #js #javascript #quiz
Quiz #2 - Promise Executor from BFE.dev Javascript interview quiz questions #js #javascript
มุมมอง 595 หลายเดือนก่อน
Quiz #2 - Promise Executor from BFE.dev Javascript interview quiz questions #js #javascript
Quiz #1 - Promise Order from BFE.dev Javascript interview quizzes questions #js #javascript #quiz
มุมมอง 2235 หลายเดือนก่อน
Quiz #1 - Promise Order from BFE.dev Javascript interview quizzes questions #js #javascript #quiz
Leetcode 199 Binary Tree Right Side View using BFS approach
มุมมอง 515 หลายเดือนก่อน
Leetcode 199 Binary Tree Right Side View using BFS approach
How to Speed Up YouTube Videos 2x, 3x, & more
มุมมอง 2.2K5 หลายเดือนก่อน
How to Speed Up TH-cam Videos 2x, 3x, & more
Deploy a Django web app to Python Anywhere in 5 Mins [FREE]
มุมมอง 13K6 หลายเดือนก่อน
Deploy a Django web app to Python Anywhere in 5 Mins [FREE]

ความคิดเห็น

  • @pawanpal1849
    @pawanpal1849 2 ชั่วโมงที่ผ่านมา

    something went wrong

  • @Chandril-p2g
    @Chandril-p2g 2 วันที่ผ่านมา

    hello sir can you make a video from where you make the auto portfolio maker? i liked the website

  • @shreyas.dmohan1830
    @shreyas.dmohan1830 4 วันที่ผ่านมา

    when I am downloading and opening the apps there is a sign at the bottom saying Activate ,can you please tell how to activate it because all the options are not available to use (like save, paste etc)

  • @mohitarora2190
    @mohitarora2190 6 วันที่ผ่านมา

    nice but u have not covered the cleanup effect.

    • @codegyaan
      @codegyaan 6 วันที่ผ่านมา

      Yes you need to return a function from an effect which will be executed on unmount.

  • @coderush24
    @coderush24 8 วันที่ผ่านมา

    Can I deploy Django Rest framework in the same way?

    • @codegyaan
      @codegyaan 7 วันที่ผ่านมา

      Give it a try

  • @melanieleboeuf6816
    @melanieleboeuf6816 9 วันที่ผ่านมา

    It is not working for me. I have followed every step and the apps are still not activated. Could you please help me?

    • @codegyaan
      @codegyaan 6 วันที่ผ่านมา

      in that case ,uh will have to buy it.

    • @princesinha4717
      @princesinha4717 47 นาทีที่ผ่านมา

      Use this link for office and volume serializer

  • @gulfamshahzad7716
    @gulfamshahzad7716 10 วันที่ผ่านมา

    Its Great. Working Fine. Should we go for the Microsoft Update

    • @codegyaan
      @codegyaan 9 วันที่ผ่านมา

      I have not tried that yet. You can give it a try. If it does n0t work you can always uninstall and install.

  • @otfxsahil4799
    @otfxsahil4799 10 วันที่ผ่านมา

    which application you are using for py code

    • @codegyaan
      @codegyaan 10 วันที่ผ่านมา

      PyCharm

  • @saichandugirra4152
    @saichandugirra4152 10 วันที่ผ่านมา

    bro have got error after save code do reload and open configuration in new tap got error something went wrong

  • @MwishaLudack
    @MwishaLudack 15 วันที่ผ่านมา

    Good job buddy.

    • @codegyaan
      @codegyaan 14 วันที่ผ่านมา

      Thanks 👍

  • @pawansonole9127
    @pawansonole9127 22 วันที่ผ่านมา

    good content for how many days office will be usable ?

    • @codegyaan
      @codegyaan 21 วันที่ผ่านมา

      Use it till it’s working. Uninstall and install again. It will work again. Keep x-celing

  • @monishathanikaimani2825
    @monishathanikaimani2825 24 วันที่ผ่านมา

    Thank you 🙏

    • @codegyaan
      @codegyaan 24 วันที่ผ่านมา

      You’re welcome 😊 Subscribe and share with your friends :)

  • @cryptolove9992
    @cryptolove9992 28 วันที่ผ่านมา

    Thanks bro for this video, very helpful

    • @codegyaan
      @codegyaan 28 วันที่ผ่านมา

      Glad it helped

  • @KhepriEdits5
    @KhepriEdits5 หลายเดือนก่อน

    ty!

    • @codegyaan
      @codegyaan 29 วันที่ผ่านมา

      Your welcome

  • @user-san-chous
    @user-san-chous หลายเดือนก่อน

    Why you didn't add "pc" to the title? Everyone can change on pc. People want to know how to change on phone

    • @codegyaan
      @codegyaan 21 วันที่ผ่านมา

      There is no way on phone.

  • @MyroslavRepin
    @MyroslavRepin หลายเดือนก่อน

    Why django styles for admin panel not work?

    • @codegyaan
      @codegyaan 24 วันที่ผ่านมา

      There are two ways to fix this. The ugly/hacky way is to add a specific static files mapping pointing at the django admin css folder: url: /static/admin path: /usr/local/lib/python3.10/dist-packages/django/contrib/admin/static/admin/ (or the path to the same folder inside your virtualenv, if you're using one) But that's an ugly hack, and you'll soon run into problems with the rest of your CSS not loading. The "proper" way to do it is to make sure you've got django.contrib.admin loaded in your INSTALLED_APPS, and then run collectstatic. There's a full guide to django static files here--help.pythonanywhere.com/pages/DjangoStaticFiles

  • @sir-stevenc.gwoleh.3672
    @sir-stevenc.gwoleh.3672 หลายเดือนก่อน

    why did you select python 3.10?

    • @codegyaan
      @codegyaan 29 วันที่ผ่านมา

      Because my project was dependent on that

  • @mbungaimichaelbernard3717
    @mbungaimichaelbernard3717 หลายเดือนก่อน

    Thanks , it was very helpful and I was able to host my website

    • @codegyaan
      @codegyaan 29 วันที่ผ่านมา

      Glad it helped

  • @sujalgupta6100
    @sujalgupta6100 หลายเดือนก่อน

    can we use arrow function as the inner function to return? Shouldn't we use use arrow function ideally as it will not have its own context

    • @codegyaan
      @codegyaan หลายเดือนก่อน

      Give it a try

  • @KillerxEditz
    @KillerxEditz หลายเดือนก่อน

    i got server error

    • @codegyaan
      @codegyaan 24 วันที่ผ่านมา

      You must have missed some step

  • @nitishdurga2704
    @nitishdurga2704 หลายเดือนก่อน

    hello sir, eralier i saw you video and deployed my website and it worked fine. but later when i updated my code and once againg deployed my code it didnot work. it was saying module not found error for the module that i didnot even use.

    • @codegyaan
      @codegyaan 21 วันที่ผ่านมา

      Did it work or are you still facing the issue? No sir bro. Bro is fine.

  • @taihatranduc8613
    @taihatranduc8613 หลายเดือนก่อน

    you saved me

  • @sleeplessfella1205
    @sleeplessfella1205 หลายเดือนก่อน

    Will this method work for serving react frontend as html via Django views

    • @codegyaan
      @codegyaan หลายเดือนก่อน

      i have not tried that way , but give it a try . forum related to your querry- www.pythonanywhere.com/forums/topic/27473/

    • @sleeplessfella1205
      @sleeplessfella1205 หลายเดือนก่อน

      @@codegyaan thanks I appreciate your help

  • @danielenrico8124
    @danielenrico8124 หลายเดือนก่อน

    Thanks for this great walkthrough. Quick question though, why do we have to set the ref initially to null?

    • @codegyaan
      @codegyaan หลายเดือนก่อน

      We can set the cb function too initially as ref. Not an issue. Both are correct

  • @StillDeveloper
    @StillDeveloper 2 หลายเดือนก่อน

    why the styles is not being displayed sir

    • @codegyaan
      @codegyaan 2 หลายเดือนก่อน

      error?

  • @gamingarea9011
    @gamingarea9011 2 หลายเดือนก่อน

    Not working. After deploying it is saying something went wrong.

    • @codegyaan
      @codegyaan 2 หลายเดือนก่อน

      try taking help from Chatgpt a bit !

  • @user-ce1zb9vb9b
    @user-ce1zb9vb9b 2 หลายเดือนก่อน

    W

    • @codegyaan
      @codegyaan 2 หลายเดือนก่อน

      X

  • @CodingBRO
    @CodingBRO 2 หลายเดือนก่อน

    my website got deployed ,but i have images in that ,it is not rendering,only the text is showing,plz reply bro

    • @codegyaan
      @codegyaan 2 หลายเดือนก่อน

      watch the video carefully and make changes to the directly according to your project .

  • @maazshaikh7905
    @maazshaikh7905 2 หลายเดือนก่อน

    how to specify the media directory for user uploads

    • @codegyaan
      @codegyaan 2 หลายเดือนก่อน

      its explained in the video !

  • @vijay.gholve
    @vijay.gholve 2 หลายเดือนก่อน

    bro mera project bada aur usme django default database use kiyà hai so deploye karne problem aa raha hai

    • @vijay.gholve
      @vijay.gholve 2 หลายเดือนก่อน

      if you don't m mind can you give me your number

    • @codegyaan
      @codegyaan 2 หลายเดือนก่อน

      Bro default me prob nhi hona chahie

  • @Samital-fl7yx
    @Samital-fl7yx 3 หลายเดือนก่อน

    I have difficulty to host my project after watching your video can you help me ????? Its urgent

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      error?

  • @adetolaayeni1143
    @adetolaayeni1143 3 หลายเดือนก่อน

    my admin page of the site is messed up

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      ummm, in my case it worked try not to miss any steps and also read the description for setting up wsgi file.

  • @remixesandmashups4826
    @remixesandmashups4826 3 หลายเดือนก่อน

    actually the i got a wsgi error i did exactly u said buts its not deploying

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      i have added few things that need to be done check it in the description section. if it wont work let me know

    • @remixesandmashups4826
      @remixesandmashups4826 3 หลายเดือนก่อน

      @@codegyaan I have did that too but ain't working

  • @remixesandmashups4826
    @remixesandmashups4826 3 หลายเดือนก่อน

    hey i wanna connect with you i have some doubts

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      tell me the error.

  • @bananad3798
    @bananad3798 3 หลายเดือนก่อน

    Огромное тебе спасибо!

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      Your welcome

  • @GamerNoob-Tech
    @GamerNoob-Tech 3 หลายเดือนก่อน

    hy i have done each step as shown in video my project is dashboard wth postgresql it may have problem something went wrong saying in browser

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      if you want to use postgres then you need to get paid plan of pythonanywhere.

    • @GamerNoob-Tech
      @GamerNoob-Tech 3 หลายเดือนก่อน

      @@codegyaan thanks for help

  • @ROHITkumar76355
    @ROHITkumar76355 3 หลายเดือนก่อน

    Very informative videos

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      Glad it helped.

  • @pr1meKun
    @pr1meKun 3 หลายเดือนก่อน

    Good to see you back

  • @Sapitoshka
    @Sapitoshka 3 หลายเดือนก่อน

    Я не понимаю 😭😭😭😭😭😭

    • @ROHITkumar76355
      @ROHITkumar76355 3 หลายเดือนก่อน

      В следующий раз он попробует кодировать и на русском языке😂😂

    • @Sapitoshka
      @Sapitoshka 3 หลายเดือนก่อน

      @@ROHITkumar76355 я не понимаю не только английский язык, я не понимаю также информатику 😒

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      @@Sapitoshka we will teach you

    • @Sapitoshka
      @Sapitoshka 3 หลายเดือนก่อน

      @@codegyaan I don't have the money to pay your tuition, and anyway, I'm going to be a lawyer, not a computer scientist. 😈

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      @@Sapitoshka That's why we are on youtube

  • @jyotiprasadpatil5300
    @jyotiprasadpatil5300 3 หลายเดือนก่อน

    Great going akash

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      🥳

  • @ritikasinha9660
    @ritikasinha9660 3 หลายเดือนก่อน

    Thanku for sharing this video❤

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      Glad you found it helpful!

  • @NishantKumar-ir2cn
    @NishantKumar-ir2cn 3 หลายเดือนก่อน

    great project to start with ,for college students .. keep it up

    • @codegyaan
      @codegyaan 3 หลายเดือนก่อน

      Thank you, I will

  • @uyletruong9091
    @uyletruong9091 4 หลายเดือนก่อน

    So inline-flex is combined between inline and flex 😂

    • @codegyaan
      @codegyaan 4 หลายเดือนก่อน

      True 😅

    • @codegyaan
      @codegyaan 4 หลายเดือนก่อน

      Great catch

  • @ankushmaurya9426
    @ankushmaurya9426 4 หลายเดือนก่อน

    • @codegyaan
      @codegyaan 4 หลายเดือนก่อน

      Glad it helped

  • @deeplahiri5668
    @deeplahiri5668 4 หลายเดือนก่อน

    Awesome project

    • @codegyaan
      @codegyaan 4 หลายเดือนก่อน

      Thank you! Cheers!

  • @bhushandharne8827
    @bhushandharne8827 4 หลายเดือนก่อน

    Great Project...

    • @codegyaan
      @codegyaan 4 หลายเดือนก่อน

      Thank you! Cheers!

  • @TheLoneMan-fk2iu
    @TheLoneMan-fk2iu 4 หลายเดือนก่อน

    show a video on how to do the procfile, requirement.txt and the rest

    • @codegyaan
      @codegyaan 4 หลายเดือนก่อน

      this tutorial was just to make things simple and host the beginner friendly projects.i will surely make a video on your prob in some time. thanks for the input.

  • @akashbhaskar.2011
    @akashbhaskar.2011 4 หลายเดือนก่อน

    pro

    • @codegyaan
      @codegyaan 4 หลายเดือนก่อน

  • @kranthikiran9914
    @kranthikiran9914 4 หลายเดือนก่อน

    100 seconds is enough for one day?

    • @codegyaan
      @codegyaan 4 หลายเดือนก่อน

      ?

    • @36-tycm-i-riteshmahale54
      @36-tycm-i-riteshmahale54 2 หลายเดือนก่อน

      i host my small production projects there its more than enough

  • @mumtazdev
    @mumtazdev 4 หลายเดือนก่อน

    I ended up getting the 'Debugging tips' Something went wrong result when I went to the site and it didn't work. What to do. How did you make DEBUG in settings.py?