I hereby claim:
- I am danielcbaldwin on github.
- I am danielcbaldwin (https://keybase.io/danielcbaldwin) on keybase.
- I have a public key whose fingerprint is 0FE6 EA8D 6B53 AAFE AD92 AF41 B8E7 29B1 5D23 9672
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # Install a released paseo-conductor binary for this OS/arch. | |
| # | |
| # The repo is private, so this uses the authenticated `gh` CLI to fetch release | |
| # assets. This script is mirrored to a public gist so it can be curl'd: | |
| # | |
| # curl -fsSL https://gist.githubusercontent.com/danielcbaldwin/3504ed91ac1014b3f073f44916e443a7/raw/install-release.sh | bash | |
| # | |
| # Optional: pin a version, e.g. `... | bash -s -- v0.2.1`. | |
| # NOTE: after editing this file, re-publish the gist: scripts/publish-installer-gist.sh |
| # Install | |
| yay -S fail2ban | |
| # Configure | |
| sudo vim /etc/fail2ban/jail.d/sshd.local # refer to file below for content | |
| # Enable & Start | |
| sudo systemctl enable fail2ban | |
| sudo systemctl start fail2ban | |
| sudo systemctl restart sshd |
| 0.0.0.0 d1s31zyz7dcc2d.cloudfront.net | |
| 0.0.0.0 amzdigital-a.akamaihd.net | |
| 0.0.0.0 amzdigitaldownloads.edgesuite.net | |
| 0.0.0.0 softwareupdates.amazon.com | |
| 0.0.0.0 updates.amazon.com |
I hereby claim:
To claim this, I am signing this object:
| # Boot from the usb, make sure that secure boot is disabled in the BIOS | |
| # Default keymap is set to US | |
| # Connect to wifi | |
| wifi-menu | |
| # Create partitions using cgdisk or fdisk | |
| 1 500MB EFI partition # Hex code ef00 | |
| 2 100% size partition # Hex code 8300 |
| # Install terminus font | |
| yaourt terminus-font | |
| # Set your default font | |
| # NOTE: You can setup the font size and codepage mappings using the font | |
| # definition as shown below. | |
| # | |
| # ter-<X><SIZE><STYLE> | |
| # where <X> is a character identifying the code page as listed bellow |
| git branch | grep -v "master" | grep -v "develop" | grep -v "^\*" | xargs git branch -D |
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <Module> | |
| <ModulePrefs title="Common Core Standards" scaling="false" height="600" width="480" gadget_border="false" author="MasteryConnect" author_email="support@masteryconnect.com" /> | |
| <Content type="html"> | |
| <![CDATA[ | |
| <iframe src="http://ccapp.masteryconnect.com" style="border: none;" name="CommonCoreStandards" height="600px" width="480px"></iframe> | |
| ]]> | |
| </Content> | |
| </Module> |
| #! /usr/bin/python | |
| # Got this from: http://code.activestate.com/recipes/362459/ | |
| import os | |
| import sys | |
| import stat | |
| import md5 | |
| filesBySize = {} |
| class LogProducer | |
| attr_accessor :streams | |
| def initialize(options = {}) | |
| @streams = Hash.new | |
| @filename = options[:filename] | |
| add_stream(options[:stream]) | |
| end | |