Skip to content
View ElanDeyan's full-sized avatar
Block or Report

Block or report ElanDeyan

Report abuse

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

Report abuse
ElanDeyan/README.md

Hello!

Let me present myself in a dart code...

This code is a snippet from this gist.

final class ElanDeyan extends Programmer with Entusiasm implements Person {
  ElanDeyan();

  @override
  String get name => 'Elan Deyan';

  // Interests
  final studiesTheBible = true;
  final lovesTheNature = true;
  final favoriteSports = <String>{'Soccer/Football'};
  final interestedInMath = true;

  // Curiosity
  final wantsToLearnNewThings = true;

  @override
  Set<String> get learning => <String>{'Dart'};

  @override
  int get age {
    final bornDate = DateTime.parse('2002-07-16');
    final todayDate = DateTime.now();

    return todayDate.difference(bornDate).inDays ~/ 365.25;
  }

  @override
  Hand get dominatingHand => Hand.left;

  @override
  String get nativeLanguage => 'Brazilian portuguese';

  @override
  Map<String, String> get englishUnderstanding => {
        'speech': 'basic',
        'reading': 'more than basic',
        'hearing': 'basic',
        'write': 'basic'
      };
}

Pinned Loading

  1. my-quotes-app my-quotes-app Public

    An app to save and see a random quote.

    JavaScript 1

  2. pdf-merger-py pdf-merger-py Public

    A simple script to merge pdf files

    Python

  3. word-counter-py word-counter-py Public

    A CLI based in unix's wc, following a coding challenge

    Python

  4. data-structures-and-algorithms data-structures-and-algorithms Public

    Implementation of data structures and algorithms in different programming languages.

    Python

  5. nlw-expert nlw-expert Public

    Construction of the project during the "NLW expert" event: a back-end application that creates barcodes based on a request with the product code.

    Python

  6. min_max_heap_dart min_max_heap_dart Public

    A MinMax binary heap implementation as dart's package.

    Dart 1