Skip to content
View bitoiu's full-sized avatar
Block or Report

Block or report bitoiu

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. markwrap markwrap Public

    Chrome extension that wraps the selected text in a markdown link with the contents of the clipboard

    JavaScript 145 9

  2. github-red-alert github-red-alert Public

    Changes the GitHub notification icon to red if you have unread participating notifications.

    CoffeeScript 108 5

  3. venn venn Public

    Fluent API for set operations.

    JavaScript 9 4

  4. release-notify-action release-notify-action Public

    GitHub Action that triggers e-mails with release notes when these are created

    JavaScript 65 17

  5. Self-Signed Wildcard certificate wit... Self-Signed Wildcard certificate with SAN using openssl / SSL
    1
    Copy the default template of `openssl.cnf` to a writable location.
    2
    
                  
    3
    ```cp /System/Library/OpenSSL/openssl.cnf src```
    4
    
                  
    5
    Uncomment the req_extensions = v3_req
  6. Prolog: Missionaries and Cannibals Prolog: Missionaries and Cannibals
    1
    % Run missionaries(((3,3),(0,0),1),[],Path).
    2
    
                  
    3
    validMove(Position, Visited):-
    4
        notMember(Position,Visited),
    5
        positiveCount(Position),