Skip to content

Instantly share code, notes, and snippets.

View jphickey's full-sized avatar

Joseph Hickey jphickey

  • Vantage Systems, Inc.
  • New York
View GitHub Profile
@samdoran
samdoran / aerohive.md
Last active March 8, 2026 16:52
Configuring Aerohive access points using the CLI

Aerohive

Initial setup

  1. Reset to factory defaults

     reset config bootstrap
     reset config
    

    The username is admin and the password is aerohive, Aerohive1, or admin123.

@brenopolanski
brenopolanski / merge-pdf-ghostscript.md
Last active December 29, 2025 04:42
Merge multiple PDFs using Ghostscript

A simple Ghostscript command to merge two PDFs in a single file is shown below:

gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combine.pdf -dBATCH 1.pdf 2.pdf

Install Ghostscript:

Type the command sudo apt-get install ghostscript to download and install the ghostscript package and all of the packages it depends on.