├── .eslintrc.json ├── .gitattributes ├── .github ├── compile-glyphs.sh ├── eslint.config.js ├── install-apt.sh ├── install-tidy.sh ├── install-woff.sh ├── make-icons.sh └── workflows │ ├── actionlint.yml │ ├── bashate.yml │ ├── checkmake.yml │ ├── copyrights.yml │ ├── deploy.yml │ ├── eslint.yml │ ├── hadolint.yml │ ├── jekyll.yml │ ├── markdown-lint.yml │ ├── pdd.yml │ ├── reuse.yml │ ├── shellcheck.yml │ ├── typos.yml │ ├── xcop.yml │ └── yamllint.yml ├── .gitignore ├── .pdd ├── .rubocop.yml ├── .rultor.yml ├── .scss-lint.yml ├── .yamllint.yml ├── CNAME ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── LICENSES └── MIT.txt ├── README.md ├── REUSE.toml ├── Rakefile ├── _config.yml ├── _docker └── woff.zip ├── _drafts ├── .gitkeep └── 2025-04-19-eq-vs-iq.md ├── _glyphs ├── angellist.svg ├── chatgpt.svg ├── coderanch.svg ├── comments.svg ├── delicious.svg ├── digg.svg ├── exit.svg ├── facebook.svg ├── fast-backward.svg ├── fast-forward.svg ├── github.svg ├── gitter.svg ├── googleplus.svg ├── hackernews.svg ├── instagram.svg ├── itunes.svg ├── link.svg ├── linkedin.svg ├── mail.svg ├── no.svg ├── odnoklassniki.svg ├── pdf.svg ├── pinterest.svg ├── play.svg ├── podcast.svg ├── reddit.svg ├── rss.svg ├── stackoverflow.svg ├── telegram.svg ├── tex.svg ├── twitter.svg ├── vk.svg ├── yes.svg └── youtube.svg ├── _gnuplot └── 2014 │ └── 11 │ ├── hoc-vs-loc.dat │ └── hoc-vs-loc.gpi ├── _includes ├── disqus.html ├── footer.html └── related.html ├── _later ├── _arc.md ├── _chain.md ├── _dev.md ├── _fulltime.md ├── _jobs.md ├── _puzzles.md ├── _stress.md ├── _tickets.md ├── _trolling.md ├── bug-2.md ├── champions.md ├── cofounder.md ├── dsl.md ├── habits.md ├── hints.md ├── risks.md ├── rsp.md ├── rules.md ├── sample-tasks.md ├── service.md ├── sins.md ├── startup.md └── streams.md ├── _latex ├── .gitignore ├── .latexmkrc ├── .texsc ├── Makefile ├── aspell.en.pws ├── research-statement.tex ├── resume-boring.tex ├── resume-ru.tex ├── resume.tex ├── teaching-statement.tex └── yb.cls ├── _layouts ├── amp.html ├── compress.html ├── default.html ├── post.html ├── related.html ├── ru-to-english.html ├── russian.html ├── static.html ├── tag-index.html └── translated.html ├── _newsletters ├── 2014 │ ├── _august.liquid │ ├── _december.liquid │ ├── _july.liquid │ ├── _june.liquid │ ├── _november.liquid │ ├── _october.liquid │ └── _september.liquid ├── 2015 │ ├── _april.liquid │ ├── _august.liquid │ ├── _december.liquid │ ├── _february.liquid │ ├── _january.liquid │ ├── _july.liquid │ ├── _june.liquid │ ├── _march.liquid │ ├── _may.liquid │ ├── _november.liquid │ └── _october.liquid ├── 2016 │ ├── _april.liquid │ ├── _august.liquid │ ├── _december.liquid │ ├── _february.liquid │ ├── _january.liquid │ ├── _july.liquid │ ├── _june.liquid │ ├── _march.liquid │ ├── _may.liquid │ ├── _november.liquid │ └── _september.liquid ├── 2017 │ ├── _april.liquid │ ├── _august.liquid │ ├── _december.liquid │ ├── _february.liquid │ ├── _january.liquid │ ├── _july.liquid │ ├── _june.liquid │ ├── _march.liquid │ ├── _may.liquid │ ├── _november.liquid │ ├── _october.liquid │ └── _september.liquid ├── 2018 │ ├── _february.liquid │ ├── _january.liquid │ ├── _march.liquid │ ├── april.liquid │ ├── july.liquid │ ├── june.liquid │ └── may.liquid └── _main.liquid ├── _plugins ├── amp.rb ├── book.rb ├── equation.rb ├── extras.rb ├── filters.rb ├── gnuplot.rb ├── modified.rb ├── movies.rb ├── pictures.rb ├── pst.rb ├── quote.rb ├── related.rb ├── stats.rb ├── tagging.rb ├── validate_dates.rb ├── validate_images.rb ├── videos.rb ├── webinar.rb └── youtube.rb ├── _posts ├── 2010 │ └── mar │ │ └── 2010-03-04-pdd.md ├── 2013 │ └── dec │ │ └── 2013-12-29-proto.md ├── 2014 │ ├── apr │ │ ├── 2014-04-06-introduction.md │ │ ├── 2014-04-06-movies-for-thanasis.md │ │ ├── 2014-04-06-phandom.md │ │ ├── 2014-04-09-xembly-intro.md │ │ ├── 2014-04-11-cost-of-loc.md │ │ ├── 2014-04-11-jcabi-http-intro.md │ │ ├── 2014-04-12-puzzle-driven-development-by-roles.md │ │ ├── 2014-04-13-bugs-are-welcome.md │ │ ├── 2014-04-13-no-obligations-principle.md │ │ ├── 2014-04-14-jcabi-dynamo-java-api-of-aws-dynamodb.md │ │ ├── 2014-04-15-definition-of-done.md │ │ ├── 2014-04-15-github-guidelines.md │ │ ├── 2014-04-17-how-xdsd-is-different.md │ │ ├── 2014-04-18-jcabi-http-server-mocking.md │ │ ├── 2014-04-20-how-hourly-rate-is-calculated.md │ │ ├── 2014-04-21-s3-http-basic-auth.md │ │ ├── 2014-04-24-java-xml-parsing-and-traversing.md │ │ ├── 2014-04-26-incremental-requirements-with-requs.md │ │ ├── 2014-04-27-typical-mistakes-in-java-code.md │ │ ├── 2014-04-28-xml-xpath-hamcrest-matchers.md │ │ └── 2014-04-29-w3c-java-validators.md │ ├── aug │ │ ├── 2014-08-03-cacheable-java-annotation.md │ │ ├── 2014-08-13-strict-code-quality-control.md │ │ ├── 2014-08-15-retry-java-method-on-exception.md │ │ ├── 2014-08-18-fluent-jdbc-decorator.md │ │ ├── 2014-08-19-how-to-release-to-maven-central.md │ │ ├── 2014-08-22-art-of-software-testing.md │ │ ├── 2014-08-25-deploy-to-cloudbees.md │ │ ├── 2014-08-26-publish-to-rubygems.md │ │ └── 2014-08-29-docker-non-root.md │ ├── dec │ │ ├── 2014-12-01-orm-offensive-anti-pattern.md │ │ ├── 2014-12-04-synchronization-between-nodes.md │ │ ├── 2014-12-09-immutable-object-state-and-behavior.md │ │ ├── 2014-12-15-how-much-your-objects-encapsulate.md │ │ ├── 2014-12-18-independent-technical-reviews.md │ │ └── 2014-12-22-immutable-objects-not-dumb.md │ ├── jul │ │ ├── 2014-07-03-how-to-read-manifest-mf.md │ │ ├── 2014-07-20-liquibase-in-maven.md │ │ ├── 2014-07-21-read-only-master-branch.md │ │ ├── 2014-07-24-rultor-automated-merging.md │ │ ├── 2014-07-29-docker-in-rultor.md │ │ └── 2014-07-31-travis-and-rultor.md │ ├── jun │ │ ├── 2014-06-01-aop-aspectj-java-method-logging.md │ │ ├── 2014-06-09-objects-should-be-immutable.md │ │ ├── 2014-06-19-avoid-string-concatenation.md │ │ ├── 2014-06-20-limit-method-execution-time.md │ │ ├── 2014-06-21-casperjs-with-maven.md │ │ ├── 2014-06-24-jekyll-github-deploy.md │ │ ├── 2014-06-25-xml-and-xslt-in-browser.md │ │ ├── 2014-06-26-sass-in-java-webapp.md │ │ └── 2014-06-29-custom-lexer-in-jekyll.md │ ├── may │ │ ├── 2014-05-01-dynamodb-local-maven-plugin.md │ │ ├── 2014-05-05-oop-alternative-to-utility-classes.md │ │ ├── 2014-05-13-why-null-is-bad.md │ │ ├── 2014-05-14-object-oriented-github-java-sdk.md │ │ ├── 2014-05-18-cloud-autoincrement-counters.md │ │ ├── 2014-05-21-mysql-maven-plugin.md │ │ ├── 2014-05-23-avoid-java-static-logger.md │ │ └── 2014-05-26-amazon-s3-java-oop-adapter.md │ ├── nov │ │ ├── 2014-11-03-empty-line-code-smell.md │ │ ├── 2014-11-07-how-immutability-helps.md │ │ ├── 2014-11-14-hits-of-code.md │ │ ├── 2014-11-20-seven-virtues-of-good-object.md │ │ └── 2014-11-24-principles-of-bug-tracking.md │ ├── oct │ │ ├── 2014-10-03-di-containers-are-evil.md │ │ ├── 2014-10-05-ten-hosted-continuous-integration-services.md │ │ ├── 2014-10-06-software-project-lifecycle.md │ │ ├── 2014-10-07-stop-chatting-start-coding.md │ │ ├── 2014-10-08-continuous-integration-is-dead.md │ │ ├── 2014-10-12-who-is-software-architect.md │ │ ├── 2014-10-20-how-we-write-product-vision.md │ │ ├── 2014-10-21-incremental-billing.md │ │ ├── 2014-10-23-paired-brackets-notation.md │ │ ├── 2014-10-26-hacker-vs-programmer-mentality.md │ │ └── 2014-10-29-how-much-do-you-cost.md │ └── sep │ │ ├── 2014-09-02-java-ssh-client.md │ │ ├── 2014-09-09-restful-web-sites.md │ │ ├── 2014-09-10-anti-patterns-in-oop.md │ │ ├── 2014-09-11-deployment-script-vs-rultor.md │ │ ├── 2014-09-13-deploying-to-heroku.md │ │ ├── 2014-09-16-getters-and-setters-are-evil.md │ │ ├── 2014-09-22-remote-programming-interview.md │ │ ├── 2014-09-23-built-in-fake-objects.md │ │ └── 2014-09-24-why-monetary-awards-dont-work.md ├── 2015 │ ├── apr │ │ ├── 2015-04-02-class-casting-is-anti-pattern.md │ │ ├── 2015-04-13-tacit-css-framework-for-dummies.md │ │ ├── 2015-04-16-award.md │ │ ├── 2015-04-22-favorite-software-books.md │ │ └── 2015-04-30-iterating-adapter.md │ ├── aug │ │ ├── 2015-08-04-nine-steps-start-software-project.md │ │ ├── 2015-08-18-multiple-return-statements-in-oop.md │ │ └── 2015-08-25-fail-fast.md │ ├── dec │ │ ├── 2015-12-01-rethrow-exceptions.md │ │ ├── 2015-12-08-temporal-coupling-between-method-calls.md │ │ ├── 2015-12-16-investors-are-too-scared.md │ │ ├── 2015-12-22-why-dont-you-contribute-to-open-source.md │ │ └── 2015-12-29-turnover-is-good-for-maintainability.md │ ├── feb │ │ ├── 2015-02-02-xsl-transformations-in-java.md │ │ ├── 2015-02-05-jcabi-parent-maven-pom.md │ │ ├── 2015-02-09-serious-code-reviewer.md │ │ ├── 2015-02-12-top-down-design.md │ │ ├── 2015-02-16-it-is-not-a-school.md │ │ ├── 2015-02-20-utility-classes-vs-functional-programming.md │ │ ├── 2015-02-23-haircut.md │ │ └── 2015-02-26-composable-decorators.md │ ├── jan │ │ ├── 2015-01-05-how-to-be-honest-and-keep-customer.md │ │ ├── 2015-01-08-morning-standup-meetings.md │ │ ├── 2015-01-10-windows-appveyor-maven.md │ │ ├── 2015-01-12-compound-name-is-code-smell.md │ │ ├── 2015-01-15-how-to-cut-corners.md │ │ ├── 2015-01-21-if-then-throw-else.md │ │ └── 2015-01-26-happy-boss-false-objective.md │ ├── jul │ │ ├── 2015-07-06-public-static-literals.md │ │ ├── 2015-07-09-catch-if-cant-otherwise.md │ │ ├── 2015-07-13-meetings-are-legalized-robbery.md │ │ ├── 2015-07-16-fools-dont-write-unit-tests.md │ │ ├── 2015-07-21-hourly-pay-modern-slavery.md │ │ └── 2015-07-28-checked-vs-unchecked-exceptions.md │ ├── jun │ │ ├── 2015-06-02-how-to-estimate-software-cost.md │ │ ├── 2015-06-08-deadly-sins-software-project.md │ │ ├── 2015-06-11-wikipedia-bug-definition.md │ │ ├── 2015-06-15-software-outsourcing-survival-guide.md │ │ ├── 2015-06-18-good-programmers-bug-free.md │ │ ├── 2015-06-22-valid-reasons-to-reject-bug-fix.md │ │ ├── 2015-06-25-xml-data-xsl-views-takes-framework.md │ │ └── 2015-06-29-simple-diagrams.md │ ├── mar │ │ ├── 2015-03-02-team-morale-myths-and-reality.md │ │ ├── 2015-03-09-objects-end-with-er.md │ │ ├── 2015-03-16-technical-glossaries.md │ │ ├── 2015-03-22-takes-java-web-framework.md │ │ ├── 2015-03-26-jaxb-vs-xembly.md │ │ └── 2015-03-29-rultor-with-appveyor.md │ ├── may │ │ ├── 2015-05-04-how-to-protect-business-idea.md │ │ ├── 2015-05-07-ctors-must-be-code-free.md │ │ ├── 2015-05-11-software-architect-responsibilities.md │ │ ├── 2015-05-13-two-instruments-of-software-architect.md │ │ ├── 2015-05-18-cookie-based-authentication.md │ │ ├── 2015-05-21-avoid-software-outsourcing-disaster.md │ │ ├── 2015-05-25-unit-test-scaffolding.md │ │ └── 2015-05-28-one-primary-constructor.md │ ├── nov │ │ ├── 2015-11-03-chatbot-better-than-ui-for-microservice.md │ │ ├── 2015-11-10-ten-mistakes-in-specs.md │ │ ├── 2015-11-16-json-vs-xml.md │ │ ├── 2015-11-21-ringelmann-effect-vs-agile.md │ │ └── 2015-11-24-imprisonment-for-irresponsible-coding.md │ ├── oct │ │ ├── 2015-10-01-vertical-horizontal-decorating.md │ │ ├── 2015-10-06-how-to-be-good-office-slave.md │ │ ├── 2015-10-13-competition-without-rules.md │ │ ├── 2015-10-16-ridley-scott-and-joseph-goebbels.md │ │ ├── 2015-10-17-award-2016.md │ │ ├── 2015-10-20-interrupted-exception.md │ │ └── 2015-10-27-outsourcing-doesnt-work.md │ └── sep │ │ ├── 2015-09-01-redundant-variables-are-evil.md │ │ ├── 2015-09-07-maven-repository-amazon-s3.md │ │ ├── 2015-09-10-testing-exit-criteria.md │ │ ├── 2015-09-16-how-to-fire-someone-right.md │ │ ├── 2015-09-22-micromanagement.md │ │ └── 2015-09-29-mayonnaise.md ├── 2016 │ ├── apr │ │ ├── 2016-04-05-printers-instead-of-getters.md │ │ ├── 2016-04-08-revenue-may-kill-startup.md │ │ ├── 2016-04-12-java-annotations-are-evil.md │ │ ├── 2016-04-19-object-must-not-be-configurable.md │ │ └── 2016-04-26-why-inputstream-design-is-wrong.md │ ├── aug │ │ ├── 2016-08-01-continuous-integration-maturity.md │ │ ├── 2016-08-05-distributed-teams-are-higher-quality.md │ │ ├── 2016-08-10-if-then-else-code-smell.md │ │ ├── 2016-08-15-what-is-wrong-object-oriented-programming.md │ │ ├── 2016-08-23-communication-maturity.md │ │ └── 2016-08-30-decomposition-of-responsibility.md │ ├── dec │ │ ├── 2016-12-01-what-is-wrong-about-guns.md │ │ ├── 2016-12-05-who-needs-war.md │ │ ├── 2016-12-06-how-to-pay-programmers-less.md │ │ ├── 2016-12-08-lustration-in-ukraine.md │ │ ├── 2016-12-12-putin-is-power.md │ │ ├── 2016-12-13-mvc-vs-oop.md │ │ ├── 2016-12-15-onishenko-our-hero.md │ │ ├── 2016-12-19-are-you-ashamed-of-voting.md │ │ ├── 2016-12-19-privatbank-nationalization.md │ │ ├── 2016-12-20-can-objects-be-friends.md │ │ ├── 2016-12-22-what-causes-terrorism.md │ │ ├── 2016-12-26-what-would-you-ask-putin.md │ │ ├── 2016-12-29-who-wants-our-donations.md │ │ └── 2016-12-30-tu154-sochi.md │ ├── feb │ │ ├── 2016-02-03-design-patterns-and-anti-patterns.md │ │ ├── 2016-02-09-are-you-still-debugging.md │ │ └── 2016-02-18-holacracy-autocracy.md │ ├── jan │ │ ├── 2016-01-05-how-to-punish-employees.md │ │ ├── 2016-01-12-good-programmers-dont-work-for-equity.md │ │ ├── 2016-01-19-how-expensive-is-outsourcing.md │ │ └── 2016-01-26-defensive-programming.md │ ├── jul │ │ ├── 2016-07-06-data-transfer-object.md │ │ ├── 2016-07-10-software-project-roles.md │ │ ├── 2016-07-11-mistakes-in-agile-manifesto.md │ │ ├── 2016-07-14-who-is-object.md │ │ ├── 2016-07-18-law-of-demeter.md │ │ ├── 2016-07-21-convince-me.md │ │ └── 2016-07-26-active-record.md │ ├── jun │ │ ├── 2016-06-03-conference-mistakes.md │ │ ├── 2016-06-17-dont-use-java-assertions.md │ │ ├── 2016-06-21-how-to-hire-programmer.md │ │ └── 2016-06-27-singletons-must-die.md │ ├── mar │ │ ├── 2016-03-01-how-we-interview-programmers.md │ │ ├── 2016-03-08-pimp-up-your-resume.md │ │ ├── 2016-03-15-wring-dispatcher-github-notifications.md │ │ ├── 2016-03-22-try-finally-if-not-null.md │ │ ├── 2016-03-28-unspoken-secrets-of-elevator-pitch.md │ │ └── 2016-03-30-jare-instant-free-cdn.md │ ├── may │ │ ├── 2016-05-03-test-methods-must-share-nothing.md │ │ ├── 2016-05-10-keynote-clowns.md │ │ ├── 2016-05-17-convertible-notes.md │ │ └── 2016-05-24-who-is-project-manager.md │ ├── nov │ │ ├── 2016-11-09-why-no-ebooks.md │ │ ├── 2016-11-18-software-conferences-to-attend.md │ │ ├── 2016-11-21-naked-data.md │ │ ├── 2016-11-26-yanukovych-v-president.md │ │ ├── 2016-11-28-saakashvili-speaks-ukrainian.md │ │ └── 2016-11-29-eolang.md │ ├── oct │ │ └── 2016-10-23-award-2017.md │ └── sep │ │ ├── 2016-09-07-gradients-of-immutability.md │ │ ├── 2016-09-13-inheritance-is-procedural.md │ │ ├── 2016-09-20-oop-without-classes.md │ │ └── 2016-09-27-command-control-innovate.md ├── 2017 │ ├── apr │ │ ├── 2017-04-05-pdd-in-action.md │ │ ├── 2017-04-11-flexibility-equates-lower-quality.md │ │ ├── 2017-04-18-dnepr-corruption-item.md │ │ ├── 2017-04-18-no-help-via-email.md │ │ ├── 2017-04-24-slaves-of-the-law.md │ │ └── 2017-04-25-sixnines.md │ ├── aug │ │ ├── 2017-08-01-how-to-manage-a-manager.md │ │ ├── 2017-08-08-raii-in-java.md │ │ ├── 2017-08-15-bitcoin-pyramid.md │ │ ├── 2017-08-22-to-be-nice-or-not.md │ │ └── 2017-08-29-xcop.md │ ├── dec │ │ ├── 2017-12-05-data-access-object.md │ │ ├── 2017-12-12-alan-kay-was-wrong.md │ │ ├── 2017-12-19-srp-is-hoax.md │ │ └── 2017-12-26-software-quality-formula.md │ ├── feb │ │ ├── 2017-02-06-how-to-eliminate-corruption.md │ │ ├── 2017-02-07-private-method-is-new-class.md │ │ ├── 2017-02-14-stackoverflow-is-your-tool.md │ │ ├── 2017-02-20-nationalism-of-the-future.md │ │ ├── 2017-02-21-say-no-to-google-recruiters.md │ │ └── 2017-02-28-too-many-classes.md │ ├── jan │ │ ├── 2017-01-02-ukraine-budget-2017.md │ │ ├── 2017-01-03-how-much-you-love-conflicts.md │ │ ├── 2017-01-05-justice-against-corruption.md │ │ ├── 2017-01-10-how-to-teach-customers.md │ │ ├── 2017-01-12-will-i-go-to-war.md │ │ ├── 2017-01-16-ukrainian-startups.md │ │ ├── 2017-01-17-synchronized-decorators.md │ │ ├── 2017-01-23-consciousness-and-revolution.md │ │ ├── 2017-01-24-career-advice.md │ │ ├── 2017-01-30-lifetime-imprisonment-for-separatism.md │ │ └── 2017-01-31-decorating-envelopes.md │ ├── jul │ │ ├── 2017-07-04-sexism.md │ │ ├── 2017-07-11-how-to-redesign-equals.md │ │ ├── 2017-07-18-sexual-harassment.md │ │ ├── 2017-07-25-my-favorite-websites.md │ │ └── 2017-07-27-sabotage-failed.md │ ├── jun │ │ ├── 2017-06-06-gluten-free-management.md │ │ ├── 2017-06-13-dynamodb-rack-maven.md │ │ ├── 2017-06-22-object-oriented-input-output-in-cactoos.md │ │ ├── 2017-06-27-my-environment.md │ │ └── 2017-06-29-activists.md │ ├── mar │ │ ├── 2017-03-02-history-of-separatism.md │ │ ├── 2017-03-07-traits-and-mixins.md │ │ ├── 2017-03-24-tdd-that-works.md │ │ └── 2017-03-28-solid.md │ ├── may │ │ ├── 2017-05-02-remote-slaves.md │ │ ├── 2017-05-10-inversion-of-control.md │ │ ├── 2017-05-15-loyalty.md │ │ ├── 2017-05-16-monikers.md │ │ ├── 2017-05-17-single-statement-unit-tests.md │ │ ├── 2017-05-23-unlimited-number-of-bugs.md │ │ └── 2017-05-30-why-contribute-to-open-source.md │ ├── nov │ │ ├── 2017-11-07-five-new-java-features.md │ │ ├── 2017-11-08-crimea.md │ │ ├── 2017-11-14-static-factory-methods.md │ │ ├── 2017-11-21-trust-pay-lose.md │ │ ├── 2017-11-22-opposition.md │ │ └── 2017-11-28-microtasking.md │ ├── oct │ │ ├── 2017-10-03-java9.md │ │ ├── 2017-10-10-streams-vs-decorators.md │ │ ├── 2017-10-17-lazy-loading-caching-sticky-cactoos.md │ │ ├── 2017-10-24-award-2018.md │ │ ├── 2017-10-24-motherland.md │ │ └── 2017-10-30-ukrainian-language.md │ └── sep │ │ ├── 2017-09-05-rehttp-http-repeater.md │ │ ├── 2017-09-12-evil-object-name-suffix-client.md │ │ ├── 2017-09-19-what-motivates-me.md │ │ └── 2017-09-26-threecopies-server-data-backup.md ├── 2018 │ ├── apr │ │ ├── 2018-04-03-donations-via-zerocracy.md │ │ ├── 2018-04-10-learning-by-refactoring.md │ │ ├── 2018-04-17-how-to-be-lazy.md │ │ └── 2018-04-24-right-way-to-report-bugs.md │ ├── aug │ │ ├── 2018-08-14-seventy-percent.md │ │ ├── 2018-08-22-builders-and-manipulators.md │ │ ├── 2018-08-27-penalty-for-refusal.md │ │ └── 2018-08-29-soft-skills.md │ ├── dec │ │ ├── 2018-12-11-unit-testing-anti-patterns.md │ │ ├── 2018-12-18-silicon-valley-criticism.md │ │ └── 2018-12-25-speaker-cheat-sheet.md │ ├── feb │ │ ├── 2018-02-06-where-to-find-more-bugs.md │ │ ├── 2018-02-13-micro-vesting.md │ │ └── 2018-02-27-parsing-objects.md │ ├── jan │ │ ├── 2018-01-02-operator-new-is-toxic.md │ │ ├── 2018-01-03-fake-opposition.md │ │ ├── 2018-01-09-micro-budgeting.md │ │ ├── 2018-01-10-dalles-plan.md │ │ ├── 2018-01-16-educational-aspect-of-static-analysis.md │ │ └── 2018-01-23-sociotech-skills.md │ ├── jul │ │ ├── 2018-07-03-global-variables.md │ │ └── 2018-07-24-bugs-or-pull-requests.md │ ├── jun │ │ ├── 2018-06-19-glogin.md │ │ └── 2018-06-26-are-you-an-architect.md │ ├── mar │ │ ├── 2018-03-06-speed-vs-quality.md │ │ ├── 2018-03-13-fluent-interfaces.md │ │ ├── 2018-03-17-putin-election.md │ │ ├── 2018-03-21-zerocracy-announcement.md │ │ ├── 2018-03-25-why-gas.md │ │ └── 2018-03-27-how-to-test-thread-safety.md │ ├── may │ │ ├── 2018-05-08-open-source-attributes.md │ │ ├── 2018-05-22-default-arguments-against-null.md │ │ └── 2018-05-29-object-validation.md │ ├── nov │ │ ├── 2018-11-06-ruby-threads.md │ │ ├── 2018-11-13-bigotry.md │ │ ├── 2018-11-20-journalism.md │ │ ├── 2018-11-23-freelance-vs-outsourcing.md │ │ └── 2018-11-27-you-can-do-better.md │ ├── oct │ │ ├── 2018-10-01-remote-work.md │ │ ├── 2018-10-07-history-simplification.md │ │ ├── 2018-10-09-can-you-control-us.md │ │ ├── 2018-10-16-dont-make-me-guess.md │ │ └── 2018-10-30-mailanes.md │ └── sep │ │ ├── 2018-09-05-monolithic-repositories.md │ │ ├── 2018-09-07-what-is-speed.md │ │ ├── 2018-09-12-clear-code.md │ │ ├── 2018-09-18-fear-of-coupling.md │ │ └── 2018-09-30-award-2019.md ├── 2019 │ ├── apr │ │ ├── 2019-04-02-software-project-review-checklist.md │ │ ├── 2019-04-09-beg-them.md │ │ ├── 2019-04-17-nutch-from-java.md │ │ ├── 2019-04-23-elegant-readme.md │ │ └── 2019-04-28-formula-of-happiness.md │ ├── dec │ │ ├── 2019-12-03-testing-in-code-review.md │ │ ├── 2019-12-24-altruism-kills.md │ │ ├── 2019-12-31-talented-programmers.md │ │ └── 2019-12-31-testosterone.md │ ├── feb │ │ ├── 2019-02-03-cloudrepo.md │ │ ├── 2019-02-05-zache.md │ │ ├── 2019-02-12-silicon-valley-benefits.md │ │ ├── 2019-02-16-calibrated-democracy.md │ │ └── 2019-02-21-jews-vs-french.md │ ├── jan │ │ ├── 2019-01-01-hazardous-enthusiasm.md │ │ ├── 2019-01-13-country-as-a-service.md │ │ ├── 2019-01-15-what-if-architect-is-wrong.md │ │ ├── 2019-01-20-drugs.md │ │ ├── 2019-01-22-10x-paychecks.md │ │ ├── 2019-01-28-the-wall.md │ │ └── 2019-01-29-dependency-hell.md │ ├── jul │ │ ├── 2019-07-02-tdd-misbeliefs.md │ │ ├── 2019-07-07-strong-opinions.md │ │ ├── 2019-07-10-inversive-management.md │ │ ├── 2019-07-30-joy-of-programming.md │ │ └── 2019-07-31-moscow-protests.md │ ├── jun │ │ ├── 2019-06-11-where-do-you-seek-help.md │ │ ├── 2019-06-19-how-much-they-suffer.md │ │ └── 2019-06-26-syncem.md │ ├── mar │ │ ├── 2019-03-12-data-and-maintainability.md │ │ ├── 2019-03-12-how-to-move-faster.md │ │ ├── 2019-03-17-terrorism-and-power.md │ │ ├── 2019-03-19-logging-without-static-logger.md │ │ ├── 2019-03-26-jpages.md │ │ ├── 2019-03-26-sales-kit.md │ │ ├── 2019-03-28-cost-of-zerocrat.md │ │ ├── 2019-03-29-concerns.md │ │ └── 2019-03-30-survival-guide.md │ ├── may │ │ ├── 2019-05-07-sibit-bitcoin-command-line-client.md │ │ ├── 2019-05-14-cause-risk-effect.md │ │ ├── 2019-05-21-dont-improvise.md │ │ └── 2019-05-28-trust-or-not.md │ ├── nov │ │ ├── 2019-11-03-award-2020.md │ │ ├── 2019-11-05-revolutionary-evolution.md │ │ └── 2019-11-19-how-much-cohesion-is-enough.md │ ├── oct │ │ └── 2019-10-29-sql-as-a-service.md │ └── sep │ │ ├── 2019-09-03-injection-of-guilt.md │ │ ├── 2019-09-10-how-to-motivate-kids-to-code.md │ │ ├── 2019-09-15-revolution-bottom-up.md │ │ ├── 2019-09-17-be-unhappy-to-be-happy.md │ │ ├── 2019-09-27-parsing-and-printing.md │ │ └── 2019-09-28-what-is-the-point.md ├── 2020 │ ├── dec │ │ ├── 2020-12-01-abstract-objects.md │ │ ├── 2020-12-22-self-managing-orgs.md │ │ └── 2020-12-29-metric-for-emotions.md │ ├── feb │ │ ├── 2020-02-11-object-cohesion.md │ │ └── 2020-02-19-fat-skinny-design.md │ ├── jan │ │ ├── 2020-01-07-embrace-the-chaos.md │ │ └── 2020-01-15-question-never-ask.md │ ├── jul │ │ ├── 2020-07-05-silence-doesnt-cure.md │ │ └── 2020-07-29-open-source-etiquette.md │ ├── jun │ │ ├── 2020-06-12-protesters.md │ │ └── 2020-06-23-individual-performance-metrics.md │ ├── mar │ │ ├── 2020-03-03-prefixed-naming.md │ │ └── 2020-03-29-coronavirus.md │ ├── may │ │ ├── 2020-05-02-first-world-hysteria.md │ │ ├── 2020-05-05-open-source-arms-race.md │ │ ├── 2020-05-13-career-killer.md │ │ └── 2020-05-19-veil-objects.md │ ├── nov │ │ ├── 2020-11-03-daily-reports.md │ │ ├── 2020-11-10-typing-without-types.md │ │ ├── 2020-11-15-award-2021.md │ │ ├── 2020-11-21-svoboda-and-conflicts.md │ │ └── 2020-11-24-objects-without-methods.md │ └── oct │ │ ├── 2020-10-06-latex-spell-checking.md │ │ ├── 2020-10-13-lack-of-problem.md │ │ └── 2020-10-27-distance-of-coupling.md ├── 2021 │ ├── apr │ │ └── 2021-04-14-how-we-organized-iccq.md │ ├── aug │ │ ├── 2021-08-04-prestructors.md │ │ └── 2021-08-11-logging-in-unit-tests.md │ ├── dec │ │ └── 2021-12-01-teaching.md │ ├── feb │ │ ├── 2021-02-02-greed-based-planning.md │ │ └── 2021-02-10-dataization.md │ ├── jun │ │ └── 2021-06-01-tips-for-recruiters.md │ ├── mar │ │ └── 2021-03-03-imposters-to-win.md │ ├── oct │ │ ├── 2021-10-12-calibrated-achievement-points.md │ │ └── 2021-10-21-objectionary.md │ └── sep │ │ └── 2021-09-09-simba.md ├── 2022 │ ├── aug │ │ ├── 2022-08-04-code-and-tests-different-pull-requests.md │ │ ├── 2022-08-10-xsline-immutable-pipeline.md │ │ ├── 2022-08-24-research-paper-template.md │ │ └── 2022-08-30-dont-group-exception-catchers.md │ ├── feb │ │ └── 2022-02-16-ai-coding.md │ ├── jul │ │ ├── 2022-07-05-safety-net.md │ │ └── 2022-07-20-command-line-defaults.md │ ├── jun │ │ ├── 2022-06-05-reflection-means-hidden-coupling.md │ │ └── 2022-06-14-principle-of-one.md │ ├── mar │ │ └── 2022-03-29-bugs-occam-razor.md │ └── sep │ │ └── 2022-09-08-smaller-try-blocks.md ├── 2023 │ ├── aug │ │ ├── 2023-08-01-method-overloading.md │ │ ├── 2023-08-08-two-step-initialization.md │ │ ├── 2023-08-13-dictators.md │ │ ├── 2023-08-15-decision-making-process.md │ │ ├── 2023-08-22-fast-vs-deep-testing.md │ │ ├── 2023-08-27-immigration-by-war.md │ │ └── 2023-08-29-ai-for-software-engineering.md │ ├── dec │ │ ├── 2023-12-11-results-and-discussion.md │ │ ├── 2023-12-17-how-to-review-research-paper.md │ │ └── 2023-12-26-defend-me-against-chatgpt.md │ ├── jan │ │ └── 2023-01-19-layout-of-tests.md │ ├── jul │ │ ├── 2023-07-19-just-show-up.md │ │ └── 2023-07-25-contribute-disabled-tests.md │ ├── nov │ │ ├── 2023-11-22-avoid-line-breaks-inside-paragrap.md │ │ └── 2023-11-28-research-questionnaire.md │ ├── oct │ │ ├── 2023-10-01-individualism-vs-collectivism.md │ │ └── 2023-10-11-method-of-research.md │ └── sep │ │ ├── 2023-09-05-style-checker-for-bibtex-files.md │ │ ├── 2023-09-17-turbulence.md │ │ ├── 2023-09-19-five-ingredients-career.md │ │ └── 2023-09-29-how-to-write-related-work-section.md ├── 2024 │ ├── apr │ │ ├── 2024-04-01-ping-me-please.md │ │ └── 2024-04-02-kulikovo-pole.md │ ├── dec │ │ └── 2024-12-15-open-source-beginner-advice.md │ ├── feb │ │ └── 2024-02-06-research-flow.md │ ├── jan │ │ └── 2024-01-03-not-able-to-speak.md │ ├── jul │ │ └── 2024-07-07-checking-object-existence.md │ ├── jun │ │ ├── 2024-06-09-patent-claim.md │ │ └── 2024-06-23-medals-to-win.md │ ├── may │ │ └── 2024-05-27-freedom-of-speech-vs-intelligence.md │ └── sep │ │ └── 2024-09-21-interpreters-of-chaos.md └── 2025 │ ├── apr │ ├── 2025-04-12-four-builds.md │ ├── 2025-04-19-dont-merge-into-broken-master.md │ └── 2025-04-24-dont-close-their-tickets.md │ ├── jun │ └── 2025-06-08-pull-request-without-test.md │ └── may │ ├── 2025-05-18-bug-reports-as-contracts.md │ ├── 2025-05-25-bug-driven-development.md │ └── 2025-05-31-good-bug-title.md ├── _rake ├── aspell.en.pws ├── core-keywords.txt ├── garbage.txt ├── pages.txt ├── ping.sh ├── stop-words.txt └── test_keywords.sh ├── _samples └── 2017 │ ├── 10 │ └── sticky │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ ├── Encrypted.java │ │ ├── Encrypted1.java │ │ ├── Encrypted2.java │ │ ├── Encrypted3.java │ │ ├── Encrypted4.java │ │ ├── Encrypted5.java │ │ └── Main.java │ └── 07 │ └── equals │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ └── java │ ├── AbcComparison.java │ ├── Array.java │ ├── BigNumber.java │ ├── Comparison.java │ ├── Digitizable.java │ ├── Main.java │ ├── Text.java │ └── Weight.java ├── _sass ├── _defs.scss ├── _disqus.scss ├── _fonts.scss ├── _highlight.scss ├── _ico.scss ├── _post.scss ├── _russian.scss ├── _wrapper.scss └── _youtube.scss ├── _stats └── stats.gpi ├── ads.txt ├── bin └── settings.jar ├── css └── layout.scss ├── favicon.ico ├── fonts └── cambria │ ├── 2EAA54_0_0.eot │ ├── 2EAA54_0_0.ttf │ ├── 2EAA54_0_0.woff │ ├── 2EAA54_0_0.woff2 │ ├── 2EAA54_1_0.eot │ ├── 2EAA54_1_0.ttf │ ├── 2EAA54_1_0.woff │ ├── 2EAA54_1_0.woff2 │ ├── 2EAA54_2_0.eot │ ├── 2EAA54_2_0.ttf │ ├── 2EAA54_2_0.woff │ ├── 2EAA54_2_0.woff2 │ ├── 2EAA54_3_0.eot │ ├── 2EAA54_3_0.ttf │ ├── 2EAA54_3_0.woff │ └── 2EAA54_3_0.woff2 ├── images ├── 2014 │ ├── 10 │ │ ├── appveyor.png │ │ ├── atom-javascript-indentation.png │ │ ├── barton-fink.png │ │ ├── circleci.png │ │ ├── cloudbees.png │ │ ├── coda-json-indentation.png │ │ ├── codeship.png │ │ ├── deploybot.png │ │ ├── drone.png │ │ ├── fixed-price-contract.svg │ │ ├── greenhouseci.png │ │ ├── hostedci.png │ │ ├── intellij-idea-indentation.png │ │ ├── jackie-brown.jpg │ │ ├── lifecycle-building.png │ │ ├── lifecycle-fixing.png │ │ ├── lifecycle-thinking.png │ │ ├── lifecycle-using.png │ │ ├── magnum.png │ │ ├── netbeans-fluent-indentation.png │ │ ├── pycharm-python-indentation.png │ │ ├── rubymine-array-indentation.png │ │ ├── semaphoreapp.png │ │ ├── ship-io.png │ │ ├── shippable.svg │ │ ├── snap.png │ │ ├── solanolabs.png │ │ ├── sublime-text-indentation.png │ │ ├── time-and-material-contract.svg │ │ ├── travis.png │ │ ├── trends.png │ │ ├── vexor.png │ │ ├── wercker.png │ │ └── xdsd-invoice-example.svg │ ├── 11 │ │ ├── broken-object.png │ │ ├── good-object-1.png │ │ ├── good-object-2.png │ │ ├── good-object-3.png │ │ ├── good-object-4.png │ │ ├── good-object-5.png │ │ ├── monty-python-argument-sketch.png │ │ ├── orm-anti-pattern.svg │ │ ├── rate-certifications.png │ │ ├── rate-open-source-contribution.png │ │ ├── rate-talks-and-publications.png │ │ ├── rate-years-of-experience.png │ │ └── sql-speaking-object.svg │ ├── 12 │ │ ├── 99-francs.png │ │ ├── arizona-dream-car-shop.png │ │ ├── java-concurrency-in-practice.png │ │ ├── memory-stick.png │ │ ├── once-upon-a-time-in-the-west.png │ │ ├── truman-show-universe.png │ │ ├── usual-suspects-kobayashi.png │ │ └── van-damme-split.png │ ├── 04 │ │ ├── arizona-dream-two-beers-and-two-shots.png │ │ ├── big-lebowski-her-life-is-in-your-hands.png │ │ ├── brazil-crowded-office.png │ │ ├── charlie-and-chocolate-factory-chewing-breakfast.png │ │ ├── dynamodb-logo.png │ │ ├── fear-and-loathing-adrenochrome.png │ │ ├── goodfellas-paulie-talking.png │ │ ├── jcabi-github-commits-graph.png │ │ ├── lebowski-they-did-not-receive-the-money.png │ │ ├── pulp-fiction-mr-wolf-with-cup.png │ │ ├── pulp-fiction-vincent-and-jules.png │ │ ├── revolver-avi-with-dollar.png │ │ ├── s3auth-authentication-dialog.png │ │ ├── science-of-sleep-time-machine.png │ │ ├── shaolin-temple-jet-li.png │ │ └── time-and-mess-diagram.png │ ├── 05 │ │ ├── github-logo.png │ │ └── s3-logo.png │ ├── 06 │ │ ├── effective-java-second-edition.png │ │ └── xslt-loading-order-in-chrome.png │ ├── 07 │ │ ├── continuous-delivery-book.png │ │ ├── rultor-aspects.png │ │ ├── rultor-jekyll-4.png │ │ ├── rultor-mysql-35-2.png │ │ ├── rultor-mysql-35.png │ │ ├── rultor-s3auth-195.png │ │ └── travis-logo.png │ ├── 08 │ │ ├── art-of-software-testing.png │ │ ├── github-sttc-issue-6.png │ │ ├── github-ticket-6.jpg │ │ ├── github-ticket-80.jpg │ │ └── glenford-myers.png │ └── 09 │ │ ├── charlie-and-chocolate-factory-father.png │ │ ├── fish-called-wanda.png │ │ ├── good_bad_weird.png │ │ ├── heroku-logo.svg │ │ ├── object-thinking-by-david-west.png │ │ ├── ratatouille.png │ │ └── rules-with-and-without-rewards.png ├── 2015 │ ├── 10 │ │ ├── chatbot-1.png │ │ ├── cossacks-of-the-kuban.jpg │ │ ├── crouching-tiger-hidden-dragon.jpg │ │ ├── martian.jpg │ │ ├── the-apartment.jpg │ │ ├── the-godfather-ii.jpg │ │ ├── the-office.jpg │ │ ├── the-wrestler.jpg │ │ ├── third-reich-symbol.jpg │ │ └── ussr-symbol.jpg │ ├── 11 │ │ ├── bot-1.jpg │ │ ├── bot-2.jpg │ │ ├── bot-3.jpg │ │ ├── bot-4.jpg │ │ ├── bot-5.jpg │ │ ├── bot-6.jpg │ │ ├── ieee-830.jpg │ │ ├── reservoir-dogs.jpg │ │ ├── the-business.jpg │ │ ├── the-man-who-stare-at-goats.jpg │ │ └── thursday.jpg │ ├── 12 │ │ ├── blueberry.jpg │ │ ├── commando.jpg │ │ ├── four-rooms.jpg │ │ ├── kung-fu-hustle.jpg │ │ └── the-game.jpg │ ├── 01 │ │ ├── cool-hand-luke.png │ │ ├── cut-corners-1.png │ │ ├── cut-corners-2.png │ │ ├── cut-corners-3.png │ │ ├── cut-corners-4.png │ │ ├── if-then-throw-1.png │ │ ├── if-then-throw-2.png │ │ ├── if-then-throw-3.png │ │ ├── meaning-of-life-every-sperm.png │ │ ├── regarding-henry.jpg │ │ ├── the-million-dollar-hotel.png │ │ └── working-effectively-with-legacy-code.png │ ├── 02 │ │ ├── color-me-kubrick.png │ │ ├── delicatessen.png │ │ ├── gi-jane.png │ │ ├── kim-jong-un-doing-code-review.png │ │ ├── russina-matroshka.jpg │ │ └── the-man-who-wasnt-there.jpg │ ├── 03 │ │ ├── apocalypto.jpg │ │ ├── fight-club.jpg │ │ ├── gadkiy-utenok.jpg │ │ ├── godfather-shooting-scene.jpg │ │ └── pulp-fiction.jpg │ ├── 04 │ │ ├── book-art-of-testing.jpg │ │ ├── book-c++.jpg │ │ ├── book-code-complete.jpg │ │ ├── book-continuous-delivery.jpg │ │ ├── book-css.jpg │ │ ├── book-estimation.jpg │ │ ├── book-git.jpg │ │ ├── book-goos.jpg │ │ ├── book-java-concurrency.jpg │ │ ├── book-javascript.jpg │ │ ├── book-legacy.jpg │ │ ├── book-requirements.jpg │ │ ├── book-use-cases.jpg │ │ ├── book-xml-nutshell.jpg │ │ ├── html-in-safari-with-tacit.jpg │ │ ├── html-in-safari-without-tacit.jpg │ │ ├── nolo-patent-it-yourself.jpg │ │ └── webinar.jpg │ ├── 05 │ │ ├── dr-strangelove.jpg │ │ ├── evil-cult.jpg │ │ ├── kill-bill.jpg │ │ ├── leon-the-professional.jpg │ │ ├── rear-window.jpg │ │ ├── the-matrix-agent-smith.jpg │ │ ├── there-will-be-blood.jpg │ │ ├── webinar-2.jpg │ │ └── wei-liao-zi-book.jpg │ ├── 06 │ │ ├── a-beautiful-mind.jpg │ │ ├── crimen-ferpecto.jpg │ │ ├── interstate-60.jpg │ │ ├── jetbrains-logo.gif │ │ ├── sabotage.jpg │ │ ├── software-project-sins-1.gif │ │ ├── software-project-sins-2.gif │ │ ├── software-project-sins-3.gif │ │ ├── software-project-sins-4.gif │ │ ├── software-project-sins-5.gif │ │ ├── software-project-sins-6.gif │ │ ├── software-project-sins-7.gif │ │ ├── u-turn.jpg │ │ ├── uml-distilled-book.jpg │ │ └── webinar-3.gif │ ├── 07 │ │ ├── catch-me-if-you-can.jpg │ │ ├── ex-machina.jpg │ │ ├── gladiator.jpg │ │ ├── heat.jpg │ │ ├── how-to-manage-your-slaves.jpg │ │ ├── the-shining.jpg │ │ ├── true-romance.jpg │ │ └── webinar-4.gif │ ├── 08 │ │ ├── black-cat-white-cat.jpg │ │ ├── webinar-5.gif │ │ └── ying-xiong.jpg │ ├── 09 │ │ ├── la-fille-sur-le-pont.jpg │ │ ├── office-space.jpg │ │ ├── up-in-the-air.jpg │ │ ├── webinar-6.gif │ │ ├── what-just-happened.jpg │ │ └── y-tu-mama-tambien.jpg │ ├── buildstuff-2015-logo.png │ ├── buildstuff-2015.jpg │ ├── dat-flock-2015.jpg │ ├── datflock-2015-logo.png │ ├── developerweek-2015-logo.png │ ├── devopsdays-2015-logo.png │ ├── devopsdays-warsaw-2015.jpg │ ├── kyiv-devops-2015.jpg │ └── sf-devops-2015.jpg ├── 2016 │ ├── 11 │ │ ├── addams-family.jpg │ │ ├── borat.jpg │ │ ├── ctan-lion.jpg │ │ ├── saakashvili.jpg │ │ ├── vicky-cristina-barcelona.jpg │ │ └── yanukovich.jpg │ ├── 12 │ │ ├── ben-hur.jpg │ │ ├── donations.jpg │ │ ├── guns.jpg │ │ ├── hot-shots.jpg │ │ ├── lustration.jpg │ │ ├── onishenko.jpg │ │ ├── privatbank.jpg │ │ ├── putin.jpg │ │ ├── putin2.jpg │ │ ├── raging-bull.jpg │ │ ├── terrorism.jpg │ │ ├── tu154.jpg │ │ ├── voting.jpg │ │ └── war.jpg │ ├── 01 │ │ ├── how-much-do-you-love-me.jpg │ │ ├── management-stripped-bare.jpg │ │ ├── office-space.jpg │ │ ├── shi-mian-mai-fu.jpg │ │ └── the-fan.jpg │ ├── 02 │ │ ├── apocalypse-now.jpg │ │ ├── the-revenant.jpg │ │ └── the-shining.jpg │ ├── 03 │ │ ├── delicatessen.jpg │ │ ├── huevos-de-oro.jpg │ │ ├── jare-1.png │ │ ├── lock-stock-two-smoking-barrels.jpg │ │ ├── wall-street.jpg │ │ ├── wring-1.png │ │ └── wring-2.png │ ├── 04 │ │ ├── a-serious-man.jpg │ │ ├── amelie.jpg │ │ ├── blow.jpg │ │ ├── gomorrah.jpg │ │ └── the-take.jpg │ ├── 05 │ │ ├── bean.jpg │ │ ├── old-boy.jpg │ │ ├── schindlers-list.jpg │ │ └── the-godfather-iii.jpg │ ├── 06 │ │ ├── dont-be-a-menace-to-south-central-while-drinking-your-juice-in-the-hood.jpg │ │ ├── mi-gran-noche.jpg │ │ ├── natural-born-killers.jpg │ │ └── perdita-durango.jpg │ ├── 07 │ │ ├── 12-angry-men.jpg │ │ ├── beasts-of-no-nation.jpg │ │ ├── before-the-devil-knows-you-are-dead.jpg │ │ ├── en-duva-satt-pa-engren.jpg │ │ ├── hail-caesar.jpg │ │ ├── jackass-the-movie.jpg │ │ └── spartacus.jpg │ ├── 08 │ │ ├── alan-kay.jpg │ │ ├── asaf-shelly.jpg │ │ ├── edsger-dijkstra.jpg │ │ ├── eric-allman.jpg │ │ ├── eric-raymond.jpg │ │ ├── fargo.jpg │ │ ├── jeff-atwood.jpg │ │ ├── joe-armstrong.jpg │ │ ├── john-barker.jpg │ │ ├── lawrence-krubner.jpg │ │ ├── linus-torvalds.jpg │ │ ├── oceans-twelve.jpg │ │ ├── once-upon-a-time-in-america.jpg │ │ ├── oscar-nierstrasz.jpg │ │ ├── paul-graham.jpg │ │ ├── rich-hickey.jpg │ │ ├── richard-mansfield.jpg │ │ ├── rob-pike.jpg │ │ ├── schizopolis.jpg │ │ ├── swingers.jpg │ │ └── twins.jpg │ ├── 09 │ │ ├── andrei-rublev.jpg │ │ ├── battleship-potemkin.jpg │ │ ├── death-at-a-funeral.jpg │ │ └── twelve-monkeys.jpg │ ├── agile-and-beyond-2016.png │ ├── agileee-2016.png │ ├── agilia-conference-2016.png │ ├── baltic-devops.png │ ├── beyond-2016.png │ ├── buildstuff-lithuania.png │ ├── buildstuff-ukraine.png │ ├── cascadiait-2016.png │ ├── cloudexpo-2016.jpg │ ├── codemotion.png │ ├── devit-logo.svg │ ├── devnexus-2016-logo.png │ ├── devopspro-2016.png │ ├── devopspro.png │ ├── dotw-2016.png │ ├── geecon-2016.png │ ├── geekout-2016.png │ ├── itake-2016.png │ ├── item-2016.svg │ ├── javaday-2016.png │ ├── jdkio.png │ ├── jeeconf-logo.png │ ├── jet-2016.png │ ├── jpoint-2016.png │ ├── kyiv-devops-day.png │ ├── live360-2016.png │ ├── mixit-2016.png │ ├── ndcoslo-2016.png │ ├── nextbuild-2016.png │ ├── ntpm.jpg │ ├── object-thinking.png │ ├── oredev-logo.jpg │ ├── outsource-people-2016.png │ ├── piratesummit-2016.png │ ├── pmday-2016.png │ ├── secr.png │ ├── sedc-2016.png │ ├── slcdevopsdays-2016.png │ ├── startupole-2016.png │ ├── swanseacon-2016.png │ ├── tecclub-2016.png │ ├── topconf.png │ ├── webit-2016.png │ └── xpdays.svg ├── 2017 │ ├── 10 │ │ ├── birdman.jpg │ │ ├── la-haine.jpg │ │ ├── motherland.jpg │ │ ├── reality.jpg │ │ └── zastava.jpg │ ├── 11 │ │ ├── carlitos-way.jpg │ │ ├── extract.jpg │ │ ├── godfather.jpg │ │ ├── grechka.jpg │ │ ├── idiocracy.jpg │ │ └── passports.jpg │ ├── 12 │ │ ├── coco-chanel-and-igor-stravinsky.jpg │ │ ├── managing-the-testing-process.jpg │ │ ├── rain-man.jpg │ │ ├── requiem-for-a-dream.jpg │ │ └── the-thomas-crown-affair.jpg │ ├── 01 │ │ ├── aladdin.jpg │ │ ├── army.jpg │ │ ├── being-flynn.jpg │ │ ├── budget.jpg │ │ ├── corruption.jpg │ │ ├── mesto-vstrechi.jpg │ │ ├── molotov.jpg │ │ ├── north-by-northwest.jpg │ │ ├── separation.jpg │ │ ├── the-firm.jpg │ │ ├── the-grand-budapest-hotel.jpg │ │ └── ukrainian.jpg │ ├── 02 │ │ ├── el-dia-de-la-bestia.jpg │ │ ├── les-kidnappeurs.jpg │ │ ├── nationalism.jpg │ │ ├── the-deer-hunter.jpg │ │ └── the-master.jpg │ ├── 03 │ │ ├── cdbtf-graph.png │ │ ├── cdbtf-jcabi-aspects.svg │ │ ├── cdbtf-s3auth.svg │ │ ├── cdbtf-takes.svg │ │ ├── cdbtf-xembly.svg │ │ ├── cdbtf-xockets-hadoop-transport.svg │ │ ├── cdbtf-xockets-layer.svg │ │ ├── cdbtf.svg │ │ ├── dumb-and-dumber.jpg │ │ ├── indians.jpg │ │ └── la-grande-bellezza.jpg │ ├── 04 │ │ ├── 0pdd-screenshot.jpg │ │ ├── filatov-merilo.jpg │ │ ├── il-divo.jpg │ │ ├── scarface.jpg │ │ ├── sixnines.jpg │ │ └── vladimir-olentsevich.jpg │ ├── 05 │ │ ├── bullet.jpg │ │ ├── happiness.jpg │ │ ├── lamico-di-famiglia.jpg │ │ ├── le-conseguenze-dellamore.jpg │ │ ├── oss-117.jpg │ │ ├── the-untouchables.jpg │ │ └── victory-day.jpg │ ├── 06 │ │ ├── dogville.jpg │ │ ├── env-1password.jpg │ │ ├── env-chrome.jpg │ │ ├── env-colloquy.jpg │ │ ├── env-dropbox.jpg │ │ ├── env-google-drive.jpg │ │ ├── env-homebrew.jpg │ │ ├── env-httpclient.jpg │ │ ├── env-icloud.jpg │ │ ├── env-intellij-idea.jpg │ │ ├── env-istat.jpg │ │ ├── env-iterm2.jpg │ │ ├── env-keynote.jpg │ │ ├── env-macbook.jpg │ │ ├── env-messenger.jpg │ │ ├── env-mtorrent.jpg │ │ ├── env-numbers.jpg │ │ ├── env-obs.jpg │ │ ├── env-pages.jpg │ │ ├── env-pixelmator.jpg │ │ ├── env-pokerstars.jpg │ │ ├── env-reaper.jpg │ │ ├── env-s3.jpg │ │ ├── env-sketch.jpg │ │ ├── env-skype.jpg │ │ ├── env-slack.jpg │ │ ├── env-sublime-text.jpg │ │ ├── env-telegram.jpg │ │ ├── env-things.jpg │ │ ├── env-tower.jpg │ │ ├── env-transmit.jpg │ │ ├── env-viber.jpg │ │ ├── env-vienna.jpg │ │ ├── env-vlc.jpg │ │ ├── env-whatsapp.jpg │ │ ├── env-yourkit.jpg │ │ ├── env-zoom.jpg │ │ └── gulag.jpg │ ├── 07 │ │ ├── conversations-with-other-women.jpg │ │ ├── intouchables.jpg │ │ ├── lultimo-capodanno.jpg │ │ ├── saakashvili.jpg │ │ ├── sites-amazon.jpg │ │ ├── sites-aws.jpg │ │ ├── sites-buffer.jpg │ │ ├── sites-buffer.png │ │ ├── sites-contabo.jpg │ │ ├── sites-facebook.jpg │ │ ├── sites-github.jpg │ │ ├── sites-gmail.jpg │ │ ├── sites-godaddy.jpg │ │ ├── sites-godaddy.png │ │ ├── sites-google-analytics.jpg │ │ ├── sites-google-calendar.jpg │ │ ├── sites-google-drive.jpg │ │ ├── sites-google-webmasters.jpg │ │ ├── sites-hacker-news.jpg │ │ ├── sites-heroku.jpg │ │ ├── sites-papertrail.jpg │ │ ├── sites-quickbooks.jpg │ │ ├── sites-reddit.jpg │ │ ├── sites-rultor.jpg │ │ ├── sites-sentry.jpg │ │ ├── sites-shippable.jpg │ │ ├── sites-soundcloud.jpg │ │ ├── sites-stackoverflow.jpg │ │ ├── sites-statuscake.jpg │ │ ├── sites-travis-ci.jpg │ │ ├── sites-twitter.jpg │ │ ├── sites-youtube.jpg │ │ └── twentynine-palms.jpg │ ├── 08 │ │ ├── at-sachem-farm.jpg │ │ ├── coinbase-1.jpg │ │ ├── lappartement.jpg │ │ ├── scarecrow.jpg │ │ └── two-and-a-half-men.jpg │ ├── 09 │ │ ├── 300.jpg │ │ ├── dont-tempt-me.jpg │ │ └── threecopies.jpg │ ├── agiledays.svg │ ├── bdmsummit-2017.png │ ├── devon-summit.png │ ├── devternity.png │ ├── dotnext.png │ ├── item-2017.png │ ├── javaday-2017.png │ ├── jbreak.png │ ├── jpoint.png │ ├── jug-dnipro.png │ ├── jugua.png │ ├── khpmday-2017.png │ ├── kiof.png │ ├── magmaconf.png │ ├── pgday.png │ ├── pmcon.png │ ├── qafest.png │ └── rigadevdays.png ├── 2018 │ ├── 10 │ │ ├── stalin-tegeran-1943.jpg │ │ ├── stalker.jpg │ │ └── the-drop.jpg │ ├── 11 │ │ ├── better-call-saul.jpg │ │ ├── rocky.jpg │ │ └── wag-the-dog.jpg │ ├── 12 │ │ ├── american-beauty.jpg │ │ ├── breaking-bad.jpg │ │ └── ubit-drakona.jpg │ ├── 01 │ │ ├── blind-fury.jpg │ │ ├── fake-opposition.jpg │ │ ├── hardmen.jpg │ │ ├── putin-flowers.jpg │ │ ├── taxi-driver.jpg │ │ └── the-gift.jpg │ ├── 02 │ │ ├── american-honey.jpg │ │ ├── la-comunidad.jpg │ │ └── la-science-des-reves.jpg │ ├── 03 │ │ ├── casino.jpg │ │ ├── donnie-brasco.jpg │ │ ├── house-of-flying-daggers.jpg │ │ ├── putin.jpg │ │ ├── scent-of-a-woman.jpg │ │ └── skripal.jpg │ ├── 04 │ │ ├── binder-listing.jpg │ │ ├── burn-after-reading.jpg │ │ ├── cactoos-listing.jpg │ │ ├── dom-hemingway.jpg │ │ ├── farm-listing.jpg │ │ ├── last-tango-in-paris.jpg │ │ ├── maven-listing.jpg │ │ ├── refactoring.jpg │ │ ├── sin-city.jpg │ │ └── springboot-listing.jpg │ ├── 05 │ │ ├── her.jpg │ │ ├── punching-the-clown.jpg │ │ └── snatch.jpg │ ├── 06 │ │ ├── no-country-for-old-men.jpg │ │ └── savages.jpg │ ├── 07 │ │ ├── el-chapo.jpg │ │ └── jamon-jamon.jpg │ ├── 08 │ │ ├── glengarry-glen-ross.jpg │ │ ├── run-lola-run.jpg │ │ └── the-night-of.jpg │ ├── 09 │ │ ├── funny-games.jpg │ │ ├── mailanes-1.png │ │ ├── mailanes-2.png │ │ ├── mailanes-3.png │ │ └── rum-diary.jpg │ ├── appsconf.png │ └── devopsconf.png ├── 2019 │ ├── 10 │ │ └── la-dolce-vita.jpg │ ├── 11 │ │ ├── irreversible.jpg │ │ └── war-inc.jpg │ ├── 12 │ │ ├── goodfellas.jpg │ │ ├── love-liza.jpg │ │ ├── testosteron.jpg │ │ └── why-women-kill.jpg │ ├── 01 │ │ ├── bombei.jpg │ │ ├── donald-trump-wall.jpg │ │ ├── drugs.jpg │ │ ├── fargo.jpg │ │ ├── payscale.png │ │ ├── sin-noticias-de-dios.jpg │ │ ├── the-color-of-money.jpg │ │ └── the-thin-red-line.jpg │ ├── 02 │ │ ├── cloudrepo.png │ │ ├── demokratiya.jpg │ │ ├── gostya-iz-budushego.jpg │ │ └── jews.jpg │ ├── 03 │ │ ├── bjarne-stroustrup-book.jpg │ │ ├── breakfast-at-tiffanys.jpg │ │ ├── taboo.jpg │ │ ├── the-square.jpg │ │ └── trump.jpg │ ├── 04 │ │ ├── jack.jpg │ │ ├── life-of-pi.jpg │ │ ├── life-of-pi.png │ │ ├── mon-roi.jpg │ │ └── the-people-vs-larry-flynt.jpg │ ├── 05 │ │ ├── big-eyes.jpg │ │ ├── metro-manila.jpg │ │ ├── the-departed.jpg │ │ └── the-invention-of-lying.jpg │ ├── 06 │ │ ├── moonrise-kingdom.jpg │ │ └── the-tribe.jpg │ ├── 07 │ │ ├── boardwalk-empire.jpg │ │ ├── la-venus-a-la-fourrure.jpg │ │ ├── lyubov-sobol.jpg │ │ ├── prokopenko.jpg │ │ └── the-gambler.jpg │ ├── 09 │ │ ├── barfuss.jpg │ │ ├── fargo-2.jpg │ │ ├── hackers.jpg │ │ ├── limonov.jpg │ │ ├── meeting-saharova.jpg │ │ └── yip-man.jpg │ ├── appsconf.png │ ├── devopsconf.png │ ├── jpoint.png │ └── teamlead-conf.png ├── 2020 │ ├── 10 │ │ ├── chacun-sa-vie.jpg │ │ ├── le-retour-du-heros.jpg │ │ └── zero-2.jpg │ ├── 11 │ │ ├── norsemen.jpg │ │ ├── redirected.jpg │ │ ├── svoboda.jpg │ │ └── the-ballad-of-buster-scruggs.jpg │ ├── 12 │ │ ├── bonnie-and-clyde.jpg │ │ ├── loro.jpg │ │ └── the-irishman.jpg │ ├── 01 │ │ ├── broadchurch.jpg │ │ └── life-is-too-short.jpg │ ├── 02 │ │ ├── kin-dza-dza.jpg │ │ └── owning-mahowny.jpg │ ├── 03 │ │ ├── buffalo-66.jpg │ │ └── coronavirus.jpg │ ├── 05 │ │ ├── constantine.jpg │ │ ├── covid.jpg │ │ ├── dog-day-afternoon.jpg │ │ └── filth.jpg │ ├── 06 │ │ ├── better-call-saul.jpg │ │ └── floyd.jpg │ └── 07 │ │ ├── football-fan.jpg │ │ └── hong-kil-dong.jpg ├── 2021 │ ├── 10 │ │ ├── gridlockd.jpg │ │ └── maend-and-hons.jpg │ ├── 11 │ │ └── die-welle.jpg │ ├── 02 │ │ ├── space-force.jpg │ │ └── undercover.jpg │ ├── 03 │ │ └── the-kominsky-method.jpg │ ├── 04 │ │ ├── glow.jpg │ │ └── iccq-box.png │ ├── 06 │ │ └── the-fifth-element.jpg │ ├── 08 │ │ ├── children-of-men.jpg │ │ └── huge-in-france.jpg │ └── 09 │ │ ├── lion-king.jpg │ │ ├── simba-listening.png │ │ ├── simba-listening.svg │ │ ├── simba-speaking.png │ │ ├── simba-speaking.svg │ │ ├── simba-thinking.png │ │ ├── simba-thinking.svg │ │ ├── simba-writing.png │ │ └── simba-writing.svg ├── 2022 │ ├── 11 │ │ └── mimino.jpg │ ├── 02 │ │ ├── short-circuit.jpg │ │ └── wheelman.jpg │ ├── 03 │ │ └── game-of-thrones.jpg │ ├── 06 │ │ ├── mafioso.jpg │ │ ├── safety-net.jpg │ │ └── true-story.jpg │ ├── 07 │ │ └── the-trotsky.jpg │ ├── 08 │ │ ├── barfuss.jpg │ │ ├── elephant.jpg │ │ └── il-camorrista.jpg │ └── 09 │ │ └── the-rum-diary.jpg ├── 2023 │ ├── 10 │ │ ├── bogdan.jpg │ │ └── underground.jpg │ ├── 11 │ │ ├── coffee-and-cigarettes.jpg │ │ └── pret-a-porter.jpg │ ├── 12 │ │ ├── beregis-avtomobila.jpg │ │ ├── mulholland-drive.jpg │ │ └── terminator.jpg │ ├── 07 │ │ ├── dead-or-alive.jpg │ │ └── les-cotelettes.jpg │ ├── 08 │ │ ├── blade-runner.jpg │ │ ├── democracy.jpg │ │ ├── immigrants.jpg │ │ ├── inglourious-basterds.jpg │ │ ├── nirvana.jpg │ │ ├── the-return.jpg │ │ └── youth.jpg │ └── 09 │ │ ├── bibcop-after.png │ │ ├── bibcop-before.png │ │ ├── bibcop-scholar.png │ │ ├── eight-and-half.jpg │ │ ├── kolomoyskiy.jpg │ │ └── mean-streets.jpg ├── 2024 │ ├── 12 │ │ └── white-sun.jpg │ ├── 01 │ │ ├── letter.png │ │ ├── letter2.png │ │ └── silence.jpg │ ├── 02 │ │ └── respublica-shkid.jpg │ ├── 04 │ │ ├── 10th-and-wolf.jpg │ │ ├── peresvet-i-chelubej.jpg │ │ ├── refusal.png │ │ └── zadonshina.png │ ├── 05 │ │ └── babyshark.jpg │ ├── 06 │ │ ├── and-justice-for-all.jpg │ │ └── elusive-avengers.jpg │ ├── 07 │ │ └── capote.jpg │ └── 09 │ │ └── chaos-of-news.jpg ├── 2025 │ ├── 04 │ │ ├── analyze-this.jpg │ │ ├── eye-of-the-beholder.jpg │ │ └── trainspotting.jpg │ ├── 05 │ │ ├── bronx-tale.jpg │ │ ├── flawless.jpg │ │ └── ghost-dog.jpg │ └── 06 │ │ └── la-femme-nikita.jpg ├── about │ ├── blogger.png │ ├── devops.png │ ├── dzone.png │ ├── jcg.png │ ├── medium.png │ ├── tumblr.png │ ├── yegor-full-size.jpg │ └── yegor-speaking.jpg ├── andreea │ ├── academic-writing.png │ ├── academic-writing.svg │ ├── angry-testimonials.png │ ├── breakfast.png │ ├── breakfast.svg │ ├── coder.png │ ├── coder.svg │ ├── page-not-found.png │ ├── page-not-found.svg │ ├── paintings.png │ ├── paintings.svg │ ├── pet.png │ ├── pet.svg │ ├── podcast.png │ ├── podcast.svg │ ├── quality-award.png │ ├── quality-award.svg │ ├── webinar.png │ ├── webinar.svg │ ├── writing.png │ ├── writing.svg │ ├── yegor-is-presenting.png │ └── yegor-is-presenting.svg ├── award │ ├── 2015 │ │ └── winner.png │ ├── 2016 │ │ ├── winner-pholser.png │ │ └── winner-sils.png │ ├── 2017 │ │ ├── winner-itcraftsmanpl.png │ │ └── winner-mafagafogigante.png │ ├── 2018 │ │ ├── winner-dgroup.png │ │ └── winner-driver733.png │ ├── 2019 │ │ ├── winner-fabriciofx.png │ │ └── winner-proshin-roman.png │ └── 2020 │ │ ├── winner-amihaiemil.png │ │ ├── winner-hdouss.png │ │ └── winner-victorx64.png ├── books │ ├── 256-bloghacks │ │ ├── cover.png │ │ ├── tomato.png │ │ └── tomato.svg │ ├── amazon-advantage.gif │ ├── amazon-buy-button.png │ ├── angry-tests │ │ ├── cover.png │ │ ├── onion.png │ │ └── onion.svg │ ├── available-at-amazon.png │ ├── code-ahead │ │ ├── contents.pdf │ │ ├── cover.png │ │ ├── mushroom.png │ │ └── mushroom.svg │ ├── elegant-objects │ │ ├── cactus-bw.png │ │ ├── cactus-stickers.png │ │ ├── cactus-with-border.png │ │ ├── cactus-with-border.svg │ │ ├── cactus.png │ │ ├── cactus.svg │ │ ├── contents-2.pdf │ │ ├── contents.pdf │ │ ├── contents.png │ │ ├── cover-eo1.png │ │ ├── cover-eo2.png │ │ ├── cover-razbor-poletov.png │ │ ├── elegant-objects-cover-0.1.png │ │ ├── seven-pages.pdf │ │ └── seven-pages.png │ └── junior-objects │ │ ├── baby-cactus.png │ │ ├── baby-cactus.svg │ │ └── cover.png ├── calendar-icon.png ├── face-1024x1024.jpg ├── face-256x256-mask.jpg ├── face-256x256.jpg ├── google-search-icon.svg ├── icon-black-2014.png ├── icon-white.png ├── icon-white.svg ├── icon.svg ├── icons │ ├── aws-white.svg │ ├── aws.svg │ ├── business-white.svg │ ├── business.svg │ ├── cactus.svg │ ├── career-white.svg │ ├── career.svg │ ├── etiquette-white.svg │ ├── etiquette.svg │ ├── github-white.svg │ ├── github.svg │ ├── java-white.svg │ ├── java.svg │ ├── jcabi-white.svg │ ├── jekyll-white.svg │ ├── jekyll.svg │ ├── link.svg │ ├── maven-white.svg │ ├── maven.svg │ ├── mushroom.svg │ ├── pdd-white.svg │ ├── ruby-white.svg │ ├── ruby.svg │ ├── rultor-white.svg │ ├── sarcasm-white.svg │ ├── sarcasm.png │ ├── tex-white.svg │ ├── tex.svg │ ├── xdsd-white.svg │ └── zerocracy-white.svg ├── paintings │ ├── 2017 │ │ ├── a-woman-on-the-beach.jpg │ │ ├── catch.jpg │ │ ├── doubts.jpg │ │ ├── expectations.jpg │ │ ├── fall.jpg │ │ ├── guilt.jpg │ │ ├── in-love.jpg │ │ ├── lost-time.jpg │ │ ├── love-look.jpg │ │ ├── not-in-love.jpg │ │ ├── objectification.jpg │ │ ├── obsession.jpg │ │ ├── seven-and-one.jpg │ │ └── shame.jpg │ ├── 2018 │ │ ├── december-2018.jpg │ │ ├── gray-freedom.jpg │ │ ├── november-2018.jpg │ │ └── october-2018.jpg │ ├── 2019 │ │ ├── april-2019.jpg │ │ ├── february-2019.jpg │ │ ├── january-2019.jpg │ │ ├── june-2019.jpg │ │ ├── march-2019.jpg │ │ └── may-2019.jpg │ ├── amazon-handmade.png │ ├── artfinder.png │ ├── saatchiart.png │ └── vangoart.png ├── personality.png ├── pets │ ├── jare.svg │ ├── jcabi.svg │ ├── s3auth.png │ └── stateful.svg ├── santa-hat.svg ├── shift-m-logo.svg ├── shift-m │ ├── adam-tornhill.png │ ├── aino-corry.png │ ├── allen-holub.png │ ├── andy-hunt.png │ ├── andy-jordan.png │ ├── anne-loehr.png │ ├── bart-vermijlen.png │ ├── bert-heymans.png │ ├── bjarne-stroustrup.png │ ├── david-hillson.png │ ├── david-west.png │ ├── erik-van-hurck.png │ ├── geepaw.png │ ├── gordon-tredgold.png │ ├── greg-young.png │ ├── henrik-martensson.png │ ├── hugo-messer.png │ ├── james-bach.png │ ├── jeff-atwood.png │ ├── jennifer-britton.png │ ├── johanna-rothman.png │ ├── jose-barato.png │ ├── lisa-sieverts.png │ ├── melissa-perri.png │ ├── michael-feathers.png │ ├── michael-kay.png │ ├── michael-krigsman.png │ ├── mike-clayton.png │ ├── olga-arnoldi.png │ ├── pim-de-morree.png │ ├── ricardo-vargas.png │ ├── richard-pawson.png │ ├── shoaib-ahmed.png │ ├── susanne-madsen.png │ ├── suzanne-lucas.png │ ├── todd-williams.png │ ├── venkat-subramaniam.png │ ├── vincent-birlouez.png │ └── yakov-fain.png └── trainings │ ├── alexander-tokmashev.png │ ├── martin-reichard.png │ ├── yegor-bugayenko-training-1.jpg │ ├── yegor-bugayenko-training-4.jpg │ └── yegor-bugayenko-training-5.jpg ├── index.html ├── js ├── all.js └── snowflakes.min.js ├── opensearch.html ├── opensearch.xml ├── pdf ├── 1998 │ └── KRDB98-article.pdf ├── 2009 │ ├── IWSM09-article.pdf │ ├── SEAFOOD09-article.pdf │ └── VALID09-article.pdf ├── 2010 │ ├── phpArchitect-conflicts.pdf │ ├── phpArchitect-fazend-orm.pdf │ └── phpArchitect-phpRack.pdf ├── 2014 │ └── guard-article.pdf ├── 2017 │ ├── elegant-objects-abashev.pdf │ ├── elegant-objects-antonarhipov.pdf │ ├── elegant-objects-gamussa.pdf │ ├── elegant-objects-golodnyj.pdf │ └── elegant-objects-jbaruch.pdf ├── 2018 │ ├── discovering-bugs.pdf │ └── we-are-done-with-hacking.pdf ├── 2019 │ ├── enthusiasm.pdf │ └── indolence.pdf ├── 2020 │ ├── cacm-oct.pdf │ ├── iccsit20.pdf │ ├── icsa20.pdf │ └── kes20.pdf ├── 2021 │ ├── requs.pdf │ └── volatility.pdf ├── books │ ├── eo1-teaser.pdf │ └── eo2-teaser.pdf ├── certifications │ ├── CompTIA-Mar07.pdf │ ├── IBM-UseCases-Mar07.pdf │ ├── MCP-Oct07.pdf │ ├── OCMJEA-Feb11.pdf │ ├── OCUP-Sep08.pdf │ ├── PHP5-Jul08.pdf │ ├── PMP-Jun07.pdf │ ├── PRINCE2-Jun08.pdf │ ├── RUP-Dec06.pdf │ ├── RUP-Feb07.pdf │ └── ZFCE-Oct09.pdf ├── ieee-730-2014.pdf ├── job-description.pdf └── resumes │ ├── anton-dozortsev.pdf │ └── roman-leventov.pdf ├── renovate.json ├── robots.txt ├── shift-m ├── 2017 │ ├── 2017-06-05-distributed-teams.md │ ├── 2017-06-12-pm-conferences.md │ ├── 2017-06-19-underperformers.md │ ├── 2017-06-26-yakov-fain.md │ ├── 2017-07-17-diversity.md │ ├── 2017-07-24-susanne-madsen.md │ ├── 2017-08-10-hugo-messer.md │ ├── 2017-08-28-how-to-pay-less.md │ ├── 2017-10-09-padding.md │ ├── 2017-10-11-johanna-rothman.md │ ├── 2017-10-17-bert-heymans.md │ ├── 2017-10-20-stakeholders.md │ ├── 2017-10-24-bart-vermijlen.md │ ├── 2017-10-30-jose-barato.md │ ├── 2017-11-03-henrik-martensson.md │ ├── 2017-11-03-vincent-birlouez.md │ ├── 2017-11-06-qa-vs-testing.md │ ├── 2017-11-20-how-not-to-trust.md │ ├── 2017-12-04-micro-tasking.md │ └── 2017-12-18-bug-tracking.md ├── 2018 │ ├── 2018-02-04-sociotech.md │ ├── 2018-03-04-honest-with-client.md │ ├── 2018-03-18-no-estimates.md │ ├── 2018-04-02-architect-skills.md │ ├── 2018-04-16-ricardo-vargas.md │ ├── 2018-04-19-james-bach.md │ ├── 2018-04-27-geepaw-hill.md │ ├── 2018-05-20-laziness.md │ ├── 2018-07-12-team-dynamics.md │ ├── 2018-07-22-change-management.md │ ├── 2018-07-30-waterfall.md │ ├── 2018-08-01-failures.md │ ├── 2018-08-05-metrics.md │ ├── 2018-08-26-respect.md │ ├── 2018-09-03-bullying.md │ ├── 2018-09-10-seventy-seventy.md │ ├── 2018-09-29-herd-instinct.md │ ├── 2018-09-29-zen-management.md │ ├── 2018-11-19-product-management.md │ └── 2018-12-19-softskills.md ├── 2019 │ ├── 2019-01-03-focus.md │ └── 2019-12-04-self-development.md ├── 2020 │ ├── 2020-02-06-david-hillson.md │ ├── 2020-11-08-david-west.md │ └── 2020-12-22-allen-holub.md ├── 2021 │ ├── 2021-03-17-pim-de-morree.md │ ├── 2021-07-27-bjarne-stroustrup.md │ ├── 2021-08-23-jeff-atwood.md │ ├── 2021-09-07-greg-young.md │ └── 2021-12-24-andy-hunt.md ├── 2022 │ ├── 2022-01-13-michael-kay.md │ ├── 2022-01-19-aino-corry.md │ ├── 2022-01-26-adam-tornhill.md │ └── 2022-03-02-michael-feathers.md └── 2025 │ └── 2025-04-22-richard-pawson.md ├── static ├── 404.md ├── about-me.md ├── award.md ├── best.md ├── boilerplate.md ├── books.md ├── books │ ├── 256-bloghacks.md │ ├── angry-tests.md │ ├── code-ahead.md │ ├── elegant-objects.md │ └── junior-objects.md ├── contents.md ├── eo-reviews.md ├── fiction.md ├── films.md ├── movies.md ├── non-fiction.md ├── paintings.md ├── pets.md ├── quotes.md ├── research.md ├── seen.md ├── shift-m.md ├── subscribed.md ├── talks.md ├── teaching.md ├── testimonials.md ├── trainings.md ├── videos.md └── webinars.md └── txt ├── 2015 └── award-2015.txt ├── 2016 └── award-2016.txt ├── 2017 └── award-2017.txt ├── 2018 └── award-2018.txt ├── 2019 └── award-2019.txt └── 2020 └── award-2020.txt /.pdd: -------------------------------------------------------------------------------- 1 | --exclude **/aspell.en.pws 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.yegor256.com 2 | -------------------------------------------------------------------------------- /_docker/woff.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/_docker/woff.zip -------------------------------------------------------------------------------- /_drafts/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/_drafts/.gitkeep -------------------------------------------------------------------------------- /_latex/.gitignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.log 3 | *.out 4 | *.pdf 5 | *.fdb_latexmk 6 | *.fls 7 | *.fdb_latexmk 8 | *.fls 9 | svg-inkscape/ 10 | -------------------------------------------------------------------------------- /_latex/.latexmkrc: -------------------------------------------------------------------------------- 1 | $latex = 'latex %O --shell-escape %S'; 2 | $pdflatex = 'pdflatex %O --shell-escape %S'; 3 | -------------------------------------------------------------------------------- /_latex/.texsc: -------------------------------------------------------------------------------- 1 | --pws=aspell.en.pws 2 | --ignore=nospell 3 | --ignore=tikz:op 4 | -------------------------------------------------------------------------------- /_samples/2017/07/equals/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .idea 3 | *.iml 4 | -------------------------------------------------------------------------------- /_samples/2017/10/sticky/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .idea 3 | *.iml 4 | -------------------------------------------------------------------------------- /ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-5221987912049855, DIRECT, f08c47fec0942fa0 2 | -------------------------------------------------------------------------------- /bin/settings.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/bin/settings.jar -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/favicon.ico -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_0_0.eot -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_0_0.ttf -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_0_0.woff -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_0_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_0_0.woff2 -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_1_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_1_0.eot -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_1_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_1_0.ttf -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_1_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_1_0.woff -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_1_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_1_0.woff2 -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_2_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_2_0.eot -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_2_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_2_0.ttf -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_2_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_2_0.woff -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_2_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_2_0.woff2 -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_3_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_3_0.eot -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_3_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_3_0.ttf -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_3_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_3_0.woff -------------------------------------------------------------------------------- /fonts/cambria/2EAA54_3_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/fonts/cambria/2EAA54_3_0.woff2 -------------------------------------------------------------------------------- /images/2014/04/brazil-crowded-office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/04/brazil-crowded-office.png -------------------------------------------------------------------------------- /images/2014/04/dynamodb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/04/dynamodb-logo.png -------------------------------------------------------------------------------- /images/2014/04/shaolin-temple-jet-li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/04/shaolin-temple-jet-li.png -------------------------------------------------------------------------------- /images/2014/04/time-and-mess-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/04/time-and-mess-diagram.png -------------------------------------------------------------------------------- /images/2014/05/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/05/github-logo.png -------------------------------------------------------------------------------- /images/2014/05/s3-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/05/s3-logo.png -------------------------------------------------------------------------------- /images/2014/07/rultor-aspects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/07/rultor-aspects.png -------------------------------------------------------------------------------- /images/2014/07/rultor-jekyll-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/07/rultor-jekyll-4.png -------------------------------------------------------------------------------- /images/2014/07/rultor-mysql-35-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/07/rultor-mysql-35-2.png -------------------------------------------------------------------------------- /images/2014/07/rultor-mysql-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/07/rultor-mysql-35.png -------------------------------------------------------------------------------- /images/2014/07/rultor-s3auth-195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/07/rultor-s3auth-195.png -------------------------------------------------------------------------------- /images/2014/07/travis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/07/travis-logo.png -------------------------------------------------------------------------------- /images/2014/08/github-sttc-issue-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/08/github-sttc-issue-6.png -------------------------------------------------------------------------------- /images/2014/08/github-ticket-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/08/github-ticket-6.jpg -------------------------------------------------------------------------------- /images/2014/08/github-ticket-80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/08/github-ticket-80.jpg -------------------------------------------------------------------------------- /images/2014/08/glenford-myers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/08/glenford-myers.png -------------------------------------------------------------------------------- /images/2014/09/fish-called-wanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/09/fish-called-wanda.png -------------------------------------------------------------------------------- /images/2014/09/good_bad_weird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/09/good_bad_weird.png -------------------------------------------------------------------------------- /images/2014/09/ratatouille.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/09/ratatouille.png -------------------------------------------------------------------------------- /images/2014/10/appveyor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/appveyor.png -------------------------------------------------------------------------------- /images/2014/10/barton-fink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/barton-fink.png -------------------------------------------------------------------------------- /images/2014/10/circleci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/circleci.png -------------------------------------------------------------------------------- /images/2014/10/cloudbees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/cloudbees.png -------------------------------------------------------------------------------- /images/2014/10/coda-json-indentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/coda-json-indentation.png -------------------------------------------------------------------------------- /images/2014/10/codeship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/codeship.png -------------------------------------------------------------------------------- /images/2014/10/deploybot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/deploybot.png -------------------------------------------------------------------------------- /images/2014/10/drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/drone.png -------------------------------------------------------------------------------- /images/2014/10/greenhouseci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/greenhouseci.png -------------------------------------------------------------------------------- /images/2014/10/hostedci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/hostedci.png -------------------------------------------------------------------------------- /images/2014/10/jackie-brown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/jackie-brown.jpg -------------------------------------------------------------------------------- /images/2014/10/lifecycle-building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/lifecycle-building.png -------------------------------------------------------------------------------- /images/2014/10/lifecycle-fixing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/lifecycle-fixing.png -------------------------------------------------------------------------------- /images/2014/10/lifecycle-thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/lifecycle-thinking.png -------------------------------------------------------------------------------- /images/2014/10/lifecycle-using.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/lifecycle-using.png -------------------------------------------------------------------------------- /images/2014/10/magnum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/magnum.png -------------------------------------------------------------------------------- /images/2014/10/semaphoreapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/semaphoreapp.png -------------------------------------------------------------------------------- /images/2014/10/ship-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/ship-io.png -------------------------------------------------------------------------------- /images/2014/10/snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/snap.png -------------------------------------------------------------------------------- /images/2014/10/solanolabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/solanolabs.png -------------------------------------------------------------------------------- /images/2014/10/travis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/travis.png -------------------------------------------------------------------------------- /images/2014/10/trends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/trends.png -------------------------------------------------------------------------------- /images/2014/10/vexor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/vexor.png -------------------------------------------------------------------------------- /images/2014/10/wercker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/10/wercker.png -------------------------------------------------------------------------------- /images/2014/11/broken-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/11/broken-object.png -------------------------------------------------------------------------------- /images/2014/11/good-object-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/11/good-object-1.png -------------------------------------------------------------------------------- /images/2014/11/good-object-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/11/good-object-2.png -------------------------------------------------------------------------------- /images/2014/11/good-object-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/11/good-object-3.png -------------------------------------------------------------------------------- /images/2014/11/good-object-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/11/good-object-4.png -------------------------------------------------------------------------------- /images/2014/11/good-object-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/11/good-object-5.png -------------------------------------------------------------------------------- /images/2014/11/rate-certifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/11/rate-certifications.png -------------------------------------------------------------------------------- /images/2014/12/99-francs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/12/99-francs.png -------------------------------------------------------------------------------- /images/2014/12/arizona-dream-car-shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/12/arizona-dream-car-shop.png -------------------------------------------------------------------------------- /images/2014/12/memory-stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/12/memory-stick.png -------------------------------------------------------------------------------- /images/2014/12/truman-show-universe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/12/truman-show-universe.png -------------------------------------------------------------------------------- /images/2014/12/van-damme-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2014/12/van-damme-split.png -------------------------------------------------------------------------------- /images/2015/01/cool-hand-luke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/01/cool-hand-luke.png -------------------------------------------------------------------------------- /images/2015/01/cut-corners-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/01/cut-corners-1.png -------------------------------------------------------------------------------- /images/2015/01/cut-corners-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/01/cut-corners-2.png -------------------------------------------------------------------------------- /images/2015/01/cut-corners-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/01/cut-corners-3.png -------------------------------------------------------------------------------- /images/2015/01/cut-corners-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/01/cut-corners-4.png -------------------------------------------------------------------------------- /images/2015/01/if-then-throw-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/01/if-then-throw-1.png -------------------------------------------------------------------------------- /images/2015/01/if-then-throw-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/01/if-then-throw-2.png -------------------------------------------------------------------------------- /images/2015/01/if-then-throw-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/01/if-then-throw-3.png -------------------------------------------------------------------------------- /images/2015/01/regarding-henry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/01/regarding-henry.jpg -------------------------------------------------------------------------------- /images/2015/02/color-me-kubrick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/02/color-me-kubrick.png -------------------------------------------------------------------------------- /images/2015/02/delicatessen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/02/delicatessen.png -------------------------------------------------------------------------------- /images/2015/02/gi-jane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/02/gi-jane.png -------------------------------------------------------------------------------- /images/2015/02/russina-matroshka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/02/russina-matroshka.jpg -------------------------------------------------------------------------------- /images/2015/03/apocalypto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/03/apocalypto.jpg -------------------------------------------------------------------------------- /images/2015/03/fight-club.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/03/fight-club.jpg -------------------------------------------------------------------------------- /images/2015/03/gadkiy-utenok.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/03/gadkiy-utenok.jpg -------------------------------------------------------------------------------- /images/2015/03/pulp-fiction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/03/pulp-fiction.jpg -------------------------------------------------------------------------------- /images/2015/04/book-art-of-testing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-art-of-testing.jpg -------------------------------------------------------------------------------- /images/2015/04/book-c++.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-c++.jpg -------------------------------------------------------------------------------- /images/2015/04/book-code-complete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-code-complete.jpg -------------------------------------------------------------------------------- /images/2015/04/book-css.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-css.jpg -------------------------------------------------------------------------------- /images/2015/04/book-estimation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-estimation.jpg -------------------------------------------------------------------------------- /images/2015/04/book-git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-git.jpg -------------------------------------------------------------------------------- /images/2015/04/book-goos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-goos.jpg -------------------------------------------------------------------------------- /images/2015/04/book-java-concurrency.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-java-concurrency.jpg -------------------------------------------------------------------------------- /images/2015/04/book-javascript.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-javascript.jpg -------------------------------------------------------------------------------- /images/2015/04/book-legacy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-legacy.jpg -------------------------------------------------------------------------------- /images/2015/04/book-requirements.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-requirements.jpg -------------------------------------------------------------------------------- /images/2015/04/book-use-cases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-use-cases.jpg -------------------------------------------------------------------------------- /images/2015/04/book-xml-nutshell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/book-xml-nutshell.jpg -------------------------------------------------------------------------------- /images/2015/04/webinar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/04/webinar.jpg -------------------------------------------------------------------------------- /images/2015/05/dr-strangelove.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/05/dr-strangelove.jpg -------------------------------------------------------------------------------- /images/2015/05/evil-cult.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/05/evil-cult.jpg -------------------------------------------------------------------------------- /images/2015/05/kill-bill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/05/kill-bill.jpg -------------------------------------------------------------------------------- /images/2015/05/leon-the-professional.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/05/leon-the-professional.jpg -------------------------------------------------------------------------------- /images/2015/05/rear-window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/05/rear-window.jpg -------------------------------------------------------------------------------- /images/2015/05/the-matrix-agent-smith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/05/the-matrix-agent-smith.jpg -------------------------------------------------------------------------------- /images/2015/05/there-will-be-blood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/05/there-will-be-blood.jpg -------------------------------------------------------------------------------- /images/2015/05/webinar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/05/webinar-2.jpg -------------------------------------------------------------------------------- /images/2015/05/wei-liao-zi-book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/05/wei-liao-zi-book.jpg -------------------------------------------------------------------------------- /images/2015/06/a-beautiful-mind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/06/a-beautiful-mind.jpg -------------------------------------------------------------------------------- /images/2015/06/crimen-ferpecto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/06/crimen-ferpecto.jpg -------------------------------------------------------------------------------- /images/2015/06/interstate-60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/06/interstate-60.jpg -------------------------------------------------------------------------------- /images/2015/06/jetbrains-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/06/jetbrains-logo.gif -------------------------------------------------------------------------------- /images/2015/06/sabotage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/06/sabotage.jpg -------------------------------------------------------------------------------- /images/2015/06/u-turn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/06/u-turn.jpg -------------------------------------------------------------------------------- /images/2015/06/uml-distilled-book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/06/uml-distilled-book.jpg -------------------------------------------------------------------------------- /images/2015/06/webinar-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/06/webinar-3.gif -------------------------------------------------------------------------------- /images/2015/07/catch-me-if-you-can.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/07/catch-me-if-you-can.jpg -------------------------------------------------------------------------------- /images/2015/07/ex-machina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/07/ex-machina.jpg -------------------------------------------------------------------------------- /images/2015/07/gladiator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/07/gladiator.jpg -------------------------------------------------------------------------------- /images/2015/07/heat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/07/heat.jpg -------------------------------------------------------------------------------- /images/2015/07/the-shining.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/07/the-shining.jpg -------------------------------------------------------------------------------- /images/2015/07/true-romance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/07/true-romance.jpg -------------------------------------------------------------------------------- /images/2015/07/webinar-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/07/webinar-4.gif -------------------------------------------------------------------------------- /images/2015/08/black-cat-white-cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/08/black-cat-white-cat.jpg -------------------------------------------------------------------------------- /images/2015/08/webinar-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/08/webinar-5.gif -------------------------------------------------------------------------------- /images/2015/08/ying-xiong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/08/ying-xiong.jpg -------------------------------------------------------------------------------- /images/2015/09/la-fille-sur-le-pont.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/09/la-fille-sur-le-pont.jpg -------------------------------------------------------------------------------- /images/2015/09/office-space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/09/office-space.jpg -------------------------------------------------------------------------------- /images/2015/09/up-in-the-air.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/09/up-in-the-air.jpg -------------------------------------------------------------------------------- /images/2015/09/webinar-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/09/webinar-6.gif -------------------------------------------------------------------------------- /images/2015/09/what-just-happened.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/09/what-just-happened.jpg -------------------------------------------------------------------------------- /images/2015/09/y-tu-mama-tambien.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/09/y-tu-mama-tambien.jpg -------------------------------------------------------------------------------- /images/2015/10/chatbot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/10/chatbot-1.png -------------------------------------------------------------------------------- /images/2015/10/cossacks-of-the-kuban.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/10/cossacks-of-the-kuban.jpg -------------------------------------------------------------------------------- /images/2015/10/martian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/10/martian.jpg -------------------------------------------------------------------------------- /images/2015/10/the-apartment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/10/the-apartment.jpg -------------------------------------------------------------------------------- /images/2015/10/the-godfather-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/10/the-godfather-ii.jpg -------------------------------------------------------------------------------- /images/2015/10/the-office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/10/the-office.jpg -------------------------------------------------------------------------------- /images/2015/10/the-wrestler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/10/the-wrestler.jpg -------------------------------------------------------------------------------- /images/2015/10/third-reich-symbol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/10/third-reich-symbol.jpg -------------------------------------------------------------------------------- /images/2015/10/ussr-symbol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/10/ussr-symbol.jpg -------------------------------------------------------------------------------- /images/2015/11/bot-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/11/bot-1.jpg -------------------------------------------------------------------------------- /images/2015/11/bot-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/11/bot-2.jpg -------------------------------------------------------------------------------- /images/2015/11/bot-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/11/bot-3.jpg -------------------------------------------------------------------------------- /images/2015/11/bot-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/11/bot-4.jpg -------------------------------------------------------------------------------- /images/2015/11/bot-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/11/bot-5.jpg -------------------------------------------------------------------------------- /images/2015/11/bot-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/11/bot-6.jpg -------------------------------------------------------------------------------- /images/2015/11/ieee-830.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/11/ieee-830.jpg -------------------------------------------------------------------------------- /images/2015/11/reservoir-dogs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/11/reservoir-dogs.jpg -------------------------------------------------------------------------------- /images/2015/11/the-business.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/11/the-business.jpg -------------------------------------------------------------------------------- /images/2015/11/thursday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/11/thursday.jpg -------------------------------------------------------------------------------- /images/2015/12/blueberry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/12/blueberry.jpg -------------------------------------------------------------------------------- /images/2015/12/commando.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/12/commando.jpg -------------------------------------------------------------------------------- /images/2015/12/four-rooms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/12/four-rooms.jpg -------------------------------------------------------------------------------- /images/2015/12/kung-fu-hustle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/12/kung-fu-hustle.jpg -------------------------------------------------------------------------------- /images/2015/12/the-game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/12/the-game.jpg -------------------------------------------------------------------------------- /images/2015/buildstuff-2015-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/buildstuff-2015-logo.png -------------------------------------------------------------------------------- /images/2015/buildstuff-2015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/buildstuff-2015.jpg -------------------------------------------------------------------------------- /images/2015/dat-flock-2015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/dat-flock-2015.jpg -------------------------------------------------------------------------------- /images/2015/datflock-2015-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/datflock-2015-logo.png -------------------------------------------------------------------------------- /images/2015/developerweek-2015-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/developerweek-2015-logo.png -------------------------------------------------------------------------------- /images/2015/devopsdays-2015-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/devopsdays-2015-logo.png -------------------------------------------------------------------------------- /images/2015/devopsdays-warsaw-2015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/devopsdays-warsaw-2015.jpg -------------------------------------------------------------------------------- /images/2015/kyiv-devops-2015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/kyiv-devops-2015.jpg -------------------------------------------------------------------------------- /images/2015/sf-devops-2015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2015/sf-devops-2015.jpg -------------------------------------------------------------------------------- /images/2016/01/office-space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/01/office-space.jpg -------------------------------------------------------------------------------- /images/2016/01/shi-mian-mai-fu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/01/shi-mian-mai-fu.jpg -------------------------------------------------------------------------------- /images/2016/01/the-fan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/01/the-fan.jpg -------------------------------------------------------------------------------- /images/2016/02/apocalypse-now.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/02/apocalypse-now.jpg -------------------------------------------------------------------------------- /images/2016/02/the-revenant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/02/the-revenant.jpg -------------------------------------------------------------------------------- /images/2016/02/the-shining.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/02/the-shining.jpg -------------------------------------------------------------------------------- /images/2016/03/delicatessen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/03/delicatessen.jpg -------------------------------------------------------------------------------- /images/2016/03/huevos-de-oro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/03/huevos-de-oro.jpg -------------------------------------------------------------------------------- /images/2016/03/jare-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/03/jare-1.png -------------------------------------------------------------------------------- /images/2016/03/wall-street.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/03/wall-street.jpg -------------------------------------------------------------------------------- /images/2016/03/wring-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/03/wring-1.png -------------------------------------------------------------------------------- /images/2016/03/wring-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/03/wring-2.png -------------------------------------------------------------------------------- /images/2016/04/a-serious-man.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/04/a-serious-man.jpg -------------------------------------------------------------------------------- /images/2016/04/amelie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/04/amelie.jpg -------------------------------------------------------------------------------- /images/2016/04/blow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/04/blow.jpg -------------------------------------------------------------------------------- /images/2016/04/gomorrah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/04/gomorrah.jpg -------------------------------------------------------------------------------- /images/2016/04/the-take.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/04/the-take.jpg -------------------------------------------------------------------------------- /images/2016/05/bean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/05/bean.jpg -------------------------------------------------------------------------------- /images/2016/05/old-boy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/05/old-boy.jpg -------------------------------------------------------------------------------- /images/2016/05/schindlers-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/05/schindlers-list.jpg -------------------------------------------------------------------------------- /images/2016/05/the-godfather-iii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/05/the-godfather-iii.jpg -------------------------------------------------------------------------------- /images/2016/06/mi-gran-noche.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/06/mi-gran-noche.jpg -------------------------------------------------------------------------------- /images/2016/06/natural-born-killers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/06/natural-born-killers.jpg -------------------------------------------------------------------------------- /images/2016/06/perdita-durango.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/06/perdita-durango.jpg -------------------------------------------------------------------------------- /images/2016/07/12-angry-men.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/07/12-angry-men.jpg -------------------------------------------------------------------------------- /images/2016/07/beasts-of-no-nation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/07/beasts-of-no-nation.jpg -------------------------------------------------------------------------------- /images/2016/07/en-duva-satt-pa-engren.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/07/en-duva-satt-pa-engren.jpg -------------------------------------------------------------------------------- /images/2016/07/hail-caesar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/07/hail-caesar.jpg -------------------------------------------------------------------------------- /images/2016/07/jackass-the-movie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/07/jackass-the-movie.jpg -------------------------------------------------------------------------------- /images/2016/07/spartacus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/07/spartacus.jpg -------------------------------------------------------------------------------- /images/2016/08/alan-kay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/alan-kay.jpg -------------------------------------------------------------------------------- /images/2016/08/asaf-shelly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/asaf-shelly.jpg -------------------------------------------------------------------------------- /images/2016/08/edsger-dijkstra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/edsger-dijkstra.jpg -------------------------------------------------------------------------------- /images/2016/08/eric-allman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/eric-allman.jpg -------------------------------------------------------------------------------- /images/2016/08/eric-raymond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/eric-raymond.jpg -------------------------------------------------------------------------------- /images/2016/08/fargo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/fargo.jpg -------------------------------------------------------------------------------- /images/2016/08/jeff-atwood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/jeff-atwood.jpg -------------------------------------------------------------------------------- /images/2016/08/joe-armstrong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/joe-armstrong.jpg -------------------------------------------------------------------------------- /images/2016/08/john-barker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/john-barker.jpg -------------------------------------------------------------------------------- /images/2016/08/lawrence-krubner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/lawrence-krubner.jpg -------------------------------------------------------------------------------- /images/2016/08/linus-torvalds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/linus-torvalds.jpg -------------------------------------------------------------------------------- /images/2016/08/oceans-twelve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/oceans-twelve.jpg -------------------------------------------------------------------------------- /images/2016/08/oscar-nierstrasz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/oscar-nierstrasz.jpg -------------------------------------------------------------------------------- /images/2016/08/paul-graham.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/paul-graham.jpg -------------------------------------------------------------------------------- /images/2016/08/rich-hickey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/rich-hickey.jpg -------------------------------------------------------------------------------- /images/2016/08/richard-mansfield.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/richard-mansfield.jpg -------------------------------------------------------------------------------- /images/2016/08/rob-pike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/rob-pike.jpg -------------------------------------------------------------------------------- /images/2016/08/schizopolis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/schizopolis.jpg -------------------------------------------------------------------------------- /images/2016/08/swingers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/swingers.jpg -------------------------------------------------------------------------------- /images/2016/08/twins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/08/twins.jpg -------------------------------------------------------------------------------- /images/2016/09/andrei-rublev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/09/andrei-rublev.jpg -------------------------------------------------------------------------------- /images/2016/09/battleship-potemkin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/09/battleship-potemkin.jpg -------------------------------------------------------------------------------- /images/2016/09/death-at-a-funeral.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/09/death-at-a-funeral.jpg -------------------------------------------------------------------------------- /images/2016/09/twelve-monkeys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/09/twelve-monkeys.jpg -------------------------------------------------------------------------------- /images/2016/11/addams-family.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/11/addams-family.jpg -------------------------------------------------------------------------------- /images/2016/11/borat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/11/borat.jpg -------------------------------------------------------------------------------- /images/2016/11/ctan-lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/11/ctan-lion.jpg -------------------------------------------------------------------------------- /images/2016/11/saakashvili.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/11/saakashvili.jpg -------------------------------------------------------------------------------- /images/2016/11/yanukovich.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/11/yanukovich.jpg -------------------------------------------------------------------------------- /images/2016/12/ben-hur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/ben-hur.jpg -------------------------------------------------------------------------------- /images/2016/12/donations.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/donations.jpg -------------------------------------------------------------------------------- /images/2016/12/guns.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/guns.jpg -------------------------------------------------------------------------------- /images/2016/12/hot-shots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/hot-shots.jpg -------------------------------------------------------------------------------- /images/2016/12/lustration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/lustration.jpg -------------------------------------------------------------------------------- /images/2016/12/onishenko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/onishenko.jpg -------------------------------------------------------------------------------- /images/2016/12/privatbank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/privatbank.jpg -------------------------------------------------------------------------------- /images/2016/12/putin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/putin.jpg -------------------------------------------------------------------------------- /images/2016/12/putin2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/putin2.jpg -------------------------------------------------------------------------------- /images/2016/12/raging-bull.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/raging-bull.jpg -------------------------------------------------------------------------------- /images/2016/12/terrorism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/terrorism.jpg -------------------------------------------------------------------------------- /images/2016/12/tu154.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/tu154.jpg -------------------------------------------------------------------------------- /images/2016/12/voting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/voting.jpg -------------------------------------------------------------------------------- /images/2016/12/war.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/12/war.jpg -------------------------------------------------------------------------------- /images/2016/agile-and-beyond-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/agile-and-beyond-2016.png -------------------------------------------------------------------------------- /images/2016/agileee-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/agileee-2016.png -------------------------------------------------------------------------------- /images/2016/agilia-conference-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/agilia-conference-2016.png -------------------------------------------------------------------------------- /images/2016/baltic-devops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/baltic-devops.png -------------------------------------------------------------------------------- /images/2016/beyond-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/beyond-2016.png -------------------------------------------------------------------------------- /images/2016/buildstuff-lithuania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/buildstuff-lithuania.png -------------------------------------------------------------------------------- /images/2016/buildstuff-ukraine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/buildstuff-ukraine.png -------------------------------------------------------------------------------- /images/2016/cascadiait-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/cascadiait-2016.png -------------------------------------------------------------------------------- /images/2016/cloudexpo-2016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/cloudexpo-2016.jpg -------------------------------------------------------------------------------- /images/2016/codemotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/codemotion.png -------------------------------------------------------------------------------- /images/2016/devnexus-2016-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/devnexus-2016-logo.png -------------------------------------------------------------------------------- /images/2016/devopspro-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/devopspro-2016.png -------------------------------------------------------------------------------- /images/2016/devopspro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/devopspro.png -------------------------------------------------------------------------------- /images/2016/dotw-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/dotw-2016.png -------------------------------------------------------------------------------- /images/2016/geecon-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/geecon-2016.png -------------------------------------------------------------------------------- /images/2016/geekout-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/geekout-2016.png -------------------------------------------------------------------------------- /images/2016/itake-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/itake-2016.png -------------------------------------------------------------------------------- /images/2016/javaday-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/javaday-2016.png -------------------------------------------------------------------------------- /images/2016/jdkio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/jdkio.png -------------------------------------------------------------------------------- /images/2016/jeeconf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/jeeconf-logo.png -------------------------------------------------------------------------------- /images/2016/jet-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/jet-2016.png -------------------------------------------------------------------------------- /images/2016/jpoint-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/jpoint-2016.png -------------------------------------------------------------------------------- /images/2016/kyiv-devops-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/kyiv-devops-day.png -------------------------------------------------------------------------------- /images/2016/live360-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/live360-2016.png -------------------------------------------------------------------------------- /images/2016/mixit-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/mixit-2016.png -------------------------------------------------------------------------------- /images/2016/ndcoslo-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/ndcoslo-2016.png -------------------------------------------------------------------------------- /images/2016/nextbuild-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/nextbuild-2016.png -------------------------------------------------------------------------------- /images/2016/ntpm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/ntpm.jpg -------------------------------------------------------------------------------- /images/2016/object-thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/object-thinking.png -------------------------------------------------------------------------------- /images/2016/oredev-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/oredev-logo.jpg -------------------------------------------------------------------------------- /images/2016/outsource-people-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/outsource-people-2016.png -------------------------------------------------------------------------------- /images/2016/piratesummit-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/piratesummit-2016.png -------------------------------------------------------------------------------- /images/2016/pmday-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/pmday-2016.png -------------------------------------------------------------------------------- /images/2016/secr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/secr.png -------------------------------------------------------------------------------- /images/2016/sedc-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/sedc-2016.png -------------------------------------------------------------------------------- /images/2016/slcdevopsdays-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/slcdevopsdays-2016.png -------------------------------------------------------------------------------- /images/2016/startupole-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/startupole-2016.png -------------------------------------------------------------------------------- /images/2016/swanseacon-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/swanseacon-2016.png -------------------------------------------------------------------------------- /images/2016/tecclub-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/tecclub-2016.png -------------------------------------------------------------------------------- /images/2016/topconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/topconf.png -------------------------------------------------------------------------------- /images/2016/webit-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2016/webit-2016.png -------------------------------------------------------------------------------- /images/2017/01/aladdin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/aladdin.jpg -------------------------------------------------------------------------------- /images/2017/01/army.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/army.jpg -------------------------------------------------------------------------------- /images/2017/01/being-flynn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/being-flynn.jpg -------------------------------------------------------------------------------- /images/2017/01/budget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/budget.jpg -------------------------------------------------------------------------------- /images/2017/01/corruption.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/corruption.jpg -------------------------------------------------------------------------------- /images/2017/01/mesto-vstrechi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/mesto-vstrechi.jpg -------------------------------------------------------------------------------- /images/2017/01/molotov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/molotov.jpg -------------------------------------------------------------------------------- /images/2017/01/north-by-northwest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/north-by-northwest.jpg -------------------------------------------------------------------------------- /images/2017/01/separation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/separation.jpg -------------------------------------------------------------------------------- /images/2017/01/the-firm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/the-firm.jpg -------------------------------------------------------------------------------- /images/2017/01/ukrainian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/01/ukrainian.jpg -------------------------------------------------------------------------------- /images/2017/02/el-dia-de-la-bestia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/02/el-dia-de-la-bestia.jpg -------------------------------------------------------------------------------- /images/2017/02/les-kidnappeurs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/02/les-kidnappeurs.jpg -------------------------------------------------------------------------------- /images/2017/02/nationalism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/02/nationalism.jpg -------------------------------------------------------------------------------- /images/2017/02/the-deer-hunter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/02/the-deer-hunter.jpg -------------------------------------------------------------------------------- /images/2017/02/the-master.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/02/the-master.jpg -------------------------------------------------------------------------------- /images/2017/03/cdbtf-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/03/cdbtf-graph.png -------------------------------------------------------------------------------- /images/2017/03/dumb-and-dumber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/03/dumb-and-dumber.jpg -------------------------------------------------------------------------------- /images/2017/03/indians.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/03/indians.jpg -------------------------------------------------------------------------------- /images/2017/03/la-grande-bellezza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/03/la-grande-bellezza.jpg -------------------------------------------------------------------------------- /images/2017/04/0pdd-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/04/0pdd-screenshot.jpg -------------------------------------------------------------------------------- /images/2017/04/filatov-merilo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/04/filatov-merilo.jpg -------------------------------------------------------------------------------- /images/2017/04/il-divo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/04/il-divo.jpg -------------------------------------------------------------------------------- /images/2017/04/scarface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/04/scarface.jpg -------------------------------------------------------------------------------- /images/2017/04/sixnines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/04/sixnines.jpg -------------------------------------------------------------------------------- /images/2017/04/vladimir-olentsevich.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/04/vladimir-olentsevich.jpg -------------------------------------------------------------------------------- /images/2017/05/bullet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/05/bullet.jpg -------------------------------------------------------------------------------- /images/2017/05/happiness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/05/happiness.jpg -------------------------------------------------------------------------------- /images/2017/05/lamico-di-famiglia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/05/lamico-di-famiglia.jpg -------------------------------------------------------------------------------- /images/2017/05/oss-117.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/05/oss-117.jpg -------------------------------------------------------------------------------- /images/2017/05/the-untouchables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/05/the-untouchables.jpg -------------------------------------------------------------------------------- /images/2017/05/victory-day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/05/victory-day.jpg -------------------------------------------------------------------------------- /images/2017/06/dogville.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/dogville.jpg -------------------------------------------------------------------------------- /images/2017/06/env-1password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-1password.jpg -------------------------------------------------------------------------------- /images/2017/06/env-chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-chrome.jpg -------------------------------------------------------------------------------- /images/2017/06/env-colloquy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-colloquy.jpg -------------------------------------------------------------------------------- /images/2017/06/env-dropbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-dropbox.jpg -------------------------------------------------------------------------------- /images/2017/06/env-google-drive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-google-drive.jpg -------------------------------------------------------------------------------- /images/2017/06/env-homebrew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-homebrew.jpg -------------------------------------------------------------------------------- /images/2017/06/env-httpclient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-httpclient.jpg -------------------------------------------------------------------------------- /images/2017/06/env-icloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-icloud.jpg -------------------------------------------------------------------------------- /images/2017/06/env-intellij-idea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-intellij-idea.jpg -------------------------------------------------------------------------------- /images/2017/06/env-istat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-istat.jpg -------------------------------------------------------------------------------- /images/2017/06/env-iterm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-iterm2.jpg -------------------------------------------------------------------------------- /images/2017/06/env-keynote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-keynote.jpg -------------------------------------------------------------------------------- /images/2017/06/env-macbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-macbook.jpg -------------------------------------------------------------------------------- /images/2017/06/env-messenger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-messenger.jpg -------------------------------------------------------------------------------- /images/2017/06/env-mtorrent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-mtorrent.jpg -------------------------------------------------------------------------------- /images/2017/06/env-numbers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-numbers.jpg -------------------------------------------------------------------------------- /images/2017/06/env-obs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-obs.jpg -------------------------------------------------------------------------------- /images/2017/06/env-pages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-pages.jpg -------------------------------------------------------------------------------- /images/2017/06/env-pixelmator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-pixelmator.jpg -------------------------------------------------------------------------------- /images/2017/06/env-pokerstars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-pokerstars.jpg -------------------------------------------------------------------------------- /images/2017/06/env-reaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-reaper.jpg -------------------------------------------------------------------------------- /images/2017/06/env-s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-s3.jpg -------------------------------------------------------------------------------- /images/2017/06/env-sketch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-sketch.jpg -------------------------------------------------------------------------------- /images/2017/06/env-skype.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-skype.jpg -------------------------------------------------------------------------------- /images/2017/06/env-slack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-slack.jpg -------------------------------------------------------------------------------- /images/2017/06/env-sublime-text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-sublime-text.jpg -------------------------------------------------------------------------------- /images/2017/06/env-telegram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-telegram.jpg -------------------------------------------------------------------------------- /images/2017/06/env-things.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-things.jpg -------------------------------------------------------------------------------- /images/2017/06/env-tower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-tower.jpg -------------------------------------------------------------------------------- /images/2017/06/env-transmit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-transmit.jpg -------------------------------------------------------------------------------- /images/2017/06/env-viber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-viber.jpg -------------------------------------------------------------------------------- /images/2017/06/env-vienna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-vienna.jpg -------------------------------------------------------------------------------- /images/2017/06/env-vlc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-vlc.jpg -------------------------------------------------------------------------------- /images/2017/06/env-whatsapp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-whatsapp.jpg -------------------------------------------------------------------------------- /images/2017/06/env-yourkit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-yourkit.jpg -------------------------------------------------------------------------------- /images/2017/06/env-zoom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/env-zoom.jpg -------------------------------------------------------------------------------- /images/2017/06/gulag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/06/gulag.jpg -------------------------------------------------------------------------------- /images/2017/07/intouchables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/intouchables.jpg -------------------------------------------------------------------------------- /images/2017/07/lultimo-capodanno.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/lultimo-capodanno.jpg -------------------------------------------------------------------------------- /images/2017/07/saakashvili.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/saakashvili.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-amazon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-amazon.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-aws.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-aws.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-buffer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-buffer.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-buffer.png -------------------------------------------------------------------------------- /images/2017/07/sites-contabo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-contabo.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-facebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-facebook.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-github.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-gmail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-gmail.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-godaddy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-godaddy.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-godaddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-godaddy.png -------------------------------------------------------------------------------- /images/2017/07/sites-google-analytics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-google-analytics.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-google-calendar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-google-calendar.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-google-drive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-google-drive.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-hacker-news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-hacker-news.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-heroku.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-heroku.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-papertrail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-papertrail.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-quickbooks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-quickbooks.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-reddit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-reddit.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-rultor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-rultor.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-sentry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-sentry.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-shippable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-shippable.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-soundcloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-soundcloud.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-stackoverflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-stackoverflow.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-statuscake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-statuscake.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-travis-ci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-travis-ci.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-twitter.jpg -------------------------------------------------------------------------------- /images/2017/07/sites-youtube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/sites-youtube.jpg -------------------------------------------------------------------------------- /images/2017/07/twentynine-palms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/07/twentynine-palms.jpg -------------------------------------------------------------------------------- /images/2017/08/at-sachem-farm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/08/at-sachem-farm.jpg -------------------------------------------------------------------------------- /images/2017/08/coinbase-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/08/coinbase-1.jpg -------------------------------------------------------------------------------- /images/2017/08/lappartement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/08/lappartement.jpg -------------------------------------------------------------------------------- /images/2017/08/scarecrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/08/scarecrow.jpg -------------------------------------------------------------------------------- /images/2017/08/two-and-a-half-men.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/08/two-and-a-half-men.jpg -------------------------------------------------------------------------------- /images/2017/09/300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/09/300.jpg -------------------------------------------------------------------------------- /images/2017/09/dont-tempt-me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/09/dont-tempt-me.jpg -------------------------------------------------------------------------------- /images/2017/09/threecopies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/09/threecopies.jpg -------------------------------------------------------------------------------- /images/2017/10/birdman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/10/birdman.jpg -------------------------------------------------------------------------------- /images/2017/10/la-haine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/10/la-haine.jpg -------------------------------------------------------------------------------- /images/2017/10/motherland.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/10/motherland.jpg -------------------------------------------------------------------------------- /images/2017/10/reality.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/10/reality.jpg -------------------------------------------------------------------------------- /images/2017/10/zastava.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/10/zastava.jpg -------------------------------------------------------------------------------- /images/2017/11/carlitos-way.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/11/carlitos-way.jpg -------------------------------------------------------------------------------- /images/2017/11/extract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/11/extract.jpg -------------------------------------------------------------------------------- /images/2017/11/godfather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/11/godfather.jpg -------------------------------------------------------------------------------- /images/2017/11/grechka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/11/grechka.jpg -------------------------------------------------------------------------------- /images/2017/11/idiocracy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/11/idiocracy.jpg -------------------------------------------------------------------------------- /images/2017/11/passports.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/11/passports.jpg -------------------------------------------------------------------------------- /images/2017/12/rain-man.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/12/rain-man.jpg -------------------------------------------------------------------------------- /images/2017/12/requiem-for-a-dream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/12/requiem-for-a-dream.jpg -------------------------------------------------------------------------------- /images/2017/bdmsummit-2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/bdmsummit-2017.png -------------------------------------------------------------------------------- /images/2017/devon-summit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/devon-summit.png -------------------------------------------------------------------------------- /images/2017/devternity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/devternity.png -------------------------------------------------------------------------------- /images/2017/dotnext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/dotnext.png -------------------------------------------------------------------------------- /images/2017/item-2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/item-2017.png -------------------------------------------------------------------------------- /images/2017/javaday-2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/javaday-2017.png -------------------------------------------------------------------------------- /images/2017/jbreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/jbreak.png -------------------------------------------------------------------------------- /images/2017/jpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/jpoint.png -------------------------------------------------------------------------------- /images/2017/jug-dnipro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/jug-dnipro.png -------------------------------------------------------------------------------- /images/2017/jugua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/jugua.png -------------------------------------------------------------------------------- /images/2017/khpmday-2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/khpmday-2017.png -------------------------------------------------------------------------------- /images/2017/kiof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/kiof.png -------------------------------------------------------------------------------- /images/2017/magmaconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/magmaconf.png -------------------------------------------------------------------------------- /images/2017/pgday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/pgday.png -------------------------------------------------------------------------------- /images/2017/pmcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/pmcon.png -------------------------------------------------------------------------------- /images/2017/qafest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/qafest.png -------------------------------------------------------------------------------- /images/2017/rigadevdays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2017/rigadevdays.png -------------------------------------------------------------------------------- /images/2018/01/blind-fury.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/01/blind-fury.jpg -------------------------------------------------------------------------------- /images/2018/01/fake-opposition.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/01/fake-opposition.jpg -------------------------------------------------------------------------------- /images/2018/01/hardmen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/01/hardmen.jpg -------------------------------------------------------------------------------- /images/2018/01/putin-flowers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/01/putin-flowers.jpg -------------------------------------------------------------------------------- /images/2018/01/taxi-driver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/01/taxi-driver.jpg -------------------------------------------------------------------------------- /images/2018/01/the-gift.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/01/the-gift.jpg -------------------------------------------------------------------------------- /images/2018/02/american-honey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/02/american-honey.jpg -------------------------------------------------------------------------------- /images/2018/02/la-comunidad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/02/la-comunidad.jpg -------------------------------------------------------------------------------- /images/2018/02/la-science-des-reves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/02/la-science-des-reves.jpg -------------------------------------------------------------------------------- /images/2018/03/casino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/03/casino.jpg -------------------------------------------------------------------------------- /images/2018/03/donnie-brasco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/03/donnie-brasco.jpg -------------------------------------------------------------------------------- /images/2018/03/putin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/03/putin.jpg -------------------------------------------------------------------------------- /images/2018/03/scent-of-a-woman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/03/scent-of-a-woman.jpg -------------------------------------------------------------------------------- /images/2018/03/skripal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/03/skripal.jpg -------------------------------------------------------------------------------- /images/2018/04/binder-listing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/04/binder-listing.jpg -------------------------------------------------------------------------------- /images/2018/04/burn-after-reading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/04/burn-after-reading.jpg -------------------------------------------------------------------------------- /images/2018/04/cactoos-listing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/04/cactoos-listing.jpg -------------------------------------------------------------------------------- /images/2018/04/dom-hemingway.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/04/dom-hemingway.jpg -------------------------------------------------------------------------------- /images/2018/04/farm-listing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/04/farm-listing.jpg -------------------------------------------------------------------------------- /images/2018/04/last-tango-in-paris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/04/last-tango-in-paris.jpg -------------------------------------------------------------------------------- /images/2018/04/maven-listing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/04/maven-listing.jpg -------------------------------------------------------------------------------- /images/2018/04/refactoring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/04/refactoring.jpg -------------------------------------------------------------------------------- /images/2018/04/sin-city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/04/sin-city.jpg -------------------------------------------------------------------------------- /images/2018/04/springboot-listing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/04/springboot-listing.jpg -------------------------------------------------------------------------------- /images/2018/05/her.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/05/her.jpg -------------------------------------------------------------------------------- /images/2018/05/punching-the-clown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/05/punching-the-clown.jpg -------------------------------------------------------------------------------- /images/2018/05/snatch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/05/snatch.jpg -------------------------------------------------------------------------------- /images/2018/06/no-country-for-old-men.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/06/no-country-for-old-men.jpg -------------------------------------------------------------------------------- /images/2018/06/savages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/06/savages.jpg -------------------------------------------------------------------------------- /images/2018/07/el-chapo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/07/el-chapo.jpg -------------------------------------------------------------------------------- /images/2018/07/jamon-jamon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/07/jamon-jamon.jpg -------------------------------------------------------------------------------- /images/2018/08/glengarry-glen-ross.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/08/glengarry-glen-ross.jpg -------------------------------------------------------------------------------- /images/2018/08/run-lola-run.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/08/run-lola-run.jpg -------------------------------------------------------------------------------- /images/2018/08/the-night-of.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/08/the-night-of.jpg -------------------------------------------------------------------------------- /images/2018/09/funny-games.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/09/funny-games.jpg -------------------------------------------------------------------------------- /images/2018/09/mailanes-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/09/mailanes-1.png -------------------------------------------------------------------------------- /images/2018/09/mailanes-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/09/mailanes-2.png -------------------------------------------------------------------------------- /images/2018/09/mailanes-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/09/mailanes-3.png -------------------------------------------------------------------------------- /images/2018/09/rum-diary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/09/rum-diary.jpg -------------------------------------------------------------------------------- /images/2018/10/stalin-tegeran-1943.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/10/stalin-tegeran-1943.jpg -------------------------------------------------------------------------------- /images/2018/10/stalker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/10/stalker.jpg -------------------------------------------------------------------------------- /images/2018/10/the-drop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/10/the-drop.jpg -------------------------------------------------------------------------------- /images/2018/11/better-call-saul.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/11/better-call-saul.jpg -------------------------------------------------------------------------------- /images/2018/11/rocky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/11/rocky.jpg -------------------------------------------------------------------------------- /images/2018/11/wag-the-dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/11/wag-the-dog.jpg -------------------------------------------------------------------------------- /images/2018/12/american-beauty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/12/american-beauty.jpg -------------------------------------------------------------------------------- /images/2018/12/breaking-bad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/12/breaking-bad.jpg -------------------------------------------------------------------------------- /images/2018/12/ubit-drakona.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/12/ubit-drakona.jpg -------------------------------------------------------------------------------- /images/2018/appsconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/appsconf.png -------------------------------------------------------------------------------- /images/2018/devopsconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2018/devopsconf.png -------------------------------------------------------------------------------- /images/2019/01/bombei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/01/bombei.jpg -------------------------------------------------------------------------------- /images/2019/01/donald-trump-wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/01/donald-trump-wall.jpg -------------------------------------------------------------------------------- /images/2019/01/drugs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/01/drugs.jpg -------------------------------------------------------------------------------- /images/2019/01/fargo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/01/fargo.jpg -------------------------------------------------------------------------------- /images/2019/01/payscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/01/payscale.png -------------------------------------------------------------------------------- /images/2019/01/sin-noticias-de-dios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/01/sin-noticias-de-dios.jpg -------------------------------------------------------------------------------- /images/2019/01/the-color-of-money.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/01/the-color-of-money.jpg -------------------------------------------------------------------------------- /images/2019/01/the-thin-red-line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/01/the-thin-red-line.jpg -------------------------------------------------------------------------------- /images/2019/02/cloudrepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/02/cloudrepo.png -------------------------------------------------------------------------------- /images/2019/02/demokratiya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/02/demokratiya.jpg -------------------------------------------------------------------------------- /images/2019/02/gostya-iz-budushego.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/02/gostya-iz-budushego.jpg -------------------------------------------------------------------------------- /images/2019/02/jews.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/02/jews.jpg -------------------------------------------------------------------------------- /images/2019/03/bjarne-stroustrup-book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/03/bjarne-stroustrup-book.jpg -------------------------------------------------------------------------------- /images/2019/03/breakfast-at-tiffanys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/03/breakfast-at-tiffanys.jpg -------------------------------------------------------------------------------- /images/2019/03/taboo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/03/taboo.jpg -------------------------------------------------------------------------------- /images/2019/03/the-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/03/the-square.jpg -------------------------------------------------------------------------------- /images/2019/03/trump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/03/trump.jpg -------------------------------------------------------------------------------- /images/2019/04/jack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/04/jack.jpg -------------------------------------------------------------------------------- /images/2019/04/life-of-pi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/04/life-of-pi.jpg -------------------------------------------------------------------------------- /images/2019/04/life-of-pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/04/life-of-pi.png -------------------------------------------------------------------------------- /images/2019/04/mon-roi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/04/mon-roi.jpg -------------------------------------------------------------------------------- /images/2019/05/big-eyes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/05/big-eyes.jpg -------------------------------------------------------------------------------- /images/2019/05/metro-manila.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/05/metro-manila.jpg -------------------------------------------------------------------------------- /images/2019/05/the-departed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/05/the-departed.jpg -------------------------------------------------------------------------------- /images/2019/05/the-invention-of-lying.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/05/the-invention-of-lying.jpg -------------------------------------------------------------------------------- /images/2019/06/moonrise-kingdom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/06/moonrise-kingdom.jpg -------------------------------------------------------------------------------- /images/2019/06/the-tribe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/06/the-tribe.jpg -------------------------------------------------------------------------------- /images/2019/07/boardwalk-empire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/07/boardwalk-empire.jpg -------------------------------------------------------------------------------- /images/2019/07/la-venus-a-la-fourrure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/07/la-venus-a-la-fourrure.jpg -------------------------------------------------------------------------------- /images/2019/07/lyubov-sobol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/07/lyubov-sobol.jpg -------------------------------------------------------------------------------- /images/2019/07/prokopenko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/07/prokopenko.jpg -------------------------------------------------------------------------------- /images/2019/07/the-gambler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/07/the-gambler.jpg -------------------------------------------------------------------------------- /images/2019/09/barfuss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/09/barfuss.jpg -------------------------------------------------------------------------------- /images/2019/09/fargo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/09/fargo-2.jpg -------------------------------------------------------------------------------- /images/2019/09/hackers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/09/hackers.jpg -------------------------------------------------------------------------------- /images/2019/09/limonov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/09/limonov.jpg -------------------------------------------------------------------------------- /images/2019/09/meeting-saharova.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/09/meeting-saharova.jpg -------------------------------------------------------------------------------- /images/2019/09/yip-man.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/09/yip-man.jpg -------------------------------------------------------------------------------- /images/2019/10/la-dolce-vita.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/10/la-dolce-vita.jpg -------------------------------------------------------------------------------- /images/2019/11/irreversible.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/11/irreversible.jpg -------------------------------------------------------------------------------- /images/2019/11/war-inc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/11/war-inc.jpg -------------------------------------------------------------------------------- /images/2019/12/goodfellas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/12/goodfellas.jpg -------------------------------------------------------------------------------- /images/2019/12/love-liza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/12/love-liza.jpg -------------------------------------------------------------------------------- /images/2019/12/testosteron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/12/testosteron.jpg -------------------------------------------------------------------------------- /images/2019/12/why-women-kill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/12/why-women-kill.jpg -------------------------------------------------------------------------------- /images/2019/appsconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/appsconf.png -------------------------------------------------------------------------------- /images/2019/devopsconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/devopsconf.png -------------------------------------------------------------------------------- /images/2019/jpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/jpoint.png -------------------------------------------------------------------------------- /images/2019/teamlead-conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2019/teamlead-conf.png -------------------------------------------------------------------------------- /images/2020/01/broadchurch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/01/broadchurch.jpg -------------------------------------------------------------------------------- /images/2020/01/life-is-too-short.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/01/life-is-too-short.jpg -------------------------------------------------------------------------------- /images/2020/02/kin-dza-dza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/02/kin-dza-dza.jpg -------------------------------------------------------------------------------- /images/2020/02/owning-mahowny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/02/owning-mahowny.jpg -------------------------------------------------------------------------------- /images/2020/03/buffalo-66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/03/buffalo-66.jpg -------------------------------------------------------------------------------- /images/2020/03/coronavirus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/03/coronavirus.jpg -------------------------------------------------------------------------------- /images/2020/05/constantine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/05/constantine.jpg -------------------------------------------------------------------------------- /images/2020/05/covid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/05/covid.jpg -------------------------------------------------------------------------------- /images/2020/05/dog-day-afternoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/05/dog-day-afternoon.jpg -------------------------------------------------------------------------------- /images/2020/05/filth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/05/filth.jpg -------------------------------------------------------------------------------- /images/2020/06/better-call-saul.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/06/better-call-saul.jpg -------------------------------------------------------------------------------- /images/2020/06/floyd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/06/floyd.jpg -------------------------------------------------------------------------------- /images/2020/07/football-fan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/07/football-fan.jpg -------------------------------------------------------------------------------- /images/2020/07/hong-kil-dong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/07/hong-kil-dong.jpg -------------------------------------------------------------------------------- /images/2020/10/chacun-sa-vie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/10/chacun-sa-vie.jpg -------------------------------------------------------------------------------- /images/2020/10/le-retour-du-heros.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/10/le-retour-du-heros.jpg -------------------------------------------------------------------------------- /images/2020/10/zero-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/10/zero-2.jpg -------------------------------------------------------------------------------- /images/2020/11/norsemen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/11/norsemen.jpg -------------------------------------------------------------------------------- /images/2020/11/redirected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/11/redirected.jpg -------------------------------------------------------------------------------- /images/2020/11/svoboda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/11/svoboda.jpg -------------------------------------------------------------------------------- /images/2020/12/bonnie-and-clyde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/12/bonnie-and-clyde.jpg -------------------------------------------------------------------------------- /images/2020/12/loro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/12/loro.jpg -------------------------------------------------------------------------------- /images/2020/12/the-irishman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2020/12/the-irishman.jpg -------------------------------------------------------------------------------- /images/2021/02/space-force.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/02/space-force.jpg -------------------------------------------------------------------------------- /images/2021/02/undercover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/02/undercover.jpg -------------------------------------------------------------------------------- /images/2021/03/the-kominsky-method.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/03/the-kominsky-method.jpg -------------------------------------------------------------------------------- /images/2021/04/glow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/04/glow.jpg -------------------------------------------------------------------------------- /images/2021/04/iccq-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/04/iccq-box.png -------------------------------------------------------------------------------- /images/2021/06/the-fifth-element.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/06/the-fifth-element.jpg -------------------------------------------------------------------------------- /images/2021/08/children-of-men.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/08/children-of-men.jpg -------------------------------------------------------------------------------- /images/2021/08/huge-in-france.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/08/huge-in-france.jpg -------------------------------------------------------------------------------- /images/2021/09/lion-king.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/09/lion-king.jpg -------------------------------------------------------------------------------- /images/2021/09/simba-listening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/09/simba-listening.png -------------------------------------------------------------------------------- /images/2021/09/simba-speaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/09/simba-speaking.png -------------------------------------------------------------------------------- /images/2021/09/simba-thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/09/simba-thinking.png -------------------------------------------------------------------------------- /images/2021/09/simba-writing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/09/simba-writing.png -------------------------------------------------------------------------------- /images/2021/10/gridlockd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/10/gridlockd.jpg -------------------------------------------------------------------------------- /images/2021/10/maend-and-hons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/10/maend-and-hons.jpg -------------------------------------------------------------------------------- /images/2021/11/die-welle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2021/11/die-welle.jpg -------------------------------------------------------------------------------- /images/2022/02/short-circuit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/02/short-circuit.jpg -------------------------------------------------------------------------------- /images/2022/02/wheelman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/02/wheelman.jpg -------------------------------------------------------------------------------- /images/2022/03/game-of-thrones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/03/game-of-thrones.jpg -------------------------------------------------------------------------------- /images/2022/06/mafioso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/06/mafioso.jpg -------------------------------------------------------------------------------- /images/2022/06/safety-net.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/06/safety-net.jpg -------------------------------------------------------------------------------- /images/2022/06/true-story.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/06/true-story.jpg -------------------------------------------------------------------------------- /images/2022/07/the-trotsky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/07/the-trotsky.jpg -------------------------------------------------------------------------------- /images/2022/08/barfuss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/08/barfuss.jpg -------------------------------------------------------------------------------- /images/2022/08/elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/08/elephant.jpg -------------------------------------------------------------------------------- /images/2022/08/il-camorrista.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/08/il-camorrista.jpg -------------------------------------------------------------------------------- /images/2022/09/the-rum-diary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/09/the-rum-diary.jpg -------------------------------------------------------------------------------- /images/2022/11/mimino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2022/11/mimino.jpg -------------------------------------------------------------------------------- /images/2023/07/dead-or-alive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/07/dead-or-alive.jpg -------------------------------------------------------------------------------- /images/2023/07/les-cotelettes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/07/les-cotelettes.jpg -------------------------------------------------------------------------------- /images/2023/08/blade-runner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/08/blade-runner.jpg -------------------------------------------------------------------------------- /images/2023/08/democracy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/08/democracy.jpg -------------------------------------------------------------------------------- /images/2023/08/immigrants.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/08/immigrants.jpg -------------------------------------------------------------------------------- /images/2023/08/inglourious-basterds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/08/inglourious-basterds.jpg -------------------------------------------------------------------------------- /images/2023/08/nirvana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/08/nirvana.jpg -------------------------------------------------------------------------------- /images/2023/08/the-return.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/08/the-return.jpg -------------------------------------------------------------------------------- /images/2023/08/youth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/08/youth.jpg -------------------------------------------------------------------------------- /images/2023/09/bibcop-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/09/bibcop-after.png -------------------------------------------------------------------------------- /images/2023/09/bibcop-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/09/bibcop-before.png -------------------------------------------------------------------------------- /images/2023/09/bibcop-scholar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/09/bibcop-scholar.png -------------------------------------------------------------------------------- /images/2023/09/eight-and-half.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/09/eight-and-half.jpg -------------------------------------------------------------------------------- /images/2023/09/kolomoyskiy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/09/kolomoyskiy.jpg -------------------------------------------------------------------------------- /images/2023/09/mean-streets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/09/mean-streets.jpg -------------------------------------------------------------------------------- /images/2023/10/bogdan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/10/bogdan.jpg -------------------------------------------------------------------------------- /images/2023/10/underground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/10/underground.jpg -------------------------------------------------------------------------------- /images/2023/11/coffee-and-cigarettes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/11/coffee-and-cigarettes.jpg -------------------------------------------------------------------------------- /images/2023/11/pret-a-porter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/11/pret-a-porter.jpg -------------------------------------------------------------------------------- /images/2023/12/beregis-avtomobila.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/12/beregis-avtomobila.jpg -------------------------------------------------------------------------------- /images/2023/12/mulholland-drive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/12/mulholland-drive.jpg -------------------------------------------------------------------------------- /images/2023/12/terminator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2023/12/terminator.jpg -------------------------------------------------------------------------------- /images/2024/01/letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/01/letter.png -------------------------------------------------------------------------------- /images/2024/01/letter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/01/letter2.png -------------------------------------------------------------------------------- /images/2024/01/silence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/01/silence.jpg -------------------------------------------------------------------------------- /images/2024/02/respublica-shkid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/02/respublica-shkid.jpg -------------------------------------------------------------------------------- /images/2024/04/10th-and-wolf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/04/10th-and-wolf.jpg -------------------------------------------------------------------------------- /images/2024/04/peresvet-i-chelubej.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/04/peresvet-i-chelubej.jpg -------------------------------------------------------------------------------- /images/2024/04/refusal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/04/refusal.png -------------------------------------------------------------------------------- /images/2024/04/zadonshina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/04/zadonshina.png -------------------------------------------------------------------------------- /images/2024/05/babyshark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/05/babyshark.jpg -------------------------------------------------------------------------------- /images/2024/06/and-justice-for-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/06/and-justice-for-all.jpg -------------------------------------------------------------------------------- /images/2024/06/elusive-avengers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/06/elusive-avengers.jpg -------------------------------------------------------------------------------- /images/2024/07/capote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/07/capote.jpg -------------------------------------------------------------------------------- /images/2024/09/chaos-of-news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/09/chaos-of-news.jpg -------------------------------------------------------------------------------- /images/2024/12/white-sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2024/12/white-sun.jpg -------------------------------------------------------------------------------- /images/2025/04/analyze-this.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2025/04/analyze-this.jpg -------------------------------------------------------------------------------- /images/2025/04/eye-of-the-beholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2025/04/eye-of-the-beholder.jpg -------------------------------------------------------------------------------- /images/2025/04/trainspotting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2025/04/trainspotting.jpg -------------------------------------------------------------------------------- /images/2025/05/bronx-tale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2025/05/bronx-tale.jpg -------------------------------------------------------------------------------- /images/2025/05/flawless.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2025/05/flawless.jpg -------------------------------------------------------------------------------- /images/2025/05/ghost-dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2025/05/ghost-dog.jpg -------------------------------------------------------------------------------- /images/2025/06/la-femme-nikita.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/2025/06/la-femme-nikita.jpg -------------------------------------------------------------------------------- /images/about/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/about/blogger.png -------------------------------------------------------------------------------- /images/about/devops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/about/devops.png -------------------------------------------------------------------------------- /images/about/dzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/about/dzone.png -------------------------------------------------------------------------------- /images/about/jcg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/about/jcg.png -------------------------------------------------------------------------------- /images/about/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/about/medium.png -------------------------------------------------------------------------------- /images/about/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/about/tumblr.png -------------------------------------------------------------------------------- /images/about/yegor-full-size.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/about/yegor-full-size.jpg -------------------------------------------------------------------------------- /images/about/yegor-speaking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/about/yegor-speaking.jpg -------------------------------------------------------------------------------- /images/andreea/academic-writing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/academic-writing.png -------------------------------------------------------------------------------- /images/andreea/angry-testimonials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/angry-testimonials.png -------------------------------------------------------------------------------- /images/andreea/breakfast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/breakfast.png -------------------------------------------------------------------------------- /images/andreea/coder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/coder.png -------------------------------------------------------------------------------- /images/andreea/page-not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/page-not-found.png -------------------------------------------------------------------------------- /images/andreea/paintings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/paintings.png -------------------------------------------------------------------------------- /images/andreea/pet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/pet.png -------------------------------------------------------------------------------- /images/andreea/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/podcast.png -------------------------------------------------------------------------------- /images/andreea/quality-award.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/quality-award.png -------------------------------------------------------------------------------- /images/andreea/webinar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/webinar.png -------------------------------------------------------------------------------- /images/andreea/writing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/writing.png -------------------------------------------------------------------------------- /images/andreea/yegor-is-presenting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/andreea/yegor-is-presenting.png -------------------------------------------------------------------------------- /images/award/2015/winner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/award/2015/winner.png -------------------------------------------------------------------------------- /images/award/2016/winner-pholser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/award/2016/winner-pholser.png -------------------------------------------------------------------------------- /images/award/2016/winner-sils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/award/2016/winner-sils.png -------------------------------------------------------------------------------- /images/award/2018/winner-dgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/award/2018/winner-dgroup.png -------------------------------------------------------------------------------- /images/award/2018/winner-driver733.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/award/2018/winner-driver733.png -------------------------------------------------------------------------------- /images/award/2019/winner-fabriciofx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/award/2019/winner-fabriciofx.png -------------------------------------------------------------------------------- /images/award/2020/winner-amihaiemil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/award/2020/winner-amihaiemil.png -------------------------------------------------------------------------------- /images/award/2020/winner-hdouss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/award/2020/winner-hdouss.png -------------------------------------------------------------------------------- /images/award/2020/winner-victorx64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/award/2020/winner-victorx64.png -------------------------------------------------------------------------------- /images/books/256-bloghacks/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/256-bloghacks/cover.png -------------------------------------------------------------------------------- /images/books/256-bloghacks/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/256-bloghacks/tomato.png -------------------------------------------------------------------------------- /images/books/amazon-advantage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/amazon-advantage.gif -------------------------------------------------------------------------------- /images/books/amazon-buy-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/amazon-buy-button.png -------------------------------------------------------------------------------- /images/books/angry-tests/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/angry-tests/cover.png -------------------------------------------------------------------------------- /images/books/angry-tests/onion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/angry-tests/onion.png -------------------------------------------------------------------------------- /images/books/available-at-amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/available-at-amazon.png -------------------------------------------------------------------------------- /images/books/code-ahead/contents.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/code-ahead/contents.pdf -------------------------------------------------------------------------------- /images/books/code-ahead/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/code-ahead/cover.png -------------------------------------------------------------------------------- /images/books/code-ahead/mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/code-ahead/mushroom.png -------------------------------------------------------------------------------- /images/books/elegant-objects/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/elegant-objects/cactus.png -------------------------------------------------------------------------------- /images/books/elegant-objects/contents.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/elegant-objects/contents.pdf -------------------------------------------------------------------------------- /images/books/junior-objects/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/books/junior-objects/cover.png -------------------------------------------------------------------------------- /images/calendar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/calendar-icon.png -------------------------------------------------------------------------------- /images/face-1024x1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/face-1024x1024.jpg -------------------------------------------------------------------------------- /images/face-256x256-mask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/face-256x256-mask.jpg -------------------------------------------------------------------------------- /images/face-256x256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/face-256x256.jpg -------------------------------------------------------------------------------- /images/icon-black-2014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/icon-black-2014.png -------------------------------------------------------------------------------- /images/icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/icon-white.png -------------------------------------------------------------------------------- /images/icons/sarcasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/icons/sarcasm.png -------------------------------------------------------------------------------- /images/paintings/2017/catch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/catch.jpg -------------------------------------------------------------------------------- /images/paintings/2017/doubts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/doubts.jpg -------------------------------------------------------------------------------- /images/paintings/2017/expectations.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/expectations.jpg -------------------------------------------------------------------------------- /images/paintings/2017/fall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/fall.jpg -------------------------------------------------------------------------------- /images/paintings/2017/guilt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/guilt.jpg -------------------------------------------------------------------------------- /images/paintings/2017/in-love.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/in-love.jpg -------------------------------------------------------------------------------- /images/paintings/2017/lost-time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/lost-time.jpg -------------------------------------------------------------------------------- /images/paintings/2017/love-look.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/love-look.jpg -------------------------------------------------------------------------------- /images/paintings/2017/not-in-love.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/not-in-love.jpg -------------------------------------------------------------------------------- /images/paintings/2017/obsession.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/obsession.jpg -------------------------------------------------------------------------------- /images/paintings/2017/seven-and-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/seven-and-one.jpg -------------------------------------------------------------------------------- /images/paintings/2017/shame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2017/shame.jpg -------------------------------------------------------------------------------- /images/paintings/2018/december-2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2018/december-2018.jpg -------------------------------------------------------------------------------- /images/paintings/2018/gray-freedom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2018/gray-freedom.jpg -------------------------------------------------------------------------------- /images/paintings/2018/november-2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2018/november-2018.jpg -------------------------------------------------------------------------------- /images/paintings/2018/october-2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2018/october-2018.jpg -------------------------------------------------------------------------------- /images/paintings/2019/april-2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2019/april-2019.jpg -------------------------------------------------------------------------------- /images/paintings/2019/february-2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2019/february-2019.jpg -------------------------------------------------------------------------------- /images/paintings/2019/january-2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2019/january-2019.jpg -------------------------------------------------------------------------------- /images/paintings/2019/june-2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2019/june-2019.jpg -------------------------------------------------------------------------------- /images/paintings/2019/march-2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2019/march-2019.jpg -------------------------------------------------------------------------------- /images/paintings/2019/may-2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/2019/may-2019.jpg -------------------------------------------------------------------------------- /images/paintings/amazon-handmade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/amazon-handmade.png -------------------------------------------------------------------------------- /images/paintings/artfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/artfinder.png -------------------------------------------------------------------------------- /images/paintings/saatchiart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/saatchiart.png -------------------------------------------------------------------------------- /images/paintings/vangoart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/paintings/vangoart.png -------------------------------------------------------------------------------- /images/personality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/personality.png -------------------------------------------------------------------------------- /images/pets/s3auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/pets/s3auth.png -------------------------------------------------------------------------------- /images/shift-m/adam-tornhill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/adam-tornhill.png -------------------------------------------------------------------------------- /images/shift-m/aino-corry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/aino-corry.png -------------------------------------------------------------------------------- /images/shift-m/allen-holub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/allen-holub.png -------------------------------------------------------------------------------- /images/shift-m/andy-hunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/andy-hunt.png -------------------------------------------------------------------------------- /images/shift-m/andy-jordan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/andy-jordan.png -------------------------------------------------------------------------------- /images/shift-m/anne-loehr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/anne-loehr.png -------------------------------------------------------------------------------- /images/shift-m/bart-vermijlen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/bart-vermijlen.png -------------------------------------------------------------------------------- /images/shift-m/bert-heymans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/bert-heymans.png -------------------------------------------------------------------------------- /images/shift-m/bjarne-stroustrup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/bjarne-stroustrup.png -------------------------------------------------------------------------------- /images/shift-m/david-hillson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/david-hillson.png -------------------------------------------------------------------------------- /images/shift-m/david-west.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/david-west.png -------------------------------------------------------------------------------- /images/shift-m/erik-van-hurck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/erik-van-hurck.png -------------------------------------------------------------------------------- /images/shift-m/geepaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/geepaw.png -------------------------------------------------------------------------------- /images/shift-m/gordon-tredgold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/gordon-tredgold.png -------------------------------------------------------------------------------- /images/shift-m/greg-young.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/greg-young.png -------------------------------------------------------------------------------- /images/shift-m/henrik-martensson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/henrik-martensson.png -------------------------------------------------------------------------------- /images/shift-m/hugo-messer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/hugo-messer.png -------------------------------------------------------------------------------- /images/shift-m/james-bach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/james-bach.png -------------------------------------------------------------------------------- /images/shift-m/jeff-atwood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/jeff-atwood.png -------------------------------------------------------------------------------- /images/shift-m/jennifer-britton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/jennifer-britton.png -------------------------------------------------------------------------------- /images/shift-m/johanna-rothman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/johanna-rothman.png -------------------------------------------------------------------------------- /images/shift-m/jose-barato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/jose-barato.png -------------------------------------------------------------------------------- /images/shift-m/lisa-sieverts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/lisa-sieverts.png -------------------------------------------------------------------------------- /images/shift-m/melissa-perri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/melissa-perri.png -------------------------------------------------------------------------------- /images/shift-m/michael-feathers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/michael-feathers.png -------------------------------------------------------------------------------- /images/shift-m/michael-kay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/michael-kay.png -------------------------------------------------------------------------------- /images/shift-m/michael-krigsman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/michael-krigsman.png -------------------------------------------------------------------------------- /images/shift-m/mike-clayton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/mike-clayton.png -------------------------------------------------------------------------------- /images/shift-m/olga-arnoldi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/olga-arnoldi.png -------------------------------------------------------------------------------- /images/shift-m/pim-de-morree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/pim-de-morree.png -------------------------------------------------------------------------------- /images/shift-m/ricardo-vargas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/ricardo-vargas.png -------------------------------------------------------------------------------- /images/shift-m/richard-pawson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/richard-pawson.png -------------------------------------------------------------------------------- /images/shift-m/shoaib-ahmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/shoaib-ahmed.png -------------------------------------------------------------------------------- /images/shift-m/susanne-madsen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/susanne-madsen.png -------------------------------------------------------------------------------- /images/shift-m/suzanne-lucas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/suzanne-lucas.png -------------------------------------------------------------------------------- /images/shift-m/todd-williams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/todd-williams.png -------------------------------------------------------------------------------- /images/shift-m/venkat-subramaniam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/venkat-subramaniam.png -------------------------------------------------------------------------------- /images/shift-m/vincent-birlouez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/vincent-birlouez.png -------------------------------------------------------------------------------- /images/shift-m/yakov-fain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/shift-m/yakov-fain.png -------------------------------------------------------------------------------- /images/trainings/martin-reichard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/images/trainings/martin-reichard.png -------------------------------------------------------------------------------- /pdf/1998/KRDB98-article.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/1998/KRDB98-article.pdf -------------------------------------------------------------------------------- /pdf/2009/IWSM09-article.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2009/IWSM09-article.pdf -------------------------------------------------------------------------------- /pdf/2009/SEAFOOD09-article.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2009/SEAFOOD09-article.pdf -------------------------------------------------------------------------------- /pdf/2009/VALID09-article.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2009/VALID09-article.pdf -------------------------------------------------------------------------------- /pdf/2010/phpArchitect-conflicts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2010/phpArchitect-conflicts.pdf -------------------------------------------------------------------------------- /pdf/2010/phpArchitect-fazend-orm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2010/phpArchitect-fazend-orm.pdf -------------------------------------------------------------------------------- /pdf/2010/phpArchitect-phpRack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2010/phpArchitect-phpRack.pdf -------------------------------------------------------------------------------- /pdf/2014/guard-article.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2014/guard-article.pdf -------------------------------------------------------------------------------- /pdf/2017/elegant-objects-abashev.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2017/elegant-objects-abashev.pdf -------------------------------------------------------------------------------- /pdf/2017/elegant-objects-gamussa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2017/elegant-objects-gamussa.pdf -------------------------------------------------------------------------------- /pdf/2017/elegant-objects-golodnyj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2017/elegant-objects-golodnyj.pdf -------------------------------------------------------------------------------- /pdf/2017/elegant-objects-jbaruch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2017/elegant-objects-jbaruch.pdf -------------------------------------------------------------------------------- /pdf/2018/discovering-bugs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2018/discovering-bugs.pdf -------------------------------------------------------------------------------- /pdf/2018/we-are-done-with-hacking.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2018/we-are-done-with-hacking.pdf -------------------------------------------------------------------------------- /pdf/2019/enthusiasm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2019/enthusiasm.pdf -------------------------------------------------------------------------------- /pdf/2019/indolence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2019/indolence.pdf -------------------------------------------------------------------------------- /pdf/2020/cacm-oct.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2020/cacm-oct.pdf -------------------------------------------------------------------------------- /pdf/2020/iccsit20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2020/iccsit20.pdf -------------------------------------------------------------------------------- /pdf/2020/icsa20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2020/icsa20.pdf -------------------------------------------------------------------------------- /pdf/2020/kes20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2020/kes20.pdf -------------------------------------------------------------------------------- /pdf/2021/requs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2021/requs.pdf -------------------------------------------------------------------------------- /pdf/2021/volatility.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/2021/volatility.pdf -------------------------------------------------------------------------------- /pdf/books/eo1-teaser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/books/eo1-teaser.pdf -------------------------------------------------------------------------------- /pdf/books/eo2-teaser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/books/eo2-teaser.pdf -------------------------------------------------------------------------------- /pdf/certifications/CompTIA-Mar07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/certifications/CompTIA-Mar07.pdf -------------------------------------------------------------------------------- /pdf/certifications/MCP-Oct07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/certifications/MCP-Oct07.pdf -------------------------------------------------------------------------------- /pdf/certifications/OCMJEA-Feb11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/certifications/OCMJEA-Feb11.pdf -------------------------------------------------------------------------------- /pdf/certifications/OCUP-Sep08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/certifications/OCUP-Sep08.pdf -------------------------------------------------------------------------------- /pdf/certifications/PHP5-Jul08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/certifications/PHP5-Jul08.pdf -------------------------------------------------------------------------------- /pdf/certifications/PMP-Jun07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/certifications/PMP-Jun07.pdf -------------------------------------------------------------------------------- /pdf/certifications/PRINCE2-Jun08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/certifications/PRINCE2-Jun08.pdf -------------------------------------------------------------------------------- /pdf/certifications/RUP-Dec06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/certifications/RUP-Dec06.pdf -------------------------------------------------------------------------------- /pdf/certifications/RUP-Feb07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/certifications/RUP-Feb07.pdf -------------------------------------------------------------------------------- /pdf/certifications/ZFCE-Oct09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/certifications/ZFCE-Oct09.pdf -------------------------------------------------------------------------------- /pdf/ieee-730-2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/ieee-730-2014.pdf -------------------------------------------------------------------------------- /pdf/job-description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/job-description.pdf -------------------------------------------------------------------------------- /pdf/resumes/anton-dozortsev.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/resumes/anton-dozortsev.pdf -------------------------------------------------------------------------------- /pdf/resumes/roman-leventov.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yegor256/blog/e8711b9e9fc369c74c45fbe8dd9c3ddcc81d2247/pdf/resumes/roman-leventov.pdf -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "config:base" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | Sitemap: https://www.yegor256.com/sitemap.xml 2 | 3 | User-agent: * 4 | Disallow: /p/ 5 | Disallow: /404.html 6 | --------------------------------------------------------------------------------