Linux Shell Scripting
In linux when you open a terminal, youre presented with a terminal. Over here you can only use shell commands, or BASH. The history of shells goes all the wa...
#!/usr/bin/python3
'''
@location abhilash's lab
@description a place to store all the awesome
i come across.
'''
def greeting():
print("welcome to abhilash's lab")
if __name__ == '__main__':
greeting()
In linux when you open a terminal, youre presented with a terminal. Over here you can only use shell commands, or BASH. The history of shells goes all the wa...
We all have been in that situation where all you have is a raspberrypi(no wifi), and you got your laptop. But then you dont have an external USB wifi stick. ...
Calling functions written purely with C using python code. Python is one of the best languages to write code if you want to develop something quickly. ...
I currently own few linux machines, be it a raspberry pi or a laptop. Id like to know whats the status on those machines at set intervals. Especially the pub...
When dealing with context managers and exceptions, you can handle exceptions from within the context manager class. This will aid for a better control over t...