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

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  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 2

  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 Scouting troops

    JavaScript

  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..."