Skip to content
View Sebiee's full-sized avatar

Block or report Sebiee

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 Loading

  1. catch-boxes catch-boxes Public

    Project for the IARA discpline for SIC2

    JavaScript 1

  2. ansible-modules-hashivault ansible-modules-hashivault Public

    Forked from TerryHowe/ansible-modules-hashivault

    Ansible module for Hashicorp Vault.

    Python

  3. instant_word_search instant_word_search Public

    Quick utility to search for a word or phrase on multiple websites at once

    JavaScript

  4. TerryHowe/ansible-modules-hashivault TerryHowe/ansible-modules-hashivault Public

    Ansible module for Hashicorp Vault.

    Python 451 155

  5. chreniuc/CTF chreniuc/CTF Public

    Steps to follow when participating to CTF

    JavaScript 1

  6. Bash overwrite file in place, withou... Bash overwrite file in place, without creating a temporary one
    1
    myfile=test.txt &&
    2
    
                  
    3
    # Identify the starting and ending line of the block you want to replace
    4
    replace_this_start=$(grep -n 'STARTLINE_OF_STRING_THAT_NEEDS_REPLACEMENT' \
    5
      ${myfile} | awk -F':' '{ print $1 }') &&