Skip to content
View schulzrol's full-sized avatar
😏
git push --force master
😏
git push --force master

Highlights

  • Pro

Block or report schulzrol

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. mapa.idsjmk-history-visualization mapa.idsjmk-history-visualization Public

    https://www.youtube.com/watch?v=InClAzbJqRU

    Jupyter Notebook 1

  2. Script for sending phone push notifi... Script for sending phone push notifications through IFTTT backend
    1
    #!/bin/bash
    2
    
                  
    3
    # Script for sending phone push notifications through IFTTT backend
    4
    # Sends input arguments as value1 to devices configured to receive IFTTT Maker event notifications through web requests
    5
    
                  
  3. Execution script for interactive fuz... Execution script for interactive fuzzy find menus
    1
    #!/bin/sh
    2
    # $1 file containing key\tvalue\tdescription mappings
    3
    # $2 which of \t separated columns to choose
    4
    cat "$1" |
    5
    wofi -d |
  4. Partitioning a list into other lists... Partitioning a list into other lists based on member predicate
    1
    # filter indexes
    2
    valid_indexes = []
    3
    invalid_indexes = []
    4
    for i in indexes:
    5
        # append based on predicate split parts
  5. Splits last commit into commit per f... Splits last commit into commit per file changed
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    message="$(git log --pretty=format:'%s' -n1)"
    4
    
                  
    5
    if [ `git status --porcelain --untracked-files=no | wc -l` = 0 ]
  6. Find duplicates in directory and opt... Find duplicates in directory and optionally remove them
    1
    #!/bin/bash
    2
    # to remove duplicates call like
    3
    # $ dups . | bash
    4
    
                  
    5
    declare -A arr