Skip to main content

Posts

Showing posts from July, 2019

How to create additional YouTube channel to existing Google account.

There are functions to create multiple channels on YouTube account which is linked to Google account now. Below is the steps to see the menu to make this happen. 1. Log in to Google Account or YouTube account. 2. Scroll down to find Settings on the left hand side menu. 3. In the middle of the screen under "Your account", create a new channel link will display. 4. Create new channel. 5. It will direct to create Brand account to have multiple channel though which is free. Enjoy.

Python3 Function example

# define a basic function def func1 (): print ( "I am a function" ) # function that takes arguments def func2 ( arg1 , arg2 ): print (arg1, " " , arg2) # function that returns a value def cube ( x ): return x*x*x # function with default value for an argument def power ( num , x = 1 ): result = 1 for i in range (x): result = result * num return result #function with variable number of arguments def multi_add (* args ): result = 0 for x in args: result = result +x return result #func1() print (func1()) func2( 10 , 20 ) print (func2( 10 , 20 )) print (power( 3 , 3 )) print (cube( 3 )) print (multi_add( 3 , 5 , 6 , 7 ))

The best FREE remote control application in Windows for RDP, SSH and VNC in 2019

To date of 2019, I have been using many different application to be able to remotely connect to Linux, Windows machine. I wanted to use tabbed views to have multiple connection with all connection information stored. Not one application make me satisfied except for one which is MREMOTENG the perfect solution for IT engineer to manage multiple virtual machine to access. MRemoteNG is opensource and no limit to connection and supporting Remote Desktop for Windows, SSH for Linux and VNC as well. it is total solution. Based on the homepage, m RemoteNG supports the following protocols: RDP (Remote Desktop/Terminal Server) VNC (Virtual Network Computing) ICA (Citrix Independent Computing Architecture) SSH (Secure Shell) Telnet (TELecommunication NETwork) HTTP/HTTPS (Hypertext Transfer Protocol) rlogin Raw Socket Connections mRemoteNG can be downloaded from below link. https://mremoteng.org/download ENJOY guys.

How to get VMWARE vSphere Hypervisor (ESX server) free license ?

1. Log in to VMWARE homepage https://vmware.com/ and log in. if you don't have account, create free account. 2. Navigate to Downloads -> Hytpervisor 3. Select vSphere Hyperviosr and you will be directed to download center with free license. 4. Download ESX server and enjoy.

CompTIA Linux+ Certificate. Study. 1

I have recently obtained CompTIA Linux+ certificate and this is what to study to pass!! CompTIA Linux+ can be achieved through two difference exam path.  We are only talking about LX0-103 & LX0-104. Exam detail can be found in CompTIA homepage. https://certification.comptia.org/certifications/linux#examdetails There are sections you need to focus. 1. System Architecture 2. Linux INstallation and package management 3. GNU and Unix commands 4. Devices, linux Filesystems, filessystem hierachy Standard Question 1 lspci NAME        lspci - list all PCI devices SYNOPSIS        lspci [options] DESCRIPTION        lspci is a utility for displaying information about PCI buses in the system and devices connected to them.        By default, it shows a brief list of devices. Use the options described below to request either a more verbose output or output intended for parsin...