Skip to content
View su-tiko's full-sized avatar
🤜
Working at 127.0.0.1
🤜
Working at 127.0.0.1

Block or report su-tiko

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. pycron pycron Public

    Python implementation of Cron

    Python

  2. bernini bernini Public

    Simple Django app for an online store

    Python

  3. Grep all lines from the first to the... Grep all lines from the first to the last occurrence of a pattern in a file
    1
    # !/bin/bash
    2
    #
    3
    # greplines.sh
    4
    # Grep all lines from first to last occurrence of <pattern> in <file>
    5
    #
  4. Useful linux commands Useful linux commands
    1
    `ctrl+x+e` **Open an editor for writing a large command**
    2
    
                  
    3
    `mount -t tmpfs tmpfs <folder> -o size=8192M` **Mounts a temporary RAM disk to folder. Useful for temp files with very high speed.**
    4
    
                  
    5
    `tee -a <file>` **Captures stdout and writes it to \<file\>**
  5. Pass from a no-interactive shell to ... Pass from a no-interactive shell to fully TTY
    1
    # Python
    2
    ```bash
    3
    python -c 'import pty; pty.spawn("/bin/bash")'
    4
    ```
    5