This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %Source: https://www.overleaf.com/learn/latex/code_listing% | |
| \usepackage{listings} | |
| \usepackage{xcolor} | |
| \definecolor{codegreen}{rgb}{0,0.6,0} | |
| \definecolor{codegray}{rgb}{0.5,0.5,0.5} | |
| \definecolor{codepurple}{rgb}{0.58,0,0.82} | |
| \definecolor{backcolour}{rgb}{0.95,0.95,0.92} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def is_nan(a): | |
| import math | |
| import numpy as np | |
| if isinstance(a, float): | |
| return math.isnan(a) | |
| elif isinstance(a, np.float64): | |
| return np.isnan(a) | |
| else: | |
| return False |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # extract pdf to jpg | |
| from pdf2image import convert_from_path | |
| from tqdm import tqdm | |
| import os | |
| import uuid | |
| input_path = 'corridor.pdf' | |
| uid = uuid.uuid4().hex[:4] | |
| output_path = uid + '-' + input_path.split('.')[0] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## this snippet allows you to fastly convert post from wordpress xml format to txt | |
| from xml.dom.minidom import parse, parseString | |
| import os | |
| dom = parse('jobyme88.xml') # parse an XML file by name | |
| os.path.makedirs('blogs') | |
| items = dom.getElementsByTagName('item') |
NewerOlder