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__'
Qt logo

Popular topic

Qt, pronounced "cute", is a cross-platform application development framework.
Game Off

Upcoming event recommended by GitHub

Nov
1

Game Off

November 01, 2021 - December 01, 2021 • Online

Game Off is an annual game jam, where participants spend the month of November creating games based on a secret theme. Participate individually, or as a team. Use whatever game engines, libraries, and languages you like.

App recommended by GitHub

CommitCheck

CommitCheck ensures your commit messages are consistent and contain all required information. You can check that commits contain a JIRA number or ensure commits don't contain WIP.

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

App recommended by GitHub

Sonatype DepShield

Sonatype DepShield is a GitHub App used by developers to identify and remediate vulnerabilities in their open source dependencies.