Skip to content
View akatakritos's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report akatakritos

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. PygmentSharp PygmentSharp Public

    C# Port of Pygments syntax highlighter

    C# 15 6

  2. bin bin Public

    ~/bin scripts

    Shell

  3. rxjs debug operator rxjs debug operator
    1
    export function debug<T>(label: string) {
    2
      return tap<T>(
    3
        next => console.log(`[${label}]`, next),
    4
        err => console.error(`[${label} -- ERR]`, err),
    5
        () => console.log(`[${label}]`, 'complete')
  4. advent-of-code-2019-fsharp advent-of-code-2019-fsharp Public

    F#

  5. rxjs error handling rxjs error handling
    1
    /**
    2
     * rxjs operator to convert a observable to an obserable of Results
    3
     */
    4
    export function wrapResult<T>(): UnaryFunction<Observable<T>, Observable<Result<T, Error>>> {
    5
      return pipe(