Prashant Rana
Prashant Rana
  • Видео 84
  • Просмотров 504 610

Видео

How to Install C in Visual Studio Code | MacOS M2/M3 2024
Просмотров 2472 месяца назад
In this Video we will see How to Install the C Extensions in Visual Studio Code in MacOS, To be able to run and execute the C Programs in VS Code. Install VS Code - ruclips.net/video/Pd10iYERYtI/видео.html #cprogramming #cextenstions #visualstudio #vscode #vscodeextensions
How to Install and Configure GIT in MacOS | LInux/Unix 2024
Просмотров 832 месяца назад
In this Video we will see How we can Download and Install Git on MacOS along with Linux and Windows. Git Download URL - git-scm.com/download/mac Homebrew Download URL - brew.sh Commands - Git Install Command - brew install git Verify Git - git version #github #git #gitlab #bitbucket
Stack Data Structure | Stack with Arrays & LinkedList | Stack in Java | Data Structures Tutorials 1
Просмотров 482 месяца назад
Hello Everyone, We'll now learn the Data Structures starting with Stack Data Structure. As Stack is a Linear Data Structure, that follows the LIFO Structure. We'll see the Stack Operations - Push Pop Peek Also we'll see How to to do Stack with Arrays, ArrayList and LinkedList, alongside the Stack DS in Java. #stack #datastructuresalgorithms #stackds #dsalgo #java
Install Apache Ant on MacOS | Configure & Install | M2/M3 2024
Просмотров 2962 месяца назад
In this Video we will see How to Install Apache Ant on MacOS, We will Configure and Install the Apache Ant on MacOS on M2 Based System. Download ANT - ant.apache.org/bindownload.cgi Install Java JDK on Mac - ruclips.net/video/CWGpNKWpgxU/видео.html Steps for Install - - First we need to go to Downloads Folder, where we will be having the apache-ant zip File. - Then we will be unzipping the apac...
How to Install XAMPP on MacOS | Download & Install | 2024
Просмотров 1592 месяца назад
In this Video, we will Learn, How to Install the XAMPP Server on MacOS. Download URL - www.apachefriends.org/download.html #xampp #xamppserver
How to Install Bootstrap in Visual Studio Code | Test & Run Bootstrap
Просмотров 2703 месяца назад
In this Video we will see How to Install the Bootstrap Extension and run Bootstrap Code in Visual Studio Code. Install Visual Studio Code in MAC - #visualstudio #visualstudiocode
How to Update NodeJs and NPM in MacOS
Просмотров 4393 месяца назад
In this Video we will see, How we can Update NodeJS and NPM through NVM in MacOS. Before Updating the Node and Npm, we need to Install the NVM in our MacOS Machine. Command to Install - NVM github URL - github.com/nvm-sh/nvm After Installing the NVM, We can proceed towards Updation Part, where we will first be Updating the Node and then NPM. Command - nvm install node Command - npm -g install n...
Data Structures and Algorithms Heap Sort | Time Complexity | DSA Programming
Просмотров 373 месяца назад
Heap sort is a comparison-based sorting technique based on Binary Heap data structure. It is similar to the selection sort where we first find the minimum element and place the minimum element at the beginning. Repeat the same process for the remaining elements. Complexity Analysis of Heap Sort Time Complexity: O(N log N) Auxiliary Space: O(log n), due to the recursive call stack. However, auxi...
Data Structures and Algorithms Counting Sort | Time Complexity | DSA Programming
Просмотров 254 месяца назад
Counting sort is an integer sorting algorithm used in computer science to collect objects according to keys that are small positive integers. It works by determining the positions of each key value in the output sequence by counting the number of objects with distinct key values and applying prefix sum to those counts. Complexity Analysis of Counting Sort: Time Complexity: O(N M), where N and M...
How to Run C++ Program in VS Code | Install in MacOS 2024
Просмотров 2834 месяца назад
In this Video we will see, How we can run C Program in MacOS. So for that we will be running this in VS Code. First we need to have VS Code Installed in our Systems. After that we will be installing the 2 Extensions in VS Code - First being C/C Extension provided by Microsoft and Second being Code Runner to execute the Code. VS Code Installation URL - ruclips.net/video/Pd10iYERYtI/видео.html XC...
Data Structures and Algorithms Quick Sort | Time Complexity | DSA Programming
Просмотров 554 месяца назад
QuickSort is a sorting algorithm based on the Divide and Conquer algorithm that picks an element as a pivot and partitions the given array around the picked pivot by placing the pivot in its correct position in the sorted array. #quicksort #dsalgo #dsa #java
Data Structures and Algorithms Merge Sort | Time Complexity | DSA Programming
Просмотров 394 месяца назад
Merge Sort is one of the most popular sorting algorithms that is based on the principle of Divide and Conquer Algorithm. In Merge Sort we basically Divide the Complete Array/List into Smaller Elements and then Sort them using the Conquer Technique. In simple terms, we can say that the process of merge sort is to divide the array into two halves, sort each half, and then merge the sorted halves ...
Data Structures and Algorithms Shell Sort | Time Complexity | DSA Programming
Просмотров 504 месяца назад
Shellsort, also known as Shell sort or Shell's method, is an in-place comparison sort based algorithm. It can be seen as either a generalization of sorting by exchange or sorting by insertion. The method/algorithm works by sorting pairs of elements far apart from each other from a certain distance/gap, then progressively reducing the gap between elements to be compared. After every Iteration we...
Data Structures and Algorithms Insertion Sort | Time Complexity | DSA Programming
Просмотров 1974 месяца назад
Insertion sort is a type of sorting based algorithm that builds the final sorted array (or list) one item at a time by comparisons where we take a key/current element for the comparison. It is much less efficient on large lists than more advanced algorithms such as quicksort, heapsort, or merge sort. Time Complexity for Insertion Sort is = O(N^2) Space Complexity for Insertion Sort is = O(1) #d...
Data Structures and Algorithms Bubble Sort | Time Complexity | DSA Programming
Просмотров 305 месяцев назад
Data Structures and Algorithms Bubble Sort | Time Complexity | DSA Programming
Data Structures and Algorithms Selection Sort | Time Complexity | DSA Programming
Просмотров 285 месяцев назад
Data Structures and Algorithms Selection Sort | Time Complexity | DSA Programming
Data Structures and Algorithms Binary Search | Time Complexity | DSA Programming
Просмотров 305 месяцев назад
Data Structures and Algorithms Binary Search | Time Complexity | DSA Programming
Data Structures and Algorithms Linear Search | Time Complexity | DSA Programming
Просмотров 425 месяцев назад
Data Structures and Algorithms Linear Search | Time Complexity | DSA Programming
Fix Error "Command line is too long" in Java Spring Boot Intellij IDE 2024
Просмотров 2586 месяцев назад
Fix Error "Command line is too long" in Java Spring Boot Intellij IDE 2024
Uninstall Scala From MacOS 2024
Просмотров 2337 месяцев назад
Uninstall Scala From MacOS 2024
How to Install Scala Plugin in Intellij IDE | Run First Scala Program
Просмотров 6888 месяцев назад
How to Install Scala Plugin in Intellij IDE | Run First Scala Program
Install Scala in Mac OS M1/M2 2023 | Install Configure Scala
Просмотров 6319 месяцев назад
Install Scala in Mac OS M1/M2 2023 | Install Configure Scala
Install Prettier on VSCode | Set Up and Configure Prettier | Code Formatter
Просмотров 17211 месяцев назад
Install Prettier on VSCode | Set Up and Configure Prettier | Code Formatter
How to Install Rust on MacOS M1/M2 | Configure Rust in VS Code
Просмотров 2,2 тыс.11 месяцев назад
How to Install Rust on MacOS M1/M2 | Configure Rust in VS Code
Install Java JDK 20 on MacOS M1 / M2 | Install Multiple Java JDK Versions in MacOS
Просмотров 6 тыс.Год назад
Install Java JDK 20 on MacOS M1 / M2 | Install Multiple Java JDK Versions in MacOS
How to Uninstall Java on MacOS | Remove JDK from MacOS 2023
Просмотров 738Год назад
How to Uninstall Java on MacOS | Remove JDK from MacOS 2023
How to Switch Between Multiple Java Versions in MacOS M1/M2 | Switching Multiple JDK Versions 2023
Просмотров 7 тыс.Год назад
How to Switch Between Multiple Java Versions in MacOS M1/M2 | Switching Multiple JDK Versions 2023
How to Install Python in MacOS M1/M2 | Configure and Install - 2023
Просмотров 11 тыс.Год назад
How to Install Python in MacOS M1/M2 | Configure and Install - 2023
Postman error maximum response size reached
Просмотров 2,4 тыс.Год назад
Postman error maximum response size reached

