Learn Booleans in Python with Netmiko code
3:45
Learn Python Tuples for Network Automation
5:21
How to calculate WORK DAYS in Excel
3:01
Пікірлер
@leilmarhwa
@leilmarhwa 21 сағат бұрын
the next question is, how can i edit the files? i found that the error is coming "Failed to save.., unable to write file"
@FerdsTechChannel
@FerdsTechChannel 4 күн бұрын
How to install Cisco CML Free Tier on VMware Workstation/Player 1. Download the OVA and iso files: software.cisco.com/download/h... 2. Import the OVA file into VMware workstation/player. 3. Once imported, you must configure the VM’s settings. See examples below. Minimum Req: Memory: 8 GB Processors: 4 and tick the box for 'Virtualize Intel VT-x/EPT'. Hard Disk: 32 GB CD/DVD (IDE): Device Status: Connect at power on Connection: Use ISO image file: Browse the refplat ISO file. Network Adapter: NAT Display: 1 Monitor 4. Initial Setup: Follow the steps described in the video or the steps here: developer.cisco.com/docs/mode... 5. Once the installation is complete, open your browser and navigate to the IP address you assigned to the VM. For example: 192.168.111.144/
@juandgz68
@juandgz68 6 күн бұрын
How to decompile files .pyc version python 3.11?
@FerdsTechChannel
@FerdsTechChannel 5 күн бұрын
@@juandgz68 last time i checked, it was only python 8.xx. not sure if 3.11 is now supported. 😊
@RideskotoPH
@RideskotoPH 6 күн бұрын
i will try coding python while cycling😂.. JK.😂 Thanks for sharing Ferds very informative👍
@FerdsTechChannel
@FerdsTechChannel 6 күн бұрын
that would be super difficult 😂😂
@Benny_On
@Benny_On 8 күн бұрын
New ISO installation file is Ubuntu 22.04 LTS --> You can create a new VM with Ubuntu Linux 64-bit OS type.
@ManthaarJanyaro
@ManthaarJanyaro 16 күн бұрын
You are great 👍🏻, An awesome trick 👏🏻
@hannahma624
@hannahma624 16 күн бұрын
It works. This saved my life. Thank you very much!
@FerdsTechChannel
@FerdsTechChannel 16 күн бұрын
@@hannahma624 Glad it helped! 😊
@Inderaaa_
@Inderaaa_ 17 күн бұрын
Great video!
@FerdsTechChannel
@FerdsTechChannel 11 күн бұрын
Glad you found it helpful! 😊
@saqibjani1136
@saqibjani1136 17 күн бұрын
D[]
@saqibjani1136
@saqibjani1136 17 күн бұрын
R[]
@saqibjani1136
@saqibjani1136 17 күн бұрын
A[]
@saqibjani1136
@saqibjani1136 17 күн бұрын
E[]
@saqibjani1136
@saqibjani1136 17 күн бұрын
M[]
@saqibjani1136
@saqibjani1136 17 күн бұрын
L[]
@saqibjani1136
@saqibjani1136 17 күн бұрын
A[]
@saqibjani1136
@saqibjani1136 17 күн бұрын
N[]
@saqibjani1136
@saqibjani1136 17 күн бұрын
D[]
@capturedart0
@capturedart0 23 күн бұрын
The folder is opened is VS code by code . But the file or folders inside the folder are not showing.
@JuanAssy
@JuanAssy 25 күн бұрын
Thanks for your help
@FerdsTechChannel
@FerdsTechChannel 25 күн бұрын
No problem. Glad you found it helpful! 😊
@josefisrael9887
@josefisrael9887 29 күн бұрын
Thank you the detailed explanation. I just want to add that if you encounter the following error message ""python" not recognized as a command..." Please make make sure that Python is correctly installed and added to the PATH environment variable. After adding python to the PATH environment variable, restart VSCode and it will work. If you do not re-start VSCode, it will not work. Thanks
@Brutailgod
@Brutailgod Ай бұрын
simple, fast, and understandable thanks!
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
How to Create a Hyperlink to Another Sheet in Excel 1. Click on the cell where you want to create the hyperlink. 2. Right-click on the cell and select Link (or press Ctrl + K). 3. In the Insert Hyperlink dialog box, select Place in This Document from the left panel. 4. Choose the sheet you want to link to and enter the cell reference. 5. Click OK to create the hyperlink.
@Oniigiri-x9n
@Oniigiri-x9n Ай бұрын
Need help, why cant create a project on mine. It does not have a field for filename, only the location?
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
How to extract comments and usernames in Excel 1. Right click on the sheet and select View Code. 2. Right click on your sheet and select Insert then Module. 3. Paste the VBA code below. Function GetCommentDetails(rng As Range) As String Dim cmtText As String Dim authorName As String Dim result As String On Error Resume Next ' Check for threaded comments (modern comments) Dim threadedComment As CommentThreaded Set threadedComment = rng.CommentThreaded If Not threadedComment Is Nothing Then cmtText = threadedComment.Text authorName = threadedComment.Author.Name End If ' If no threaded comment, check for traditional comment (note) If cmtText = "" Then cmtText = rng.NoteText If Not rng.Comment Is Nothing Then authorName = rng.Comment.Author End If End If On Error GoTo 0 ' Format the result If cmtText = "" Then result = "No comment" ElseIf authorName = "" Then result = "Comment: " & cmtText Else result = "Author: " & authorName & "; Comment: " & cmtText End If GetCommentDetails = result End Function 4. Save your excel file as a macro-enabled file. 5. Type the following next to the cell you want the comment and username extracted. =GetCommentDetails(A1)
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
Summing Visible Cells Only 1. Click on the cell where you want the sum of the visible cells to appear. 2. Type =SUBTOTAL( into the selected cell. For summing, use 9 as the first argument. Your formula should look like this: =SUBTOTAL(9,. 3. Select the Range of Cells: After the comma, select the range of cells you want to sum. For example, =SUBTOTAL(9, A1:A10). Press Enter: The cell will now display the sum of only the visible cells in the selected range.
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
Here’s the excel file I used in the video: drive.google.com/file/d/1kh9f87TNvHs_PIv8mwa1H6XfACepLvJA/view?usp=sharing
@garethjones2293
@garethjones2293 Ай бұрын
Did not work for me?!? Shows as a threaded comment and your version of Excel allows.... if there is no comment, that is working and displaying 'no comment' (I have check marco enabled/save enabled)
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
I’ll share the excel file I used so you can have a look at it. 😊
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
Here’s the file I used in the video 😊: drive.google.com/file/d/1kh9f87TNvHs_PIv8mwa1H6XfACepLvJA/view?usp=sharing
@SN33kzy
@SN33kzy Ай бұрын
this is great, please make a video for the latest version of pycharm, a lot of people are having trouble creating new file after installation
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
okay, ill try to make a video about it. 😊
@GraciaVargas-z7t
@GraciaVargas-z7t Ай бұрын
This was awesome, took under a minute to do something that would have taken me hours by hand. Thanks!
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
How to Transpose (Rotate) Data in Excel Using Paste Special 1. Copy the data you want to transpose (Ctrl + C). 2. Select the cell where you want the transposed data to start. 3. Right-click and choose Paste Special. 4. Check the Transpose box and click OK. Using the TRANSPOSE Function 1. Select the range where you want the transposed data to appear. 2. Type the formula =TRANSPOSE(A1:B10) (replace A1:B10 with your actual range) and press Enter.
@qurbansadaqat6341
@qurbansadaqat6341 Ай бұрын
Please try to make sure yourself 100% then publish on the net, it's easy for everyone to copy and paste the commands without proper explanations and concepts.
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
charot charot lang yan 😂
@RideskotoPH
@RideskotoPH Ай бұрын
paturo ako nyan python sir😊
@RideskotoPH
@RideskotoPH Ай бұрын
paturo ako nyan python sir😊
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
Czcvnnnbnhgvvbnn V. H. Chhjhjjnjkhhwqqwqwguj mv. Cc byjs u Oc
@RideskotoPH
@RideskotoPH Ай бұрын
paturo ako nyan python sir😊
@sumsalty
@sumsalty 2 ай бұрын
I am looking to be able to get the full comment thread including the user name is there a way to do that? Even so your video was still very helpful thank you for making this!
@FerdsTechChannel
@FerdsTechChannel Ай бұрын
I just made a video about how to extract both comments and usernames in Excel here :) kzbin.info/www/bejne/jH3ZpHucltR5ZpIsi=NNOatCpzvxuxZkIN
@UsmanAli-sz8kx
@UsmanAli-sz8kx 2 ай бұрын
That is well explained mate. Subscribed
@FerdsTechChannel
@FerdsTechChannel 2 ай бұрын
Glad you found it helpful!
@markganus1085
@markganus1085 2 ай бұрын
great video. i needed this right now
@FerdsTechChannel
@FerdsTechChannel 2 ай бұрын
Glad you found it helpful!
@SeyedMohamadrezaIzadpanah
@SeyedMohamadrezaIzadpanah 2 ай бұрын
very useful . thank you
@JacobPonce-q9p
@JacobPonce-q9p 2 ай бұрын
you saved me. thank you
@venthan-c1n
@venthan-c1n 2 ай бұрын
Video quality very poor. It's mean editing we couldn't understand where you click. And fast you so fast. You would be use arrows or click animation
@thegoldentree6913
@thegoldentree6913 26 күн бұрын
Your English so poor that i had a stroke trying to read that
@ekidona8775
@ekidona8775 2 ай бұрын
Very nice explanation of Split Horizon Rule. Can you help me understand the "update-source loopback0" command? ( sorry, first time seeing that command, and mainly work with junOS equipment) Salamat in advance :)
@FerdsTechChannel
@FerdsTechChannel 2 ай бұрын
The update-source Loopback0 command ensures that the router uses the IP address associated with its Loopback0 interface to establish BGP peerings and for BGP updates.
@Anamika00004
@Anamika00004 2 ай бұрын
Thank you thank you thank you so much 😭😭😭🖤🖤🖤
@leonardobascope6492
@leonardobascope6492 3 ай бұрын
Muchas gracias!!!!!!!
@FerdsTechChannel
@FerdsTechChannel 3 ай бұрын
Glad it helped! 😊
@fuzzzy17
@fuzzzy17 3 ай бұрын
Excellent video! Thanks.
@FerdsTechChannel
@FerdsTechChannel 3 ай бұрын
Glad it helped 😊
@Test-xn9jq
@Test-xn9jq 3 ай бұрын
oh wtf my code is in 3.8.5 depression
@luistierestieresdasilva630
@luistierestieresdasilva630 3 ай бұрын
The uncompyle6 only working with archive of version 3.8 or less?
@FerdsTechChannel
@FerdsTechChannel 3 ай бұрын
@@luistierestieresdasilva630 correct. i mentioned it in the video also. 😊
@SamihaAhammed
@SamihaAhammed 3 ай бұрын
oh thank u so much
@1_AzA_1
@1_AzA_1 3 ай бұрын
Thank you!
@FerdsTechChannel
@FerdsTechChannel 3 ай бұрын
Glad you found it useful!
@khankhan-g7d1q
@khankhan-g7d1q 3 ай бұрын
Thanks 🥰🥰🥰