Skip to content

Instantly share code, notes, and snippets.

1,2c1,7
< # The Obsession: An Introduction to Our Love for Data
< Data has always fascinated us, even before the advent of the internet. We've been captivated by the idea of storing vast amounts of information digitally, marveling at the possibilities it holds. Our attachment to data stems from our desire to leave a lasting legacy, to pass on knowledge from one generation to another. We believe that through data, we can uncover new wisdom and transform the world. This article explores our obsession with data and the implications it has on our lives.
---
> ---
> layout: post
> title: Data Has Gravity
> tags: SysAdmin Philosophy DevOps DataScience BigData
> ---
> # The Obsession
@nshobe
nshobe / Blockstack
Last active December 20, 2017 16:18
Verification
Verifying my Blockstack ID is secured with the address 1ECAzuhVeDuVHxaWh3mjcjmMqoj17UYX9T https://explorer.blockstack.org/address/1ECAzuhVeDuVHxaWh3mjcjmMqoj17UYX9T
@nshobe
nshobe / check_bond.sh
Last active December 4, 2017 17:51
Check Network Redundancy
#!/bin/bash
PATH=/sbin:/usr/sbin:$PATH
# Validate being run as root/sudo
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
exit
fi
# Check for tools and find bonded interfaces
@nshobe
nshobe / cmdb.py
Last active January 5, 2023 17:50
Service Now CMDB Python Query
#!./bin/python
import sys
import os
import requests
import json
from ruamel import yaml
url = 'https://autodesk.service-now.com/api/now/table/cmdb_ci_linux_server'
user = '[redact]'
@nshobe
nshobe / Proof.txt
Created September 19, 2017 00:43
Keybase
### Keybase proof
I hereby claim:
* I am nshobe on github.
* I am smeagol (https://keybase.io/smeagol) on keybase.
* I have a public key ASA2mn0uFpADiM9SRvYIFk6HnzNkDeYxIYL5m0qdiincAwo
To claim this, I am signing this object:
@nshobe
nshobe / tcplogger.sh
Last active September 7, 2023 12:05
tcpdump service example
# Should be located in /usr/bin/tcplogger
# Mode should be 750
#!/bin/sh
PATH=/bin:/sbin:/usr/bin:/usr/sbin
case $1 in
start)
mkdir -p /var/log/tcpdump
chmod 750 /var/log/tcpdump
> /var/log/tcpdump/interfaces
chmod 640 /var/log/tcpdump/interfaces