Generally the easier method of breaking into tech, using Amazon and Microsoft's cloud computing learning modules is faster depending on your experience. Training is free and is nearly an associates level
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
import requests | |
from pyquery import PyQuery as pq | |
import pandas as pd | |
import numpy as np | |
from tqdm.autonotebook import tqdm | |
# Note: from the imports, this requires pandas, numpy, tqdm, and pyquery (installable with pip or conda) | |
# classes to collect stats on | |
ctfClasses = """Archer |
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
# See this wiki page for more info: | |
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info | |
print_info() { | |
#info title | |
#info underline | |
info "OS\t\t" distro | |
info "Host\t" model | |
#info "Kernel" kernel | |
info "Uptime\t" uptime |
OlderNewer