Skip to content

Instantly share code, notes, and snippets.

View ericpp's full-sized avatar

Eric P ericpp

  • Minneapolis, MN
  • 18:40 (UTC -05:00)
View GitHub Profile
@ericpp
ericpp / tailwind-bootstrap.css
Last active December 5, 2021 05:08
Bootstrap V5 components in Tailwind
@tailwind base;
@tailwind components;
@tailwind utilities;
.alert { @apply relative p-4 mb-4 border rounded; }
.alert-primary { @apply text-blue-900 bg-blue-100 border-blue-200; }
.alert-secondary { @apply text-gray-900 bg-gray-200 border-gray-300; }
.alert-light { @apply text-gray-500 bg-gray-50 border-gray-50; }
.alert-dark { @apply text-gray-900 bg-gray-300 border-gray-200; }
.alert-success { @apply text-green-900 bg-green-100 border-green-200; }
@ericpp
ericpp / bashbin.py
Created January 31, 2020 06:31
Converts a binary file into echo commands which can be copy/pasted into a malfunctioning system
from __future__ import print_function
filename = "busybox"
output = "busybox"
group = 200
with open(filename, 'rb') as file:
print("echo -en '' > %s" % output)
print("echo -en $'", end="")
@ericpp
ericpp / stores.md
Last active December 14, 2016 04:38
State City Zip Store Address Phone
AK Anchorage 99503 Walmart 3101 A St (907) 563-5900
AK Anchorage 99504 Target 1200 N Muldoon Rd, Ste F 907-269-2100
AK Anchorage 99504 Walmart 7405 Debarr Road (907) 339-9039
AK Anchorage 99515 Target 150 W 100th Ave, Ste A 907-267-7500
AK Anchorage 99515 Walmart 8900 Old Seward Hwy (907) 344-5300
AK Eagle River 99577 Walmart 18600 Eagle River Rd (907) 694-9780
AK Fairbanks 99701 Walmart 537 Johansen Expy (907) 451-9900
AK Wasilla 99654 Target 1801 E Parks Hwy 907-631-7200