#!/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()
  

Recent posts

Linux Shell Scripting

2 minute read

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...

Share internet via ethernet cable

2 minute read

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. ...

Python call functions written in C

1 minute read

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. ...

Send system stats to slack

1 minute read

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...