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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. dynamo-facade-v3dynamo-facade-v3Public

    TypeScript

  2. think-like-a-git-dot-net-pt-brthink-like-a-git-dot-net-pt-brPublic

    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 languageDate 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 commandsShell 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 libraryLogging 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