Комментарии

  • @SatikKumar-i1g
    @SatikKumar-i1g 9 дней назад

    hello Prashant, In Eclipse Default O/P folder is already set as "targer/classes", But still it is not generating the files at this location

  • @gandhamhemanth5083
    @gandhamhemanth5083 18 дней назад

    terminal isn't opening for me

  • @s.p.i.d.y_o.p
    @s.p.i.d.y_o.p 26 дней назад

    Thank you bhai

  • @user-bb7bh8yu3u
    @user-bb7bh8yu3u Месяц назад

    Could not read script '/Users/technotackle/Documents/Flutter/flutter/packages/flutter_tools/gradle/src/main/groovy/flutter.groovy' as it does not exist. i am facing this error

  • @manasranjan7894
    @manasranjan7894 Месяц назад

    Thanks brother

  • @santiagoontiveros2144
    @santiagoontiveros2144 Месяц назад

    it was all good until you got to the part of .zshenv, its like you already supose that we know how to create and do the things that you are doing

  • @mahwishraoof1711
    @mahwishraoof1711 Месяц назад

    thank you prashant...

  • @RudraShejwal-jv2bf
    @RudraShejwal-jv2bf Месяц назад

    Project Structure is not showing my file??

  • @vikaspanwar5194
    @vikaspanwar5194 Месяц назад

    Thanks a lot. works!

  • @yogsharma3708
    @yogsharma3708 Месяц назад

    Using CATALINA_BASE: "C:\apache-tomcat-10.1.25" Using CATALINA_HOME: "C:\apache-tomcat-10.1.25" Using CATALINA_TMPDIR: "C:\apache-tomcat-10.1.25\temp" Using JRE_HOME: "C:\Program Files (x86)\Java\jre-1.8" Using CLASSPATH: "C:\apache-tomcat-10.1.25\bin\bootstrap.jar;C:\apache-tomcat-10.1.25\bin\tomcat-juli.jar" Using CATALINA_OPTS: "" -------------> got stuck on it

    • @shirleyli8261
      @shirleyli8261 3 дня назад

      You can make a JRE_HOME environment variable and set it to your jdk. I had this same situation and this is how I was able to solve it.

  • @abhinavmahajan6519
    @abhinavmahajan6519 Месяц назад

    Thanks a lot man. Was stuck for hours. After having used EDB installer and brew and what not.

  • @4_YEARS
    @4_YEARS 2 месяца назад

    thank you brother

  • @pradeepmahadik5943
    @pradeepmahadik5943 2 месяца назад

    where can we find notes which are u using

    • @prashantrana546
      @prashantrana546 2 месяца назад

      I can share those Notes through Drives or Git. Btw those are created by me!

    • @pradeepmahadik5943
      @pradeepmahadik5943 2 месяца назад

      @@prashantrana546 can u share me

  • @sanketbhiogade8444
    @sanketbhiogade8444 2 месяца назад

    bro I'm getting "zsh: operation not permitted: ant"

    • @prashantrana546
      @prashantrana546 2 месяца назад

      You need to provide Terminal Full Disk Access, Go to Security and Privacy in System Preferences and there Select Full Disk Access, then Tick on Checkbox Terminal. Quit terminal and try again

  • @leixiao169
    @leixiao169 2 месяца назад

    Thanks but is there a way to install Python 2 on Mac M3 chips? Python 2 appears to be incompatible.

  • @ashishkharb4117
    @ashishkharb4117 2 месяца назад

    Thank you bhai!!

  • @user-ki1wt2ct1s
    @user-ki1wt2ct1s 2 месяца назад

    thank you mate! like)

  • @alebru2917
    @alebru2917 2 месяца назад

    it works , ty

  • @itzangel0735
    @itzangel0735 2 месяца назад

    in the Connection dbconect = DriverManager.getConnection, after the port number, the next thing to put is the name of the data base you created in mysql?

  • @nishitapathekar8289
    @nishitapathekar8289 2 месяца назад

    can u share notes of this tutorial

  • @sivamurthy6614
    @sivamurthy6614 3 месяца назад

    Thanks prashant ... very detailed explination and helpful for beginers.

  • @ayushroy3514
    @ayushroy3514 3 месяца назад

    Error: This command is not available when running the Angular CLI inside a workspace. i get this message

  • @TheCodeWhisperer0o0
    @TheCodeWhisperer0o0 3 месяца назад

    what is the difference of this postgres app vs the other downloading method installer??!

  • @santiagofidelibus
    @santiagofidelibus 3 месяца назад

    i love you!

  • @VitorHugo-gt8sy
    @VitorHugo-gt8sy 3 месяца назад

    how the RAM of your macbook ?

  • @mobilafilm
    @mobilafilm 3 месяца назад

    i have an empty .zshenv, why?

  • @VicGame432
    @VicGame432 3 месяца назад

    Gracias, he estado horas intentando añadir la libreria de Gson a mi proyecto y no lo habia logrado hasta ver tu video

  • @JaimeEsqueda-te3ey
    @JaimeEsqueda-te3ey 3 месяца назад

    thank you!

  • @ankitupadhyay918
    @ankitupadhyay918 3 месяца назад

    simply stop the server , click on server settings and change password option will appear for different users.

  • @llwusill
    @llwusill 3 месяца назад

    thx blud.

  • @Aritz2014
    @Aritz2014 4 месяца назад

    Before I had all the routes in .bash_profile, but it is better in m1 to have them in .zshenv, so I copied all the routes in .zshenv, but I did not have this file so I created it. First step create .zshenv: touch ~/.zshenv, second step open .zshenv: open -e ~/.zshenv Paste the two lines of code that you suggest, where our maven folder is and the other line. I have also taken the opportunity to paste the path of mysql, mongo, etc. Thank you bro :)

  • @stevemiller7050
    @stevemiller7050 4 месяца назад

    really bad

  • @AliyProgrammer
    @AliyProgrammer 4 месяца назад

    I did your guide but after running psql it gives me path denied error how to fix that

    • @prashantrana546
      @prashantrana546 4 месяца назад

      Can you check is your postman running on port 5432. Using Command -> netstat -an | grep 5432 will tell you if it is listening.

  • @user-bb4hs5pu4s
    @user-bb4hs5pu4s 4 месяца назад

    thanks

  • @mulayamyadav5956
    @mulayamyadav5956 4 месяца назад

    Which software do you use for screen recording and video editing . I use QuickTime Player but after editing in iMovie I get black bar in video

  • @nikhilbhangale5894
    @nikhilbhangale5894 4 месяца назад

    thanks for the jars, can you please upload latest version of jars

    • @prashantrana546
      @prashantrana546 4 месяца назад

      Sure I’ll provide the URL for the Jars

  • @venkateshvenky2880
    @venkateshvenky2880 4 месяца назад

    Great explanation, crisp and clear.

  • @rauldearia334
    @rauldearia334 4 месяца назад

    thank you!

  • @karmatool
    @karmatool 5 месяцев назад

    Thank You. I use this route couse my version is different. JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home ☺

  • @abdulmagomedov
    @abdulmagomedov 5 месяцев назад

    Thank you very much!

  • @ajayghantu8465
    @ajayghantu8465 5 месяцев назад

    Thankyou! Please keep uploading more videos on DSA

  • @bluex217
    @bluex217 5 месяцев назад

    Thank you very much m y friend

  • @mertkurt947
    @mertkurt947 5 месяцев назад

    After I add , it says Empty Library...

  • @zeeshanazmat719
    @zeeshanazmat719 5 месяцев назад

    Really helpful.

  • @onssereactions5459
    @onssereactions5459 5 месяцев назад

    Thanks man

  • @techkid358
    @techkid358 5 месяцев назад

    thanks again

  • @Ill_0823
    @Ill_0823 6 месяцев назад

    Hey man, thanks for sharing the information. I wonder if we need to download sbt as well or is it not mandatory? I'm kinda confused about this one.

  • @2016manish
    @2016manish 6 месяцев назад

    Add same commands on both .zshenv and .bash_profile but still get the same error "zsh: command not found: mvn" when checking the version

    • @riya1183
      @riya1183 5 месяцев назад

      you need to source the file too.

  • @sayrasadia2212
    @sayrasadia2212 6 месяцев назад

    It is not showing on my terminal it is showing error in argument

  • @techkid358
    @techkid358 6 месяцев назад

    thanks sir