ProgramGuru
ProgramGuru
  • 132
  • 13 532
How to Install Visual Studio Code in macOS
Steps to Install Visual Studio Code in macOS
1. Open browser, and search for 'Visual Studio Code'.
2. Visit code.visualstudio.com/.
3. Click on Download for macOS.
4. Wait for the download to complete.
5. Open Downloads, and double click on the .zip file to extract the contents.
6. Drag and drop the Visual Studio Code to Applications folder.
7. Open Spotlight search, and search for Visual Studio Code. Open.
8. Visual Studio Code is successfully installed on your macOS.
Переглядів: 31

Відео

[Solved] Xcode SwiftUI Project not showing List of iPhone Simulators
Переглядів 105Місяць тому
When working with SwiftUI projects in Xcode, you might encounter an issue where the list of iPhone simulators is not available. This usually happens when the Base SDK of the project is incorrectly set to macOS instead of iOS. By changing the Base SDK to iOS in the Build Settings, you can resolve this problem. In this video, we will see a step by step guide to fix the issue. Reference: www.tutor...
How to Show or Hide the Bookmarks Bar - Chrome Desktop
Переглядів 68Місяць тому
Steps to Show or Hide the Bookmarks Bar in Chrome Desktop 1. Open Chrome and click the three-dot menu in the top-right corner. 2. Select Settings from the dropdown menu. 3. In the left-hand menu, click on Appearance. 4. Locate the Show Bookmarks Bar option under the Appearance section. 5. Toggle the switch to enable or disable the bookmarks bar. When enabled, the bar will appear below the addre...
Chrome Desktop - Switch between Dark or Light Mode
Переглядів 12Місяць тому
Steps to Switch Between Light and Dark Mode in Chrome 1. Open Chrome and click the three-dot menu in the top-right corner. 2. Select Settings from the dropdown menu. 3. In the left-hand menu, click on Appearance. 4. There is item called Mode with a dropdown. There should be three items in the dropdown. Dark, Light, and Device. 5. You may select the mode you need. 6. If you want Chrome to match ...
Chrome Desktop - Change Color Theme
Переглядів 5Місяць тому
Steps to Change Your Chrome Theme 1. Open Chrome and click the three-dot menu in the top-right corner. 2. Select Settings from the dropdown menu. 3. In the left side menu, click on Appearance. 4. Under the Appearance section, click on Theme. This will open a Panel. 5. Browse through the available color schemes and select the one you like. 6. Upon selection, the color scheme is applied. 7. If yo...
SQL - What is a Table?
Переглядів 13Місяць тому
In this video, we’ll explain what an SQL table is, the roles of columns, rows, and cells, and how they work together to structure and store data effectively. Using an example students table, we’ll break down these concepts in a simple and beginner-friendly way. References: www.tutorialkart.com/sql/
SQL WHERE Cluase
Переглядів 6Місяць тому
SELECT WHERE statement in SQL: For Filtering Data 0:36 Syntax of SELECT WHERE 01:12 Examples for SELECT WHERE 01:18 Example 1: Using WHERE to Filter by a Specific Value 01:56 Example 2: Using WHERE to Filter by a Numeric Value 02:29 Example 3: Using WHERE to Filter by Multiple Conditions 03:05 Example 3: Using WHERE to Filter Using OR Operator Reference: SQL Tutorials: www.tutorialkart.com/sql/...
SQL - SELECT DISTINCT
Переглядів 9Місяць тому
SELECT DISTINCT statement in SQL: Retrieving unique data from a database 0:36 Syntax of SELECT DISTINCT 01:01 Examples for SELECT DISTINCT Reference: SQL Tutorials: www.tutorialkart.com/sql/
SQL SELECT
Переглядів 14Місяць тому
SQL SELECT statement, its syntax, and some basic queries to fetch all the rows and columns, select specific columns, and select distinct values in a column. 0:49 Syntax of SQL SELECT 1:18 Examples for SQL SELECT Statement Reference: www.tutorialkart.com/sql/sql-select/
JavaScript - Check if String is Empty
Переглядів 22Місяць тому
To check if a given string is empty in JavaScript, we can use .length property of string objects, or directly compare them to an empty string. Reference: www.tutorialkart.com/javascript/javascript-check-if-string-is-empty/
Create a Database in MySQL
Переглядів 57Місяць тому
In this video, we will provide detailed steps on how to create a database in MySQL using both the command-line interface and graphical tools such as MySQL Workbench. Reference: www.tutorialkart.com/mysql/create-a-database-in-mysql/
How to Iterate over List with Index in Python - Examples | ProgramGuru.org
Переглядів 575 місяців тому
In this video, you will learn how to iterate over a list in Python, using enumerate() builtin function, with a For loop.
How to Create a List of Numbers from 1 to N in Python - Examples | ProgramGuru.org
Переглядів 355 місяців тому
In this video, you will learn how to create a list of numbers from 1 to N using for loop, list comprehension, or while loop, with examples. 0:09 Create List from 1 to N using For loop 1:04 Create List from 1 to N using List Comprehension 1:42 Create List from 1 to N using While loop
Find Unique Items in Python List - Examples | ProgramGuru.org
Переглядів 166 місяців тому
In this video, you will learn how to get the unique or distinct items from a list, using set() builtin function in Python. 0:12 Example to get unique items from a list of integers 0:51 Example to get unique items from a list of strings
How to iterate over rows in a Pandas DataFrame - Examples | ProgramGuru.org
Переглядів 526 місяців тому
In this video, you will learn how to iterate over rows in a pandas DataFrame, using DataFrame.iterrows() method, with examples. 0:11 Example to iterate over rows of a given DataFrame Reference Pandas DataFrame.iterrows() Syntax & Examples programguru.org/python/pandas/DataFrame/iterrows
How to change Column Names in a Pandas DataFrame - Examples | ProgramGuru.org
Переглядів 666 місяців тому
How to change Column Names in a Pandas DataFrame - Examples | ProgramGuru.org
How to remove a Single Column by name from a Pandas DataFrame - Examples | ProgramGuru.org
Переглядів 116 місяців тому
How to remove a Single Column by name from a Pandas DataFrame - Examples | ProgramGuru.org
How to select a Single Column by Index in a Pandas DataFrame - Examples | ProgramGuru.org
Переглядів 176 місяців тому
How to select a Single Column by Index in a Pandas DataFrame - Examples | ProgramGuru.org
How to select Multiple Columns by Index in a Pandas DataFrame - Examples | ProgramGuru.org
Переглядів 246 місяців тому
How to select Multiple Columns by Index in a Pandas DataFrame - Examples | ProgramGuru.org
How to Sort a Pandas DataFrame by Column - Examples | ProgramGuru.org
Переглядів 196 місяців тому
How to Sort a Pandas DataFrame by Column - Examples | ProgramGuru.org
How to select Multiple Columns in a Pandas DataFrames - Examples | ProgramGuru.org
Переглядів 126 місяців тому
How to select Multiple Columns in a Pandas DataFrames - Examples | ProgramGuru.org
How to select a Single Column from a Pandas DataFrames - Examples | ProgramGuru.org
Переглядів 146 місяців тому
How to select a Single Column from a Pandas DataFrames - Examples | ProgramGuru.org
How to Concatenate Two or More Pandas DataFrames - Examples | ProgramGuru.org
Переглядів 176 місяців тому
How to Concatenate Two or More Pandas DataFrames - Examples | ProgramGuru.org
How to access single Cell value in Pandas DataFrame - Examples | ProgramGuru.org
Переглядів 506 місяців тому
How to access single Cell value in Pandas DataFrame - Examples | ProgramGuru.org
Check if DataFrame is Empty in Pandas - Examples | ProgramGuru.org
Переглядів 126 місяців тому
Check if DataFrame is Empty in Pandas - Examples | ProgramGuru.org
How to get Shape of Pandas DataFrame - Examples | ProgramGuru.org
Переглядів 296 місяців тому
How to get Shape of Pandas DataFrame - Examples | ProgramGuru.org
How to convert String to Float in TypeScript - Examples | ProgramGuru.org
Переглядів 356 місяців тому
How to convert String to Float in TypeScript - Examples | ProgramGuru.org
How to convert String to Integer in TypeScript - Examples | ProgramGuru.org
Переглядів 156 місяців тому
How to convert String to Integer in TypeScript - Examples | ProgramGuru.org
How to Reverse a String in TypeScript - Examples | ProgramGuru.org
Переглядів 536 місяців тому
How to Reverse a String in TypeScript - Examples | ProgramGuru.org
How to Check if Two Strings are Equal or not in TypeScript - Examples | ProgramGuru.org
Переглядів 606 місяців тому
How to Check if Two Strings are Equal or not in TypeScript - Examples | ProgramGuru.org

КОМЕНТАРІ

  • @Beastfighters
    @Beastfighters Місяць тому

    Nice video

  • @KHAN2RUJI
    @KHAN2RUJI Місяць тому

    GOOD JOB

  • @MostafaGolastaneh
    @MostafaGolastaneh 5 місяців тому

    Thanks for brief and useful presentation

  • @Calculon222
    @Calculon222 6 місяців тому

    👂

  • @arinjeetbairagi6704
    @arinjeetbairagi6704 6 місяців тому

    A

  • @UnWashableDishes
    @UnWashableDishes 6 місяців тому

    bro remove that background music, I'm trying to learn not to listen to some western salone music

  • @raghavendraannam9691
    @raghavendraannam9691 6 місяців тому

    Awesome

    • @programguruorg
      @programguruorg 6 місяців тому

      Thank you! I'm glad you enjoyed it!

  • @nebelstift
    @nebelstift 8 місяців тому

    Nice Video, helped me a lot.

  • @fabsync
    @fabsync Рік тому

    thanks a lot for the video!! I am able to run the program but when the browser gets open it closes itself really fast ..1 or 2 seconds.. any idea how to fix this?

    • @programguruorg
      @programguruorg Рік тому

      Introduce time delay using time.sleep() method before closing the window