├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── archetypes └── default.md ├── config.toml ├── content ├── aletheia │ └── 19 │ │ ├── assessment.md │ │ └── culture-transformation.md ├── devopsconf │ └── 19 │ │ ├── fast-releases.md │ │ └── werf.md ├── devrelconf │ └── 5 │ │ ├── brand-ambassador.md │ │ ├── ghostwriters.md │ │ └── technical-authors.md ├── frontendconf │ └── 19 │ │ ├── promoting-opensource.md │ │ └── style_silver_bullet.md ├── highload │ ├── 18 │ │ ├── 1.1-microservices.md │ │ ├── 1.10-neural-nets-cgi.md │ │ ├── 1.2-per-aspera-ad-paas.md │ │ ├── 1.3-data-discovery.md │ │ ├── 1.4-bd-k8s.md │ │ ├── 1.5-kafka-bicycle.md │ │ ├── 1.6-accelerate-events.md │ │ ├── 1.7-postgresql-errors.md │ │ ├── 1.8-badoo-infradev.md │ │ ├── 1.9-data-engineers.md │ │ ├── 2.1-vk-architecture.md │ │ ├── 2.2-testing-badoo.md │ │ ├── 2.3-such-highload.md │ │ ├── 2.4-dababase-pro.md │ │ └── 2.5-make-your-database-dream-of-electric-sheep.md │ └── 19 │ │ ├── njs-nginx.md │ │ ├── siberia │ │ └── docs.md │ │ └── tcp-vs-udp.md ├── knowledgeconf │ └── 19 │ │ ├── badoo-new-developers-onboarding.md │ │ ├── biocad-knowledge-base-development.md │ │ ├── e-learning.md │ │ ├── holistic-km.md │ │ ├── km-efficiency.md │ │ ├── km-system-and-business.md │ │ ├── knowledge-manger-6-10.md │ │ ├── knowledge-sharing-involvement.md │ │ ├── manager-analyst-km.md │ │ ├── multimedia-documentation.md │ │ ├── ozon-fast-growth-and-knowledge-sharing.md │ │ ├── tiago-forte-practices.md │ │ ├── trello-kb.md │ │ ├── voluntary-forced-knowledge-sharing.md │ │ └── xi-notes-for-developer.md ├── moscowpython │ └── 19 │ │ ├── accelerate-python.md │ │ ├── go-vs-python.md │ │ ├── kill-mutants.md │ │ └── yandex-python.md ├── qualityconf │ └── 19 │ │ ├── blameless.md │ │ └── libfuzzer.md ├── siberian-community-orgs │ └── documenting-meetings.md ├── teamleadconf │ ├── 20 │ │ └── documentation_challenges.md │ └── 21 │ │ ├── how_to_create_selforganizing_team.md │ │ ├── learn_the_hard_way.md │ │ ├── process-smell.md │ │ └── right_of_fail.md └── whalerider │ └── 19 │ └── investor.md ├── layouts ├── index.html └── table.html ├── readme.md └── static ├── .nojekyll ├── custom.css └── images ├── booking-k8s-arch.png ├── cassandra-saw.png ├── clickhouse-logs.png ├── darvelconf └── 5 │ ├── ghostwriters01.png │ └── ghostwriters02.png ├── data-science-pyramid.png ├── db-skills.png ├── devopsconf └── 19 │ ├── werf01.png │ ├── werf02.png │ ├── werf03.png │ ├── werf04.png │ ├── werf05.png │ ├── werf06.png │ ├── werf07.png │ ├── werf08.png │ └── werf09.png ├── frontendconf └── 19 │ ├── opensource01.png │ ├── opensource02.png │ ├── opensource03.png │ └── opensource04.png ├── highload19 ├── i_hl_spb.png ├── kc.png ├── njs-nginx-01.png ├── njs-nginx-02.png ├── njs-nginx-03.png ├── tcp-vs-udp-01.png ├── tcp-vs-udp-02.png ├── tcp-vs-udp-03.png ├── tcp-vs-udp-04.png ├── tcp-vs-udp-05.png ├── tcp-vs-udp-06.png ├── tcp-vs-udp-07.png ├── tcp-vs-udp-08.png ├── tcp-vs-udp-09.png ├── tcp-vs-udp-10.png ├── tcp-vs-udp-11.png ├── tcp-vs-udp-12.png ├── tcp-vs-udp-13.png ├── tcp-vs-udp-14.png ├── tcp-vs-udp-15.png ├── tcp-vs-udp-16.png ├── tcp-vs-udp-17.png ├── tcp-vs-udp-18.png ├── tcp-vs-udp-19.png ├── tcp-vs-udp-20.png ├── tcp-vs-udp-21.png ├── tcp-vs-udp-22.png └── tg.png ├── iops-hell.png ├── make-your-database-dream-of-electric-sheep ├── 1-autonomous-dbms.png ├── 2-ottertune.png └── 3-peloton.png ├── neural-nets-cgi ├── 1-problem.png ├── 2-classic-solution.png ├── 3-ml-receipt.png ├── 4-learning.png ├── 5-neural-net-architecture.png └── 6-results.png ├── persistent-fabric.png ├── static ├── go-vs-python-01.png ├── go-vs-python-02.png ├── go-vs-python-03.png ├── i_pc.png ├── kc.png ├── tg.png ├── yandex-python-01.png ├── yandex-python-02.png ├── yandex-python-03.png └── yandex-python-04.png ├── tg-logo.png └── vk-binlog.png /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | public 3 | resources 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/.gitmodules -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/config.toml -------------------------------------------------------------------------------- /content/aletheia/19/assessment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/aletheia/19/assessment.md -------------------------------------------------------------------------------- /content/aletheia/19/culture-transformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/aletheia/19/culture-transformation.md -------------------------------------------------------------------------------- /content/devopsconf/19/fast-releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/devopsconf/19/fast-releases.md -------------------------------------------------------------------------------- /content/devopsconf/19/werf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/devopsconf/19/werf.md -------------------------------------------------------------------------------- /content/devrelconf/5/brand-ambassador.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/devrelconf/5/brand-ambassador.md -------------------------------------------------------------------------------- /content/devrelconf/5/ghostwriters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/devrelconf/5/ghostwriters.md -------------------------------------------------------------------------------- /content/devrelconf/5/technical-authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/devrelconf/5/technical-authors.md -------------------------------------------------------------------------------- /content/frontendconf/19/promoting-opensource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/frontendconf/19/promoting-opensource.md -------------------------------------------------------------------------------- /content/frontendconf/19/style_silver_bullet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/frontendconf/19/style_silver_bullet.md -------------------------------------------------------------------------------- /content/highload/18/1.1-microservices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/1.1-microservices.md -------------------------------------------------------------------------------- /content/highload/18/1.10-neural-nets-cgi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/1.10-neural-nets-cgi.md -------------------------------------------------------------------------------- /content/highload/18/1.2-per-aspera-ad-paas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/1.2-per-aspera-ad-paas.md -------------------------------------------------------------------------------- /content/highload/18/1.3-data-discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/1.3-data-discovery.md -------------------------------------------------------------------------------- /content/highload/18/1.4-bd-k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/1.4-bd-k8s.md -------------------------------------------------------------------------------- /content/highload/18/1.5-kafka-bicycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/1.5-kafka-bicycle.md -------------------------------------------------------------------------------- /content/highload/18/1.6-accelerate-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/1.6-accelerate-events.md -------------------------------------------------------------------------------- /content/highload/18/1.7-postgresql-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/1.7-postgresql-errors.md -------------------------------------------------------------------------------- /content/highload/18/1.8-badoo-infradev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/1.8-badoo-infradev.md -------------------------------------------------------------------------------- /content/highload/18/1.9-data-engineers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/1.9-data-engineers.md -------------------------------------------------------------------------------- /content/highload/18/2.1-vk-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/2.1-vk-architecture.md -------------------------------------------------------------------------------- /content/highload/18/2.2-testing-badoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/2.2-testing-badoo.md -------------------------------------------------------------------------------- /content/highload/18/2.3-such-highload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/2.3-such-highload.md -------------------------------------------------------------------------------- /content/highload/18/2.4-dababase-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/2.4-dababase-pro.md -------------------------------------------------------------------------------- /content/highload/18/2.5-make-your-database-dream-of-electric-sheep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/18/2.5-make-your-database-dream-of-electric-sheep.md -------------------------------------------------------------------------------- /content/highload/19/njs-nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/19/njs-nginx.md -------------------------------------------------------------------------------- /content/highload/19/siberia/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/19/siberia/docs.md -------------------------------------------------------------------------------- /content/highload/19/tcp-vs-udp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/highload/19/tcp-vs-udp.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/badoo-new-developers-onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/badoo-new-developers-onboarding.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/biocad-knowledge-base-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/biocad-knowledge-base-development.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/e-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/e-learning.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/holistic-km.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/holistic-km.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/km-efficiency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/km-efficiency.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/km-system-and-business.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/km-system-and-business.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/knowledge-manger-6-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/knowledge-manger-6-10.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/knowledge-sharing-involvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/knowledge-sharing-involvement.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/manager-analyst-km.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/manager-analyst-km.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/multimedia-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/multimedia-documentation.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/ozon-fast-growth-and-knowledge-sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/ozon-fast-growth-and-knowledge-sharing.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/tiago-forte-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/tiago-forte-practices.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/trello-kb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/trello-kb.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/voluntary-forced-knowledge-sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/voluntary-forced-knowledge-sharing.md -------------------------------------------------------------------------------- /content/knowledgeconf/19/xi-notes-for-developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/knowledgeconf/19/xi-notes-for-developer.md -------------------------------------------------------------------------------- /content/moscowpython/19/accelerate-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/moscowpython/19/accelerate-python.md -------------------------------------------------------------------------------- /content/moscowpython/19/go-vs-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/moscowpython/19/go-vs-python.md -------------------------------------------------------------------------------- /content/moscowpython/19/kill-mutants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/moscowpython/19/kill-mutants.md -------------------------------------------------------------------------------- /content/moscowpython/19/yandex-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/moscowpython/19/yandex-python.md -------------------------------------------------------------------------------- /content/qualityconf/19/blameless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/qualityconf/19/blameless.md -------------------------------------------------------------------------------- /content/qualityconf/19/libfuzzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/qualityconf/19/libfuzzer.md -------------------------------------------------------------------------------- /content/siberian-community-orgs/documenting-meetings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/siberian-community-orgs/documenting-meetings.md -------------------------------------------------------------------------------- /content/teamleadconf/20/documentation_challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/teamleadconf/20/documentation_challenges.md -------------------------------------------------------------------------------- /content/teamleadconf/21/how_to_create_selforganizing_team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/teamleadconf/21/how_to_create_selforganizing_team.md -------------------------------------------------------------------------------- /content/teamleadconf/21/learn_the_hard_way.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/teamleadconf/21/learn_the_hard_way.md -------------------------------------------------------------------------------- /content/teamleadconf/21/process-smell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/teamleadconf/21/process-smell.md -------------------------------------------------------------------------------- /content/teamleadconf/21/right_of_fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/teamleadconf/21/right_of_fail.md -------------------------------------------------------------------------------- /content/whalerider/19/investor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/content/whalerider/19/investor.md -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/layouts/table.html -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/readme.md -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/custom.css -------------------------------------------------------------------------------- /static/images/booking-k8s-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/booking-k8s-arch.png -------------------------------------------------------------------------------- /static/images/cassandra-saw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/cassandra-saw.png -------------------------------------------------------------------------------- /static/images/clickhouse-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/clickhouse-logs.png -------------------------------------------------------------------------------- /static/images/darvelconf/5/ghostwriters01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/darvelconf/5/ghostwriters01.png -------------------------------------------------------------------------------- /static/images/darvelconf/5/ghostwriters02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/darvelconf/5/ghostwriters02.png -------------------------------------------------------------------------------- /static/images/data-science-pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/data-science-pyramid.png -------------------------------------------------------------------------------- /static/images/db-skills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/db-skills.png -------------------------------------------------------------------------------- /static/images/devopsconf/19/werf01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/devopsconf/19/werf01.png -------------------------------------------------------------------------------- /static/images/devopsconf/19/werf02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/devopsconf/19/werf02.png -------------------------------------------------------------------------------- /static/images/devopsconf/19/werf03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/devopsconf/19/werf03.png -------------------------------------------------------------------------------- /static/images/devopsconf/19/werf04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/devopsconf/19/werf04.png -------------------------------------------------------------------------------- /static/images/devopsconf/19/werf05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/devopsconf/19/werf05.png -------------------------------------------------------------------------------- /static/images/devopsconf/19/werf06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/devopsconf/19/werf06.png -------------------------------------------------------------------------------- /static/images/devopsconf/19/werf07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/devopsconf/19/werf07.png -------------------------------------------------------------------------------- /static/images/devopsconf/19/werf08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/devopsconf/19/werf08.png -------------------------------------------------------------------------------- /static/images/devopsconf/19/werf09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/devopsconf/19/werf09.png -------------------------------------------------------------------------------- /static/images/frontendconf/19/opensource01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/frontendconf/19/opensource01.png -------------------------------------------------------------------------------- /static/images/frontendconf/19/opensource02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/frontendconf/19/opensource02.png -------------------------------------------------------------------------------- /static/images/frontendconf/19/opensource03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/frontendconf/19/opensource03.png -------------------------------------------------------------------------------- /static/images/frontendconf/19/opensource04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/frontendconf/19/opensource04.png -------------------------------------------------------------------------------- /static/images/highload19/i_hl_spb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/i_hl_spb.png -------------------------------------------------------------------------------- /static/images/highload19/kc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/kc.png -------------------------------------------------------------------------------- /static/images/highload19/njs-nginx-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/njs-nginx-01.png -------------------------------------------------------------------------------- /static/images/highload19/njs-nginx-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/njs-nginx-02.png -------------------------------------------------------------------------------- /static/images/highload19/njs-nginx-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/njs-nginx-03.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-01.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-02.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-03.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-04.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-05.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-06.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-07.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-08.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-09.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-10.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-11.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-12.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-13.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-14.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-15.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-16.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-17.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-18.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-19.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-20.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-21.png -------------------------------------------------------------------------------- /static/images/highload19/tcp-vs-udp-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tcp-vs-udp-22.png -------------------------------------------------------------------------------- /static/images/highload19/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/highload19/tg.png -------------------------------------------------------------------------------- /static/images/iops-hell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/iops-hell.png -------------------------------------------------------------------------------- /static/images/make-your-database-dream-of-electric-sheep/1-autonomous-dbms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/make-your-database-dream-of-electric-sheep/1-autonomous-dbms.png -------------------------------------------------------------------------------- /static/images/make-your-database-dream-of-electric-sheep/2-ottertune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/make-your-database-dream-of-electric-sheep/2-ottertune.png -------------------------------------------------------------------------------- /static/images/make-your-database-dream-of-electric-sheep/3-peloton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/make-your-database-dream-of-electric-sheep/3-peloton.png -------------------------------------------------------------------------------- /static/images/neural-nets-cgi/1-problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/neural-nets-cgi/1-problem.png -------------------------------------------------------------------------------- /static/images/neural-nets-cgi/2-classic-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/neural-nets-cgi/2-classic-solution.png -------------------------------------------------------------------------------- /static/images/neural-nets-cgi/3-ml-receipt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/neural-nets-cgi/3-ml-receipt.png -------------------------------------------------------------------------------- /static/images/neural-nets-cgi/4-learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/neural-nets-cgi/4-learning.png -------------------------------------------------------------------------------- /static/images/neural-nets-cgi/5-neural-net-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/neural-nets-cgi/5-neural-net-architecture.png -------------------------------------------------------------------------------- /static/images/neural-nets-cgi/6-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/neural-nets-cgi/6-results.png -------------------------------------------------------------------------------- /static/images/persistent-fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/persistent-fabric.png -------------------------------------------------------------------------------- /static/images/static/go-vs-python-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/static/go-vs-python-01.png -------------------------------------------------------------------------------- /static/images/static/go-vs-python-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/static/go-vs-python-02.png -------------------------------------------------------------------------------- /static/images/static/go-vs-python-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/static/go-vs-python-03.png -------------------------------------------------------------------------------- /static/images/static/i_pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/static/i_pc.png -------------------------------------------------------------------------------- /static/images/static/kc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/static/kc.png -------------------------------------------------------------------------------- /static/images/static/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/static/tg.png -------------------------------------------------------------------------------- /static/images/static/yandex-python-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/static/yandex-python-01.png -------------------------------------------------------------------------------- /static/images/static/yandex-python-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/static/yandex-python-02.png -------------------------------------------------------------------------------- /static/images/static/yandex-python-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/static/yandex-python-03.png -------------------------------------------------------------------------------- /static/images/static/yandex-python-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/static/yandex-python-04.png -------------------------------------------------------------------------------- /static/images/tg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/tg-logo.png -------------------------------------------------------------------------------- /static/images/vk-binlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docops-hq/conf/HEAD/static/images/vk-binlog.png --------------------------------------------------------------------------------