Skip to content

Here's what's popular on GitHub today...

Trending repository

DimitrisJim
DimitrisJim commented Aug 10, 2021

Feature

CPython:

>>> from collections import deque
>>> d = deque()
>>> d.__imul__(3)
deque([1, 1, 1, 1, 1])

RustPython:

>>>>> from collections import deque
>>>>> d = deque()
>>>>> d.__imul__(5)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'deque' object has no attribute '__imul__'
Ethereum logo

Popular topic

Ethereum is a distributed public blockchain network.
js13kGames competition

Upcoming event recommended by GitHub

Aug
13

js13kGames competition

August 13, 2021 - September 13, 2021 • Online

Do you have what it takes to create a game in ≤ 13kB of JS, CSS and HTML?

App recommended by GitHub

AppVeyor

Windows developers use AppVeyor to continuously run their tests and deploy apps to cloud or on-premise environments. AppVeyor CI can update the build status on your GitHub pull requests, upload build artifacts to project release and deploy successful builds. AppVeyor is not just a build tool, but it's the place of Windows CI knowledge accumulation - thanks to AppVeyor's vibrant community!

Trending repository

This repository contains all the DSA (Data-Structures, Algorithms, 450 DSA by Love Babbar Bhaiya, FAANG Questions), Technical Subjects (OS + DBMS + SQL + CN + OOPs) Theory+Questions, FAANG Interview questions, and Miscellaneous Stuff (Programming MCQs, Puzzles, Aptitude, Reasoning). The Programming languages used for demonstration are C++, Python, and Java.

  • Updated Aug 25, 2021
  • Jupyter Notebook
MeiliSearch

Trending repository

curquiza
curquiza commented Aug 24, 2021

Two calls to index/:uid/settings/filtarable-attributes can return two different orders of fields.

Example: with genre and price as filterableAttributes you can get

[
    "genre",
    "price"
]

or

[
    "price",
    "genre"
]

To be consistent with the other settings, the order of these fields should be always the same: the order given by the use