Skip to content

Instantly share code, notes, and snippets.

View abrahamrhoffman's full-sized avatar

Abe Hoffman abrahamrhoffman

  • Hoffman Dynamics, LLC.
  • Ann Arbor, MI
View GitHub Profile
@abrahamrhoffman
abrahamrhoffman / student_employee_data.ipynb
Last active June 29, 2019 21:13
student_employee_data.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@abrahamrhoffman
abrahamrhoffman / examples.py
Created December 24, 2018 06:07 — forked from Adirockzz95/examples.py
manim animation examples
#!/usr/bin/env python
#
# Usage: python extract_scene.py -p [filename] [classname]
# eg: python extract_scene.py -p examples.py DrawCircle
#
import math
import numpy as np
## Pandas ##
import pandas as pd
TEST = pd.read_csv('test.csv', header=None)
TEST.shape
TEST.head()
TEST.columns.values
TEST.head().iloc[0:1]
TEST.head().iloc[0:1].values
type(TEST.head().iloc[0:1].values)
@abrahamrhoffman
abrahamrhoffman / centos7ksiso.md
Last active March 11, 2022 22:39
CentOS 7 Kickstart File & How to build an (auto install) ISO

CentOS 7 Kickstart File - HOWTO Build ISO

There is so much documentation online from RedHat and CentOS about this topic - it's sad that I am writing this. But the real state of documentation on this topic (CentOS 7 + KS + ISO = Bootable DVD) is almost non-existent.

I found this: http://smorgasbork.com/component/content/article/35-linux/151-building-a-custom-centos-7-kickstart-disc-part-1

Which I greatly appreciate and +1, but the documentation is half-baked and there are numerous errors.

Finally... FINALLY! After four days of banging my head, I got this to work. Hopefully someone else will be able to do this in a few hours, instead of blowing their weekend like me. :(