Skip to content

Instantly share code, notes, and snippets.

View imShakil's full-sized avatar
🏠
Working from home

Mobarak Hosen Shakil imShakil

🏠
Working from home
View GitHub Profile
@imShakil
imShakil / gpg-key-commit-signature-verification.md
Created July 18, 2021 07:35
How to create gpg key to commit signature verification

To install gnupg

sudo apt-get install gnupg

To Generate gpg key with details

gpg --full-generate-key
@imShakil
imShakil / serial-key.md
Last active March 3, 2025 05:08
vmware workstation pro 16 license key
@imShakil
imShakil / dropdown.md
Created June 24, 2021 19:47
dropdown in markdown

Dropdown in markdown

Keep Secret by default

Want to disclose hidden things?

This is your hidden text.

#!/usr/bin/python
import os
import sys
import zipfile
root_path = ''
version_info = ''
directory_list = {'oxauth': '/opt/gluu/jetty/oxauth/logs/',
'identity': '/opt/gluu/jetty/identity/logs/',

Management Tools

Issue Tracker

  • Jira (upto to 10 users free plan)

Team Communication

  • Slack
import requests
from requests.exceptions import HTTPError
from bs4 import BeautifulSoup
def scrape_url(url, headers=None):
try:
page = requests.get(url, headers)
page.raise_for_status()
except HTTPError as e:
def square_number(list_of_number):
return [num ** 2 for num in list_of_number]
def test_square_number():
assert square_number([1, 2, 3, 4, 5]) == [1, 4, 9, 16, 25]
def square_number(list_of_number):
"""
@param list_of_number: a given list of integer number
@return: list of square number
>>> square_number([1, 2, 3, 4])
[1, 4, 9, 16]
>>> square_number([10, 20, 30])
[100, 400, 900]