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

Block or report zorky

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. angular-data-table angular-data-table Public

    DataTable component with data-table angular (sort, page, etc) with generic MatTableDataSource

  2. cryptodash cryptodash Public

    Dashboard graph for exchange crypto moneys (BTC, ETH, XRP) with https://min-api.cryptocompare.com API

    TypeScript 1

  3. library library Public

    Tutoriel Django / DRF

    TypeScript 3

  4. library_nestjs library_nestjs Public

    Tutoriel NestJS

    TypeScript

  5. Generic filter with operators (gt, l... Generic filter with operators (gt, lt, eq, ne) on model's field
    1
    import django_filters
    2
    import datetime
    3
    
                  
    4
    from django.db.models import Q
    5
    
                  
  6. Reduce d'une liste de dates, renvoie... Reduce d'une liste de dates, renvoie une chaîne de concaténation des dates: date1, date2, ..., dateN
    1
    /**
    2
      Exemple de reduce d'une liste de dates (dates_obj : [{date: 'date'}, ...]
    3
    */
    4
    reduce(row): string {
    5
      dates = row.dates_obj.reduce<string>((previousValue, currentValue, currentIndex) => {