Skip to content

Instantly share code, notes, and snippets.

View the-loker's full-sized avatar
🇷🇺

Vladislav Sheverdin the-loker

🇷🇺
  • Симферополь
View GitHub Profile
@barbietunnie
barbietunnie / download-old-chrome-versions.md
Last active August 3, 2025 22:21
How to download old versions of Chrome

How to download old versions of Chrome

Click here to download old versions of Chrome for Linux, Mac and Windows.

The download_url field of the desired section houses the URL to the download.

Alternatively, for not too old versions, you can get it directly here.

@flekschas
flekschas / conclusion.md
Created July 31, 2018 14:59
Performance of Object.keys vs Object.values for getting the number of props of an object

Results

Let's get started!
VM73:13 Object.keys took: 20234.000000054948msecs
VM73:19 Object.values took: 5987.800000002608msecs

Conclusion

@coquin
coquin / bson-objectid-regex.js
Created October 31, 2012 12:16
A regular expression to match BSON ObjectID
var objectIdRegEx = /^([^\/]+)\/(.*?)\/([^\/]+)\/([0-9a-f]{24})$/;