├── .dockerignore ├── .editorconfig ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── documentation_bug.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── no-response.yml └── workflows │ ├── build.yml │ ├── docker-build.yml │ ├── schedule-doc-report.yml │ └── test.yml ├── .gitignore ├── .image_optim.yml ├── .ruby-version ├── .slugignore ├── .tool-versions ├── COPYRIGHT ├── Dockerfile ├── Dockerfile-alpine ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── Thorfile ├── assets ├── images │ └── .gitignore ├── javascripts │ ├── app │ │ ├── app.js │ │ ├── config.js.erb │ │ ├── db.js │ │ ├── router.js │ │ ├── searcher.js │ │ ├── serviceworker.js │ │ ├── settings.js │ │ ├── shortcuts.js │ │ └── update_checker.js │ ├── application.js │ ├── collections │ │ ├── collection.js │ │ ├── docs.js │ │ ├── entries.js │ │ └── types.js │ ├── debug.js │ ├── docs.js.erb │ ├── lib │ │ ├── ajax.js │ │ ├── cookies_store.js │ │ ├── events.js │ │ ├── favicon.js │ │ ├── license.js │ │ ├── local_storage_store.js │ │ ├── page.js │ │ └── util.js │ ├── models │ │ ├── doc.js │ │ ├── entry.js │ │ ├── model.js │ │ └── type.js │ ├── news.json │ ├── templates │ │ ├── base.js │ │ ├── error_tmpl.js │ │ ├── notice_tmpl.js │ │ ├── notif_tmpl.js │ │ ├── pages │ │ │ ├── about_tmpl.js │ │ │ ├── help_tmpl.js │ │ │ ├── news_tmpl.js.erb │ │ │ ├── offline_tmpl.js │ │ │ ├── root_tmpl.js.erb │ │ │ ├── settings_tmpl.js │ │ │ └── type_tmpl.js │ │ ├── path_tmpl.js │ │ ├── sidebar_tmpl.js │ │ └── tip_tmpl.js │ ├── tracking.js │ ├── vendor │ │ ├── cookies.js │ │ ├── mathml.js │ │ ├── prism.js │ │ └── raven.js │ └── views │ │ ├── content │ │ ├── content.js │ │ ├── entry_page.js │ │ ├── offline_page.js │ │ ├── root_page.js │ │ ├── settings_page.js │ │ ├── static_page.js │ │ └── type_page.js │ │ ├── layout │ │ ├── document.js │ │ ├── menu.js │ │ ├── mobile.js │ │ ├── path.js │ │ ├── resizer.js │ │ └── settings.js │ │ ├── list │ │ ├── list_focus.js │ │ ├── list_fold.js │ │ ├── list_select.js │ │ └── paginated_list.js │ │ ├── misc │ │ ├── news.js │ │ ├── notice.js │ │ ├── notif.js │ │ ├── tip.js │ │ └── updates.js │ │ ├── pages │ │ ├── base.js │ │ ├── hidden.js │ │ ├── jquery.js │ │ ├── rdoc.js │ │ ├── sqlite.js │ │ └── support_tables.js │ │ ├── search │ │ ├── search.js │ │ └── search_scope.js │ │ ├── sidebar │ │ ├── doc_list.js │ │ ├── doc_picker.js │ │ ├── entry_list.js │ │ ├── results.js │ │ ├── sidebar.js │ │ ├── sidebar_hover.js │ │ └── type_list.js │ │ └── view.js └── stylesheets │ ├── application.css.scss │ ├── components │ ├── _app.scss │ ├── _content.scss │ ├── _environment.scss.erb │ ├── _fail.scss │ ├── _header.scss │ ├── _mobile.scss │ ├── _notice.scss │ ├── _notif.scss │ ├── _page.scss │ ├── _path.scss │ ├── _prism.scss │ ├── _settings.scss │ └── _sidebar.scss │ ├── global │ ├── _base.scss │ ├── _classes.scss │ ├── _icons.scss.erb │ ├── _mixins.scss │ ├── _print.scss │ ├── _variables-dark.scss │ ├── _variables-light.scss │ └── _variables.scss │ └── pages │ ├── _angular.scss │ ├── _angularjs.scss │ ├── _apache.scss │ ├── _async.scss │ ├── _bash.scss │ ├── _bootstrap.scss │ ├── _cakephp.scss │ ├── _chef.scss │ ├── _clojure.scss │ ├── _codeception.scss │ ├── _coffeescript.scss │ ├── _cordova.scss │ ├── _cppref.scss │ ├── _crystal.scss │ ├── _cypress.scss │ ├── _d.scss │ ├── _d3.scss │ ├── _dart.scss │ ├── _dojo.scss │ ├── _drupal.scss │ ├── _eigen3.scss │ ├── _elisp.scss │ ├── _elixir.scss │ ├── _ember.scss │ ├── _erlang.scss │ ├── _express.scss │ ├── _fastapi.scss │ ├── _fluture.scss │ ├── _git.scss │ ├── _github.scss │ ├── _gnu_make.scss │ ├── _gnuplot.scss │ ├── _go.scss │ ├── _graphite.scss │ ├── _groovy.scss │ ├── _gtk.scss │ ├── _hapi.scss │ ├── _haproxy.scss │ ├── _haskell.scss │ ├── _jasmine.scss │ ├── _jekyll.scss │ ├── _joi.scss │ ├── _jq.scss │ ├── _jquery.scss │ ├── _julia.scss │ ├── _knockout.scss │ ├── _kotlin.scss │ ├── _kubectl.scss │ ├── _kubernetes.scss │ ├── _laravel.scss │ ├── _liquid.scss │ ├── _love.scss │ ├── _lua.scss │ ├── _mariadb.scss │ ├── _mdn.scss │ ├── _meteor.scss │ ├── _mkdocs.scss │ ├── _modernizr.scss │ ├── _moment.scss │ ├── _nginx.scss │ ├── _node.scss │ ├── _npm.scss │ ├── _nushell.scss │ ├── _octave.scss │ ├── _openjdk.scss │ ├── _openlayers.scss │ ├── _perl.scss │ ├── _phalcon.scss │ ├── _phaser.scss │ ├── _php.scss │ ├── _phpunit.scss │ ├── _postgres.scss │ ├── _pug.scss │ ├── _pygame.scss │ ├── _python.scss │ ├── _qt.scss │ ├── _ramda.scss │ ├── _rdoc.scss │ ├── _react.scss │ ├── _react_native.scss │ ├── _reactivex.scss │ ├── _redis.scss │ ├── _rethinkdb.scss │ ├── _rfc.scss │ ├── _rubydoc.scss │ ├── _rust.scss │ ├── _rxjs.scss │ ├── _sanctuary.scss │ ├── _sanctuary_def.scss │ ├── _sanctuary_type_classes.scss │ ├── _scala.scss │ ├── _simple.scss │ ├── _sinon.scss │ ├── _sphinx.scss │ ├── _sphinx_simple.scss │ ├── _sqlite.scss │ ├── _support_tables.scss │ ├── _tailwindcss.scss │ ├── _tcl_tk.scss │ ├── _tensorflow.scss │ ├── _terraform.scss │ ├── _typescript.scss │ ├── _underscore.scss │ ├── _vue.scss │ ├── _webpack.scss │ ├── _wordpress.scss │ ├── _yard.scss │ └── _yii.scss ├── config.ru ├── docs ├── adding-docs.md ├── file-scrapers.md ├── filter-reference.md ├── maintainers.md └── scraper-reference.md ├── lib ├── app.rb ├── docs.rb ├── docs │ ├── core │ │ ├── autoload_helper.rb │ │ ├── doc.rb │ │ ├── entry_index.rb │ │ ├── filter.rb │ │ ├── filter_stack.rb │ │ ├── instrumentable.rb │ │ ├── manifest.rb │ │ ├── models │ │ │ ├── entry.rb │ │ │ └── type.rb │ │ ├── page_db.rb │ │ ├── parser.rb │ │ ├── request.rb │ │ ├── requester.rb │ │ ├── response.rb │ │ ├── scraper.rb │ │ ├── scrapers │ │ │ ├── file_scraper.rb │ │ │ └── url_scraper.rb │ │ ├── subscriber.rb │ │ └── url.rb │ ├── filters │ │ ├── angular │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_v2.rb │ │ │ ├── entries.rb │ │ │ └── entries_v2.rb │ │ ├── angularjs │ │ │ ├── clean_html.rb │ │ │ ├── clean_urls.rb │ │ │ └── entries.rb │ │ ├── ansible │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── apache │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── apache_pig │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── astro │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── async │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── axios │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── babel │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── backbone │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── bash │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── bazel │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── bluebird │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── bootstrap │ │ │ ├── clean_html_v3.rb │ │ │ ├── clean_html_v4.rb │ │ │ ├── clean_html_v5.rb │ │ │ ├── entries_v3.rb │ │ │ ├── entries_v4.rb │ │ │ └── entries_v5.rb │ │ ├── bottle │ │ │ └── entries.rb │ │ ├── bower │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── c │ │ │ └── entries.rb │ │ ├── cakephp │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_39_plus.rb │ │ │ ├── entries.rb │ │ │ └── entries_39_plus.rb │ │ ├── chai │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── chef │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_old.rb │ │ │ ├── entries.rb │ │ │ └── entries_old.rb │ │ ├── chefclient │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── click │ │ │ ├── entries.rb │ │ │ └── pre_clean_html.rb │ │ ├── clojure │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── cmake │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── codeception │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── codeceptjs │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── codeigniter │ │ │ └── entries.rb │ │ ├── coffeescript │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_v1.rb │ │ │ ├── entries.rb │ │ │ └── entries_v1.rb │ │ ├── composer │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── cordova │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_core.rb │ │ │ └── entries.rb │ │ ├── core │ │ │ ├── apply_base_url.rb │ │ │ ├── attribution.rb │ │ │ ├── clean_html.rb │ │ │ ├── clean_local_urls.rb │ │ │ ├── clean_text.rb │ │ │ ├── container.rb │ │ │ ├── entries.rb │ │ │ ├── images.rb │ │ │ ├── inner_html.rb │ │ │ ├── internal_urls.rb │ │ │ ├── normalize_paths.rb │ │ │ ├── normalize_urls.rb │ │ │ ├── parse_cf_email.rb │ │ │ └── title.rb │ │ ├── cpp │ │ │ └── entries.rb │ │ ├── cppref │ │ │ ├── clean_html.rb │ │ │ └── fix_code.rb │ │ ├── crystal │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── css │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── cypress │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── d │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── d3 │ │ │ ├── clean_html.rb │ │ │ ├── entries_v3.rb │ │ │ └── entries_v4.rb │ │ ├── dart │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── deno │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── django │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ └── fix_urls.rb │ │ ├── django_rest_framework │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── docker │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── dojo │ │ │ ├── clean_html.rb │ │ │ ├── clean_urls.rb │ │ │ └── entries.rb │ │ ├── dom │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── drupal │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ ├── internal_urls.rb │ │ │ └── normalize_paths.rb │ │ ├── duckdb │ │ │ ├── attribution.rb │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── eigen3 │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── electron │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── elisp │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── elixir │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── ember │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── enzyme │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── erlang │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ └── pre_clean_html.rb │ │ ├── esbuild │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── eslint │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── express │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── falcon │ │ │ └── entries.rb │ │ ├── fastapi │ │ │ ├── clean_html.rb │ │ │ ├── container.rb │ │ │ └── entries.rb │ │ ├── fish │ │ │ ├── clean_html_custom.rb │ │ │ ├── clean_html_sphinx.rb │ │ │ ├── entries_custom.rb │ │ │ └── entries_sphinx.rb │ │ ├── flask │ │ │ └── entries.rb │ │ ├── flow │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── fluture │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── gcc │ │ │ └── clean_html.rb │ │ ├── git │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── github │ │ │ └── clean_html.rb │ │ ├── gnu │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── gnu_cobol │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── gnu_make │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── gnuplot │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── go │ │ │ ├── attribution.rb │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── godot │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_v2.rb │ │ │ ├── clean_html_v3.rb │ │ │ ├── entries.rb │ │ │ ├── entries_v2.rb │ │ │ └── entries_v3.rb │ │ ├── graphite │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── groovy │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── grunt │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── gtk │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── hammerspoon │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── handlebars │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── hapi │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── haproxy │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── haskell │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── haxe │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── homebrew │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── html │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── htmx │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── http │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── i3 │ │ │ └── entries.rb │ │ ├── immutable │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── influxdata │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── jasmine │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── javascript │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── jekyll │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── jest │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── jinja │ │ │ └── entries.rb │ │ ├── joi │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── jq │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── jquery │ │ │ └── clean_html.rb │ │ ├── jquery_core │ │ │ └── entries.rb │ │ ├── jquery_mobile │ │ │ └── entries.rb │ │ ├── jquery_ui │ │ │ └── entries.rb │ │ ├── jsdoc │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── julia │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_sphinx.rb │ │ │ ├── entries.rb │ │ │ └── entries_sphinx.rb │ │ ├── knockout │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── koa │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── kotlin │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── kubectl │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── kubernetes │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── laravel │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── latex │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── leaflet │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── less │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── liquid │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── lodash │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── love │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── lua │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── man │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── mariadb │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ └── erase_invalid_pages.rb │ │ ├── marionette │ │ │ ├── clean_html.rb │ │ │ ├── entries_v2.rb │ │ │ └── entries_v3.rb │ │ ├── markdown │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── matplotlib │ │ │ └── entries.rb │ │ ├── mdn │ │ │ ├── clean_html.rb │ │ │ └── compat_tables.rb │ │ ├── meteor │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── minitest │ │ │ └── entries.rb │ │ ├── mkdocs │ │ │ └── clean_html.rb │ │ ├── mocha │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── modernizr │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── moment │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── moment_timezone │ │ │ └── entries.rb │ │ ├── mongoose │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── nextjs │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── nginx │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── nginx_lua_module │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── nim │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── nix │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── node │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ └── old_entries.rb │ │ ├── nokogiri2 │ │ │ └── entries.rb │ │ ├── npm │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── numpy │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── nushell │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ └── fix_links.rb │ │ ├── ocaml │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── octave │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── opengl │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── openjdk │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_new.rb │ │ │ ├── clean_urls.rb │ │ │ ├── entries.rb │ │ │ └── entries_new.rb │ │ ├── openlayers │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── opentsdb │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── padrino │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── pandas │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_old.rb │ │ │ ├── entries.rb │ │ │ └── entries_old.rb │ │ ├── perl │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ └── pre_clean_html.rb │ │ ├── phalcon │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── phaser │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── php │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ ├── fix_urls.rb │ │ │ └── internal_urls.rb │ │ ├── phpunit │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_old.rb │ │ │ ├── entries.rb │ │ │ └── entries_old.rb │ │ ├── playwright │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── point_cloud_library │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── pony │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── postgresql │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ ├── extract_metadata.rb │ │ │ └── normalize_class_names.rb │ │ ├── prettier │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── pug │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── puppeteer │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── pygame │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ └── pre_clean_html.rb │ │ ├── python │ │ │ ├── clean_html.rb │ │ │ ├── entries_v2.rb │ │ │ └── entries_v3.rb │ │ ├── pytorch │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── q │ │ │ └── entries.rb │ │ ├── qt │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── qunit │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── r │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── rails │ │ │ ├── clean_html_guides.rb │ │ │ └── entries.rb │ │ ├── ramda │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── rdoc │ │ │ ├── clean_html.rb │ │ │ ├── container.rb │ │ │ └── entries.rb │ │ ├── react │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_react_dev.rb │ │ │ ├── entries.rb │ │ │ └── entries_react_dev.rb │ │ ├── react_bootstrap │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── react_native │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── react_router │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── reactivex │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── redis │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── redux │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── relay │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── requests │ │ │ └── entries.rb │ │ ├── requirejs │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── rethinkdb │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── ruby │ │ │ └── entries.rb │ │ ├── rust │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── rxjs │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── salt_stack │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── sanctuary │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── sanctuary_def │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── sanctuary_type_classes │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── sass │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── scala │ │ │ ├── clean_html_v2.rb │ │ │ ├── clean_html_v3.rb │ │ │ ├── entries_v2.rb │ │ │ └── entries_v3.rb │ │ ├── scikit_image │ │ │ └── entries.rb │ │ ├── scikit_learn │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── sequelize │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── sinon │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── socketio │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── sphinx │ │ │ └── clean_html.rb │ │ ├── spring_boot │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── sqlite │ │ │ ├── clean_html.rb │ │ │ ├── clean_js_tables.rb │ │ │ └── entries.rb │ │ ├── statsmodels │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── svelte │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── svg │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── symfony │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── tailwindcss │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ └── noop.rb │ │ ├── tcl_tk │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── tensorflow │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── terraform │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── threejs │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── trio │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── twig │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── typescript │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── underscore │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── vagrant │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── varnish │ │ │ └── entries.rb │ │ ├── vertx │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── vite │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── vitest │ │ │ └── entries.rb │ │ ├── vue │ │ │ ├── clean_html.rb │ │ │ ├── entries.rb │ │ │ └── entries_v3.rb │ │ ├── vue_router │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── vueuse │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── vuex │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── vulkan │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── wagtail │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── web_extensions │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── webpack │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_old.rb │ │ │ ├── entries.rb │ │ │ └── entries_old.rb │ │ ├── werkzeug │ │ │ └── entries.rb │ │ ├── wordpress │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── xslt_xpath │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ │ ├── yarn │ │ │ ├── clean_html.rb │ │ │ ├── clean_html_berry.rb │ │ │ ├── entries.rb │ │ │ └── entries_berry.rb │ │ ├── yii │ │ │ ├── clean_html_v1.rb │ │ │ ├── clean_html_v2.rb │ │ │ ├── entries_v1.rb │ │ │ └── entries_v2.rb │ │ └── zig │ │ │ ├── clean_html.rb │ │ │ └── entries.rb │ ├── scrapers │ │ ├── angular.rb │ │ ├── angularjs.rb │ │ ├── ansible.rb │ │ ├── apache.rb │ │ ├── apache_pig.rb │ │ ├── astro.rb │ │ ├── async.rb │ │ ├── axios.rb │ │ ├── babel.rb │ │ ├── backbone.rb │ │ ├── bash.rb │ │ ├── bazel.rb │ │ ├── bluebird.rb │ │ ├── bootstrap.rb │ │ ├── bottle.rb │ │ ├── bower.rb │ │ ├── cakephp.rb │ │ ├── chai.rb │ │ ├── chef.rb │ │ ├── click.rb │ │ ├── clojure.rb │ │ ├── cmake.rb │ │ ├── codeception.rb │ │ ├── codeceptjs.rb │ │ ├── codeigniter.rb │ │ ├── coffeescript.rb │ │ ├── composer.rb │ │ ├── cordova.rb │ │ ├── cppref │ │ │ ├── c.rb │ │ │ ├── cpp.rb │ │ │ └── cppref.rb │ │ ├── crystal.rb │ │ ├── cypress.rb │ │ ├── d.rb │ │ ├── d3.rb │ │ ├── dart.rb │ │ ├── date_fns.rb │ │ ├── deno.rb │ │ ├── django.rb │ │ ├── docker.rb │ │ ├── dojo.rb │ │ ├── drupal.rb │ │ ├── duckdb.rb │ │ ├── eigen3.rb │ │ ├── electron.rb │ │ ├── elisp.rb │ │ ├── elixir.rb │ │ ├── ember.rb │ │ ├── enzyme.rb │ │ ├── erlang.rb │ │ ├── es_toolkit.rb │ │ ├── esbuild.rb │ │ ├── eslint.rb │ │ ├── express.rb │ │ ├── falcon.rb │ │ ├── fastapi.rb │ │ ├── fish.rb │ │ ├── flask.rb │ │ ├── flow.rb │ │ ├── fluture.rb │ │ ├── git.rb │ │ ├── github.rb │ │ ├── gnu.rb │ │ ├── gnu │ │ │ ├── gcc.rb │ │ │ └── gnu_fortran.rb │ │ ├── gnu_cobol.rb │ │ ├── gnu_make.rb │ │ ├── gnuplot.rb │ │ ├── go.rb │ │ ├── godot.rb │ │ ├── graphite.rb │ │ ├── groovy.rb │ │ ├── grunt.rb │ │ ├── gtk.rb │ │ ├── hammerspoon.rb │ │ ├── handlebars.rb │ │ ├── hapi.rb │ │ ├── haproxy.rb │ │ ├── haskell.rb │ │ ├── haxe.rb │ │ ├── homebrew.rb │ │ ├── htmx.rb │ │ ├── http.rb │ │ ├── i3.rb │ │ ├── immutable.rb │ │ ├── influxdata.rb │ │ ├── jasmine.rb │ │ ├── jekyll.rb │ │ ├── jest.rb │ │ ├── jinja.rb │ │ ├── joi.rb │ │ ├── jq.rb │ │ ├── jquery │ │ │ ├── jquery.rb │ │ │ ├── jquery_core.rb │ │ │ ├── jquery_mobile.rb │ │ │ └── jquery_ui.rb │ │ ├── jsdoc.rb │ │ ├── julia.rb │ │ ├── knockout.rb │ │ ├── koa.rb │ │ ├── kotlin.rb │ │ ├── kubectl.rb │ │ ├── kubernetes.rb │ │ ├── laravel.rb │ │ ├── latex.rb │ │ ├── leaflet.rb │ │ ├── less.rb │ │ ├── liquid.rb │ │ ├── lodash.rb │ │ ├── love.rb │ │ ├── lua.rb │ │ ├── man.rb │ │ ├── mariadb.rb │ │ ├── marionette.rb │ │ ├── markdown.rb │ │ ├── matplotlib.rb │ │ ├── mdn │ │ │ ├── css.rb │ │ │ ├── dom.rb │ │ │ ├── html.rb │ │ │ ├── javascript.rb │ │ │ ├── mdn.rb │ │ │ ├── svg.rb │ │ │ ├── web_extensions.rb │ │ │ └── xslt_xpath.rb │ │ ├── meteor.rb │ │ ├── mkdocs │ │ │ ├── django_rest_framework.rb │ │ │ └── mkdocs.rb │ │ ├── mocha.rb │ │ ├── modernizr.rb │ │ ├── moment.rb │ │ ├── moment_timezone.rb │ │ ├── mongoose.rb │ │ ├── nextjs.rb │ │ ├── nginx.rb │ │ ├── nginx_lua_module.rb │ │ ├── nim.rb │ │ ├── nix.rb │ │ ├── node.rb │ │ ├── nokogiri2.rb │ │ ├── npm.rb │ │ ├── numpy.rb │ │ ├── nushell.rb │ │ ├── ocaml.rb │ │ ├── octave.rb │ │ ├── opengl.rb │ │ ├── openjdk.rb │ │ ├── openlayers.rb │ │ ├── opentsdb.rb │ │ ├── padrino.rb │ │ ├── pandas.rb │ │ ├── perl.rb │ │ ├── phalcon.rb │ │ ├── phaser.rb │ │ ├── phoenix.rb │ │ ├── php.rb │ │ ├── phpunit.rb │ │ ├── playwright.rb │ │ ├── point_cloud_library.rb │ │ ├── pony.rb │ │ ├── postgresql.rb │ │ ├── prettier.rb │ │ ├── pug.rb │ │ ├── puppeteer.rb │ │ ├── pygame.rb │ │ ├── python.rb │ │ ├── pytorch.rb │ │ ├── q.rb │ │ ├── qt.rb │ │ ├── qunit.rb │ │ ├── r.rb │ │ ├── ramda.rb │ │ ├── rdoc │ │ │ ├── minitest.rb │ │ │ ├── rails.rb │ │ │ ├── rdoc.rb │ │ │ └── ruby.rb │ │ ├── react.rb │ │ ├── react_bootstrap.rb │ │ ├── react_native.rb │ │ ├── react_router.rb │ │ ├── reactivex.rb │ │ ├── redis.rb │ │ ├── redux.rb │ │ ├── relay.rb │ │ ├── requests.rb │ │ ├── requirejs.rb │ │ ├── rethinkdb.rb │ │ ├── rust.rb │ │ ├── rxjs.rb │ │ ├── salt_stack.rb │ │ ├── sanctuary.rb │ │ ├── sanctuary_def.rb │ │ ├── sanctuary_type_classes.rb │ │ ├── sass.rb │ │ ├── scala.rb │ │ ├── scikit_image.rb │ │ ├── scikit_learn.rb │ │ ├── sequelize.rb │ │ ├── sinon.rb │ │ ├── socketio.rb │ │ ├── sphinx.rb │ │ ├── spring_boot.rb │ │ ├── sqlite.rb │ │ ├── statsmodels.rb │ │ ├── support_tables.rb │ │ ├── svelte.rb │ │ ├── symfony.rb │ │ ├── tailwindcss.rb │ │ ├── tcl_tk.rb │ │ ├── tensorflow │ │ │ ├── tensorflow.rb │ │ │ └── tensorflow_cpp.rb │ │ ├── terraform.rb │ │ ├── threejs.rb │ │ ├── trio.rb │ │ ├── twig.rb │ │ ├── typescript.rb │ │ ├── underscore.rb │ │ ├── vagrant.rb │ │ ├── varnish.rb │ │ ├── vertx.rb │ │ ├── vite.rb │ │ ├── vitest.rb │ │ ├── vue.rb │ │ ├── vue_router.rb │ │ ├── vueuse.rb │ │ ├── vuex.rb │ │ ├── vulkan.rb │ │ ├── wagtail.rb │ │ ├── webpack.rb │ │ ├── werkzeug.rb │ │ ├── wordpress.rb │ │ ├── yarn.rb │ │ ├── yii.rb │ │ └── zig.rb │ ├── storage │ │ ├── abstract_store.rb │ │ ├── file_store.rb │ │ └── null_store.rb │ └── subscribers │ │ ├── doc_subscriber.rb │ │ ├── filter_subscriber.rb │ │ ├── image_subscriber.rb │ │ ├── progress_bar_subscriber.rb │ │ ├── request_subscriber.rb │ │ ├── requester_subscriber.rb │ │ ├── scraper_subscriber.rb │ │ └── store_subscriber.rb └── tasks │ ├── assets.thor │ ├── console.thor │ ├── docs.thor │ ├── sprites.thor │ ├── test.thor │ └── updates.thor ├── newrelic.yml ├── package-lock.json ├── public ├── 404.html ├── 500.html ├── favicon.ico ├── favicon.pxm ├── favicon@2x.pxm ├── icons │ └── docs │ │ ├── angular │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── angularjs │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── ansible │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── apache_http_server │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── apache_pig │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── pig.png │ │ ├── astro │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── async │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── axios │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── babel │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── backbone │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── bash │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── bazel │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── bluebird │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── bootstrap │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── bottle │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── bower │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── c │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── cakephp │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── chai │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── chef │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── click │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── clojure │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── cmake │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── codeception │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── codeceptjs │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── codeigniter │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── coffeescript │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── composer │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── cordova │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── cpp │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── crystal │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── css │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── cypress │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── d │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── d3 │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── dart │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── date_fns │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── deno │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── django │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── django_rest_framework │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── docker │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── dojo │ │ ├── 16.png │ │ └── 16@2x.png │ │ ├── dom │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── DOM.sketch │ │ │ ├── Data │ │ │ ├── QuickLook │ │ │ ├── Preview.png │ │ │ └── Thumbnail.png │ │ │ ├── fonts │ │ │ └── version │ │ ├── dom_events │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── DOM_events.sketch │ │ │ ├── Data │ │ │ ├── QuickLook │ │ │ ├── Preview.png │ │ │ └── Thumbnail.png │ │ │ ├── fonts │ │ │ └── version │ │ ├── drupal │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── duckdb │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── eigen3 │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── electron │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── elisp │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── elixir │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── ember │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── erlang │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── es_toolkit │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── esbuild │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── eslint │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── express │ │ ├── 16.png │ │ ├── 16.pxm │ │ ├── 16@2x.png │ │ └── 16@2x.pxm │ │ ├── falcon │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── fastapi │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── fish │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── flask │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── flow │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── fluture │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── gcc │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── GCC.png │ │ ├── git │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── gnu_cobol │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── gnu_fortran │ │ ├── 16.png │ │ ├── 16@2x.png │ │ ├── SOURCE │ │ └── fortran.png │ │ ├── gnu_make │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── gnuplot │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── go │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── godot │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── groovy │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── grunt │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── gtk │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── hammerspoon │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── handlebars │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── hapi │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── haproxy │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── haskell │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── haxe │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── homebrew │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── html │ │ ├── 16.png │ │ ├── 16@2x.png │ │ ├── HTML5.sketch │ │ │ ├── Data │ │ │ ├── QuickLook │ │ │ │ ├── Preview.png │ │ │ │ └── Thumbnail.png │ │ │ ├── fonts │ │ │ └── version │ │ └── SOURCE │ │ ├── htmx │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── http │ │ ├── 16.png │ │ ├── 16.pxm │ │ ├── 16@2x.png │ │ ├── 16@2x.pxm │ │ └── SOURCE │ │ ├── i3 │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── immutable │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── influxdata │ │ ├── 16.png │ │ └── 16@2x.png │ │ ├── jasmine │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── javascript │ │ ├── 16.png │ │ ├── 16.pxm │ │ ├── 16@2x.png │ │ ├── 16@2x.pxm │ │ └── SOURCE │ │ ├── jekyll │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── jest │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── jinja │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── joi │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── jq │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── jquery │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── jquerymobile │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── jqueryui │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── julia │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── knockout │ │ ├── 16.png │ │ ├── 16@2x.png │ │ ├── 16@2x.pxm │ │ └── SOURCE │ │ ├── kotlin │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── kubectl │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── kubernetes │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── laravel │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── latex │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── leaflet │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── less │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── less.pxm │ │ ├── liquid │ │ ├── 16.png │ │ └── 16@2x.png │ │ ├── lodash │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── love │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── lua │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── man │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── mariadb │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── marionette │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── markdown │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── matplotlib │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── meteor │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── mocha │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── modernizr │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── moment │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── moment.sketch │ │ │ ├── Data │ │ │ ├── QuickLook │ │ │ ├── Preview.png │ │ │ └── Thumbnail.png │ │ │ ├── fonts │ │ │ ├── metadata │ │ │ └── version │ │ ├── moment_timezone │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── mongoose │ │ ├── 16.png │ │ └── 16@2x.png │ │ ├── nextjs │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── nginx │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── nim │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── nix │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── node │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── nokogiri │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── icon.pxm │ │ ├── npm │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── numpy │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── nushell │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── ocaml │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── octave │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── opengl │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── openjdk │ │ ├── 16.png │ │ └── 16@2x.png │ │ ├── openlayers │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── opentsdb │ │ ├── 16.png │ │ └── 16@2x.png │ │ ├── padrino │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── pandas │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── perl │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── phalcon │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── phaser │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── phoenix │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── php │ │ ├── 16.png │ │ ├── 16@2x.png │ │ ├── 16@2x.pxm │ │ └── SOURCE │ │ ├── phpunit │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── playwright │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── point_cloud_library │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── pony │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── postgresql │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── prettier │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── pug │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── puppeteer │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── pygame │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── python │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── pytorch │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── q │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── qt │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── qunit │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── r │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── rails │ │ ├── 16.png │ │ ├── 16@2x.png │ │ ├── SOURCE │ │ └── rails.pxm │ │ ├── ramda │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── react │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── react_bootstrap │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── react_native │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── react_router │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── reactivex │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── redis │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── redux │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── relay │ │ ├── 16.png │ │ └── 16@2x.png │ │ ├── requests │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── requirejs │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── rethinkdb │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── ruby │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── rust │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── rxjs │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── saltstack │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── sanctuary │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── sanctuary_def │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── sanctuary_type_classes │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── sass │ │ ├── 16.png │ │ ├── 16@2x.png │ │ ├── SOURCE │ │ └── sass.pxm │ │ ├── scala │ │ ├── 16.png │ │ └── 16@2x.png │ │ ├── scikit_image │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── scikit_learn │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── sequelize │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── sinon │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── socketio │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── spring_boot │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── sqlite │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── statsmodels │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── support_tables │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── svelte │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── svg │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── symfony │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── tailwindcss │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── tcl_tk │ │ ├── 16.png │ │ ├── 16@2.png │ │ └── SOURCE │ │ ├── tensorflow │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── tensorflow_cpp │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── terraform │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── threejs │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── trio │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── twig │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── typescript │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── underscore │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── vagrant │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── varnish │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── vertx │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── vite │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── vitest │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── vue │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── vue_router │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── vueuse │ │ ├── 16.png │ │ ├── 16@2x.png │ │ ├── SOURCE │ │ └── favicon-16x16.png │ │ ├── vuex │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── vulkan │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── wagtail │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── webpack │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── werkzeug │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── wordpress │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── xpath │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── XPath.sketch │ │ │ ├── Data │ │ │ ├── QuickLook │ │ │ ├── Preview.png │ │ │ └── Thumbnail.png │ │ │ ├── metadata │ │ │ └── version │ │ ├── yarn │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ ├── yii │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE │ │ └── zig │ │ ├── 16.png │ │ ├── 16@2x.png │ │ └── SOURCE ├── images │ ├── apple-icon-114.png │ ├── apple-icon-120.png │ ├── apple-icon-144.png │ ├── apple-icon-152.png │ ├── apple-icon-160.png │ ├── apple-icon-72.png │ ├── apple-icon-76.png │ ├── apple-icon.pxm │ ├── fluid-icon.png │ ├── fluid-icon.pxm │ ├── icon-16.png │ ├── icon-32.png │ ├── icon-320.png │ ├── icon-64.png │ ├── icon.pxm │ ├── webapp-icon-128.png │ ├── webapp-icon-192.png │ ├── webapp-icon-256.png │ ├── webapp-icon-32.png │ ├── webapp-icon-512.png │ ├── webapp-icon-60.png │ ├── webapp-icon-80.png │ ├── webapp-icon-small.pxm │ └── webkit-mask-icon.svg ├── manifest.json ├── mathml.css ├── opensearch.xml └── robots.txt ├── renovate.json ├── techstack.md ├── techstack.yml ├── test ├── app_test.rb ├── files │ └── docs.json ├── lib │ └── docs │ │ ├── core │ │ ├── doc_test.rb │ │ ├── entry_index_test.rb │ │ ├── filter_test.rb │ │ ├── instrumentable_test.rb │ │ ├── manifest_test.rb │ │ ├── models │ │ │ ├── entry_test.rb │ │ │ └── type_test.rb │ │ ├── parser_test.rb │ │ ├── request_test.rb │ │ ├── requester_test.rb │ │ ├── response_test.rb │ │ ├── scraper_test.rb │ │ ├── scrapers │ │ │ ├── file_scraper_test.rb │ │ │ └── url_scraper_test.rb │ │ └── url_test.rb │ │ ├── filters │ │ └── core │ │ │ ├── apply_base_url_test.rb │ │ │ ├── clean_html_test.rb │ │ │ ├── clean_text_test.rb │ │ │ ├── container_test.rb │ │ │ ├── entries_test.rb │ │ │ ├── inner_html_test.rb │ │ │ ├── internal_urls_test.rb │ │ │ ├── normalize_paths_test.rb │ │ │ ├── normalize_urls_test.rb │ │ │ ├── parse_cf_email_test.rb │ │ │ └── title_test.rb │ │ └── storage │ │ ├── abstract_store_test.rb │ │ └── file_store_test.rb ├── support │ ├── fake_instrumentation.rb │ └── filter_test_helper.rb └── test_helper.rb └── views ├── app.erb ├── index.erb ├── other.erb ├── service-worker.js.erb └── unsupported.erb /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | test 3 | Dockerfile* 4 | .gitignore 5 | .dockerignore 6 | .travis.yml 7 | *.md 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | 10 | [*.md] 11 | trim_trailing_whitespace = false 12 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # This controls who gets notified for review and allows branches to be protected. 2 | # Protected branches can only be merged into after being approved by a codeowner. 3 | 4 | * @freeCodeCamp/devdocs 5 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | 2 | > Our Code of Conduct is available here: 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .bundle 3 | log 4 | tmp 5 | public/assets 6 | public/fonts 7 | public/docs/**/* 8 | docs/**/* 9 | !docs/*.md 10 | /vendor 11 | *.tar 12 | *.tar.bz2 13 | *.tar.gz 14 | *.zip 15 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.4 2 | -------------------------------------------------------------------------------- /.slugignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.4.4 2 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec rackup config.ru -p $PORT 2 | -------------------------------------------------------------------------------- /Thorfile: -------------------------------------------------------------------------------- 1 | $LOAD_PATH.unshift 'lib' 2 | -------------------------------------------------------------------------------- /assets/images/.gitignore: -------------------------------------------------------------------------------- 1 | sprites/**/* 2 | -------------------------------------------------------------------------------- /assets/javascripts/collections/entries.js: -------------------------------------------------------------------------------- 1 | app.collections.Entries = class Entries extends app.Collection { 2 | static model = "Entry"; 3 | }; 4 | -------------------------------------------------------------------------------- /assets/javascripts/docs.js.erb: -------------------------------------------------------------------------------- 1 | //= depend_on docs.json 2 | app.DOCS = <%= File.read App.docs_manifest_path %>; 3 | -------------------------------------------------------------------------------- /assets/javascripts/models/model.js: -------------------------------------------------------------------------------- 1 | app.Model = class Model { 2 | constructor(attributes) { 3 | for (var key in attributes) { 4 | var value = attributes[key]; 5 | this[key] = value; 6 | } 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /assets/stylesheets/components/_environment.scss.erb: -------------------------------------------------------------------------------- 1 | ._hide-in-development { 2 | <%= App.environment != :production ? 'display: none;' : '' %> 3 | } 4 | -------------------------------------------------------------------------------- /assets/stylesheets/global/_mixins.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Mixins 3 | // 4 | 5 | @mixin print { 6 | @media print { 7 | @content; 8 | } 9 | } 10 | 11 | @mixin mobile { 12 | @media (max-width: 800px) { 13 | @content; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_apache.scss: -------------------------------------------------------------------------------- 1 | ._apache { 2 | @extend %simple; 3 | 4 | .note, .warning { @extend %note; } 5 | .warning { @extend %note-red; } 6 | } 7 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_chef.scss: -------------------------------------------------------------------------------- 1 | ._chef { 2 | @extend %simple; 3 | 4 | .note, .warning { @extend %note; } 5 | .warning { @extend %note, %note-red; } 6 | 7 | code { @extend %label; } 8 | } 9 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_codeception.scss: -------------------------------------------------------------------------------- 1 | ._codeception { 2 | @extend %simple; 3 | 4 | h4 { @extend %block-label; } 5 | .warning, .alert { @extend %note; } 6 | .alert-danger { @extend %note-red; } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_cordova.scss: -------------------------------------------------------------------------------- 1 | ._cordova { 2 | @extend %simple; 3 | 4 | .alert { @extend %note; } 5 | 6 | .compat .n { background: pink; } 7 | .compat .y { background: lightgreen; } 8 | .compat .p { background: khaki; } 9 | } 10 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_dojo.scss: -------------------------------------------------------------------------------- 1 | ._dojo { 2 | @extend %simple; 3 | 4 | .jsdoc-inheritance { color: var(--textColorLight); } 5 | } 6 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_drupal.scss: -------------------------------------------------------------------------------- 1 | ._drupal { 2 | h3 { @extend %block-heading; } 3 | .signature { @extend %note, %note-blue; } 4 | 5 | span.api-deprecated { @extend %label, %label-red; } 6 | } 7 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_eigen3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/assets/stylesheets/pages/_eigen3.scss -------------------------------------------------------------------------------- /assets/stylesheets/pages/_express.scss: -------------------------------------------------------------------------------- 1 | ._express { 2 | @extend %simple; 3 | 4 | .doc-box { @extend %note; } 5 | .doc-warn { @extend %note-red; } 6 | } 7 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_fluture.scss: -------------------------------------------------------------------------------- 1 | ._fluture { 2 | @extend %simple; 3 | 4 | pre > code { 5 | font-size: inherit; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_github.scss: -------------------------------------------------------------------------------- 1 | ._github { 2 | @extend %simple; 3 | 4 | h4 { @extend %block-label; } 5 | } 6 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_gnu_make.scss: -------------------------------------------------------------------------------- 1 | ._gnu_make { 2 | dl dt { 3 | @extend %block-label, %label-blue; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_gnuplot.scss: -------------------------------------------------------------------------------- 1 | ._gnuplot { 2 | .CENTER { 3 | text-align: center; 4 | } 5 | @extend %simple; 6 | } 7 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_go.scss: -------------------------------------------------------------------------------- 1 | ._go { 2 | @extend %simple; 3 | 4 | #short-nav, table.dir { margin-left: -1rem; } 5 | 6 | a.source, span[title^="Added in Go"] { 7 | float: right; 8 | font-size: .9em; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_graphite.scss: -------------------------------------------------------------------------------- 1 | ._graphite { 2 | @extend %simple; 3 | 4 | dl > dt { 5 | @extend %block-label, %label-blue; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_hapi.scss: -------------------------------------------------------------------------------- 1 | ._hapi { 2 | @extend %simple; 3 | 4 | pre > code { 5 | font-size: inherit; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_jasmine.scss: -------------------------------------------------------------------------------- 1 | ._jasmine { 2 | .subsection-title, h2 { @extend %block-heading; } 3 | h4 { @extend %block-label, %label-blue; } 4 | } 5 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_jekyll.scss: -------------------------------------------------------------------------------- 1 | ._jekyll { 2 | @extend %simple; 3 | 4 | .note.info { @extend %note-blue; } 5 | .note.warning { @extend %note-red; } 6 | .note.unreleased { @extend %note-orange; } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_joi.scss: -------------------------------------------------------------------------------- 1 | ._joi { 2 | @extend %simple; 3 | 4 | pre > code { 5 | font-size: inherit; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_julia.scss: -------------------------------------------------------------------------------- 1 | ._julia { 2 | @extend %simple; 3 | 4 | .footnote { @extend %note; } 5 | .note { @extend %note; } 6 | .docstring-category { float: right; } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_knockout.scss: -------------------------------------------------------------------------------- 1 | ._knockout { 2 | > h2 { @extend %block-heading; } 3 | > h3 { @extend %block-label, %label-blue; } 4 | p > code { @extend %label; } 5 | .liveExample, blockquote { @extend %note; } 6 | } 7 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_kotlin.scss: -------------------------------------------------------------------------------- 1 | ._kotlin { 2 | h2 { @extend %block-heading; } 3 | h3 { @extend %block-label, %label-blue; } 4 | code { @extend %label; } 5 | 6 | td > pre { margin: .5em 0; } 7 | 8 | .api-docs-breadcrumbs { @extend %note; } 9 | } 10 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_kubectl.scss: -------------------------------------------------------------------------------- 1 | ._kubectl { 2 | @extend %simple; 3 | 4 | } 5 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_kubernetes.scss: -------------------------------------------------------------------------------- 1 | ._kubernetes { 2 | @extend %simple; 3 | 4 | } 5 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_liquid.scss: -------------------------------------------------------------------------------- 1 | ._liquid { 2 | @extend %simple; 3 | 4 | p.code-label { @extend %pre-heading; } 5 | } 6 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_lua.scss: -------------------------------------------------------------------------------- 1 | ._lua { 2 | @extend %simple; 3 | 4 | .apii { float: right; } 5 | } 6 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_mariadb.scss: -------------------------------------------------------------------------------- 1 | ._mariadb { 2 | @extend %simple; 3 | 4 | .graybox, .product { 5 | @extend %note; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_modernizr.scss: -------------------------------------------------------------------------------- 1 | ._modernizr { 2 | h2 { @extend %block-heading; } 3 | h3 { @extend %block-label, %label-blue; } 4 | h4 { font-size: 1em; } 5 | 6 | code { @extend %label; } 7 | blockquote { @extend %note; } 8 | } 9 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_moment.scss: -------------------------------------------------------------------------------- 1 | ._moment { 2 | > h2 { @extend %block-heading; } 3 | > h3 { @extend %block-label, %label-blue; } 4 | > h3 > span { float: right;} 5 | h4 { font-size: 1em; } 6 | code { @extend %label; } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_nginx.scss: -------------------------------------------------------------------------------- 1 | ._nginx { 2 | h4 { @extend %block-heading; } 3 | .note { @extend %note; } 4 | .directive { margin: 2.5em 0 1em; } 5 | td > pre { margin: 0; } 6 | dt > code { @extend %label; } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_nushell.scss: -------------------------------------------------------------------------------- 1 | ._nushell { 2 | @extend %simple; 3 | 4 | pre > code { 5 | font-size: inherit; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_octave.scss: -------------------------------------------------------------------------------- 1 | ._octave { 2 | @extend %simple; 3 | 4 | dl:not([compact]) > dt { @extend %block-label, %label-blue; } 5 | 6 | dl[compact] > dt { @extend %block-label; } 7 | 8 | .footnotes-heading { @extend %block-heading; } 9 | } 10 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_openjdk.scss: -------------------------------------------------------------------------------- 1 | ._openjdk { 2 | @extend %simple; 3 | > .inheritance { @extend %note; } 4 | 5 | ul.inheritance { list-style: none; } 6 | > ul.inheritance { @extend %note, %note-blue; } 7 | > ul.inheritance ul.inheritance { margin: 0; } 8 | } 9 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_perl.scss: -------------------------------------------------------------------------------- 1 | ._perl { 2 | @extend %simple; 3 | 4 | dt + dt { margin-top: 1em; } 5 | 6 | > dl > dt { @extend %block-label; } 7 | > dl > dt.function { @extend %label-blue; } 8 | > dl > dt.variable { @extend %label-green; } 9 | } 10 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_phalcon.scss: -------------------------------------------------------------------------------- 1 | ._phalcon { 2 | @extend %simple; 3 | 4 | h3 > small { 5 | float: right; 6 | color: var(--textColorLight); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_phaser.scss: -------------------------------------------------------------------------------- 1 | ._phaser { 2 | @extend %simple; 3 | 4 | .type-signature, dt.tag-source { 5 | color: #666; 6 | font-weight: normal; 7 | } 8 | 9 | .deprecated-notice { @extend %note; } 10 | } 11 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_pug.scss: -------------------------------------------------------------------------------- 1 | ._pug { 2 | @extend %simple; 3 | 4 | .alert { @extend %note; } 5 | .alert-danger { @extend %note-orange; } 6 | .alert h6 { margin-top: .25rem; } 7 | 8 | h4 > code { @extend %label; } 9 | } 10 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_python.scss: -------------------------------------------------------------------------------- 1 | ._python { 2 | @extend %sphinx; 3 | 4 | h2 > a, h3 > a, dt[id] > a.external, dt[id] > a.internal { float: none !important; } 5 | } 6 | 7 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_qt.scss: -------------------------------------------------------------------------------- 1 | ._qt { 2 | @extend %simple; 3 | 4 | // Function headers 5 | h3.fn > code { 6 | float: right; 7 | color: var(--textColorLight); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_ramda.scss: -------------------------------------------------------------------------------- 1 | ._ramda { 2 | @extend %simple; 3 | 4 | code { @extend %code; } 5 | h3 > small { float: right; } 6 | ul { margin-top: 1em; } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_rethinkdb.scss: -------------------------------------------------------------------------------- 1 | ._rethinkdb { 2 | @extend %simple; 3 | 4 | .infobox-alert { @extend %note-orange; } 5 | 6 | .api_command_illustration { 7 | float: right; 8 | margin: 0 0 1em 1em; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_rubydoc.scss: -------------------------------------------------------------------------------- 1 | ._rubydoc { 2 | @extend %simple; 3 | 4 | p.note { @extend %note; } 5 | span.note { @extend %label; } 6 | span.note.private { @extend %label-red; } 7 | 8 | h4 + ul { margin-top: 1em; } 9 | } 10 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_sanctuary.scss: -------------------------------------------------------------------------------- 1 | ._sanctuary { 2 | @extend %simple; 3 | 4 | pre > code { 5 | font-size: inherit; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_sanctuary_def.scss: -------------------------------------------------------------------------------- 1 | ._sanctuary_def { 2 | @extend %simple; 3 | 4 | pre > code { 5 | font-size: inherit; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_sanctuary_type_classes.scss: -------------------------------------------------------------------------------- 1 | ._sanctuary_type_classes { 2 | @extend %simple; 3 | 4 | pre > code { 5 | font-size: inherit; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_sinon.scss: -------------------------------------------------------------------------------- 1 | ._sinon { 2 | @extend %simple; 3 | 4 | h4 { @extend %block-label;} 5 | } 6 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_tcl_tk.scss: -------------------------------------------------------------------------------- 1 | ._tcl_tk { 2 | @extend %simple; 3 | 4 | dl { margin: .5em 0; } 5 | } 6 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_tensorflow.scss: -------------------------------------------------------------------------------- 1 | ._tensorflow { 2 | @extend %simple; 3 | 4 | h4 { @extend %block-label; } 5 | h3 + h3 { margin-top: .25rem; } 6 | > .toc ul ul { margin: .25rem 0; } 7 | table { float: inherit } 8 | } 9 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_terraform.scss: -------------------------------------------------------------------------------- 1 | ._terraform { 2 | @extend %simple; 3 | .note, .alert { @extend %note; } 4 | } 5 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_typescript.scss: -------------------------------------------------------------------------------- 1 | ._typescript { 2 | @extend %simple; 3 | .deprecated { @extend %label-red; } 4 | } 5 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_vue.scss: -------------------------------------------------------------------------------- 1 | ._vue { 2 | @extend %simple; 3 | 4 | p.tip { @extend %note; } 5 | .custom-block { 6 | @extend %note; 7 | &.tip { @extend %note-green; } 8 | &.info { @extend %note-blue; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_webpack.scss: -------------------------------------------------------------------------------- 1 | ._webpack { 2 | @extend %simple; 3 | 4 | blockquote.tip { @extend %note-blue; } 5 | } 6 | -------------------------------------------------------------------------------- /assets/stylesheets/pages/_yii.scss: -------------------------------------------------------------------------------- 1 | ._yii { 2 | @extend %simple; 3 | 4 | .detail-header-tag, .detailHeaderTag { 5 | float: right; 6 | color: var(--textColorLight); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require 'bundler/setup' 2 | 3 | $LOAD_PATH.unshift 'lib' 4 | 5 | require 'app' 6 | 7 | map '/' do 8 | run App 9 | end 10 | 11 | if App.development? 12 | map '/assets' do 13 | run App.sprockets 14 | end 15 | end 16 | -------------------------------------------------------------------------------- /lib/docs/filters/dojo/clean_urls.rb: -------------------------------------------------------------------------------- 1 | module Docs 2 | class Dojo 3 | class CleanUrlsFilter < Filter 4 | def call 5 | html.remove! '?xhr=true' 6 | html 7 | end 8 | end 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /lib/docs/filters/fastapi/container.rb: -------------------------------------------------------------------------------- 1 | module Docs 2 | class Fastapi 3 | class ContainerFilter < Filter 4 | def call 5 | at_css '.md-content > .md-content__inner' 6 | end 7 | end 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /lib/docs/filters/julia/clean_html_sphinx.rb: -------------------------------------------------------------------------------- 1 | module Docs 2 | class Julia 3 | class CleanHtmlSphinxFilter < Filter 4 | def call 5 | @doc = at_css('.document .section') 6 | 7 | doc 8 | end 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /lib/docs/filters/tailwindcss/noop.rb: -------------------------------------------------------------------------------- 1 | module Docs 2 | class Tailwindcss 3 | class NoopFilter < Filter 4 | def call 5 | return html 6 | end 7 | end 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /lib/docs/filters/web_extensions/clean_html.rb: -------------------------------------------------------------------------------- 1 | module Docs 2 | class WebExtensions 3 | class CleanHtmlFilter < Filter 4 | def call 5 | doc 6 | end 7 | end 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /lib/docs/scrapers/sphinx.rb: -------------------------------------------------------------------------------- 1 | module Docs 2 | class Sphinx < Scraper 3 | self.abstract = true 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "devdocs", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": {} 6 | } 7 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/favicon.pxm -------------------------------------------------------------------------------- /public/favicon@2x.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/favicon@2x.pxm -------------------------------------------------------------------------------- /public/icons/docs/angular/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/angular/16.png -------------------------------------------------------------------------------- /public/icons/docs/angular/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/angular/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/angular/SOURCE: -------------------------------------------------------------------------------- 1 | https://angular.io/presskit.html 2 | -------------------------------------------------------------------------------- /public/icons/docs/angularjs/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/angularjs/16.png -------------------------------------------------------------------------------- /public/icons/docs/angularjs/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/angularjs/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/angularjs/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/angular/angular.js/tree/master/images/logo/AngularJS-Shield.exports 2 | -------------------------------------------------------------------------------- /public/icons/docs/ansible/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/ansible/16.png -------------------------------------------------------------------------------- /public/icons/docs/ansible/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/ansible/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/ansible/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.ansible.com/logos 2 | -------------------------------------------------------------------------------- /public/icons/docs/apache_http_server/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/apache_http_server/16.png -------------------------------------------------------------------------------- /public/icons/docs/apache_http_server/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/apache_http_server/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/apache_http_server/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/Kapeli/Dash-X-Platform-Resources/blob/master/docset_icons/apache%402x.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/apache_pig/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/apache_pig/16.png -------------------------------------------------------------------------------- /public/icons/docs/apache_pig/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/apache_pig/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/apache_pig/pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/apache_pig/pig.png -------------------------------------------------------------------------------- /public/icons/docs/astro/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/astro/16.png -------------------------------------------------------------------------------- /public/icons/docs/astro/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/astro/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/astro/SOURCE: -------------------------------------------------------------------------------- 1 | https://docs.astro.build/favicon.ico 2 | https://docs.astro.build/favicon.svg 3 | -------------------------------------------------------------------------------- /public/icons/docs/async/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/async/16.png -------------------------------------------------------------------------------- /public/icons/docs/async/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/async/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/async/SOURCE: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/caolan/async/master/logo/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/axios/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/axios/16.png -------------------------------------------------------------------------------- /public/icons/docs/axios/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/axios/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/axios/SOURCE: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/axios/axios-docs/master/assets/favicon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/babel/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/babel/16.png -------------------------------------------------------------------------------- /public/icons/docs/babel/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/babel/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/babel/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/babel/website/tree/master/website/static/img -------------------------------------------------------------------------------- /public/icons/docs/backbone/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/backbone/16.png -------------------------------------------------------------------------------- /public/icons/docs/backbone/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/backbone/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/backbone/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/jashkenas/backbone/blob/master/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/bash/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bash/16.png -------------------------------------------------------------------------------- /public/icons/docs/bash/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bash/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/bash/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/odb/official-bash-logo 2 | -------------------------------------------------------------------------------- /public/icons/docs/bazel/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bazel/16.png -------------------------------------------------------------------------------- /public/icons/docs/bazel/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bazel/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/bazel/SOURCE: -------------------------------------------------------------------------------- 1 | https://upload.wikimedia.org/wikipedia/en/7/7d/Bazel_logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/bluebird/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bluebird/16.png -------------------------------------------------------------------------------- /public/icons/docs/bluebird/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bluebird/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/bluebird/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/petkaantonov/bluebird/blob/master/docs/img/libbblog_v3.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/bootstrap/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bootstrap/16.png -------------------------------------------------------------------------------- /public/icons/docs/bootstrap/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bootstrap/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/bootstrap/SOURCE: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/twbs/bootstrap/gh-pages/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/bottle/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bottle/16.png -------------------------------------------------------------------------------- /public/icons/docs/bottle/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bottle/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/bottle/SOURCE: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/bottlepy/bottlepy.org/master/sphinx/static/logo_icon.png 2 | https://github.com/bottlepy/bottle/issues/886 3 | -------------------------------------------------------------------------------- /public/icons/docs/bower/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bower/16.png -------------------------------------------------------------------------------- /public/icons/docs/bower/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/bower/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/bower/SOURCE: -------------------------------------------------------------------------------- 1 | http://bower.io/docs/about/#logo 2 | -------------------------------------------------------------------------------- /public/icons/docs/c/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/c/16.png -------------------------------------------------------------------------------- /public/icons/docs/c/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/c/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/c/SOURCE: -------------------------------------------------------------------------------- 1 | http://dribbble.com/shots/799814-Standard-C-Logo 2 | with authorization from Jeremy Kratz 3 | -------------------------------------------------------------------------------- /public/icons/docs/cakephp/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/cakephp/16.png -------------------------------------------------------------------------------- /public/icons/docs/cakephp/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/cakephp/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/cakephp/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/cakephp/cakephp-api-docs/tree/2.x/static/assets/resources/favicons 2 | -------------------------------------------------------------------------------- /public/icons/docs/chai/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/chai/16.png -------------------------------------------------------------------------------- /public/icons/docs/chai/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/chai/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/chai/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.chaijs.com/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/chef/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/chef/16.png -------------------------------------------------------------------------------- /public/icons/docs/chef/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/chef/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/chef/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.chef.io/ -------------------------------------------------------------------------------- /public/icons/docs/click/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/click/16.png -------------------------------------------------------------------------------- /public/icons/docs/click/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/click/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/click/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/pallets/click/blob/main/docs/_static/click-icon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/clojure/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/clojure/16.png -------------------------------------------------------------------------------- /public/icons/docs/clojure/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/clojure/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/clojure/SOURCE: -------------------------------------------------------------------------------- 1 | https://en.wikipedia.org/wiki/File:Clojure_logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/cmake/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/cmake/16.png -------------------------------------------------------------------------------- /public/icons/docs/cmake/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/cmake/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/cmake/SOURCE: -------------------------------------------------------------------------------- 1 | https://gitlab.kitware.com/cmake/cmake/-/blob/v3.31.0/Source/QtDialog/CMakeSetup32.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/codeception/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/codeception/16.png -------------------------------------------------------------------------------- /public/icons/docs/codeception/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/codeception/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/codeception/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.openhub.net/p/codeception 2 | -------------------------------------------------------------------------------- /public/icons/docs/codeceptjs/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/codeceptjs/16.png -------------------------------------------------------------------------------- /public/icons/docs/codeceptjs/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/codeceptjs/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/codeceptjs/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/codeceptjs/website/blob/a4e7e9a8ebe56db7ed3783cb1f1d8d26a6c87b43/docs/.vuepress/public/logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/codeigniter/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/codeigniter/16.png -------------------------------------------------------------------------------- /public/icons/docs/codeigniter/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/codeigniter/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/codeigniter/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.codeigniter.com/data/ci-logo.zip 2 | -------------------------------------------------------------------------------- /public/icons/docs/coffeescript/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/coffeescript/16.png -------------------------------------------------------------------------------- /public/icons/docs/coffeescript/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/coffeescript/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/coffeescript/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/jashkenas/coffeescript/blob/master/docs/favicon-32x32.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/composer/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/composer/16.png -------------------------------------------------------------------------------- /public/icons/docs/composer/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/composer/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/composer/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/composer/getcomposer.org/blob/master/web/img/logo-composer-transparent.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/cordova/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/cordova/16.png -------------------------------------------------------------------------------- /public/icons/docs/cordova/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/cordova/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/cordova/SOURCE: -------------------------------------------------------------------------------- 1 | https://cordova.apache.org/artwork/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/cpp/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/cpp/16.png -------------------------------------------------------------------------------- /public/icons/docs/cpp/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/cpp/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/cpp/SOURCE: -------------------------------------------------------------------------------- 1 | http://dribbble.com/shots/799814-Standard-C-Logo 2 | with authorization from Jeremy Kratz 3 | -------------------------------------------------------------------------------- /public/icons/docs/crystal/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/crystal/16.png -------------------------------------------------------------------------------- /public/icons/docs/crystal/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/crystal/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/crystal/SOURCE: -------------------------------------------------------------------------------- 1 | https://crystal-lang.org/media/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/css/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/css/16.png -------------------------------------------------------------------------------- /public/icons/docs/css/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/css/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/css/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/CSS-Next/logo.css 2 | https://commons.wikimedia.org/wiki/File:Official_CSS_Logo.svg 3 | -------------------------------------------------------------------------------- /public/icons/docs/cypress/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/cypress/16.png -------------------------------------------------------------------------------- /public/icons/docs/cypress/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/cypress/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/cypress/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/cypress-io/cypress/tree/develop/assets 2 | -------------------------------------------------------------------------------- /public/icons/docs/d/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/d/16.png -------------------------------------------------------------------------------- /public/icons/docs/d/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/d/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/d/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/dlang/dlang.org/tree/master/images 2 | -------------------------------------------------------------------------------- /public/icons/docs/d3/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/d3/16.png -------------------------------------------------------------------------------- /public/icons/docs/d3/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/d3/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/d3/SOURCE: -------------------------------------------------------------------------------- 1 | http://d3js.org/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/dart/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dart/16.png -------------------------------------------------------------------------------- /public/icons/docs/dart/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dart/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/dart/SOURCE: -------------------------------------------------------------------------------- 1 | https://dart.dev/brand 2 | -------------------------------------------------------------------------------- /public/icons/docs/date_fns/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/date_fns/16.png -------------------------------------------------------------------------------- /public/icons/docs/date_fns/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/date_fns/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/date_fns/SOURCE: -------------------------------------------------------------------------------- 1 | https://date-fns.org/static/favicon-16x16.png 2 | https://date-fns.org/static/favicon-32x32.png 3 | -------------------------------------------------------------------------------- /public/icons/docs/deno/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/deno/16.png -------------------------------------------------------------------------------- /public/icons/docs/deno/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/deno/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/deno/SOURCE: -------------------------------------------------------------------------------- 1 | https://deno.land/logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/django/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/django/16.png -------------------------------------------------------------------------------- /public/icons/docs/django/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/django/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/django/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/django/djangoproject.com/blob/main/djangoproject/static/img/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/django_rest_framework/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/django_rest_framework/16.png -------------------------------------------------------------------------------- /public/icons/docs/django_rest_framework/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/django_rest_framework/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/django_rest_framework/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/encode/django-rest-framework/blob/master/docs_theme/img/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/docker/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/docker/16.png -------------------------------------------------------------------------------- /public/icons/docs/docker/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/docker/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/docker/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.docker.com/company/newsroom/media-resources/ 2 | https://www.docker.com/legal/trademark-guidelines/ 3 | -------------------------------------------------------------------------------- /public/icons/docs/dojo/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dojo/16.png -------------------------------------------------------------------------------- /public/icons/docs/dojo/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dojo/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/dom/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom/16.png -------------------------------------------------------------------------------- /public/icons/docs/dom/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/dom/DOM.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom/DOM.sketch/Data -------------------------------------------------------------------------------- /public/icons/docs/dom/DOM.sketch/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom/DOM.sketch/QuickLook/Preview.png -------------------------------------------------------------------------------- /public/icons/docs/dom/DOM.sketch/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom/DOM.sketch/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /public/icons/docs/dom/DOM.sketch/fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom/DOM.sketch/fonts -------------------------------------------------------------------------------- /public/icons/docs/dom/DOM.sketch/version: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /public/icons/docs/dom_events/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom_events/16.png -------------------------------------------------------------------------------- /public/icons/docs/dom_events/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom_events/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/dom_events/DOM_events.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom_events/DOM_events.sketch/Data -------------------------------------------------------------------------------- /public/icons/docs/dom_events/DOM_events.sketch/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom_events/DOM_events.sketch/QuickLook/Preview.png -------------------------------------------------------------------------------- /public/icons/docs/dom_events/DOM_events.sketch/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom_events/DOM_events.sketch/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /public/icons/docs/dom_events/DOM_events.sketch/fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/dom_events/DOM_events.sketch/fonts -------------------------------------------------------------------------------- /public/icons/docs/dom_events/DOM_events.sketch/version: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /public/icons/docs/drupal/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/drupal/16.png -------------------------------------------------------------------------------- /public/icons/docs/drupal/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/drupal/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/drupal/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.drupal.org/node/9068 2 | -------------------------------------------------------------------------------- /public/icons/docs/duckdb/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/duckdb/16.png -------------------------------------------------------------------------------- /public/icons/docs/duckdb/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/duckdb/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/duckdb/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/duckdb/duckdb/tree/main/logo -------------------------------------------------------------------------------- /public/icons/docs/eigen3/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/eigen3/16.png -------------------------------------------------------------------------------- /public/icons/docs/eigen3/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/eigen3/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/eigen3/SOURCE: -------------------------------------------------------------------------------- 1 | https://gitlab.com/libeigen/eigen/-/blob/master/doc/Eigen_Silly_Professor_64x64.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/electron/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/electron/16.png -------------------------------------------------------------------------------- /public/icons/docs/electron/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/electron/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/electron/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/electron/electron.atom.io/tree/gh-pages/images 2 | -------------------------------------------------------------------------------- /public/icons/docs/elisp/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/elisp/16.png -------------------------------------------------------------------------------- /public/icons/docs/elisp/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/elisp/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/elisp/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.gnu.org/software/emacs/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/elixir/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/elixir/16.png -------------------------------------------------------------------------------- /public/icons/docs/elixir/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/elixir/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/elixir/SOURCE: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/elixir-lang/elixir-lang.github.com/main/images/logo/logo-dark.png#gh-dark-mode-only 2 | https://elixir-lang.org/images/logo/logo.png 3 | -------------------------------------------------------------------------------- /public/icons/docs/ember/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/ember/16.png -------------------------------------------------------------------------------- /public/icons/docs/ember/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/ember/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/ember/SOURCE: -------------------------------------------------------------------------------- 1 | https://emberjs.com/logos/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/erlang/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/erlang/16.png -------------------------------------------------------------------------------- /public/icons/docs/erlang/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/erlang/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/erlang/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/Kapeli/Dash-X-Platform-Resources -------------------------------------------------------------------------------- /public/icons/docs/es_toolkit/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/es_toolkit/16.png -------------------------------------------------------------------------------- /public/icons/docs/es_toolkit/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/es_toolkit/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/es_toolkit/SOURCE: -------------------------------------------------------------------------------- 1 | https://es-toolkit.slash.page/favicon-100x100.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/esbuild/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/esbuild/16.png -------------------------------------------------------------------------------- /public/icons/docs/esbuild/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/esbuild/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/esbuild/SOURCE: -------------------------------------------------------------------------------- 1 | https://esbuild.github.io/favicon.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/eslint/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/eslint/16.png -------------------------------------------------------------------------------- /public/icons/docs/eslint/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/eslint/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/eslint/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/eslint/website/blob/master/assets/img/favicon.512x512.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/express/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/express/16.png -------------------------------------------------------------------------------- /public/icons/docs/express/16.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/express/16.pxm -------------------------------------------------------------------------------- /public/icons/docs/express/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/express/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/express/16@2x.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/express/16@2x.pxm -------------------------------------------------------------------------------- /public/icons/docs/falcon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/falcon/16.png -------------------------------------------------------------------------------- /public/icons/docs/falcon/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/falcon/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/falcon/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/falconry/falcon/tree/master/logo 2 | -------------------------------------------------------------------------------- /public/icons/docs/fastapi/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/fastapi/16.png -------------------------------------------------------------------------------- /public/icons/docs/fastapi/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/fastapi/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/fastapi/SOURCE: -------------------------------------------------------------------------------- 1 | https://fastapi.tiangolo.com/img/favicon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/fish/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/fish/16.png -------------------------------------------------------------------------------- /public/icons/docs/fish/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/fish/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/fish/SOURCE: -------------------------------------------------------------------------------- 1 | https://fishshell.com/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/flask/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/flask/16.png -------------------------------------------------------------------------------- /public/icons/docs/flask/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/flask/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/flask/SOURCE: -------------------------------------------------------------------------------- 1 | https://flask.palletsprojects.com/en/2.3.x/_static/shortcut-icon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/flow/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/flow/16.png -------------------------------------------------------------------------------- /public/icons/docs/flow/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/flow/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/flow/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/facebook/flow/blob/master/website/favicon.svg 2 | https://github.com/facebook/flow/blob/master/website/static/favicon.png 3 | -------------------------------------------------------------------------------- /public/icons/docs/fluture/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/fluture/16.png -------------------------------------------------------------------------------- /public/icons/docs/fluture/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/fluture/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/fluture/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/fluture-js/Fluture/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/gcc/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gcc/16.png -------------------------------------------------------------------------------- /public/icons/docs/gcc/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gcc/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/gcc/GCC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gcc/GCC.png -------------------------------------------------------------------------------- /public/icons/docs/git/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/git/16.png -------------------------------------------------------------------------------- /public/icons/docs/git/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/git/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/git/SOURCE: -------------------------------------------------------------------------------- 1 | http://git-scm.com/downloads/logos 2 | -------------------------------------------------------------------------------- /public/icons/docs/gnu_cobol/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gnu_cobol/16.png -------------------------------------------------------------------------------- /public/icons/docs/gnu_cobol/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gnu_cobol/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/gnu_cobol/SOURCE: -------------------------------------------------------------------------------- 1 | https://gnucobol.sourceforge.io/images/shire_200.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/gnu_fortran/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gnu_fortran/16.png -------------------------------------------------------------------------------- /public/icons/docs/gnu_fortran/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gnu_fortran/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/gnu_fortran/SOURCE: -------------------------------------------------------------------------------- 1 | https://commons.wikimedia.org/wiki/File:Fortran.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/gnu_fortran/fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gnu_fortran/fortran.png -------------------------------------------------------------------------------- /public/icons/docs/gnu_make/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gnu_make/16.png -------------------------------------------------------------------------------- /public/icons/docs/gnu_make/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gnu_make/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/gnu_make/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.gnu.org/graphics/heckert_gnu.png -------------------------------------------------------------------------------- /public/icons/docs/gnuplot/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gnuplot/16.png -------------------------------------------------------------------------------- /public/icons/docs/gnuplot/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gnuplot/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/gnuplot/SOURCE: -------------------------------------------------------------------------------- 1 | https://sourceforge.net/p/gnuplot/gnuplot-main/ci/master/tree/demo/html/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/go/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/go/16.png -------------------------------------------------------------------------------- /public/icons/docs/go/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/go/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/go/SOURCE: -------------------------------------------------------------------------------- 1 | http://golang.org/doc/gopher/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/godot/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/godot/16.png -------------------------------------------------------------------------------- /public/icons/docs/godot/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/godot/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/godot/SOURCE: -------------------------------------------------------------------------------- 1 | https://godotengine.org/themes/godotengine/assets/favicon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/groovy/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/groovy/16.png -------------------------------------------------------------------------------- /public/icons/docs/groovy/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/groovy/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/groovy/SOURCE: -------------------------------------------------------------------------------- 1 | https://docs.groovy-lang.org/latest/html/gapi/groovy.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/grunt/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/grunt/16.png -------------------------------------------------------------------------------- /public/icons/docs/grunt/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/grunt/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/grunt/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/gruntjs/gruntjs.com/tree/master/src/img 2 | -------------------------------------------------------------------------------- /public/icons/docs/gtk/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gtk/16.png -------------------------------------------------------------------------------- /public/icons/docs/gtk/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/gtk/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/gtk/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.gtk.org/assets/img/logo-gtk-sm.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/hammerspoon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/hammerspoon/16.png -------------------------------------------------------------------------------- /public/icons/docs/hammerspoon/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/hammerspoon/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/hammerspoon/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.hammerspoon.org/images/hammerspoon.ico -------------------------------------------------------------------------------- /public/icons/docs/handlebars/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/handlebars/16.png -------------------------------------------------------------------------------- /public/icons/docs/handlebars/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/handlebars/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/handlebars/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/yahoo/formatjs-site/tree/master/public/img 2 | -------------------------------------------------------------------------------- /public/icons/docs/hapi/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/hapi/16.png -------------------------------------------------------------------------------- /public/icons/docs/hapi/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/hapi/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/hapi/SOURCE: -------------------------------------------------------------------------------- 1 | https://hapi.dev/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/haproxy/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/haproxy/16.png -------------------------------------------------------------------------------- /public/icons/docs/haproxy/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/haproxy/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/haproxy/SOURCE: -------------------------------------------------------------------------------- 1 | http://www.haproxy.org/img/HAProxyCommunityEdition_60px.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/haskell/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/haskell/16.png -------------------------------------------------------------------------------- /public/icons/docs/haskell/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/haskell/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/haskell/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.haskell.org/img/favicon.ico 2 | http://www.haskell.org/haskellwiki/Thompson-Wheeler_logo 3 | -------------------------------------------------------------------------------- /public/icons/docs/haxe/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/haxe/16.png -------------------------------------------------------------------------------- /public/icons/docs/haxe/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/haxe/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/haxe/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/HaxeFoundation/haxe.org/tree/master/www/img 2 | -------------------------------------------------------------------------------- /public/icons/docs/homebrew/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/homebrew/16.png -------------------------------------------------------------------------------- /public/icons/docs/homebrew/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/homebrew/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/homebrew/SOURCE: -------------------------------------------------------------------------------- 1 | https://docs.brew.sh/assets/img/apple-touch-icon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/html/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/html/16.png -------------------------------------------------------------------------------- /public/icons/docs/html/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/html/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/html/HTML5.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/html/HTML5.sketch/Data -------------------------------------------------------------------------------- /public/icons/docs/html/HTML5.sketch/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/html/HTML5.sketch/QuickLook/Preview.png -------------------------------------------------------------------------------- /public/icons/docs/html/HTML5.sketch/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/html/HTML5.sketch/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /public/icons/docs/html/HTML5.sketch/fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/html/HTML5.sketch/fonts -------------------------------------------------------------------------------- /public/icons/docs/html/HTML5.sketch/version: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /public/icons/docs/html/SOURCE: -------------------------------------------------------------------------------- 1 | http://www.w3.org/html/logo/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/htmx/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/htmx/16.png -------------------------------------------------------------------------------- /public/icons/docs/htmx/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/htmx/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/htmx/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/bigskysoftware/htmx/blob/v1.9.10/www/static/img/htmx_logo.2.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/http/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/http/16.png -------------------------------------------------------------------------------- /public/icons/docs/http/16.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/http/16.pxm -------------------------------------------------------------------------------- /public/icons/docs/http/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/http/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/http/16@2x.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/http/16@2x.pxm -------------------------------------------------------------------------------- /public/icons/docs/http/SOURCE: -------------------------------------------------------------------------------- 1 | http://www.entypo.com/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/i3/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/i3/16.png -------------------------------------------------------------------------------- /public/icons/docs/i3/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/i3/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/i3/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/i3/i3.github.io/blob/master/logo.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/immutable/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/immutable/16.png -------------------------------------------------------------------------------- /public/icons/docs/immutable/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/immutable/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/immutable/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/immutable-js/immutable-js/blob/main/website/public/favicon.png -------------------------------------------------------------------------------- /public/icons/docs/influxdata/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/influxdata/16.png -------------------------------------------------------------------------------- /public/icons/docs/influxdata/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/influxdata/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/jasmine/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jasmine/16.png -------------------------------------------------------------------------------- /public/icons/docs/jasmine/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jasmine/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/jasmine/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/jasmine/jasmine/blob/main/images/jasmine_favicon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/javascript/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/javascript/16.png -------------------------------------------------------------------------------- /public/icons/docs/javascript/16.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/javascript/16.pxm -------------------------------------------------------------------------------- /public/icons/docs/javascript/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/javascript/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/javascript/16@2x.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/javascript/16@2x.pxm -------------------------------------------------------------------------------- /public/icons/docs/javascript/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/voodootikigod/logo.js 2 | -------------------------------------------------------------------------------- /public/icons/docs/jekyll/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jekyll/16.png -------------------------------------------------------------------------------- /public/icons/docs/jekyll/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jekyll/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/jekyll/SOURCE: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/jekyll/jekyll/master/docs/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/jest/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jest/16.png -------------------------------------------------------------------------------- /public/icons/docs/jest/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jest/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/jest/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/facebook/jest/tree/main/website/static/img 2 | -------------------------------------------------------------------------------- /public/icons/docs/jinja/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jinja/16.png -------------------------------------------------------------------------------- /public/icons/docs/jinja/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jinja/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/jinja/SOURCE: -------------------------------------------------------------------------------- 1 | https://jinja.palletsprojects.com/en/2.11.x/_static/jinja-logo-sidebar.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/joi/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/joi/16.png -------------------------------------------------------------------------------- /public/icons/docs/joi/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/joi/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/joi/SOURCE: -------------------------------------------------------------------------------- 1 | https://joi.dev/img/joiTransparent.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/jq/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jq/16.png -------------------------------------------------------------------------------- /public/icons/docs/jq/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jq/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/jq/SOURCE: -------------------------------------------------------------------------------- 1 | https://stedolan.github.io/jq/jq.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/jquery/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jquery/16.png -------------------------------------------------------------------------------- /public/icons/docs/jquery/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jquery/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/jquery/SOURCE: -------------------------------------------------------------------------------- 1 | http://brand.jquery.org/logos/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/jquerymobile/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jquerymobile/16.png -------------------------------------------------------------------------------- /public/icons/docs/jquerymobile/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jquerymobile/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/jquerymobile/SOURCE: -------------------------------------------------------------------------------- 1 | http://brand.jquery.org/logos/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/jqueryui/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jqueryui/16.png -------------------------------------------------------------------------------- /public/icons/docs/jqueryui/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/jqueryui/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/jqueryui/SOURCE: -------------------------------------------------------------------------------- 1 | http://brand.jquery.org/logos/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/julia/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/julia/16.png -------------------------------------------------------------------------------- /public/icons/docs/julia/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/julia/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/julia/SOURCE: -------------------------------------------------------------------------------- 1 | https://docs.julialang.org/en/v1/assets/logo-dark.svg -------------------------------------------------------------------------------- /public/icons/docs/knockout/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/knockout/16.png -------------------------------------------------------------------------------- /public/icons/docs/knockout/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/knockout/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/knockout/16@2x.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/knockout/16@2x.pxm -------------------------------------------------------------------------------- /public/icons/docs/knockout/SOURCE: -------------------------------------------------------------------------------- 1 | http://learn.knockoutjs.com/ 2 | http://learn.knockoutjs.com/Content/App/icon.png -------------------------------------------------------------------------------- /public/icons/docs/kotlin/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/kotlin/16.png -------------------------------------------------------------------------------- /public/icons/docs/kotlin/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/kotlin/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/kotlin/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/JetBrains/kotlin-web-site/blob/master/assets/images/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/kubectl/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/kubectl/16.png -------------------------------------------------------------------------------- /public/icons/docs/kubectl/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/kubectl/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/kubectl/SOURCE: -------------------------------------------------------------------------------- 1 | https://cncf-branding.netlify.app/projects/kubernetes/ -------------------------------------------------------------------------------- /public/icons/docs/kubernetes/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/kubernetes/16.png -------------------------------------------------------------------------------- /public/icons/docs/kubernetes/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/kubernetes/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/kubernetes/SOURCE: -------------------------------------------------------------------------------- 1 | https://cncf-branding.netlify.app/projects/kubernetes/ -------------------------------------------------------------------------------- /public/icons/docs/laravel/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/laravel/16.png -------------------------------------------------------------------------------- /public/icons/docs/laravel/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/laravel/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/laravel/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/laravel/art 2 | -------------------------------------------------------------------------------- /public/icons/docs/latex/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/latex/16.png -------------------------------------------------------------------------------- /public/icons/docs/latex/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/latex/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/latex/SOURCE: -------------------------------------------------------------------------------- 1 | Compiling \LaTeX with pdflatex https://www.tug.org/applications/pdftex/ 2 | https://www.latex-project.org/img/latex-project-logo.svg 3 | https://www.latex-project.org/get/ -------------------------------------------------------------------------------- /public/icons/docs/leaflet/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/leaflet/16.png -------------------------------------------------------------------------------- /public/icons/docs/leaflet/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/leaflet/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/leaflet/SOURCE: -------------------------------------------------------------------------------- 1 | https://leafletjs.com/docs/images/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/less/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/less/16.png -------------------------------------------------------------------------------- /public/icons/docs/less/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/less/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/less/less.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/less/less.pxm -------------------------------------------------------------------------------- /public/icons/docs/liquid/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/liquid/16.png -------------------------------------------------------------------------------- /public/icons/docs/liquid/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/liquid/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/lodash/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/lodash/16.png -------------------------------------------------------------------------------- /public/icons/docs/lodash/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/lodash/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/lodash/SOURCE: -------------------------------------------------------------------------------- 1 | http://lodash.com/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/love/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/love/16.png -------------------------------------------------------------------------------- /public/icons/docs/love/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/love/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/love/SOURCE: -------------------------------------------------------------------------------- 1 | https://love2d.org/wiki/L%C3%B6ve_Logo_Graphics -------------------------------------------------------------------------------- /public/icons/docs/lua/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/lua/16.png -------------------------------------------------------------------------------- /public/icons/docs/lua/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/lua/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/lua/SOURCE: -------------------------------------------------------------------------------- 1 | http://lua-users.org/wiki/LuaLogo 2 | -------------------------------------------------------------------------------- /public/icons/docs/man/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/man/16.png -------------------------------------------------------------------------------- /public/icons/docs/man/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/man/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/man/SOURCE: -------------------------------------------------------------------------------- 1 | https://mirrors.edge.kernel.org/images/favicon.ico 2 | https://commons.wikimedia.org/wiki/File:Tux.svg CC0 3 | -------------------------------------------------------------------------------- /public/icons/docs/mariadb/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/mariadb/16.png -------------------------------------------------------------------------------- /public/icons/docs/mariadb/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/mariadb/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/mariadb/SOURCE: -------------------------------------------------------------------------------- 1 | https://mariadb.org/about/logos/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/marionette/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/marionette/16.png -------------------------------------------------------------------------------- /public/icons/docs/marionette/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/marionette/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/marionette/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/marionettejs/marionettejs.com/blob/master/src/logo/logo.svg 2 | https://github.com/marionettejs/marionettejs.com -------------------------------------------------------------------------------- /public/icons/docs/markdown/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/markdown/16.png -------------------------------------------------------------------------------- /public/icons/docs/markdown/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/markdown/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/markdown/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/dcurtis/markdown-mark 2 | -------------------------------------------------------------------------------- /public/icons/docs/matplotlib/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/matplotlib/16.png -------------------------------------------------------------------------------- /public/icons/docs/matplotlib/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/matplotlib/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/matplotlib/SOURCE: -------------------------------------------------------------------------------- 1 | https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Matplotlib_icon.svg/1024px-Matplotlib_icon.svg.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/meteor/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/meteor/16.png -------------------------------------------------------------------------------- /public/icons/docs/meteor/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/meteor/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/meteor/SOURCE: -------------------------------------------------------------------------------- 1 | https://assets.website-files.com/5dd3f8176674eb0829f184d5/5dd41eb9049df81f8773946e_meteor-logo.svg 2 | https://www.meteor.com/ -------------------------------------------------------------------------------- /public/icons/docs/mocha/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/mocha/16.png -------------------------------------------------------------------------------- /public/icons/docs/mocha/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/mocha/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/mocha/SOURCE: -------------------------------------------------------------------------------- 1 | https://mochajs.org/ 2 | https://github.com/mochajs/mocha/tree/master/assets -------------------------------------------------------------------------------- /public/icons/docs/modernizr/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/modernizr/16.png -------------------------------------------------------------------------------- /public/icons/docs/modernizr/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/modernizr/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/modernizr/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/Modernizr/Modernizr/tree/master/media 2 | -------------------------------------------------------------------------------- /public/icons/docs/moment/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/moment/16.png -------------------------------------------------------------------------------- /public/icons/docs/moment/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/moment/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/moment/moment.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/moment/moment.sketch/Data -------------------------------------------------------------------------------- /public/icons/docs/moment/moment.sketch/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/moment/moment.sketch/QuickLook/Preview.png -------------------------------------------------------------------------------- /public/icons/docs/moment/moment.sketch/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/moment/moment.sketch/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /public/icons/docs/moment/moment.sketch/fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/moment/moment.sketch/fonts -------------------------------------------------------------------------------- /public/icons/docs/moment/moment.sketch/version: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /public/icons/docs/moment_timezone/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/moment_timezone/16.png -------------------------------------------------------------------------------- /public/icons/docs/moment_timezone/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/moment_timezone/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/moment_timezone/SOURCE: -------------------------------------------------------------------------------- 1 | https://momentjs.com/static/img/moment-timezone-favicon.png -------------------------------------------------------------------------------- /public/icons/docs/mongoose/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/mongoose/16.png -------------------------------------------------------------------------------- /public/icons/docs/mongoose/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/mongoose/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/nextjs/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nextjs/16.png -------------------------------------------------------------------------------- /public/icons/docs/nextjs/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nextjs/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/nextjs/SOURCE: -------------------------------------------------------------------------------- 1 | https://assets.vercel.com/image/upload/v1662130559/nextjs/Icon_dark_background.png 2 | https://github.com/vercel/next.js/blob/canary/examples/cms-enterspeed/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/icons/docs/nginx/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nginx/16.png -------------------------------------------------------------------------------- /public/icons/docs/nginx/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nginx/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/nginx/SOURCE: -------------------------------------------------------------------------------- 1 | http://nginx.org/nginx.png 2 | http://nginx.org/ -------------------------------------------------------------------------------- /public/icons/docs/nim/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nim/16.png -------------------------------------------------------------------------------- /public/icons/docs/nim/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nim/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/nim/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/nim-lang/website/tree/master/jekyll/assets/img -------------------------------------------------------------------------------- /public/icons/docs/nix/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nix/16.png -------------------------------------------------------------------------------- /public/icons/docs/nix/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nix/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/nix/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/NixOS/nixos-homepage/blob/master/logo/nixos-logo-only-hires.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/node/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/node/16.png -------------------------------------------------------------------------------- /public/icons/docs/node/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/node/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/node/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/nodejs/nodejs.org/blob/main/static/images/logo-hexagon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/nokogiri/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nokogiri/16.png -------------------------------------------------------------------------------- /public/icons/docs/nokogiri/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nokogiri/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/nokogiri/icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nokogiri/icon.pxm -------------------------------------------------------------------------------- /public/icons/docs/npm/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/npm/16.png -------------------------------------------------------------------------------- /public/icons/docs/npm/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/npm/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/npm/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.npmjs.com/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/numpy/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/numpy/16.png -------------------------------------------------------------------------------- /public/icons/docs/numpy/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/numpy/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/numpy/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/numpy/numpy/tree/main/doc/source/_static/favicon 2 | -------------------------------------------------------------------------------- /public/icons/docs/nushell/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nushell/16.png -------------------------------------------------------------------------------- /public/icons/docs/nushell/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/nushell/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/nushell/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.nushell.sh/icon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/ocaml/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/ocaml/16.png -------------------------------------------------------------------------------- /public/icons/docs/ocaml/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/ocaml/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/ocaml/SOURCE: -------------------------------------------------------------------------------- 1 | https://ocaml.org/docs/logos.html 2 | https://github.com/ocaml/ocaml-logo/tree/master/Colour/Favicon 3 | -------------------------------------------------------------------------------- /public/icons/docs/octave/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/octave/16.png -------------------------------------------------------------------------------- /public/icons/docs/octave/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/octave/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/octave/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.gnu.org/software/octave/img/octave-logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/opengl/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/opengl/16.png -------------------------------------------------------------------------------- /public/icons/docs/opengl/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/opengl/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/opengl/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.khronos.org/legal/trademarks/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/openjdk/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/openjdk/16.png -------------------------------------------------------------------------------- /public/icons/docs/openjdk/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/openjdk/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/openlayers/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/openlayers/16.png -------------------------------------------------------------------------------- /public/icons/docs/openlayers/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/openlayers/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/openlayers/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/openlayers 2 | https://avatars.githubusercontent.com/u/240579?s=64 3 | -------------------------------------------------------------------------------- /public/icons/docs/opentsdb/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/opentsdb/16.png -------------------------------------------------------------------------------- /public/icons/docs/opentsdb/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/opentsdb/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/padrino/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/padrino/16.png -------------------------------------------------------------------------------- /public/icons/docs/padrino/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/padrino/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/padrino/SOURCE: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/padrino/padrino-web/master/source/images/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/pandas/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/pandas/16.png -------------------------------------------------------------------------------- /public/icons/docs/pandas/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/pandas/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/pandas/SOURCE: -------------------------------------------------------------------------------- 1 | https://commons.wikimedia.org/wiki/File:Pandas_mark.svg -------------------------------------------------------------------------------- /public/icons/docs/perl/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/perl/16.png -------------------------------------------------------------------------------- /public/icons/docs/perl/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/perl/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/perl/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.perlfoundation.org/trademarks.html -------------------------------------------------------------------------------- /public/icons/docs/phalcon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/phalcon/16.png -------------------------------------------------------------------------------- /public/icons/docs/phalcon/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/phalcon/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/phalcon/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/phalcon/website/tree/master/public/images/icons -------------------------------------------------------------------------------- /public/icons/docs/phaser/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/phaser/16.png -------------------------------------------------------------------------------- /public/icons/docs/phaser/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/phaser/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/phaser/SOURCE: -------------------------------------------------------------------------------- 1 | https://phaser.io/images/img.png 2 | https://phaser.io/ -------------------------------------------------------------------------------- /public/icons/docs/phoenix/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/phoenix/16.png -------------------------------------------------------------------------------- /public/icons/docs/phoenix/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/phoenix/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/phoenix/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/phoenixframework/phoenix/blob/master/logo.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/php/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/php/16.png -------------------------------------------------------------------------------- /public/icons/docs/php/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/php/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/php/16@2x.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/php/16@2x.pxm -------------------------------------------------------------------------------- /public/icons/docs/php/SOURCE: -------------------------------------------------------------------------------- 1 | http://php.net/download-logos.php 2 | -------------------------------------------------------------------------------- /public/icons/docs/phpunit/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/phpunit/16.png -------------------------------------------------------------------------------- /public/icons/docs/phpunit/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/phpunit/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/phpunit/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/Kapeli/Dash-X-Platform-Resources/blob/master/docset_icons/phpunit%402x.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/playwright/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/playwright/16.png -------------------------------------------------------------------------------- /public/icons/docs/playwright/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/playwright/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/playwright/SOURCE: -------------------------------------------------------------------------------- 1 | https://playwright.dev/img/playwright-logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/point_cloud_library/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/point_cloud_library/16.png -------------------------------------------------------------------------------- /public/icons/docs/point_cloud_library/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/point_cloud_library/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/point_cloud_library/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/PointCloudLibrary/pcl/blob/master/pcl.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/pony/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/pony/16.png -------------------------------------------------------------------------------- /public/icons/docs/pony/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/pony/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/pony/SOURCE: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/ponylang/ponylang-website/master/static/images/logo.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/postgresql/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/postgresql/16.png -------------------------------------------------------------------------------- /public/icons/docs/postgresql/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/postgresql/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/postgresql/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.postgresql.org/about/press/presskit93/#logos 2 | -------------------------------------------------------------------------------- /public/icons/docs/prettier/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/prettier/16.png -------------------------------------------------------------------------------- /public/icons/docs/prettier/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/prettier/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/prettier/SOURCE: -------------------------------------------------------------------------------- 1 | https://prettier.io/icon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/pug/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/pug/16.png -------------------------------------------------------------------------------- /public/icons/docs/pug/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/pug/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/pug/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/pugjs/pug-www/blob/master/htdocs/images/logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/puppeteer/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/puppeteer/16.png -------------------------------------------------------------------------------- /public/icons/docs/puppeteer/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/puppeteer/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/puppeteer/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/GoogleChromeLabs/pptr.dev/tree/master/src/favicons 2 | -------------------------------------------------------------------------------- /public/icons/docs/pygame/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/pygame/16.png -------------------------------------------------------------------------------- /public/icons/docs/pygame/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/pygame/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/pygame/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.pygame.org/news/2020/10/pygame-20th-birthday -------------------------------------------------------------------------------- /public/icons/docs/python/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/python/16.png -------------------------------------------------------------------------------- /public/icons/docs/python/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/python/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/python/SOURCE: -------------------------------------------------------------------------------- 1 | http://www.python.org/community/logos/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/pytorch/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/pytorch/16.png -------------------------------------------------------------------------------- /public/icons/docs/pytorch/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/pytorch/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/pytorch/SOURCE: -------------------------------------------------------------------------------- 1 | https://pytorch.org/favicon.ico -------------------------------------------------------------------------------- /public/icons/docs/q/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/q/16.png -------------------------------------------------------------------------------- /public/icons/docs/q/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/q/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/q/SOURCE: -------------------------------------------------------------------------------- 1 | http://kriskowal.github.io/q/q.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/qt/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/qt/16.png -------------------------------------------------------------------------------- /public/icons/docs/qt/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/qt/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/qt/SOURCE: -------------------------------------------------------------------------------- 1 | https://commons.wikimedia.org/wiki/File:Qt_logo_2016.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/qunit/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/qunit/16.png -------------------------------------------------------------------------------- /public/icons/docs/qunit/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/qunit/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/qunit/SOURCE: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/qunitjs/qunitjs.com/main/img/logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/r/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/r/16.png -------------------------------------------------------------------------------- /public/icons/docs/r/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/r/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/r/SOURCE: -------------------------------------------------------------------------------- 1 | https://svn.r-project.org/R/trunk/doc/html/Rlogo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/rails/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/rails/16.png -------------------------------------------------------------------------------- /public/icons/docs/rails/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/rails/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/rails/SOURCE: -------------------------------------------------------------------------------- 1 | http://commons.wikimedia.org/wiki/File:Ruby_logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/rails/rails.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/rails/rails.pxm -------------------------------------------------------------------------------- /public/icons/docs/ramda/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/ramda/16.png -------------------------------------------------------------------------------- /public/icons/docs/ramda/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/ramda/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/ramda/SOURCE: -------------------------------------------------------------------------------- 1 | http://ramda.jcphillipps.com/logo/ramdaFilled_200x235.png -------------------------------------------------------------------------------- /public/icons/docs/react/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/react/16.png -------------------------------------------------------------------------------- /public/icons/docs/react/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/react/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/react/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/reactjs/react.dev/blob/master/public/favicon-16x16.png 2 | https://github.com/reactjs/react.dev/blob/master/public/favicon-32x32.png 3 | -------------------------------------------------------------------------------- /public/icons/docs/react_bootstrap/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/react_bootstrap/16.png -------------------------------------------------------------------------------- /public/icons/docs/react_bootstrap/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/react_bootstrap/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/react_bootstrap/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/react-bootstrap/react-bootstrap/blob/master/www/static/logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/react_native/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/react_native/16.png -------------------------------------------------------------------------------- /public/icons/docs/react_native/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/react_native/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/react_native/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/facebook/react-native-website/blob/main/website/static/docs/assets/favicon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/react_router/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/react_router/16.png -------------------------------------------------------------------------------- /public/icons/docs/react_router/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/react_router/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/react_router/SOURCE: -------------------------------------------------------------------------------- 1 | https://reactrouterdotcom.fly.dev/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/reactivex/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/reactivex/16.png -------------------------------------------------------------------------------- /public/icons/docs/reactivex/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/reactivex/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/reactivex/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/ReactiveX/reactivex.github.io/blob/develop/assets/Rx_Icon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/redis/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/redis/16.png -------------------------------------------------------------------------------- /public/icons/docs/redis/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/redis/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/redis/SOURCE: -------------------------------------------------------------------------------- 1 | http://redis.io/documentation 2 | -------------------------------------------------------------------------------- /public/icons/docs/redux/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/redux/16.png -------------------------------------------------------------------------------- /public/icons/docs/redux/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/redux/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/redux/SOURCE: -------------------------------------------------------------------------------- 1 | https://redux.js.org/img/redux.svg -------------------------------------------------------------------------------- /public/icons/docs/relay/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/relay/16.png -------------------------------------------------------------------------------- /public/icons/docs/relay/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/relay/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/requests/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/requests/16.png -------------------------------------------------------------------------------- /public/icons/docs/requests/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/requests/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/requests/SOURCE: -------------------------------------------------------------------------------- 1 | https://requests.readthedocs.io/en/latest/_static/requests-sidebar.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/requirejs/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/requirejs/16.png -------------------------------------------------------------------------------- /public/icons/docs/requirejs/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/requirejs/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/requirejs/SOURCE: -------------------------------------------------------------------------------- 1 | http://requirejs.org/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/rethinkdb/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/rethinkdb/16.png -------------------------------------------------------------------------------- /public/icons/docs/rethinkdb/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/rethinkdb/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/rethinkdb/SOURCE: -------------------------------------------------------------------------------- 1 | http://rethinkdb.com/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/ruby/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/ruby/16.png -------------------------------------------------------------------------------- /public/icons/docs/ruby/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/ruby/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/ruby/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.ruby-lang.org/en/about/logo/ 2 | https://commons.wikimedia.org/wiki/File:Ruby_logo.svg 3 | -------------------------------------------------------------------------------- /public/icons/docs/rust/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/rust/16.png -------------------------------------------------------------------------------- /public/icons/docs/rust/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/rust/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/rust/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/rust-lang/rust-www/tree/8347e870e3b09824ef9137fa9146ef7d21fec3d6/logos 2 | -------------------------------------------------------------------------------- /public/icons/docs/rxjs/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/rxjs/16.png -------------------------------------------------------------------------------- /public/icons/docs/rxjs/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/rxjs/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/rxjs/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/ReactiveX/reactivex.github.io/blob/develop/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/saltstack/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/saltstack/16.png -------------------------------------------------------------------------------- /public/icons/docs/saltstack/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/saltstack/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/saltstack/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/saltstack/salt/blob/develop/doc/_static/salt-logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/sanctuary/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sanctuary/16.png -------------------------------------------------------------------------------- /public/icons/docs/sanctuary/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sanctuary/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/sanctuary/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/sanctuary-js/sanctuary-logo/tree/v1.1.0 2 | -------------------------------------------------------------------------------- /public/icons/docs/sanctuary_def/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sanctuary_def/16.png -------------------------------------------------------------------------------- /public/icons/docs/sanctuary_def/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sanctuary_def/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/sanctuary_def/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/sanctuary-js/sanctuary-logo/tree/v1.1.0 2 | -------------------------------------------------------------------------------- /public/icons/docs/sanctuary_type_classes/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sanctuary_type_classes/16.png -------------------------------------------------------------------------------- /public/icons/docs/sanctuary_type_classes/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sanctuary_type_classes/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/sanctuary_type_classes/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/sanctuary-js/sanctuary-logo/tree/v1.1.0 2 | -------------------------------------------------------------------------------- /public/icons/docs/sass/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sass/16.png -------------------------------------------------------------------------------- /public/icons/docs/sass/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sass/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/sass/SOURCE: -------------------------------------------------------------------------------- 1 | http://sass-lang.com/assets/img/styleguide/sass-logo.zip -------------------------------------------------------------------------------- /public/icons/docs/sass/sass.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sass/sass.pxm -------------------------------------------------------------------------------- /public/icons/docs/scala/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/scala/16.png -------------------------------------------------------------------------------- /public/icons/docs/scala/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/scala/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/scikit_image/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/scikit_image/16.png -------------------------------------------------------------------------------- /public/icons/docs/scikit_image/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/scikit_image/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/scikit_image/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/scikit-image/scikit-image/blob/master/doc/source/themes/scikit-image/static/img/favicon.ico -------------------------------------------------------------------------------- /public/icons/docs/scikit_learn/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/scikit_learn/16.png -------------------------------------------------------------------------------- /public/icons/docs/scikit_learn/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/scikit_learn/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/scikit_learn/SOURCE: -------------------------------------------------------------------------------- 1 | http://scikit-learn.org/stable/_static/favicon.ico -------------------------------------------------------------------------------- /public/icons/docs/sequelize/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sequelize/16.png -------------------------------------------------------------------------------- /public/icons/docs/sequelize/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sequelize/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/sequelize/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/sequelize/sequelize/blob/master/docs/images/logo.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/sinon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sinon/16.png -------------------------------------------------------------------------------- /public/icons/docs/sinon/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sinon/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/sinon/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/sinonjs/sinon/blob/master/docs/assets/images/logo.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/socketio/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/socketio/16.png -------------------------------------------------------------------------------- /public/icons/docs/socketio/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/socketio/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/socketio/SOURCE: -------------------------------------------------------------------------------- 1 | http://socket.io/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/spring_boot/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/spring_boot/16.png -------------------------------------------------------------------------------- /public/icons/docs/spring_boot/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/spring_boot/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/spring_boot/SOURCE: -------------------------------------------------------------------------------- 1 | https://spring.io/trademarks 2 | -------------------------------------------------------------------------------- /public/icons/docs/sqlite/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sqlite/16.png -------------------------------------------------------------------------------- /public/icons/docs/sqlite/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/sqlite/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/sqlite/SOURCE: -------------------------------------------------------------------------------- 1 | https://commons.wikimedia.org/wiki/File:SQLite370.svg -------------------------------------------------------------------------------- /public/icons/docs/statsmodels/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/statsmodels/16.png -------------------------------------------------------------------------------- /public/icons/docs/statsmodels/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/statsmodels/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/statsmodels/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.statsmodels.org/stable/_images/statsmodels-logo-v2-horizontal.svg -------------------------------------------------------------------------------- /public/icons/docs/support_tables/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/support_tables/16.png -------------------------------------------------------------------------------- /public/icons/docs/support_tables/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/support_tables/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/support_tables/SOURCE: -------------------------------------------------------------------------------- 1 | https://caniuse.com/img/favicon-16.png 2 | https://caniuse.com/img/favicon-128.png 3 | -------------------------------------------------------------------------------- /public/icons/docs/svelte/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/svelte/16.png -------------------------------------------------------------------------------- /public/icons/docs/svelte/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/svelte/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/svelte/SOURCE: -------------------------------------------------------------------------------- 1 | https://svelte.dev/favicon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/svg/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/svg/16.png -------------------------------------------------------------------------------- /public/icons/docs/svg/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/svg/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/svg/SOURCE: -------------------------------------------------------------------------------- 1 | http://www.w3.org/2009/08/svg-logos.html 2 | -------------------------------------------------------------------------------- /public/icons/docs/symfony/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/symfony/16.png -------------------------------------------------------------------------------- /public/icons/docs/symfony/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/symfony/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/symfony/SOURCE: -------------------------------------------------------------------------------- 1 | http://symfony.com/logo 2 | -------------------------------------------------------------------------------- /public/icons/docs/tailwindcss/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/tailwindcss/16.png -------------------------------------------------------------------------------- /public/icons/docs/tailwindcss/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/tailwindcss/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/tailwindcss/SOURCE: -------------------------------------------------------------------------------- 1 | https://tailwindcss.com/favicons/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/tcl_tk/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/tcl_tk/16.png -------------------------------------------------------------------------------- /public/icons/docs/tcl_tk/16@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/tcl_tk/16@2.png -------------------------------------------------------------------------------- /public/icons/docs/tcl_tk/SOURCE: -------------------------------------------------------------------------------- 1 | https://commons.wikimedia.org/wiki/File:Tcl.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/tensorflow/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/tensorflow/16.png -------------------------------------------------------------------------------- /public/icons/docs/tensorflow/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/tensorflow/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/tensorflow/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.gstatic.com/devrel-devsite/prod/vc890b700b898929d6a9586ce333c0fb7d88f26c0e62aab16b11d9d648f110bfc/tensorflow/images/lockup.svg -------------------------------------------------------------------------------- /public/icons/docs/tensorflow_cpp/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/tensorflow_cpp/16.png -------------------------------------------------------------------------------- /public/icons/docs/tensorflow_cpp/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/tensorflow_cpp/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/tensorflow_cpp/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.gstatic.com/devrel-devsite/prod/vc890b700b898929d6a9586ce333c0fb7d88f26c0e62aab16b11d9d648f110bfc/tensorflow/images/lockup.svg -------------------------------------------------------------------------------- /public/icons/docs/terraform/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/terraform/16.png -------------------------------------------------------------------------------- /public/icons/docs/terraform/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/terraform/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/terraform/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.hashicorp.com/brand -------------------------------------------------------------------------------- /public/icons/docs/threejs/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/threejs/16.png -------------------------------------------------------------------------------- /public/icons/docs/threejs/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/threejs/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/threejs/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/mrdoob/three.js/tree/dev/files -------------------------------------------------------------------------------- /public/icons/docs/trio/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/trio/16.png -------------------------------------------------------------------------------- /public/icons/docs/trio/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/trio/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/trio/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/python-trio/trio/blob/37de153f858e29df3a19db9fffcd0fb3f2308951/logo/logo-transparent-no-text.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/twig/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/twig/16.png -------------------------------------------------------------------------------- /public/icons/docs/twig/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/twig/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/twig/SOURCE: -------------------------------------------------------------------------------- 1 | https://twig.symfony.com/images/logo.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/typescript/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/typescript/16.png -------------------------------------------------------------------------------- /public/icons/docs/typescript/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/typescript/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/typescript/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/remojansen/logo.ts 2 | -------------------------------------------------------------------------------- /public/icons/docs/underscore/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/underscore/16.png -------------------------------------------------------------------------------- /public/icons/docs/underscore/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/underscore/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/underscore/SOURCE: -------------------------------------------------------------------------------- 1 | http://underscorejs.org/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/vagrant/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vagrant/16.png -------------------------------------------------------------------------------- /public/icons/docs/vagrant/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vagrant/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/vagrant/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.vagrantup.com/vagrant-public/img/logo-hashicorp.svg 2 | http://www.vagrantup.com -------------------------------------------------------------------------------- /public/icons/docs/varnish/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/varnish/16.png -------------------------------------------------------------------------------- /public/icons/docs/varnish/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/varnish/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/varnish/SOURCE: -------------------------------------------------------------------------------- 1 | https://www.varnish-software.com/branding/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/vertx/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vertx/16.png -------------------------------------------------------------------------------- /public/icons/docs/vertx/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vertx/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/vertx/SOURCE: -------------------------------------------------------------------------------- 1 | https://avatars.githubusercontent.com/u/8124623?s=200&v=4 2 | -------------------------------------------------------------------------------- /public/icons/docs/vite/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vite/16.png -------------------------------------------------------------------------------- /public/icons/docs/vite/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vite/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/vite/SOURCE: -------------------------------------------------------------------------------- 1 | https://vitejs.dev/logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/vitest/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vitest/16.png -------------------------------------------------------------------------------- /public/icons/docs/vitest/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vitest/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/vitest/SOURCE: -------------------------------------------------------------------------------- 1 | https://vitest.dev/logo.svg 2 | -------------------------------------------------------------------------------- /public/icons/docs/vue/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vue/16.png -------------------------------------------------------------------------------- /public/icons/docs/vue/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vue/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/vue/SOURCE: -------------------------------------------------------------------------------- 1 | https://es.wikipedia.org/wiki/Archivo:Vue.js_Logo_2.svg 2 | http://vuejs.org/ -------------------------------------------------------------------------------- /public/icons/docs/vue_router/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vue_router/16.png -------------------------------------------------------------------------------- /public/icons/docs/vue_router/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vue_router/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/vue_router/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/vuejs/vuejs.org/blob/master/assets/logo.ai 2 | -------------------------------------------------------------------------------- /public/icons/docs/vueuse/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vueuse/16.png -------------------------------------------------------------------------------- /public/icons/docs/vueuse/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vueuse/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/vueuse/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/vueuse/vueuse/blob/main/packages/public/favicon-16x16.png 2 | https://github.com/vueuse/vueuse/blob/main/packages/public/favicon-32x32.png 3 | -------------------------------------------------------------------------------- /public/icons/docs/vueuse/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vueuse/favicon-16x16.png -------------------------------------------------------------------------------- /public/icons/docs/vuex/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vuex/16.png -------------------------------------------------------------------------------- /public/icons/docs/vuex/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vuex/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/vuex/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/vuejs/vuejs.org/blob/master/assets/logo.ai 2 | -------------------------------------------------------------------------------- /public/icons/docs/vulkan/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vulkan/16.png -------------------------------------------------------------------------------- /public/icons/docs/vulkan/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/vulkan/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/vulkan/SOURCE: -------------------------------------------------------------------------------- 1 | 01_Vulkan_Icon_RGB_Aug1.svg hand-made, credit to Anne-Sophie BOSSÉ 2 | Usage granted by James Riordon, Khronos Group Webmaster, until their Marketing have the time to review it 3 | -------------------------------------------------------------------------------- /public/icons/docs/wagtail/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/wagtail/16.png -------------------------------------------------------------------------------- /public/icons/docs/wagtail/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/wagtail/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/wagtail/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/wagtail/wagtail/blob/main/docs/logo.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/webpack/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/webpack/16.png -------------------------------------------------------------------------------- /public/icons/docs/webpack/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/webpack/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/webpack/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/webpack/media 2 | -------------------------------------------------------------------------------- /public/icons/docs/werkzeug/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/werkzeug/16.png -------------------------------------------------------------------------------- /public/icons/docs/werkzeug/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/werkzeug/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/werkzeug/SOURCE: -------------------------------------------------------------------------------- 1 | https://werkzeug.palletsprojects.com/en/2.3.x/_static/shortcut-icon.png 2 | -------------------------------------------------------------------------------- /public/icons/docs/wordpress/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/wordpress/16.png -------------------------------------------------------------------------------- /public/icons/docs/wordpress/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/wordpress/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/wordpress/SOURCE: -------------------------------------------------------------------------------- 1 | https://wordpress.org/about/logos/ -------------------------------------------------------------------------------- /public/icons/docs/xpath/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/xpath/16.png -------------------------------------------------------------------------------- /public/icons/docs/xpath/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/xpath/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/xpath/XPath.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/xpath/XPath.sketch/Data -------------------------------------------------------------------------------- /public/icons/docs/xpath/XPath.sketch/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/xpath/XPath.sketch/QuickLook/Preview.png -------------------------------------------------------------------------------- /public/icons/docs/xpath/XPath.sketch/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/xpath/XPath.sketch/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /public/icons/docs/xpath/XPath.sketch/version: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /public/icons/docs/yarn/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/yarn/16.png -------------------------------------------------------------------------------- /public/icons/docs/yarn/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/yarn/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/yarn/SOURCE: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/yarnpkg/website/master/favicon.ico 2 | -------------------------------------------------------------------------------- /public/icons/docs/yii/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/yii/16.png -------------------------------------------------------------------------------- /public/icons/docs/yii/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/yii/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/yii/SOURCE: -------------------------------------------------------------------------------- 1 | http://www.yiiframework.com/logo/ 2 | -------------------------------------------------------------------------------- /public/icons/docs/zig/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/zig/16.png -------------------------------------------------------------------------------- /public/icons/docs/zig/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/icons/docs/zig/16@2x.png -------------------------------------------------------------------------------- /public/icons/docs/zig/SOURCE: -------------------------------------------------------------------------------- 1 | https://github.com/ziglang/logo/blob/master/zig-favicon.png 2 | https://github.com/ziglang/logo/blob/master/zig-mark.svg 3 | -------------------------------------------------------------------------------- /public/images/apple-icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/apple-icon-114.png -------------------------------------------------------------------------------- /public/images/apple-icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/apple-icon-120.png -------------------------------------------------------------------------------- /public/images/apple-icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/apple-icon-144.png -------------------------------------------------------------------------------- /public/images/apple-icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/apple-icon-152.png -------------------------------------------------------------------------------- /public/images/apple-icon-160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/apple-icon-160.png -------------------------------------------------------------------------------- /public/images/apple-icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/apple-icon-72.png -------------------------------------------------------------------------------- /public/images/apple-icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/apple-icon-76.png -------------------------------------------------------------------------------- /public/images/apple-icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/apple-icon.pxm -------------------------------------------------------------------------------- /public/images/fluid-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/fluid-icon.png -------------------------------------------------------------------------------- /public/images/fluid-icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/fluid-icon.pxm -------------------------------------------------------------------------------- /public/images/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/icon-16.png -------------------------------------------------------------------------------- /public/images/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/icon-32.png -------------------------------------------------------------------------------- /public/images/icon-320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/icon-320.png -------------------------------------------------------------------------------- /public/images/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/icon-64.png -------------------------------------------------------------------------------- /public/images/icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/icon.pxm -------------------------------------------------------------------------------- /public/images/webapp-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/webapp-icon-128.png -------------------------------------------------------------------------------- /public/images/webapp-icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/webapp-icon-192.png -------------------------------------------------------------------------------- /public/images/webapp-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/webapp-icon-256.png -------------------------------------------------------------------------------- /public/images/webapp-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/webapp-icon-32.png -------------------------------------------------------------------------------- /public/images/webapp-icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/webapp-icon-512.png -------------------------------------------------------------------------------- /public/images/webapp-icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/webapp-icon-60.png -------------------------------------------------------------------------------- /public/images/webapp-icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/webapp-icon-80.png -------------------------------------------------------------------------------- /public/images/webapp-icon-small.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/devdocs/c4b95a3777c2ddbf14d193a00513d11311043d27/public/images/webapp-icon-small.pxm -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /settings -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["github>freecodecamp/renovate-config"], 3 | "packageRules": [ 4 | { 5 | "matchPackageNames": ["better_errors"], 6 | "allowedVersions": "!/^2\\.10\\.0$/" 7 | } 8 | ] 9 | } 10 | --------------------------------------------------------------------------------