- Видео 33
- Просмотров 57 419
OsChannel
Индия
Добавлен 29 ноя 2015
At OsChannel
We explore the life inside machines. We cover everything from Hardware - Software, Operating Systems - Applications, Scripting - Programming, Windows - Linux, Apple - Android, Tutorials - Reviews, News - Blogs, Sysops - DevOps, Servers - Desktops, Virtualization - Cloud, Commandline - Automation so on and so forth...
Linux is my favorite OS. Mac & Windows just keep coming close and then keep falling back again.
Python Is one my favourite languages and I make a lot of Python Tuts too..
Subscribe to OsChannel TODAY:
CHANNEL LINK:
ruclips.net/user/OschannelDotCom
LINK TO WEBSITE:
oschannel.com
We explore the life inside machines. We cover everything from Hardware - Software, Operating Systems - Applications, Scripting - Programming, Windows - Linux, Apple - Android, Tutorials - Reviews, News - Blogs, Sysops - DevOps, Servers - Desktops, Virtualization - Cloud, Commandline - Automation so on and so forth...
Linux is my favorite OS. Mac & Windows just keep coming close and then keep falling back again.
Python Is one my favourite languages and I make a lot of Python Tuts too..
Subscribe to OsChannel TODAY:
CHANNEL LINK:
ruclips.net/user/OschannelDotCom
LINK TO WEBSITE:
oschannel.com
Git tutorial 2: Git Branch Basics - Create, Merge & Delete Branches | with CHEATSHEET | by OsChannel
#git #gitbranch #gitmerge
In this vlog, we learn how to use git branches in our daily development workflow and we also learn how to create branches, rename branches, merge branches and delete branches.
Also at the end of this video, there is a section about the changes in default branch naming conventions by git community which is:
The name for the default branch will be changed from 'master' to 'main' throughout the git ecosystem.
Source Link:
lore.kernel.org/git/pull.656.v4.git.1593009996.gitgitgadget@gmail.com/
In fact, Gitlab has already adopted this naming system:
Source link: about.gitlab.com/blog/2021/03/10/new-git-default-branch-name/
All information provided in this video is for educatio...
In this vlog, we learn how to use git branches in our daily development workflow and we also learn how to create branches, rename branches, merge branches and delete branches.
Also at the end of this video, there is a section about the changes in default branch naming conventions by git community which is:
The name for the default branch will be changed from 'master' to 'main' throughout the git ecosystem.
Source Link:
lore.kernel.org/git/pull.656.v4.git.1593009996.gitgitgadget@gmail.com/
In fact, Gitlab has already adopted this naming system:
Source link: about.gitlab.com/blog/2021/03/10/new-git-default-branch-name/
All information provided in this video is for educatio...
Просмотров: 212
Видео
Git Tutorial 1: How to use git? | Learn Basic Git commands | by OsChannel
Просмотров 1872 года назад
Link to this entire Git and Github Tutorial Playlist: ruclips.net/p/PLXtILKFopTrOQvplo1E8UHEjy4rCr02rm Git is the most famous Version Control System that is used by all IT professionals, be it devs or admins in the DevOps process. In today's tutorial, we will understand what is git with some examples and then learn some basic git commands. This tutorial basically introduces git to beginners and...
How to Install PostgreSQL DB Server on Your Android Phone using Termux | by OsChannel
Просмотров 9 тыс.2 года назад
#postgresql #android #phone In this video, we will be installing a PostgreSQL Database Server on our Android device. In order to install the PostgreSQL server on your Android Phone, you need to first install this Termux application. Termux is basically a terminal emulator app that lets you create a Linux like environment on your Android Phones. Links to Download the Termux app: Google PlayStore...
Solved: Termux Repository Under Maintenance or Down | by OsChannel
Просмотров 17 тыс.2 года назад
This Vlog contains a fix for the most common error that people see when installing packages in Termux. The error is as follows: N: Metadata integrity can't be verified, repository is disabled now. N: Possible cause: repository is under maintenance or down (wrong sources.list URL?). This issue is caused by bad repo sources or mirrors and because of this the package installations fail with an err...
Check Python Version at Runtime | Detect Python Version from Scripts | (4 ways) by OsChannel
Просмотров 1072 года назад
Best Way to Check Python Version at Runtime: In this video, we learn how to check to 'python version at runtime' from our python tools and scripts and then, if required, notify the user if the version in his environment does not meet our requirements. I'll be showing you guys 4 ways to check the Python Versions at Runtime and then you can use the best one from all. We are going to use the optio...
Python: One line if/else statements | Single line if/else | Ternary Operator | by OsChannel
Просмотров 9663 года назад
#oneliner #if-else #python3 In this 2 min tutorial, we learn how to write one line if-else statements and also single line if statements using the ternary operator in python. Timeline: 00:00 Introduction 00:23 Convert Multiline if/else to a single line 00:52 Showing with Python Example 01:45 Convert multiline if statement to a single line 02:10 Outro # About OsChannel: OsChannel.com is a tech c...
Python Tuples: Most experienced people have this wrong assumption | by OsChannel
Просмотров 983 года назад
#python #tuples #single A lot of times it is wrongly assumed by people that the parenthesis(round brackets) are the ones, that create the tuples in python or help python identify tuples. This is not the case, and I am going to explain how a variable with a single item, surrounded by parenthesis, is not identified by python as a tuple. Another example shows how a comma-separated collection of va...
Apple's New M1 Pro & M1 Max Chips Explained in 3 mins | by OsChannel
Просмотров 1943 года назад
#apple #m1Pro #m1Max This video describes the newly launched m1 pro and m1 max chips by apple in Oct 2021 event and compares them with the m1 chip launched in Nov 2020. It compares the count and performance of CPU, GPU, Memory, and other stuff including new features in the new chips by Apple. The performance indicators are as described(and tested) by apple in their Oct 2021 Keynote. Link to app...
macOS Shortcut for Emojis | How to Quickly Type Emoji on Mac | by OsChannel
Просмотров 1413 года назад
#macOS #emoji #shortcut Subscribe to OsChannel for more such To The Point Short Videos. About this video: This video is about how to quickly print emoji in macOS using a keyboard shortcut. # About OsChannel: OsChannel.com is a tech channel that makes tutorial videos about all kinds of tech and mech. # Watch more videos on Mac tricks, tips, shortcuts, and fixes: ruclips.net/p/PLXtILKFopTrOkqKU4X...
Python dict['key'] vs dict.get('key') for Accessing values from Dictionary | by OsChannel
Просмотров 6083 года назад
#python3 #dict.get() #dictionary Subscribe to OsChannel for more such To The Point Short Videos. About this video: In this video, we compare python's dict.get() method and the dict['key'] method to access values from a dictionary using an example and figure how dict.get() is better. # About OsChannel: OsChannel.com is a tech channel that makes tutorial videos about all kinds of tech and mech. #...
Python 3.10's New zip(strict=True) Feature Explained with Example | by OsChannel
Просмотров 5783 года назад
Python 3.10 has introduced a new boolean parameter 'strict' for the zip() function that avoids silent data loss by throwing and error when the length of iterators passed on to the zip() function do not match, In this class I'll be showing how to catch such an error using the python try except block and use zip_longest from itertools to handle such issues. The idea here is to showcase how the st...
Python Palindrome Program for Beginners | Strings and Integers | by OsChannel
Просмотров 493 года назад
Python Palindrome Program for Beginners | Strings and Integers | by OsChannel
PyEnv Basics Tutorial with Cheatsheet | Manage Multiple Python Versions | by OsChannel.com
Просмотров 1,2 тыс.3 года назад
PyEnv Basics Tutorial with Cheatsheet | Manage Multiple Python Versions | by OsChannel.com
Solved: Unable to Rename Apple Bluetooth Magic Mouse/Trackpad/Keyboard | by OsChannel
Просмотров 13 тыс.3 года назад
Solved: Unable to Rename Apple Bluetooth Magic Mouse/Trackpad/Keyboard | by OsChannel
Google Chrome Hacks: How to enable faster Downloads with Chrome
Просмотров 3,1 тыс.5 лет назад
Google Chrome Hacks: How to enable faster Downloads with Chrome
Ubuntu 17.10 Quick look - Everything you should know in 3 mins | Ubuntu 17.10 Review
Просмотров 3907 лет назад
Ubuntu 17.10 Quick look - Everything you should know in 3 mins | Ubuntu 17.10 Review
OsChannel INTRO | WHAT WE DO at oschannel.com
Просмотров 1247 лет назад
OsChannel INTRO | WHAT WE DO at oschannel.com
Disk space issues: How to use ncdu command to solve linux disk space issues | Treesize alternative
Просмотров 1,8 тыс.7 лет назад
Disk space issues: How to use ncdu command to solve linux disk space issues | Treesize alternative
Docker's Versioning System and Editions Explained in under 4 minutes.
Просмотров 7907 лет назад
Docker's Versioning System and Editions Explained in under 4 minutes.
Vagrantfile Tutorial - Basics of Vagrantfile | Vagrant Tutorials for Beginners
Просмотров 1,1 тыс.7 лет назад
Vagrantfile Tutorial - Basics of Vagrantfile | Vagrant Tutorials for Beginners
Vagrant BOX commands with CheatSheet | Vagrant Tutorial for Beginners | Vagrant Series: Chapter 2
Просмотров 5867 лет назад
Vagrant BOX commands with CheatSheet | Vagrant Tutorial for Beginners | Vagrant Series: Chapter 2
Chapter 1: Introduction to Vagrant | Vagrant Tutorial for Beginners | Vagrant Series
Просмотров 1,6 тыс.7 лет назад
Chapter 1: Introduction to Vagrant | Vagrant Tutorial for Beginners | Vagrant Series
Linux - history command hacks. ( Bet you didn't knew all !! )
Просмотров 3197 лет назад
Linux - history command hacks. ( Bet you didn't knew all !! )
Linux - cd command Hacks (Bet you didn't knew all !!)
Просмотров 6837 лет назад
Linux - cd command Hacks (Bet you didn't knew all !!)
Linux Family Overview AND Installation methods you should know
Просмотров 8108 лет назад
Linux Family Overview AND Installation methods you should know
Thank you! It worked for Magic Mouse 1st gen.
For Windows 11 23H2 and later, right-click on Devices & Printers > Apple device with it displayed, turn off the Apple device switch and then change the name
Doesn’t work?? How can you move your mouse while it’s off???
감사합니다 해결됬어요 ㅎㅎ
you genius !
this helped! thank you!🤩
Thank you so much it worked
Thank you! I didn't know this trick. It works!
Would it be possible to use the cell phone as a server where the database would be and create data on the computer?
Clear via a LAN connection
perfect explanation - works!
Thanks bro ☺️
Thanks. I have renamed my BT mighty mouse following by your tutorial. It's a little bit difficult to do it cause click button is easily be triggered when you slide the power button.
Thank you really fix the problem
کار کرد عالی بود ممنون
1:03 como usas el puntero del mouse en la pantalla, si está apagado el mouse?
how to install in kali nethunter?
hello
It worked! Brilliant!
Very helpful, appreciate it! 5/13/2023
So if you turn it off how do you type in the new name? Or if you turn off your trackpad you dont have the ability to move the mouse. Im confused.
how i can put rename if my mouse is turn of?
it doesn't work for me :(
Thank you
it worked. Thank you very much
Any tips for window users? For example, I sometimes have to run a windows setup exe or a whl to install a specific python package.. (ex PyQt 5.4 can't be installed via pip), how would this work with pyenv/virtualenv? I'm actually only interested in building EXEs from 2 python versions.. Python 3.4.4 (32-bit for WinXP) and Python 3.11.1 (64-bit). Would it be easier in my case to just change the PATH whenever I want to switch between? What would pyenv/venv add? What happens if you already have multiple python versions already installed, before you've installed pyenv?
bro , eres un genio
This video really worked and solved all these mysteries around apple trackpad and wireless keyboard. Thank you so much
thank you bro
Not working bro , need help
Thank you!!
This worked for me. Thank you.
Thank you, very, very much. This has been an aggravating issue for some time. It always seems to be the small things that cause the greatest frustration.
It works fine here. Thank you so much!
Tank you sooooooo much Bro
Thank you, friend, you have helped me out a lot here!
thanks
Amazing work, thank you
works
super bro' thanks
Welcome
If there are multiple values (list) to each key, can we use like this to get elements of values.. dict.get(key)[1]
I love this. It fixed my issue in less than a minute. Good work sir!
Thanks man ,,☺️
Welcome 👍
I am getting error (CANNOT LINK EXECUTABLE "initdb" : )....What should I do?
have the same thing... how did you fixed it ?
same
Did you fix it?
@@Md-sl2sy no
Same
Thanks alot 🥳🥳😍😍
You're welcome 😊
Thanks bro... nothing worked for me prior's this video. Thank you
Cheers 🥂
this is great. i really want postgresql on my tablet because im scraping data from the web and sqlite is not really cutting it.
thanks
You're welcome!
bro I was watching same solutions for like last 10 vids and none of them told me that I have to select from space bard not enter and I realised that I was just trying to use same repository every time and not really changing it Some times minor details matters for a dum like me
Thanks!
Thanks helped me!
thank you soo much. appreciate u
Happy to help!