Skip to content
View david26's full-sized avatar
:octocat:
A mi me descuidan 1 minuto y ya estoy programando: typedef enum {false,true}bool
:octocat:
A mi me descuidan 1 minuto y ya estoy programando: typedef enum {false,true}bool
  • CD. MX

Block or report david26

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. commands.sh commands.sh
    1
    find . -empty -type d -delete
    2
    for i in *; do mv "$i" "$(echo $i|tr A-Z a-z)";done
    3
    ls -1 | short
  2. List all contributors by Month List all contributors by Month
    1
    #!/bin/bash
    2
    from=$(git log --all --reverse --format="format:%ci" | sed -n 1p | awk '{printf "%s",$1}')
    3
    to=$(git log --all --format="format:%ci" | sed -n 1p | awk '{printf "%s",$1}')
    4
    users=$(git shortlog -sn --no-merges --all --since="$from" --before="$to" | awk '{printf "%s %s\n",$2, $3}')
    5
    months=('' 'Enero' 'Febrero' 'Marzo' 'Abril' 'Mayo' 'Junio' 'Julio' 'Agosto' 'Septiembre' 'Octubre' 'Noviembre' 'Diciembre')
  3. Dynamic endpoint Dynamic endpoint
    1
    import java.net.MalformedURLException;
    2
    import java.net.URL;
    3
    import javax.xml.namespace.QName;
    4
    import javax.xml.ws.BindingProvider;
    5
    import javax.xml.ws.Service;