Skip to content
View diogoko's full-sized avatar

Organizations

@lnasystems

Block or report diogoko

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. dynamo-facade-v3 dynamo-facade-v3 Public

    TypeScript

  2. think-like-a-git-dot-net-pt-br think-like-a-git-dot-net-pt-br Public

    Forked from geeksam/think-like-a-git-dot-net

    Source for http://think-like-a-git.net/ in Brazilian Portuguese

    HTML

  3. Numeric types and maximum number of ... Numeric types and maximum number of digits
    1
    Java type | MAX_VALUE | Digits/Scale
    2
    ----------|-----------|-------------
    3
    int | 2147483647 | 10
    4
    long | 9223372036854775807 | 19
  4. Date formatting flags by language Date formatting flags by language
    1
    Language | Year | Month | Day | Hour | Minute | Second
    2
    ---------|------|-------|-----|------|--------|-------
    3
    Result | 2017 | 01 | 01 | 14 | 52 | 03
    4
    [C# DateTime](https://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-date-and-time-format-strings) | yyyy | MM | dd | HH | mm | ss
    5
    [Java SimpleDateFormat](https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html) | yyyy | MM | dd | HH | mm | ss
  5. Shell aliases for ffmpeg commands Shell aliases for ffmpeg commands
    1
    ## WAV to MP3
    2
    
                  
    3
    ```bash
    4
    wav2mp3() {
    5
      ffmpeg -i "$1" -vn -ar 44100 -ac 2 -b:a 192k "${1%.wav}.mp3"
  6. Logging levels by Java library Logging levels by Java library
    1
    [JUL](https://docs.oracle.com/javase/8/docs/api/java/util/logging/Level.html) | [JCL](https://commons.apache.org/proper/commons-logging/apidocs/org/apache/commons/logging/Log.html) | [Log4j](https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Level.html) | [SLF4j](http://slf4j.org/apidocs/org/slf4j/Logger.html)
    2
    ----|-----|-------|------
    3
    -|FATAL|FATAL|-
    4
    SEVERE|ERROR|ERROR|ERROR
    5
    WARNING|WARN|WARN|WARN