Skip to content
View ericjsilva's full-sized avatar
🦉
silently correcting your grammar.
🦉
silently correcting your grammar.

Organizations

@oabsa
Block or Report

Block or report ericjsilva

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. ansible-desktop-ubuntu ansible-desktop-ubuntu Public

    Automating installation of Ubuntu desktop

    Shell 5

  2. programming-mb-python programming-mb-python Public

    Sample Python programs to be used for instruction of the BSA Programming Merit Badge

    Python 3 3

  3. interview_card_game interview_card_game Public

    Card game used for Java Developer Interviews

    Java 2

  4. scout-jeopardy scout-jeopardy Public

    Javascript/HTML implementation of Jeopardy for Boy Scouts

    HTML

  5. starwars-jeopardy starwars-jeopardy Public

    Star Wars Jeopardy

    HTML

  6. Script to fully remove McAfee Endpoi... Script to fully remove McAfee Endpoint Security from macOS
    1
    #!/bin/bash
    2
    echo "Uninstalling McAfee Endpoint Security..."
    3
    echo "Stopping all services..."
    4
    sudo ps auxww | grep -i 'VShieldScanner\|VShieldScanManager\|masvc\|McAfee' | grep -v grep | awk ‘{ print $2 }’ | sudo xargs kill -9; kextstat | grep -i mcafee | awk ‘{ print $6 }’ | sudo xargs -n1 -I{} kextunload -verbose 2 -bundle-id ‘{}’
    5
    echo "Uninstalling ATP..."