Skip to content
View dgolosov's full-sized avatar
  • Israel
  • 10:43 (UTC +03:00)
Block or Report

Block or report dgolosov

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. Working with arrays in JS Working with arrays in JS
    1
    // The most perfomance way to populate a new array
    2
    [...Array(1000)].map((_, i) => i); // [0,...,999]
    3
    
                  
    4
    // Grouping array elements by condition
    5
    function groupBy(list, groupingCondition) {
  2. NginX JSON Errors NginX JSON Errors
    1
    error_page 400 /400.json;
    2
    location /400.json {
    3
      internal;
    4
      default_type application/json;
    5
      return 400 '{ "code": 400, "message":"Bad Request" }';