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

Popular topic

Twitter is an online news and social networking service where users post and interact with messages, known as “Tweets”.
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

Azure Pipelines

Continuously build, test, and deploy to any platform and cloud

Azure Pipelines offers cloud-hosted pipelines for Linux, macOS, and Windows with 10 free parallel jobs and unlimited minutes for open source projects.

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

Mddocs

One-click documentation website from your GitHub repository. Mddocs creates user-friendly documentation from scratch. No tools or instruments required, just a simple .md files from your repository.