├── .gitignore ├── .gitmodules ├── .s2i └── bin │ ├── assemble │ └── run ├── DEVELOPMENT.md ├── Dockerfile ├── Gemfile ├── LICENSE ├── README.md ├── RELEASE.md ├── Vagrantfile ├── _config.yml ├── _includes ├── announcement.html ├── ask_fedora.html ├── banners.html ├── blog-features.html ├── blog-headlines.html ├── content-deprecation.html ├── content-label-banner.html ├── content-link-panel.html ├── contribute.html ├── fedora.html ├── footer.html ├── head.html ├── jumbo-content.html ├── jumbo-homepage.html ├── jumbo-section.html ├── nav.html ├── search.html └── top-nav.html ├── _layouts ├── content.html ├── default.html ├── homepage.html └── section.html ├── _plugins ├── logo_filter.rb ├── permalinks.rb └── rss.rb ├── _sass ├── _base.scss ├── _layout.scss └── components │ ├── _mixins.scss │ └── _syntax-highlighting.scss ├── about.html ├── contribute.md ├── cron.sh ├── css └── main.scss ├── deploy.sh ├── deployment.html ├── index.html ├── openshift-template.json ├── rss.py ├── search.html ├── setup.sh ├── spec ├── index_spec.rb ├── pages_spec.rb ├── shared_contexts.rb └── spec_helper.rb ├── start.html ├── static ├── bootstrap.min.css ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── patternfly.css │ ├── patternfly.min.css │ ├── styles.css │ └── styles.min.css ├── fonts │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.ttf │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.ttf │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-ExtraBold-webfont.eot │ ├── OpenSans-ExtraBold-webfont.svg │ ├── OpenSans-ExtraBold-webfont.ttf │ ├── OpenSans-ExtraBold-webfont.woff │ ├── OpenSans-ExtraBoldItalic-webfont.eot │ ├── OpenSans-ExtraBoldItalic-webfont.svg │ ├── OpenSans-ExtraBoldItalic-webfont.ttf │ ├── OpenSans-ExtraBoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.ttf │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.ttf │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.ttf │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ ├── OpenSans-Regular-webfont.ttf │ ├── OpenSans-Regular-webfont.woff │ ├── OpenSans-Semibold-webfont.eot │ ├── OpenSans-Semibold-webfont.svg │ ├── OpenSans-Semibold-webfont.ttf │ ├── OpenSans-Semibold-webfont.woff │ ├── OpenSans-SemiboldItalic-webfont.eot │ ├── OpenSans-SemiboldItalic-webfont.svg │ ├── OpenSans-SemiboldItalic-webfont.ttf │ ├── OpenSans-SemiboldItalic-webfont.woff │ ├── PatternFlyIcons-webfont.eot │ ├── PatternFlyIcons-webfont.svg │ ├── PatternFlyIcons-webfont.ttf │ ├── PatternFlyIcons-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── banners │ │ ├── banner_devassistant.png │ │ ├── banner_docker.png │ │ ├── banner_vagrant.png │ │ ├── banner_virt-builder.png │ │ ├── docker.png │ │ └── vagrant-logo.png │ ├── blue-pattern.jpg │ ├── footer_lodyas.png │ ├── icons │ │ ├── icon_arduino.png │ │ ├── icon_cli.png │ │ ├── icon_collab.png │ │ ├── icon_desktop.png │ │ ├── icon_docs.png │ │ ├── icon_embedded.png │ │ ├── icon_mobileapp.png │ │ ├── icon_rasppi.png │ │ └── icon_webapp.png │ ├── logo.png │ ├── nav-deploy.png │ ├── nav-start.png │ ├── nav-tech.png │ ├── nav-tools.png │ ├── noisy_grid.png │ └── titles │ │ ├── title_deploy.jpg │ │ ├── title_front.jpg │ │ ├── title_general.jpg │ │ ├── title_start.jpg │ │ ├── title_tech.jpg │ │ └── title_tools.jpg ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── npm.js │ ├── patternfly.js │ └── patternfly.min.js ├── logo.png ├── logo │ ├── abrt.png │ ├── arduino.png │ ├── c.png │ ├── cassandra.png │ ├── cli-app.png │ ├── collaborate.png │ ├── contribute.png │ ├── copr.png │ ├── csharp.png │ ├── csharp.readme.txt │ ├── desktop.png │ ├── devassistant.png │ ├── docker.png │ ├── documentation.png │ ├── dotnet.png │ ├── eclipse.png │ ├── elixir.png │ ├── embeded-devices.png │ ├── flatpak.png │ ├── fortran.png │ ├── gjs.png │ ├── go.png │ ├── groovy.png │ ├── gui-app.png │ ├── haskell.png │ ├── java.png │ ├── julia.png │ ├── lua.png │ ├── maintain.png │ ├── mariadb.png │ ├── mobile-app.png │ ├── mongodb.png │ ├── nodejs.png │ ├── ocaml.png │ ├── openshift.png │ ├── perl.png │ ├── php.png │ ├── postgresql.png │ ├── python.png │ ├── r.png │ ├── raspberry-pi.png │ ├── redhat.png │ ├── redis.png │ ├── rpm.png │ ├── ruby.png │ ├── rust.png │ ├── secondary_architectures.png │ ├── sqlite.png │ ├── swift.png │ ├── vagrant.png │ ├── virt-builder.png │ ├── virtualization.png │ └── web-app.png └── logo_white.png ├── stopwords.txt ├── tech.html └── tools.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/.gitmodules -------------------------------------------------------------------------------- /.s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/.s2i/bin/assemble -------------------------------------------------------------------------------- /.s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ruby -run -e httpd _site -p 8080 3 | -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/Vagrantfile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/announcement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/announcement.html -------------------------------------------------------------------------------- /_includes/ask_fedora.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/ask_fedora.html -------------------------------------------------------------------------------- /_includes/banners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/banners.html -------------------------------------------------------------------------------- /_includes/blog-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/blog-features.html -------------------------------------------------------------------------------- /_includes/blog-headlines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/blog-headlines.html -------------------------------------------------------------------------------- /_includes/content-deprecation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/content-deprecation.html -------------------------------------------------------------------------------- /_includes/content-label-banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/content-label-banner.html -------------------------------------------------------------------------------- /_includes/content-link-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/content-link-panel.html -------------------------------------------------------------------------------- /_includes/contribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/contribute.html -------------------------------------------------------------------------------- /_includes/fedora.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/fedora.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/jumbo-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/jumbo-content.html -------------------------------------------------------------------------------- /_includes/jumbo-homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/jumbo-homepage.html -------------------------------------------------------------------------------- /_includes/jumbo-section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/jumbo-section.html -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/nav.html -------------------------------------------------------------------------------- /_includes/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/search.html -------------------------------------------------------------------------------- /_includes/top-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_includes/top-nav.html -------------------------------------------------------------------------------- /_layouts/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_layouts/content.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_layouts/homepage.html -------------------------------------------------------------------------------- /_layouts/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_layouts/section.html -------------------------------------------------------------------------------- /_plugins/logo_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_plugins/logo_filter.rb -------------------------------------------------------------------------------- /_plugins/permalinks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_plugins/permalinks.rb -------------------------------------------------------------------------------- /_plugins/rss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_plugins/rss.rb -------------------------------------------------------------------------------- /_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_sass/_base.scss -------------------------------------------------------------------------------- /_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_sass/_layout.scss -------------------------------------------------------------------------------- /_sass/components/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_sass/components/_mixins.scss -------------------------------------------------------------------------------- /_sass/components/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/_sass/components/_syntax-highlighting.scss -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/about.html -------------------------------------------------------------------------------- /contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/contribute.md -------------------------------------------------------------------------------- /cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/cron.sh -------------------------------------------------------------------------------- /css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/css/main.scss -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/deploy.sh -------------------------------------------------------------------------------- /deployment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/deployment.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/index.html -------------------------------------------------------------------------------- /openshift-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/openshift-template.json -------------------------------------------------------------------------------- /rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/rss.py -------------------------------------------------------------------------------- /search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/search.html -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/setup.sh -------------------------------------------------------------------------------- /spec/index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/spec/index_spec.rb -------------------------------------------------------------------------------- /spec/pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/spec/pages_spec.rb -------------------------------------------------------------------------------- /spec/shared_contexts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/spec/shared_contexts.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/start.html -------------------------------------------------------------------------------- /static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/patternfly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/css/patternfly.css -------------------------------------------------------------------------------- /static/css/patternfly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/css/patternfly.min.css -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- 1 | patternfly.css -------------------------------------------------------------------------------- /static/css/styles.min.css: -------------------------------------------------------------------------------- 1 | patternfly.min.css -------------------------------------------------------------------------------- /static/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Bold-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-BoldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-BoldItalic-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-ExtraBold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-ExtraBold-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-ExtraBold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-ExtraBold-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-ExtraBold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-ExtraBold-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-ExtraBold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-ExtraBold-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-ExtraBoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-ExtraBoldItalic-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-ExtraBoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-ExtraBoldItalic-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-ExtraBoldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-ExtraBoldItalic-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-ExtraBoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-ExtraBoldItalic-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Italic-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Light-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-LightItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-LightItalic-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Semibold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Semibold-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Semibold-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-SemiboldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-SemiboldItalic-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-SemiboldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-SemiboldItalic-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-SemiboldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-SemiboldItalic-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-SemiboldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/OpenSans-SemiboldItalic-webfont.woff -------------------------------------------------------------------------------- /static/fonts/PatternFlyIcons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/PatternFlyIcons-webfont.eot -------------------------------------------------------------------------------- /static/fonts/PatternFlyIcons-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/PatternFlyIcons-webfont.svg -------------------------------------------------------------------------------- /static/fonts/PatternFlyIcons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/PatternFlyIcons-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/PatternFlyIcons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/PatternFlyIcons-webfont.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/img/banners/banner_devassistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/banners/banner_devassistant.png -------------------------------------------------------------------------------- /static/img/banners/banner_docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/banners/banner_docker.png -------------------------------------------------------------------------------- /static/img/banners/banner_vagrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/banners/banner_vagrant.png -------------------------------------------------------------------------------- /static/img/banners/banner_virt-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/banners/banner_virt-builder.png -------------------------------------------------------------------------------- /static/img/banners/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/banners/docker.png -------------------------------------------------------------------------------- /static/img/banners/vagrant-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/banners/vagrant-logo.png -------------------------------------------------------------------------------- /static/img/blue-pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/blue-pattern.jpg -------------------------------------------------------------------------------- /static/img/footer_lodyas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/footer_lodyas.png -------------------------------------------------------------------------------- /static/img/icons/icon_arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/icons/icon_arduino.png -------------------------------------------------------------------------------- /static/img/icons/icon_cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/icons/icon_cli.png -------------------------------------------------------------------------------- /static/img/icons/icon_collab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/icons/icon_collab.png -------------------------------------------------------------------------------- /static/img/icons/icon_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/icons/icon_desktop.png -------------------------------------------------------------------------------- /static/img/icons/icon_docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/icons/icon_docs.png -------------------------------------------------------------------------------- /static/img/icons/icon_embedded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/icons/icon_embedded.png -------------------------------------------------------------------------------- /static/img/icons/icon_mobileapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/icons/icon_mobileapp.png -------------------------------------------------------------------------------- /static/img/icons/icon_rasppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/icons/icon_rasppi.png -------------------------------------------------------------------------------- /static/img/icons/icon_webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/icons/icon_webapp.png -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/nav-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/nav-deploy.png -------------------------------------------------------------------------------- /static/img/nav-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/nav-start.png -------------------------------------------------------------------------------- /static/img/nav-tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/nav-tech.png -------------------------------------------------------------------------------- /static/img/nav-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/nav-tools.png -------------------------------------------------------------------------------- /static/img/noisy_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/noisy_grid.png -------------------------------------------------------------------------------- /static/img/titles/title_deploy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/titles/title_deploy.jpg -------------------------------------------------------------------------------- /static/img/titles/title_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/titles/title_front.jpg -------------------------------------------------------------------------------- /static/img/titles/title_general.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/titles/title_general.jpg -------------------------------------------------------------------------------- /static/img/titles/title_start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/titles/title_start.jpg -------------------------------------------------------------------------------- /static/img/titles/title_tech.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/titles/title_tech.jpg -------------------------------------------------------------------------------- /static/img/titles/title_tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/img/titles/title_tools.jpg -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/js/npm.js -------------------------------------------------------------------------------- /static/js/patternfly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/js/patternfly.js -------------------------------------------------------------------------------- /static/js/patternfly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/js/patternfly.min.js -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/logo/abrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/abrt.png -------------------------------------------------------------------------------- /static/logo/arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/arduino.png -------------------------------------------------------------------------------- /static/logo/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/c.png -------------------------------------------------------------------------------- /static/logo/cassandra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/cassandra.png -------------------------------------------------------------------------------- /static/logo/cli-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/cli-app.png -------------------------------------------------------------------------------- /static/logo/collaborate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/collaborate.png -------------------------------------------------------------------------------- /static/logo/contribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/contribute.png -------------------------------------------------------------------------------- /static/logo/copr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/copr.png -------------------------------------------------------------------------------- /static/logo/csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/csharp.png -------------------------------------------------------------------------------- /static/logo/csharp.readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/csharp.readme.txt -------------------------------------------------------------------------------- /static/logo/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/desktop.png -------------------------------------------------------------------------------- /static/logo/devassistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/devassistant.png -------------------------------------------------------------------------------- /static/logo/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/docker.png -------------------------------------------------------------------------------- /static/logo/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/documentation.png -------------------------------------------------------------------------------- /static/logo/dotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/dotnet.png -------------------------------------------------------------------------------- /static/logo/eclipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/eclipse.png -------------------------------------------------------------------------------- /static/logo/elixir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/elixir.png -------------------------------------------------------------------------------- /static/logo/embeded-devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/embeded-devices.png -------------------------------------------------------------------------------- /static/logo/flatpak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/flatpak.png -------------------------------------------------------------------------------- /static/logo/fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/fortran.png -------------------------------------------------------------------------------- /static/logo/gjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/gjs.png -------------------------------------------------------------------------------- /static/logo/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/go.png -------------------------------------------------------------------------------- /static/logo/groovy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/groovy.png -------------------------------------------------------------------------------- /static/logo/gui-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/gui-app.png -------------------------------------------------------------------------------- /static/logo/haskell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/haskell.png -------------------------------------------------------------------------------- /static/logo/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/java.png -------------------------------------------------------------------------------- /static/logo/julia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/julia.png -------------------------------------------------------------------------------- /static/logo/lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/lua.png -------------------------------------------------------------------------------- /static/logo/maintain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/maintain.png -------------------------------------------------------------------------------- /static/logo/mariadb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/mariadb.png -------------------------------------------------------------------------------- /static/logo/mobile-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/mobile-app.png -------------------------------------------------------------------------------- /static/logo/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/mongodb.png -------------------------------------------------------------------------------- /static/logo/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/nodejs.png -------------------------------------------------------------------------------- /static/logo/ocaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/ocaml.png -------------------------------------------------------------------------------- /static/logo/openshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/openshift.png -------------------------------------------------------------------------------- /static/logo/perl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/perl.png -------------------------------------------------------------------------------- /static/logo/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/php.png -------------------------------------------------------------------------------- /static/logo/postgresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/postgresql.png -------------------------------------------------------------------------------- /static/logo/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/python.png -------------------------------------------------------------------------------- /static/logo/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/r.png -------------------------------------------------------------------------------- /static/logo/raspberry-pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/raspberry-pi.png -------------------------------------------------------------------------------- /static/logo/redhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/redhat.png -------------------------------------------------------------------------------- /static/logo/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/redis.png -------------------------------------------------------------------------------- /static/logo/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/rpm.png -------------------------------------------------------------------------------- /static/logo/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/ruby.png -------------------------------------------------------------------------------- /static/logo/rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/rust.png -------------------------------------------------------------------------------- /static/logo/secondary_architectures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/secondary_architectures.png -------------------------------------------------------------------------------- /static/logo/sqlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/sqlite.png -------------------------------------------------------------------------------- /static/logo/swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/swift.png -------------------------------------------------------------------------------- /static/logo/vagrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/vagrant.png -------------------------------------------------------------------------------- /static/logo/virt-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/virt-builder.png -------------------------------------------------------------------------------- /static/logo/virtualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/virtualization.png -------------------------------------------------------------------------------- /static/logo/web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo/web-app.png -------------------------------------------------------------------------------- /static/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/static/logo_white.png -------------------------------------------------------------------------------- /stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/stopwords.txt -------------------------------------------------------------------------------- /tech.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/tech.html -------------------------------------------------------------------------------- /tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer-portal/website/HEAD/tools.html --------------------------------------------------------------------------------