Navigation Menu

Skip to content
View h0tw1r3's full-sized avatar
🏝️
Living the dream
🏝️
Living the dream

Organizations

@Clarkmania
Block or Report

Block or report h0tw1r3

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
h0tw1r3/README.md

🔭 Currently working on

🌱 Currently learning

⚠ Back-burner

  • Integrating IP cameras as live TV channels in Plex

☢ Abandoned

  • Hacking Rancher k3os to run from PXE boot on diskless bare metal

💬 Ask me about

📫 How to reach me

Leave a comment on Ko-fi or join me on LinkedIn

ko-fi

Pinned

  1. dtf dtf Public

    Elegantly manage home directory dotfiles with the power of git version control

    Shell 2

  2. nagios style last system update chec... nagios style last system update check for yum, dnf and apt
    1
    #!/usr/bin/env python
    2
    
                  
    3
    from __future__ import print_function
    4
    from datetime import timedelta
    5
    from datetime import datetime
  3. slackpipe slackpipe Public

    Simple command line tool to send messages to a slack channel.

    Go 1

  4. pam_shield pam_shield Public

    A PAM module to automatically block IP addresses which try brute-force password guessing.

    C 2 2

  5. Puppet 4+ snippets Puppet 4+ snippets
    1
    $facts['networking']['interfaces'].each() |$name, $values| {
    2
      $bindings = $values.filter |$key,$value| {
    3
        $key =~ /^bindings6?$/
    4
      }
    5
      $bindings.each |$bindingtype,$addresses| {
  6. Recursively change dynamic library l... Recursively change dynamic library link paths for non-system libraries to be relative to the linked program and copy them to <program>/../libs. I use this in a cross-compile environment on linux.
    1
    #!/usr/bin/env python
    2
    # coding: utf-8
    3
    
                  
    4
    # Recursively change dynamic library link paths for non-system libraries
    5
    # to be relative to the linked program and copy them to <program>/../libs