Posts

COVID-19 Vaccination Appointment Procedure

Image
Step by Step Procedure to book your appointment easily: You can skip this video if you want to, but I recommend you to watch it.  How to join the Telegram group?  Link -  Telegram alerts for vaccination slots in India (under45.in) 1. Select your state and district 2. If you are using a laptop/desktop make sure to download the Telegram application. 3. Join the group for daily updates How to book an appointment/add the extension?   1. First, register at  https://www.cowin.gov.in/home 2. Add this extension to your browser. Don't use your default browser even though it mentions that it's secure.  Link -  Cowin Booking   (This Link is not working as of now.'6th June 2021' Will update an alternative tool asap) 3. Now, you can see an edit option at top left corner. 4. Here, fill-in your details such as what vaccine you would prefer, free or paid etc. Note: Make sure to check the boxes/ fill-in the details which are HIGHLIGHTED in the Screenshot....

Jupyter Notebook Themes

Image
Jupyter Notebook Themes: Here is a simple three liner to change your notebook theme: You can copy the code from here and run it in your notebook. Line 1: !pip install jupyterthemes     (First step, Install this package!) Shift Enter Line 2: !jt -l                                      (List of all the available themes) Shift Enter Line 3: !jt -t grade3                         (Type what theme you prefer Ex. grade3 and run the cell) Shift Enter Note: Save the code and reload the page to update your theme Default Notebook Theme List of all the themes and how they would look on your system: grade3 chesterish gruvboxd monokai oceans16 onedork solarizedd solarizedl gruvboxl Now, to reset to the default theme, run this line: Line 4: !jt -r                        ...