Skip to content
View danielkappelle's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report danielkappelle

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

Pinned

  1. portable-sdr-pi portable-sdr-pi Public

    Portable SDR solution based on Raspberry Pi and RTL-SDR

    Python 1

  2. bitbucket-mattermost-bridge bitbucket-mattermost-bridge Public

    Bridge to use bitbucket webhooks with mattermost

    Python 7 7

  3. Random image to b64 in clipboard Random image to b64 in clipboard
    1
    curl 'http://lorempixel.com/500/500/' -H 'Connection: keep-alive' -H 'Cache-Control: max-age=0' \
    2
    -H 'Upgrade-Insecure-Requests: 1' \
    3
    -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36' \
    4
    -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8' \
    5
    -H 'Accept-Encoding: gzip, deflate' -H 'Accept-Language: en-US,en;q=0.9,nl;q=0.8' \
  4. Kill all processes that match grep Kill all processes that match grep
    1
    #!/bin/sh
    2
    # Usage
    3
    # $ ./killall.sh <youmatch>
    4
    
                  
    5
    sudo kill -9 $(ps aux | grep $1 | sed -r 's/^[a-zA-Z]+\s+([0-9]+).*$/\1/')