Skip to content
View jotaelesalinas's full-sized avatar
  • The Hague, Netherlands
Block or Report

Block or report jotaelesalinas

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. laravel-adminless-ldap-auth laravel-adminless-ldap-auth Public

    Authenticate users in Laravel against an adminless LDAP server

    PHP 211 33

  2. Starts an EC2 instance and runs a co... Starts an EC2 instance and runs a command or opens a shell
    1
    #!/bin/bash
    2
    set -u
    3
    
    
    4
    ##############################################################################
    5
    # DEPRECATION NOTE
  3. git-clone-if-newer.sh git-clone-if-newer.sh
    1
    #!/bin/bash
    2
    set -u
    3
    
    
    4
    ##############################################################################
    5
    # DEPRECATION NOTE
  4. php-mapreduce php-mapreduce Public

    A local implementation of the map/reduce strategy in PHP

    PHP 11 5

  5. Laravel make:config artisan command Laravel make:config artisan command
    1
    <?php
    2
    
    
    3
    /*
    4
     * Run this artisan command before:
    5
     * php artisan make:command MakeConfig
  6. Runs an external command in Python a... Runs an external command in Python and returns exit code, stdout and stderr contents.
    1
    # runcommand.py
    2
    # Handy function that executes an external command in the shell
    3
    # and returns 3 values: exit code of the command, its standard output
    4
    # and its error output.
    5
    # If you run the script directly, an example is provided: