Skip to content
View GeorgiosGoniotakis's full-sized avatar
🤖
Simplification through automation
🤖
Simplification through automation
Block or Report

Block or report GeorgiosGoniotakis

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. lyrics-genre-classification lyrics-genre-classification Public

    🥁A lyrics-based genre classifier implemented in Python

    Jupyter Notebook 2

  2. BluetoothWrapper BluetoothWrapper Public

    Add Bluetooth capabilities to your Android project in minutes

    Java 1 1

  3. python-hierarchy python-hierarchy Public

    Demonstrates appropriate structure for Python repositories

    Python 6 6

  4. insincere-question-classifier insincere-question-classifier Public

    Insincere Question Classifier

    Jupyter Notebook

  5. Usage of git-secret Usage of git-secret
    1
    #!/bin/bash
    2
    
    
    3
    gpg --version # Check GPG installation
    4
    git --version # Check Git installation
    5
    git-secret --version # Check git-secret installation
  6. Yes/No Prompt Shell Scripting Yes/No Prompt Shell Scripting
    1
    while true; do
    2
        read -p "Are you sure you want to continue? " yn
    3
        case $yn in
    4
            [Yy]* ) call_function; break;;
    5
            [Nn]* ) exit;;