repo_name stringclasses 25
values | repo_full_name stringclasses 25
values | owner stringclasses 25
values | stars int64 117k 496k | license stringclasses 7
values | repo_description stringclasses 25
values | filepath stringlengths 9 75 | file_type stringclasses 3
values | language stringclasses 2
values | content stringlengths 24 383k | size_bytes int64 25 387k | num_lines int64 2 4.44k |
|---|---|---|---|---|---|---|---|---|---|---|---|
build-your-own-x | codecrafters-io/build-your-own-x | codecrafters-io | 496,460 | null | Master programming by recreating your favorite technologies from scratch. | README.md | readme | Markdown | [](https://codecrafters.io/github-banner)
## Build your own <insert-technology-here>
This repository is a compilation of well-written, step-by-step guides for re-creating our favorite technologies from scratch.
> *What I cannot create, I do not ... | 47,009 | 505 |
public-apis | public-apis/public-apis | public-apis | 426,584 | MIT | A collective list of free APIs | README.md | readme | Markdown | # Try Public APIs for free
The Public APIs repository is manually curated by community members like you and folks working at [APILayer](https://apilayer.com/?utm_source=Github&utm_medium=Referral&utm_campaign=Public-apis-repo). It includes an extensive list of public APIs from many domains that you can use for your own... | 197,082 | 1,896 |
public-apis | public-apis/public-apis | public-apis | 426,584 | MIT | A collective list of free APIs | scripts\README.md | readme | Markdown | # Public APIs Scripts
This directory contains all validation and testing scripts used by Public APIs.
```bash
scripts
│ github_pull_request.sh # used to validate changes of a pull request
│ requirements.txt # contains dependencies of validate package
│
├───tests # contains all unit tests from the validate pack... | 1,952 | 76 |
public-apis | public-apis/public-apis | public-apis | 426,584 | MIT | A collective list of free APIs | scripts\tests\__init__.py | test | Python | # -*- coding: utf-8 -*-
| 25 | 2 |
public-apis | public-apis/public-apis | public-apis | 426,584 | MIT | A collective list of free APIs | scripts\tests\test_validate_format.py | test | Python | # -*- coding: utf-8 -*-
import unittest
from validate.format import error_message
from validate.format import get_categories_content
from validate.format import check_alphabetical_order
from validate.format import check_title
from validate.format import check_description, max_description_length
from validate.format i... | 18,620 | 467 |
public-apis | public-apis/public-apis | public-apis | 426,584 | MIT | A collective list of free APIs | scripts\tests\test_validate_links.py | test | Python | # -*- coding: utf-8 -*-
import unittest
from validate.links import find_links_in_text
from validate.links import check_duplicate_links
from validate.links import fake_user_agent
from validate.links import get_host_from_link
from validate.links import has_cloudflare_protection
class FakeResponse():
def __init__(... | 5,897 | 173 |
public-apis | public-apis/public-apis | public-apis | 426,584 | MIT | A collective list of free APIs | scripts\validate\__init__.py | python | Python | # -*- coding: utf-8 -*-
from validate import format
from validate import links
| 84 | 5 |
public-apis | public-apis/public-apis | public-apis | 426,584 | MIT | A collective list of free APIs | scripts\validate\format.py | python | Python | # -*- coding: utf-8 -*-
import re
import sys
from string import punctuation
from typing import List, Tuple, Dict
# Temporary replacement
# The descriptions that contain () at the end must adapt to the new policy later
punctuation = punctuation.replace('()', '')
anchor = '###'
auth_keys = ['apiKey', 'OAuth', 'X-Masha... | 8,741 | 278 |
public-apis | public-apis/public-apis | public-apis | 426,584 | MIT | A collective list of free APIs | scripts\validate\links.py | python | Python | # -*- coding: utf-8 -*-
import re
import sys
import random
from typing import List, Tuple
import requests
from requests.models import Response
def find_links_in_text(text: str) -> List[str]:
"""Find links in a text and return a list of URLs."""
link_pattern = re.compile(r'((?:https?://|www\d{0,3}[.]|[a-z0-... | 8,305 | 274 |
awesome | sindresorhus/awesome | sindresorhus | 459,144 | CC0-1.0 | 😎 Awesome lists about all kinds of interesting topics | media\readme.md | readme | Markdown | # Media
## Logo
- Primary color: `#fc60a8`
- Secondary color: `#494368`
- Font: [`Orbitron`](https://fonts.google.com/specimen/Orbitron)
You are free to use and modify the logo for your Awesome list or other usage.
| 218 | 10 |
awesome | sindresorhus/awesome | sindresorhus | 459,144 | CC0-1.0 | 😎 Awesome lists about all kinds of interesting topics | readme.md | readme | Markdown | <div align="center">
<img width="500" height="350" src="media/logo.svg" alt="Awesome">
<br>
<br>
<br>
<br>
<div>
<sub>Check out my macOS app</sub>
<br>
<h2>
<a href="https://sindresorhus.com/supercharge">Supercharge</a>
<br>
<sup>Elevate your Mac experience</sup>
</h2>
</div>
<br>
<br>
<br>
... | 82,242 | 929 |
free-programming-books | EbookFoundation/free-programming-books | EbookFoundation | 386,057 | CC-BY-4.0 | :books: Freely available programming books | docs\README.md | readme | Markdown | # Read Me
## Translations
Volunteers have translated many of our Contributing, How-to, and Code of Conduct documents into languages covered by our lists:
- Arabic / al arabiya / العربية
- [How-to](HOWTO-ar.md)
- Azerbaijani / Азәрбајҹан дили / آذربايجانجا ديلي
- Bengali / বাংলা
- [Code of Conduct](CODE_OF_CONDUC... | 5,492 | 149 |
free-programming-books | EbookFoundation/free-programming-books | EbookFoundation | 386,057 | CC-BY-4.0 | :books: Freely available programming books | README.md | readme | Markdown | # List of Free Learning Resources In Many Languages
<div align="center" markdown="1">
[](https://github.com/sindresorhus/awesome) 
[ and Left-To-Right (LTR) text.
It reads configuration from a `rtl_linter_config.yml` file located in the same
directory as the script.
Key Features:
- Line-by... | 27,642 | 606 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | README.md | readme | Markdown | # Coding Interview University
> I originally created this as a short to-do list of study topics for becoming a software engineer,
> but it grew to the large list you see today. After going through this study plan, [I got hired
> as a Software Development Engineer at Amazon](https://startupnextdoor.com/ive-been-acquire... | 138,676 | 2,022 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-af.md | readme | Markdown | # Kodering Onderhoud Universiteit
> Ek het oorspronklik dié as 'n kort om-te-doen lys van studie onderwerpe om 'n sagteware ingenieur te word gemaak,
> maar dit het gegroei tot die groot lys wat jy vandag sien. Nadat ek dié studieplan gevolg het, [het Amazon my
> aangestel](https://startupnextdoor.com/ive-been-acquire... | 140,301 | 1,984 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-ar.md | readme | Markdown | # جامعة المقابلات البرمجية
<div align="right">
> لقد قمت بإنشاء هذا المشروع في الأصل كلائحة صغيرة تحتوي على مواضيع دراسية الغرض من دراستها أن أصبح مهندس برمجيات،
> لكنها توسعت إلى قائمة كبيرة كالتي تراها اليوم. بعد أن قمتُ بدراسة هذه الخطة الدراسية [حصلت على عمل كمهندس برمجيات في شركة أمازون](https://startupnextdoo... | 148,415 | 2,031 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-bg.md | readme | Markdown | # Coding Interview University
> Първоначално създадох това като кратък списък с теми за учене, за това как се става софтуерен инженер, но то прерасна в този огромен списък, който виждате в момента. След като преминах през този учебен план, [бях нает като софтуерен инженер в Amazon](https://startupnextdoor.com/ive-been... | 176,132 | 2,031 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-bn.md | readme | Markdown | # কোডিং সাক্ষাত্কার বিশ্ববিদ্যালয়
> আমি এটি প্রথমে একটি সফটওয়্যার ইঞ্জিনিয়ার হওয়ার জন্য অধ্যয়নের বিষয়গুলির একটি স্বল্প-করণীয় তালিকা হিসাবে তৈরি করেছিলাম,
> তবে এটি আজ আপনি যে বৃহত তালিকা দেখতে পাচ্ছেন তাতে রুপ নিয়েছে এই শিক্ষা পরিকল্পনাটি পেরিয়ে যাওয়ার পরে, [আমি নিয়োগ পেয়েছি
> অ্যামাজনে সফটওয়্যার ডেভলপমেন্... | 273,153 | 2,227 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-cn.md | readme | Markdown | # 编程面试大学
> 原先我为了成为一个软件工程师而建立这份简单的学习主题清单, 但这份清单随着时间的推移而膨胀成今天这样。在做完这份清单上的每个目标后,[我成为了 Amazon 的软件开发工程师](https://startupnextdoor.com/ive-been-acquired-by-amazon/?src=ciu)! 你或许不需要像我一样学习这么多。但是,让你成为一位称职工程师所需要的知识都在这里了。
>
>我每天自学8~12小时,这样持续了好几个月。这是我的故事:[为什么我为了 Google 面试而自学了8个月](https://medium.freecodecamp.org/why-i-studied-full-... | 135,991 | 1,908 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-de.md | readme | Markdown | # Coding Interview University
> Ursprünglich habe ich dies als eine kurze To-do Liste von Studienthemen angefangen, um Softwareingenieur zu werden,
> aber es ist zu der riesigen Liste herangewachsen, die man heute sehen kann. Nachdem ich diesen Lehrplan durchgezogen
> habe, [wurde ich als Software Entwickler bei Amazo... | 150,051 | 2,110 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-el.md | readme | Markdown | #Coding Interview University
>Επίσημη έκδοση: [Αγγλικά](https://github.com/jwasham/coding-interview-university/blob/master/README.md)
## Τι είναι
Είναi το πλάνο διαβάσματός μου για να γίνω από web developer (αυτοδίδακτος, χωρίς πτυχίο στην Επιστήμη των Υπολογιστών), μηχανικός λογισμικού για μία μεγάλη εταιρία.

> Originalmente creé esto como una lista corta de temas a estudiar para volverme un Ingeniero de Software, pero creció hasta ser la gran lista que puede apreciar actualmente. Después de pasar por este plan de estudios, ¡[fui contratado como Ing... | 146,242 | 1,856 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-fa.md | readme | Markdown |
# دانشنامه مصاحبه برنامه نویسی
> من در ابتدا این لیست رو به عنوان یک لیست کوتاه از مجموعه موضوعات پژوهشی برای تبدیل شدن به یک مهندس نرم افزار ایجاد کردم، اما به فهرست بلند و بالایی که امروز میبینید تبدیل شد.
> بعد از طی کردن این طرح, [به عوان مهندس توسعه نرم افزار در آمازون استخدام شدم](https://startupnextdoor.com/iv... | 153,337 | 1,972 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-fr.md | readme | Markdown | # Coding Interview University
Traductions:
- [中文版本](README-cn.md)
- [Español (in progress)](README-es.md) [Issue #80](https://github.com/jwasham/coding-interview-university/issues/80)
- मानक हिन्दी (in progress) [Issue #81](https://github.com/jwasham/coding-interview-university/issues/81)
## C'est quoi?
C'est un pl... | 144,450 | 1,965 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-he.md | readme | Markdown | # Coding Interview University אוניברסיטיה של ראיונות קוד
<div dir='rtl'>
<h2> על מה מדובר כאן?</h2>
<p>
בהתחלה, זאת היתה רשימה קצרה של נושאי לימוד כדי להיות מהנדס תוכנה, אבל עם הזמן הפרוייקט צמח להיות מה שאפשר לראות כיום.
לאחר סיום תוכנית הלימודים הזאת,
<a href='https://startupnextdoor.com/ive-been-acquired-by-ama... | 145,503 | 1,977 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-hi.md | readme | Markdown | # कोडिंग इंटरव्यू यूनिवर्सिटी
> मैंने मूल रूप से इसे एक सॉफ्टवेयर इंजीनियर बनने के लिए अध्ययन विषयों की एक छोटी टू-डू सूची के रूप में बनाया था,
> लेकिन यह उस बड़ी सूची तक बढ़ गया है जिसे आप आज देखते हैं। इस अध्ययन योजना को पढ़ने के बाद, [मुझे काम पर रखा गया
> Amazon में एक सॉफ्टवेयर डेवलपमेंट इंजीनियर के रूप में](http... | 243,964 | 1,951 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-id.md | readme | Markdown | # Coding Interview University
Versi asli: [Bahasa Inggris](../README.md)
## Ringkasan apa ini?
Ini adalah rencana studi multi-bulan saya untuk beralih dari pengembang web (otodidak, tanpa gelar Ilmu Komputer) menjadi insinyur perangkat lunak untuk perusahaan besar.

Traduzione in Italiano a Cura di [@volpoh](https://github.com/volpoh)
> Inizialmente ho creato questo progetto come una sorta di "to-do list" degli argomenti da studiare per diventare un software engineer,
> ma è cresciu... | 148,005 | 1,992 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-ja.md | readme | Markdown | # コーディング面接の大学
>私はもともとこれをソフトウェアエンジニアになるための短いトピックリストとして作成しましたが、
>今日それは大きなリストに成長しました。この学習計画を経て、[私はAmazonで
> ソフトウェアエンジニアとして雇われました!!](https://startupnextdoor.com/ive-been-acquired-by-amazon/?src=ciu)
>おそらく、あなたは私ほど勉強する必要はないでしょう。とにかく、必要なものはすべてここにあります。
> 私は数ヶ月間、1日約8〜12時間勉強しました。これが私のストーリーです: [Google の面接のために8か月間フルタイムで勉強した理由](ht... | 153,710 | 1,858 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-kh.md | readme | Markdown | # មហាវិទ្យាល័យការសរសេរកូដសំរាប់ការសម្ភាសន៍ (Coding Interview University)
### បង្កើតដោយ: [@John Washam](https://github.com/jwasham)
### បកប្រែជាភាសារខ្មែរដោយ: [@Vortana Say](https://github.com/vsay01)
> ពីដំបូងខ្ញុំបង្កើតនេះជាបញ្ជីប្រធានបទត្រូវធ្វើខ្លីដើម្បីក្លាយជាវិស្វករអភិវឌ្ឍន៍កម្មវិធី ប៉ុន្តែវាបានកើនឡើងដល់បញ្ជីធំ... | 205,171 | 2,010 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-kk.md | readme | Markdown | # Кодтау сұхбат университеті
> Мен мұны бастапқыда бағдарламалық жасақтама инженері болу үшін оқу тақырыптарының қысқаша тізімі ретінде жасадым,
> бірақ ол бүгін көріп отырған үлкен тізімге дейін өсті. Осы оқу жоспарын орындағаннан кейін [мен жұмысқа қабылдандым
> Amazon-да бағдарламалық жасақтаманы әзірлеу инженері р... | 79,964 | 1,147 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-ko.md | readme | Markdown | # 코딩 면접 대학(Coding Interview University)
> 이 글은 원래 제가 소프트웨어 엔지니어가 되기 위해 정리한 짧은 주제들이었습니다.
> 그러나 지금은 보다시피 주제들이 굉장히 많아졌습니다. 아래 내용을 모두 습득한 후,
> [저는 아마존에 소프트웨어 엔지니어로 채용되었습니다](https://startupnextdoor.com/ive-been-acquired-by-amazon/?src=ciu)!
> 여러분은 아마 아래 글들을 모두 다 공부할 없을 겁니다. 아무튼 여러분에게 필요한 모든 것은 여기에 있습니다.
>
> 몇 달 동안 저는 하루에 8... | 148,685 | 2,020 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-mr.md | readme | Markdown | # कोडिंग साक्षात्कार विद्यापीठ
> मी प्रारंभिकपणे ह्या सॉफ्टवेअर इंजिनिअर बनण्याच्या अभ्यास विषयांची संक्षिप्त सूची म्हणून हे निर्माण केलं होतं,
> परंतु ते आता आपण दिसतं असं मोठं सूची व्हायला वाढलं. या अभ्यास योजनेवर पास केल्यानंतर, [मी Amazon वर सॉफ्टवेअर विकास अभियंता म्हणून नोकरी मिळवली](https://startupnextdoor.com/... | 225,089 | 1,927 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-nl.md | readme | Markdown | # Codering Interview Universiteit
> Ik heb dit oorspronkelijk gemaakt als een korte takenlijst met studieonderwerpen om een software-ingenieur te worden,
> maar het groeide uit tot de grote lijst die je vandaag ziet. Nadat ik dit studieplan had doorlopen, [werd ik aangenomen
> als Software Development Engineer bij A... | 134,918 | 1,884 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-pl.md | readme | Markdown | # Przygotowanie do rozmowy kwalifikacyjnej w Google - Coding Interview University
> Pierwotnie stworzyłem ten projekt, jako krótką listę tematów do nauki, które warto poznać aby zostać Software Engineer,
> ale powiększył się do dużej listy, którą widzisz dzisiaj. Po przejściu przez ten plan studiów [zostałem zatrudnio... | 145,998 | 1,986 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-ptbr.md | readme | Markdown | # Universidade de Entrevista de Programação
> Originalmente eu criei isso como uma pequena lista to-do (a fazer) de tópicos de estudo para se tornar um engenheiro de software,
> mas isso cresceu para este imenso acervo que você consulta hoje. Após passar por todo esse plano de estudo, [Eu fui contratado
> como Engen... | 179,278 | 1,935 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-ru.md | readme | Markdown | # Google Interview University
Оригинальная версия: [Английский](../README.md)
## Для кого это?
Это мой учебный план, рассчитанный на несколько месяцев для веб-разработчиков, не имеющих образования в Computer Science (CS)
и планирующих работать инженерами-программистами (software engineer) в компании Google.
,
> 但這份To-do list儼然隨著時間成為了一個很長的清單。 [做完這份To-do list上的每個目標後,我成為了Amazon的工程師](https://startupnextdoor.com/ive-been-acquired-by-amazon/?src=ciu)!
> 你或許不需要像我讀一樣多。但是,每個讓你成為一位稱職工程師所需要的知識都在這裡了。
>
> 我每天讀8~12小時的書,這樣持續了好幾個月。這是我的故事:[為什麼我為了Google面試而讀了8個月](https... | 140,512 | 1,920 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-uk.md | readme | Markdown | # Coding Interview University
Оригінал [англійською](../README.md)
> Спочатку я створив це як короткий список завдань для вивчення тем, щоб стати
інженером програмного забезпечення, але він збільшився до великого списку, який ви бачите
сьогодні. Пройшовши цей навчальний план,
[мене найняли розробником програмного заб... | 185,726 | 1,943 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-ur.md | readme | Markdown | # کوڈنگ انٹرویو یونیورسٹی
>میں نے اصل میں اسے سافٹ ویئر انجینئر بننے کے لیے مطالعے کے عنوانات کی ایک مختصر فہرست کے طور پر بنایا تھا، لیکن یہ اس بڑی فہرست تک پہنچ گئی جو آپ آج دیکھ رہے ہیں۔ اس مطالعاتی منصوبے سے گزرنے کے بعد ، [مجھے ایمیزون میں سافٹ ویئر ڈویلپمنٹ انجینئر کے طور پر ملازمت پر رکھا گیا ہے!](https://start... | 154,331 | 1,931 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-uz.md | readme | Markdown | # Coding Interview University
Asl versiyasi: [Inglizcha](../README.md)
> Dastlab men bu proyektni dasturchi (software engineer) bo'lish uchun o'qish kerak bo'lgan mavzularning qisqacha ro'yxati sifatida yaratdim,
> ammo bu proyekt bugun siz ko'rib turgan katta ro'yxatga aylandi. Ushbu o'quv rejasidan o'tib, [men Amaz... | 148,062 | 1,988 |
coding-interview-university | jwasham/coding-interview-university | jwasham | 342,792 | CC-BY-SA-4.0 | A complete computer science study plan to become a software engineer. | translations\README-vi.md | readme | Markdown | # Tự ôn tập phỏng vấn về lập trình (Coding Interview University)
Bản gốc:
* [English](/README.md)
Tác giả gốc: [John Washam](https://github.com/jwasham)
Đóng góp cho bản dịch tiếng Việt:
* [Lê Tiến Tài](https://github.com/letientai299) - [@letientai299](https://twitter.com/letientai299)
* [Võ Tường Thọ](https://gith... | 177,482 | 2,018 |
awesome-python | vinta/awesome-python | vinta | 294,456 | NOASSERTION | An opinionated list of Python frameworks, libraries, tools, and resources | README.md | readme | Markdown | # Awesome Python
An opinionated list of Python frameworks, libraries, tools, and resources.
# **Sponsors**
- **[pyr](https://pyrun.dev)**: Zero-config Python project manager. Bootstraps its own runtime, app-convention, and working imports - out the box.
> The **#10 most-starred repo on GitHub**. Put your product in... | 77,490 | 1,154 |
awesome-python | vinta/awesome-python | vinta | 294,456 | NOASSERTION | An opinionated list of Python frameworks, libraries, tools, and resources | website\build.py | python | Python | #!/usr/bin/env python3
"""Build a single-page HTML site from README.md for the awesome-python website."""
import json
import re
import shutil
from datetime import UTC, datetime
from pathlib import Path
from typing import Any
from jinja2 import Environment, FileSystemLoader
from readme_parser import ParsedGroup, Parse... | 6,909 | 194 |
awesome-python | vinta/awesome-python | vinta | 294,456 | NOASSERTION | An opinionated list of Python frameworks, libraries, tools, and resources | website\fetch_github_stars.py | python | Python | #!/usr/bin/env python3
"""Fetch GitHub star counts and owner info for all GitHub repos in README.md."""
import json
import os
import re
import sys
from collections.abc import Sequence
from datetime import UTC, datetime, timedelta
from itertools import batched
from pathlib import Path
import httpx
from build import e... | 6,528 | 182 |
awesome-python | vinta/awesome-python | vinta | 294,456 | NOASSERTION | An opinionated list of Python frameworks, libraries, tools, and resources | website\readme_parser.py | python | Python | """Parse README.md into structured section data using markdown-it-py AST."""
from __future__ import annotations
import re
from typing import TypedDict
from markdown_it import MarkdownIt
from markdown_it.tree import SyntaxTreeNode
from markupsafe import escape
class AlsoSee(TypedDict):
name: str
url: str
... | 15,232 | 443 |
awesome-python | vinta/awesome-python | vinta | 294,456 | NOASSERTION | An opinionated list of Python frameworks, libraries, tools, and resources | website\tests\test_build.py | test | Python | """Tests for the build module."""
import json
import shutil
import textwrap
from pathlib import Path
from build import (
build,
detect_source_type,
extract_entries,
extract_github_repo,
load_stars,
sort_entries,
)
from readme_parser import parse_readme, slugify
# -----------------------------... | 13,641 | 440 |
awesome-python | vinta/awesome-python | vinta | 294,456 | NOASSERTION | An opinionated list of Python frameworks, libraries, tools, and resources | website\tests\test_fetch_github_stars.py | test | Python | """Tests for fetch_github_stars module."""
import json
from fetch_github_stars import (
build_graphql_query,
extract_github_repos,
parse_graphql_response,
save_cache,
)
class TestExtractGithubRepos:
def test_extracts_owner_repo_from_github_url(self):
readme = "* [requests](https://github... | 11,203 | 296 |
awesome-python | vinta/awesome-python | vinta | 294,456 | NOASSERTION | An opinionated list of Python frameworks, libraries, tools, and resources | website\tests\test_readme_parser.py | test | Python | """Tests for the readme_parser module."""
import textwrap
from pathlib import Path
import pytest
from readme_parser import (
_find_inline,
_parse_section_entries,
parse_readme,
render_inline_html,
render_inline_text,
)
from markdown_it import MarkdownIt
from markdown_it.tree import SyntaxTreeNod... | 18,147 | 558 |
awesome-selfhosted | awesome-selfhosted/awesome-selfhosted | awesome-selfhosted | 288,273 | NOASSERTION | A list of Free Software network services and web applications which can be hosted on your own servers | README.md | readme | Markdown | # Awesome-Selfhosted
[](https://github.com/sindresorhus/awesome) [](https://github.com/awesome-selfhosted/awesome-selfhosted-data/issues/1) [ ∙ [日本語](README-ja.md) ∙ [简体中文](README-zh-Hans.md) ∙ [繁體中文](README-zh-TW.md) | [العَرَبِيَّة](https://github.com/donnemartin/system-design-primer/issues/170) ∙ [বাংলা](https://github.com/donnemartin/system-design-primer/issues/220) ∙ [Português do Brasil](https://github.com/donnemartin/system-desi... | 139,349 | 1,789 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | README-zh-Hans.md | readme | Markdown | > * 原文地址:[github.com/donnemartin/system-design-primer](https://github.com/donnemartin/system-design-primer)
> * 译文出自:[掘金翻译计划](https://github.com/xitu/gold-miner)
> * 译者:[XatMassacrE](https://github.com/XatMassacrE)、[L9m](https://github.com/L9m)、[Airmacho](https://github.com/Airmacho)、[xiaoyusilen](https://github.com/xi... | 103,283 | 1,794 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | README-zh-TW.md | readme | Markdown | *[English](README.md) ∙ [日本語](README-ja.md) ∙ [简体中文](README-zh-Hans.md) ∙ [繁體中文](README-zh-TW.md) | [العَرَبِيَّة](https://github.com/donnemartin/system-design-primer/issues/170) ∙ [বাংলা](https://github.com/donnemartin/system-design-primer/issues/220) ∙ [Português do Brasil](https://github.com/donnemartin/system-desi... | 128,150 | 1,788 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | README.md | readme | Markdown | *[English](README.md) ∙ [日本語](README-ja.md) ∙ [简体中文](README-zh-Hans.md) ∙ [繁體中文](README-zh-TW.md) | [العَرَبِيَّة](https://github.com/donnemartin/system-design-primer/issues/170) ∙ [বাংলা](https://github.com/donnemartin/system-design-primer/issues/220) ∙ [Português do Brasil](https://github.com/donnemartin/system-desi... | 111,669 | 1,840 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\object_oriented_design\call_center\call_center.py | python | Python | from abc import ABCMeta, abstractmethod
from collections import deque
from enum import Enum
class Rank(Enum):
OPERATOR = 0
SUPERVISOR = 1
DIRECTOR = 2
class Employee(metaclass=ABCMeta):
def __init__(self, employee_id, name, rank, call_center):
self.employee_id = employee_id
self.na... | 3,385 | 123 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\object_oriented_design\deck_of_cards\deck_of_cards.py | python | Python | from abc import ABCMeta, abstractmethod
from enum import Enum
import sys
class Suit(Enum):
HEART = 0
DIAMOND = 1
CLUBS = 2
SPADE = 3
class Card(metaclass=ABCMeta):
def __init__(self, value, suit):
self.value = value
self.suit = suit
self.is_available = True
@proper... | 2,664 | 118 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\object_oriented_design\hash_table\hash_map.py | python | Python | class Item(object):
def __init__(self, key, value):
self.key = key
self.value = value
class HashTable(object):
def __init__(self, size):
self.size = size
self.table = [[] for _ in range(self.size)]
def _hash_function(self, key):
return key % self.size
def se... | 1,117 | 39 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\object_oriented_design\lru_cache\lru_cache.py | python | Python | class Node(object):
def __init__(self, results):
self.results = results
self.next = next
class LinkedList(object):
def __init__(self):
self.head = None
self.tail = None
def move_to_front(self, node):
pass
def append_to_front(self, node):
pass
de... | 1,997 | 67 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\object_oriented_design\online_chat\online_chat.py | python | Python | from abc import ABCMeta
from enum import Enum
class UserService(object):
def __init__(self):
self.users_by_id = {} # key: user id, value: User
def add_user(self, user_id, name, pass_hash):
pass
def remove_user(self, user_id):
pass
def add_friend_request(self, from_user_id,... | 2,547 | 105 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\object_oriented_design\parking_lot\parking_lot.py | python | Python | from abc import ABCMeta, abstractmethod
from enum import Enum
class VehicleSize(Enum):
MOTORCYCLE = 0
COMPACT = 1
LARGE = 2
class Vehicle(metaclass=ABCMeta):
def __init__(self, vehicle_size, license_plate, spot_size):
self.vehicle_size = vehicle_size
self.license_plate = license_pl... | 3,195 | 126 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\mint\mint_mapreduce.py | python | Python | # -*- coding: utf-8 -*-
from mrjob.job import MRJob
class SpendingByCategory(MRJob):
def __init__(self, categorizer):
self.categorizer = categorizer
...
def current_year_month(self):
"""Return the current year and month."""
...
def extract_year_month(self, timestamp):
... | 1,532 | 58 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\mint\mint_snippets.py | python | Python | # -*- coding: utf-8 -*-
from enum import Enum
class DefaultCategories(Enum):
HOUSING = 0
FOOD = 1
GAS = 2
SHOPPING = 3
# ...
seller_category_map = {}
seller_category_map['Exxon'] = DefaultCategories.GAS
seller_category_map['Target'] = DefaultCategories.SHOPPING
class Categorizer(object):
... | 1,463 | 51 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\mint\README-zh-Hans.md | readme | Markdown | # 设计 Mint.com
**注意:这个文档中的链接会直接指向[系统设计主题索引](https://github.com/donnemartin/system-design-primer/blob/master/README-zh-Hans.md#系统设计主题索引)中的有关部分,以避免重复的内容。您可以参考链接的相关内容,来了解其总的要点、方案的权衡取舍以及可选的替代方案。**
## 第一步:简述用例与约束条件
> 搜集需求与问题的范围。
> 提出问题来明确用例与约束条件。
> 讨论假设。
我们将在没有面试官明确说明问题的情况下,自己定义一些用例以及限制条件。
### 用例
#### 我们将把问题限定在仅处理以下用例的... | 20,665 | 441 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\mint\README.md | readme | Markdown | # Design Mint.com
*Note: This document links directly to relevant areas found in the [system design topics](https://github.com/donnemartin/system-design-primer#index-of-system-design-topics) to avoid duplication. Refer to the linked content for general talking points, tradeoffs, and alternatives.*
## Step 1: Outline... | 21,056 | 442 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\pastebin\pastebin.py | python | Python | # -*- coding: utf-8 -*-
from mrjob.job import MRJob
class HitCounts(MRJob):
def extract_url(self, line):
"""Extract the generated url from the log line."""
pass
def extract_year_month(self, line):
"""Return the year and month portions of the timestamp."""
pass
def mappe... | 1,101 | 47 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\pastebin\README-zh-Hans.md | readme | Markdown | # 设计 Pastebin.com (或者 Bit.ly)
**注意: 为了避免重复,当前文档会直接链接到[系统设计主题](https://github.com/donnemartin/system-design-primer/blob/master/README-zh-Hans.md#系统设计主题的索引)的相关区域,请参考链接内容以获得综合的讨论点、权衡和替代方案。**
**设计 Bit.ly** - 是一个类似的问题,区别是 pastebin 需要存储的是 paste 的内容,而不是原始的未短化的 url。
## 第一步:概述用例和约束
> 收集这个问题的需求和范畴。
> 问相关问题来明确用例和约束。
> 讨论一些假设。... | 16,820 | 331 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\pastebin\README.md | readme | Markdown | # Design Pastebin.com (or Bit.ly)
*Note: This document links directly to relevant areas found in the [system design topics](https://github.com/donnemartin/system-design-primer#index-of-system-design-topics) to avoid duplication. Refer to the linked content for general talking points, tradeoffs, and alternatives.*
**... | 16,114 | 333 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\query_cache\query_cache_snippets.py | python | Python | # -*- coding: utf-8 -*-
class QueryApi(object):
def __init__(self, memory_cache, reverse_index_cluster):
self.memory_cache = memory_cache
self.reverse_index_cluster = reverse_index_cluster
def parse_query(self, query):
"""Remove markup, break text into terms, deal with typos,
... | 2,700 | 91 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\query_cache\README-zh-Hans.md | readme | Markdown | # 设计一个键-值缓存来存储最近 web 服务查询的结果
**注意:这个文档中的链接会直接指向[系统设计主题索引](https://github.com/donnemartin/system-design-primer/blob/master/README-zh-Hans.md#系统设计主题的索引)中的有关部分,以避免重复的内容。你可以参考链接的相关内容,来了解其总的要点、方案的权衡取舍以及可选的替代方案。**
## 第一步:简述用例与约束条件
> 搜集需求与问题的范围。
> 提出问题来明确用例与约束条件。
> 讨论假设。
我们将在没有面试官明确说明问题的情况下,自己定义一些用例以及限制条件。
### 用例
#### 我... | 15,366 | 307 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\query_cache\README.md | readme | Markdown | # Design a key-value cache to save the results of the most recent web server queries
*Note: This document links directly to relevant areas found in the [system design topics](https://github.com/donnemartin/system-design-primer#index-of-system-design-topics) to avoid duplication. Refer to the linked content for genera... | 14,359 | 307 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\sales_rank\README-zh-Hans.md | readme | Markdown | # 为 Amazon 设计分类售卖排行
**注意:这个文档中的链接会直接指向[系统设计主题索引](https://github.com/donnemartin/system-design-primer/blob/master/README-zh-Hans.md#系统设计主题的索引)中的有关部分,以避免重复的内容。你可以参考链接的相关内容,来了解其总的要点、方案的权衡取舍以及可选的替代方案。**
## 第一步:简述用例与约束条件
> 搜集需求与问题的范围。
> 提出问题来明确用例与约束条件。
> 讨论假设。
我们将在没有面试官明确说明问题的情况下,自己定义一些用例以及限制条件。
### 用例
#### 我们将把问题限定在仅... | 16,170 | 339 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\sales_rank\README.md | readme | Markdown | # Design Amazon's sales rank by category feature
*Note: This document links directly to relevant areas found in the [system design topics](https://github.com/donnemartin/system-design-primer#index-of-system-design-topics) to avoid duplication. Refer to the linked content for general talking points, tradeoffs, and alt... | 15,223 | 339 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\sales_rank\sales_rank_mapreduce.py | python | Python | # -*- coding: utf-8 -*-
from mrjob.job import MRJob
class SalesRanker(MRJob):
def within_past_week(self, timestamp):
"""Return True if timestamp is within past week, False otherwise."""
...
def mapper(self, _, line):
"""Parse each log line, extract and transform relevant lines.
... | 1,998 | 78 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\scaling_aws\README-zh-Hans.md | readme | Markdown | # 在 AWS 上设计支持百万级到千万级用户的系统
**注释:为了避免重复,这篇文章的链接直接关联到 [系统设计主题](https://github.com/donnemartin/system-design-primer#index-of-system-design-topics) 的相关章节。为一讨论要点、折中方案和可选方案做参考。**
## 第 1 步:用例和约束概要
> 收集需求并调查问题。
> 通过提问清晰用例和约束。
> 讨论假设。
如果没有面试官提出明确的问题,我们将自己定义一些用例和约束条件。
### 用例
解决这个问题是一个循序渐进的过程:1) **基准/负载 测试**, 2) 瓶颈 **概述**, 3... | 18,651 | 404 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\scaling_aws\README.md | readme | Markdown | # Design a system that scales to millions of users on AWS
*Note: This document links directly to relevant areas found in the [system design topics](https://github.com/donnemartin/system-design-primer#index-of-system-design-topics) to avoid duplication. Refer to the linked content for general talking points, tradeoffs... | 20,244 | 404 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\social_graph\README-zh-Hans.md | readme | Markdown | # 为社交网络设计数据结构
**注释:为了避免重复,这篇文章的链接直接关联到 [系统设计主题](https://github.com/donnemartin/system-design-primer#index-of-system-design-topics) 的相关章节。为一讨论要点、折中方案和可选方案做参考。**
## 第 1 步:用例和约束概要
> 收集需求并调查问题。
> 通过提问清晰用例和约束。
> 讨论假设。
如果没有面试官提出明确的问题,我们将自己定义一些用例和约束条件。
### 用例
#### 我们就处理以下用例审视这一问题
* **用户** 寻找某人并显示与被寻人之间的最短路径
* **服务** 高可... | 14,987 | 349 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\social_graph\README.md | readme | Markdown | # Design the data structures for a social network
*Note: This document links directly to relevant areas found in the [system design topics](https://github.com/donnemartin/system-design-primer#index-of-system-design-topics) to avoid duplication. Refer to the linked content for general talking points, tradeoffs, and al... | 16,243 | 350 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\social_graph\social_graph_snippets.py | python | Python | # -*- coding: utf-8 -*-
from collections import deque
from enum import Enum
class State(Enum):
unvisited = 0
visited = 1
class Graph(object):
def bfs(self, source, dest):
if source is None:
return False
queue = deque()
queue.append(source)
source.visit_state ... | 1,822 | 73 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\twitter\README-zh-Hans.md | readme | Markdown | # 设计推特时间轴与搜索功能
**注意:这个文档中的链接会直接指向[系统设计主题索引](https://github.com/donnemartin/system-design-primer/blob/master/README-zh-Hans.md#系统设计主题的索引)中的有关部分,以避免重复的内容。你可以参考链接的相关内容,来了解其总的要点、方案的权衡取舍以及可选的替代方案。**
**设计 Facebook 的 feed** 与**设计 Facebook 搜索**与此为同一类型问题。
## 第一步:简述用例与约束条件
> 搜集需求与问题的范围。
> 提出问题来明确用例与约束条件。
> 讨论假设。
我们将在没有面试官明确... | 17,466 | 332 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\twitter\README.md | readme | Markdown | # Design the Twitter timeline and search
*Note: This document links directly to relevant areas found in the [system design topics](https://github.com/donnemartin/system-design-primer#index-of-system-design-topics) to avoid duplication. Refer to the linked content for general talking points, tradeoffs, and alternative... | 16,976 | 334 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\web_crawler\README-zh-Hans.md | readme | Markdown | # 设计一个网页爬虫
**注意:这个文档中的链接会直接指向[系统设计主题索引](https://github.com/donnemartin/system-design-primer/blob/master/README-zh-Hans.md#系统设计主题的索引)中的有关部分,以避免重复的内容。你可以参考链接的相关内容,来了解其总的要点、方案的权衡取舍以及可选的替代方案。**
## 第一步:简述用例与约束条件
> 把所有需要的东西聚集在一起,审视问题。不停的提问,以至于我们可以明确使用场景和约束。讨论假设。
我们将在没有面试官明确说明问题的情况下,自己定义一些用例以及限制条件。
### 用例
#### 我们把问题限定在仅... | 18,433 | 357 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\web_crawler\README.md | readme | Markdown | # Design a web crawler
*Note: This document links directly to relevant areas found in the [system design topics](https://github.com/donnemartin/system-design-primer#index-of-system-design-topics) to avoid duplication. Refer to the linked content for general talking points, tradeoffs, and alternatives.*
## Step 1: Ou... | 17,401 | 354 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\web_crawler\web_crawler_mapreduce.py | python | Python | # -*- coding: utf-8 -*-
from mrjob.job import MRJob
class RemoveDuplicateUrls(MRJob):
def mapper(self, _, line):
yield line, 1
def reducer(self, key, values):
total = sum(values)
if total == 1:
yield key, total
def steps(self):
"""Run the map and reduce step... | 519 | 26 |
system-design-primer | donnemartin/system-design-primer | donnemartin | 344,504 | NOASSERTION | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | solutions\system_design\web_crawler\web_crawler_snippets.py | python | Python | # -*- coding: utf-8 -*-
class PagesDataStore(object):
def __init__(self, db):
self.db = db
pass
def add_link_to_crawl(self, url):
"""Add the given link to `links_to_crawl`."""
pass
def remove_link_to_crawl(self, url):
"""Remove the given link from `links_to_crawl... | 2,275 | 74 |
project-based-learning | practical-tutorials/project-based-learning | practical-tutorials | 264,124 | MIT | Curated list of project-based tutorials | README.md | readme | Markdown | # Project Based Learning
[](https://gitter.im/practical-tutorials/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
A list of programming tutorials in which aspiring software developers learn how to build an application from scratch... | 52,689 | 672 |
the-book-of-secret-knowledge | trimstray/the-book-of-secret-knowledge | trimstray | 217,409 | MIT | A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more. | README.md | readme | Markdown | <p align="center">
<a href="https://github.com/trimstray/the-book-of-secret-knowledge">
<img src="https://github.com/trimstray/the-book-of-secret-knowledge/blob/master/static/img/the-book-of-secret-knowledge-preview.png" alt="Master">
</a>
</p>
<p align="center">"<i>Knowledge is powerful, be careful how you us... | 216,118 | 4,443 |
vue | vuejs/vue | vuejs | 209,805 | MIT | This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core | benchmarks\ssr\README.md | readme | Markdown | # Vue.js SSR benchmark
This benchmark renders a table of 1000 rows with 10 columns (10k components), with around 30k normal elements on the page. Note this is not something likely to be seen in a typical app. This benchmark is mostly for stress/regression testing and comparing between `renderToString` and `renderToStr... | 884 | 14 |
vue | vuejs/vue | vuejs | 209,805 | MIT | This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core | examples\classic\todomvc\readme.md | readme | Markdown | # Vue.js TodoMVC Example
> Vue.js is a library for building interactive web interfaces.
It provides data-driven, nestable view components with a simple and flexible API.
> _[Vue.js - v2.vuejs.org](https://v2.vuejs.org)_
## Learning Vue.js
The [Vue.js website](https://v2.vuejs.org/) is a great resource to get starte... | 959 | 28 |
vue | vuejs/vue | vuejs | 209,805 | MIT | This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core | packages\server-renderer\README.md | readme | Markdown | # vue-server-renderer
> This package is auto-generated. For pull requests please see [src/platforms/web/entry-server-renderer.js](https://github.com/vuejs/vue/blob/dev/src/platforms/web/entry-server-renderer.js).
This package offers Node.js server-side rendering for Vue 2.0.
- [API Reference](https://ssr.vuejs.org/e... | 402 | 9 |
vue | vuejs/vue | vuejs | 209,805 | MIT | This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core | packages\template-compiler\README.md | readme | Markdown | # vue-template-compiler
> This package is auto-generated. For pull requests please see [src/platforms/web/entry-compiler.js](https://github.com/vuejs/vue/tree/dev/src/platforms/web/entry-compiler.js).
This package can be used to pre-compile Vue 2.0 templates into render functions to avoid runtime-compilation overhead... | 6,683 | 163 |
vue | vuejs/vue | vuejs | 209,805 | MIT | This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core | README.md | readme | Markdown | ## Vue 2 has reached End of Life
**You are looking at the now inactive repository for Vue 2. The actively maintained repository for the latest version of Vue is [vuejs/core](https://github.com/vuejs/core).**
Vue has reached End of Life on December 31st, 2023. It no longer receives new features, updates, or fixes. How... | 7,996 | 123 |
computer-science | ossu/computer-science | ossu | 203,282 | MIT | 🎓 Path to a free self-taught education in Computer Science! | coursepages\class-based\README.md | readme | Markdown | # Class-Based Program Design
This course extends your work from [Systematic Program Design](../spd/README.md), transitioning from the functional programming paradigm with Racket to the class-based paradigm with Java, and preparing you for [Object-Oriented Design](/README.md#core-programming).
This course was offered ... | 6,034 | 41 |
computer-science | ossu/computer-science | ossu | 203,282 | MIT | 🎓 Path to a free self-taught education in Computer Science! | coursepages\intro-cs\README.md | readme | Markdown | # Introduction to Computer Science and Programming using Python
This course will introduce you to the world of computer science and programming, giving you a flavor of the material to come. If you finish the course wanting more, Computer Science is likely for you!
This course has been developed by MIT and is availabl... | 5,499 | 47 |
computer-science | ossu/computer-science | ossu | 203,282 | MIT | 🎓 Path to a free self-taught education in Computer Science! | coursepages\intro-programming\README.md | readme | Markdown | # Introduction to Programming
If you find the [Intro CS course](../intro-cs/README.md) difficult to follow, start here. These courses are self-paced, allowing you to adjust the number of hours you spend per week to meet your needs.
You need to do **only ONE** of the following courses.
## CS50P: Introduction to Progr... | 7,065 | 87 |
computer-science | ossu/computer-science | ossu | 203,282 | MIT | 🎓 Path to a free self-taught education in Computer Science! | coursepages\ostep\README.md | readme | Markdown | # Operating Systems: Three Easy Pieces
Credit goes to [palladian](https://github.com/palladian1)
## Introduction
First, we should be frank: it's really hard to find a good self-contained online course on operating systems. OSTEP is the best course we've found so far. We describe below two approaches to the course, a ... | 20,576 | 199 |
computer-science | ossu/computer-science | ossu | 203,282 | MIT | 🎓 Path to a free self-taught education in Computer Science! | coursepages\spd\README.md | readme | Markdown | # Systematic Program Design
This course has been developed by UBC and is available from Edx. We recommend you to do it from the archived version on Edx.
> This programming course takes a unique approach, as it focuses on learning a systematic programming method rather than a programming language. This practical appro... | 9,509 | 111 |
computer-science | ossu/computer-science | ossu | 203,282 | MIT | 🎓 Path to a free self-taught education in Computer Science! | README.md | readme | Markdown | <div align="center" style="text-align: center">
<img src="images/ossu-logo.webp" alt="Open Source Society logo"/>
<h3>Open Source Society University</h3>
<p>
Path to a free self-taught education in Computer Science!
</p>
<p>
<a href="https://github.com/sindresorhus/awesome">
<img alt="Awesome" src="https://cdn.... | 29,701 | 454 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.