There are a number of good tutorials out there, but at least as far as google’s results are concerned, there needs to be some glue in between, which is what this writing is designed to do. I first started by searching for building mobile robot tutorials in Gazebo. I learned a bit, but ultimately wish …
Comprehensive List of Online Circuit Designers
EasyEDA PartSim EveryCircuit Circuit Sims(Falstad Circuit) DC/AC Virtual Lab CircuitsCloud CIRCUIT LAB TinaCloud CircutMaker Simulator.io Gecko simulations MultiSim However, I have come to find Eagle is most prevalent. Here is a link to SparkFun on how to use it.
Learning A New Skill
Yes this is a fear of having children > I like to learn things > Maybe I should learn the ukulele 1) Deconstruct the skill 2) Learn enough to self correct (get 3-4 books) 3) Remove practice barriers 4) Practice at least 20 hours
Zip Jupyter Notebook
import os import tarfile tarFileName=’currdir.tar’ def RecursiveFiles(dn=’.’,ignoreTarFile=tarFileName): ignore={‘.pynb_checkpoints’,’pycache’,ignoreTarFile} for dirname,subdirs,files in os.walk(dn): if os.path.basename(dirname) in ignore: continue for fn in files: fname=os.path.join(dirname,fn) yield(fname) def makeTarFile(dn=’.’,tfn=tarFileName): tar=tarfile.open(tfn,’w’) for name in RecursiveFiles(dn,tfn): tar.add(name) tar.close() makeTarFile()
DON’T BE SHEEP
Don’t be sheep, some of the best advice I have received. Credit to my Accounting 101 professor.
