Skip to content
View Lubje's full-sized avatar

Block or report Lubje

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. Zsh config file Zsh config file
    1
    # Geinstalleerd:
    2
    #  - https://github.com/sharkdp/bat
    3
    #  - https://github.com/ohmyzsh/ohmyzsh
    4
    #  - https://github.com/romkatv/powerlevel10k
    5
    
                  
  2. git pre-commit hook git pre-commit hook
    1
    #!/usr/bin/env php
    2
    
                  
    3
    # Store in .git/hooks
    4
    
                  
    5
    <?php
  3. Global git ignore Global git ignore
    1
    # Run touch ~/.gitignore_global
    2
    # Run git config --global core.excludesfile ~/.gitignore_global
    3
    
                  
    4
    # macOS
    5
    .DS_Store
  4. Veritasium100PrisonersRiddle.php Veritasium100PrisonersRiddle.php
    1
    <?php
    2
    
                  
    3
    namespace App\Console\Commands;
    4
    
                  
    5
    use Illuminate\Console\Command;
  5. mysql_snippets.sql mysql_snippets.sql
    1
    /* List tables by size */
    2
    select 
    3
        table_schema as "Database",
    4
        table_name as "Table",
    5
        round(((data_length + index_length) / 1024 / 1024), 2) as "Size (MB)"