Skip to content

Instantly share code, notes, and snippets.

View anis016's full-sized avatar

Sayed Anisul Hoque anis016

View GitHub Profile
@anis016
anis016 / !bash scripts
Last active October 6, 2021 10:13
Useful bash script
This gist contains useful bash scripts
@anis016
anis016 / to_buy
Last active November 21, 2019 09:22
Fojat:
https://www.amazon.de/dp/B0725P9D3Q/ref=sr_1_4?crid=173HI3G5ZY877&keywords=kopfh%C3%B6rer+noise-cancelling&qid=1574277000&refinements=p_76%3A419122031%2Cp_72%3A419117031&rnid=669059031&rps=1&s=ce-de&sprefix=Headphones+noise+%2Celectronics%2C149&sr=1-4
https://www.amazon.de/Neutrogena-Norwegische-Moisture-Bodylotion-Sensitive/dp/B01LTHLR68/ref=pd_rhf_se_s_sspa_dk_rhf_search_pt_sub_0_12?_encoding=UTF8&pd_rd_i=B01LTHLR68&pd_rd_r=a741c108-06a0-48be-b95d-e19fbc7681e8&pd_rd_w=3IlqC&pd_rd_wg=SekPi&pf_rd_p=b137599d-7c94-490a-baee-bfa71341f05f&pf_rd_r=KD24DS0QVZRAQHV76TGW&refRID=KD24DS0QVZRAQHV76TGW&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUExMEFKVFhSVFhUT0wmZW5jcnlwdGVkSWQ9QTA2MzkxNTEySTlRNUpPMVRXUkU3JmVuY3J5cHRlZEFkSWQ9QTA1MjQwNTAyTTBITk9RU1hLMk04JndpZGdldE5hbWU9c3BfcmhmX3NlYXJjaCZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU&th=1&fbclid=IwAR19EElvObc70v1XAAwKxdwfOhoPpecFCMIhFspldWt5ZX-HIyVdPeNY7dg
https://www.amazon.de/gp/product/B000V3ME00/ref=ox_sc_act_title_2?smid=A3JWKAKR8XB7XF&psc=1
https://www.amazon.de/Pr
This gist contains all the easy hacks
@anis016
anis016 / getLinesDifferenceBetweenTwoFiles.py
Last active May 29, 2022 21:06
File comparisons that contains words or sentence
#!/usr/bin/env python2.7
# python getLinesDifferenceBetweenTwoFiles.py --path1=line1.txt --path2=line2.txt
import sys
import os
import argparse
def read_lines_and_compare_files(first_file, second_file):
if not os.path.exists(first_file) or not os.path.exists(second_file):