├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── configs │ └── codeql.yml ├── dependabot.yml └── workflows │ ├── build.yml │ ├── codeql-analysis.yml │ ├── fixit-component-list.yml │ └── release.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .nvmrc ├── .vscode ├── extensions.json └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README.zh-cn.md ├── SECURITY.md ├── archetypes ├── default.md ├── friends.md ├── post-bundle │ └── index.md ├── posts.md └── search.md ├── assets ├── css │ ├── _core │ │ ├── _base.scss │ │ ├── _breadcrumb.scss │ │ ├── _common.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _layout.scss │ │ ├── _media.scss │ │ ├── _pagination.scss │ │ ├── _patch.scss │ │ └── _root.scss │ ├── _custom.scss │ ├── _mixin │ │ ├── _blur.scss │ │ ├── _compatibility.scss │ │ ├── _details.scss │ │ ├── _index.scss │ │ ├── _link.scss │ │ ├── _scrollbar-width.scss │ │ └── _z-index.scss │ ├── _override.scss │ ├── _page │ │ ├── _404.scss │ │ ├── _archive.scss │ │ ├── _home.scss │ │ ├── _index.scss │ │ ├── _offline.scss │ │ ├── _single.scss │ │ └── _special │ │ │ ├── _friends.scss │ │ │ ├── _index.scss │ │ │ └── _search.scss │ ├── _partials │ │ ├── _archive │ │ │ ├── _tags.scss │ │ │ └── _terms.scss │ │ ├── _details.scss │ │ ├── _icon.scss │ │ ├── _img.scss │ │ ├── _maps │ │ │ ├── _admonition.scss │ │ │ ├── _alert.scss │ │ │ ├── _code-highlight.scss │ │ │ ├── _code-type.scss │ │ │ ├── _colors.scss │ │ │ └── _utilities.scss │ │ ├── _mask.scss │ │ ├── _scrollbar.scss │ │ ├── _single │ │ │ ├── _alert.scss │ │ │ ├── _code.scss │ │ │ ├── _collections.scss │ │ │ ├── _comment.scss │ │ │ ├── _fixit-decryptor.scss │ │ │ ├── _footer.scss │ │ │ ├── _github-dark-dimmed.scss │ │ │ ├── _related.scss │ │ │ ├── _reward.scss │ │ │ └── _toc.scss │ │ ├── _widgets.scss │ │ └── _widgets │ │ │ ├── _cookieconsent.scss │ │ │ ├── _fixed-button.scss │ │ │ ├── _github-corner.scss │ │ │ ├── _noscript-warning.scss │ │ │ ├── _post-chat.scss │ │ │ ├── _reading-progress.scss │ │ │ └── _typeit.scss │ ├── _shortcodes │ │ ├── _admonition.scss │ │ ├── _bilibili.scss │ │ ├── _cardlink.scss │ │ ├── _center-quote.scss │ │ ├── _douyin.scss │ │ ├── _echarts.scss │ │ ├── _index.scss │ │ ├── _instagram.scss │ │ ├── _mapbox.scss │ │ ├── _mermaid.scss │ │ └── _timeline.scss │ ├── _variables.scss │ └── style.scss ├── data │ ├── cdn │ │ ├── jsdelivr.yml │ │ └── unpkg.yml │ ├── polyfill.yml │ └── social.yml ├── images │ ├── fixit.svg │ ├── hugo.svg │ ├── icons │ │ ├── alerts │ │ │ ├── alert.svg │ │ │ ├── info.svg │ │ │ ├── light-bulb.svg │ │ │ ├── report.svg │ │ │ └── stop.svg │ │ ├── csdn.svg │ │ ├── plume.svg │ │ └── rootme.svg │ ├── loading.svg │ └── version.template.svg ├── js │ ├── custom.js.example │ ├── fixit-decryptor.js │ ├── head │ │ └── color-scheme.js │ ├── service-worker.js │ ├── theme.js │ └── util.js └── lib │ ├── VERSION │ ├── algoliasearch │ └── algoliasearch-lite.umd.min.js │ ├── animate │ └── animate.min.css │ ├── aplayer │ ├── APlayer.min.css │ ├── APlayer.min.js │ └── dark.scss │ ├── autocomplete │ └── autocomplete.min.js │ ├── cell-watermark │ └── watermark.min.js │ ├── cookieconsent │ ├── cookieconsent.min.css │ └── cookieconsent.min.js │ ├── crypto-js │ ├── core.js │ ├── enc-base64.js │ └── sha256.js │ ├── echarts │ ├── echarts.min.js │ └── theme │ │ ├── dark.yml │ │ └── light.yml │ ├── fontawesome-free │ └── all.min.css │ ├── fuse │ └── fuse.min.js │ ├── gitalk │ ├── gitalk.css │ └── gitalk.min.js │ ├── instant-page │ └── instantpage.min.js │ ├── katex │ ├── auto-render.min.js │ ├── copy-tex.min.js │ ├── katex.min.css │ ├── katex.min.js │ └── mhchem.min.js │ ├── lightgallery │ ├── css │ │ └── lightgallery-bundle.min.css │ ├── lightgallery.min.js │ └── plugins │ │ ├── thumbnail │ │ └── lg-thumbnail.min.js │ │ └── zoom │ │ └── lg-zoom.min.js │ ├── mapbox-gl │ ├── mapbox-gl-language.js │ ├── mapbox-gl.css │ └── mapbox-gl.js │ ├── meting │ └── Meting.min.js │ ├── normalize │ └── normalize.css │ ├── object-fit-images │ └── ofi.min.js │ ├── pace │ ├── pace-patch-flat-top.css │ ├── pace-theme-default.min.css │ ├── pace.min.js │ └── themes │ │ ├── black │ │ ├── pace-theme-barber-shop.css │ │ ├── pace-theme-big-counter.css │ │ ├── pace-theme-bounce.css │ │ ├── pace-theme-center-atom.css │ │ ├── pace-theme-center-circle.css │ │ ├── pace-theme-center-radar.css │ │ ├── pace-theme-center-simple.css │ │ ├── pace-theme-corner-indicator.css │ │ ├── pace-theme-fill-left.css │ │ ├── pace-theme-flash.css │ │ ├── pace-theme-flat-top.css │ │ ├── pace-theme-loading-bar.css │ │ ├── pace-theme-mac-osx.css │ │ ├── pace-theme-material.css │ │ └── pace-theme-minimal.css │ │ ├── blue │ │ ├── pace-theme-barber-shop.css │ │ ├── pace-theme-big-counter.css │ │ ├── pace-theme-bounce.css │ │ ├── pace-theme-center-atom.css │ │ ├── pace-theme-center-circle.css │ │ ├── pace-theme-center-radar.css │ │ ├── pace-theme-center-simple.css │ │ ├── pace-theme-corner-indicator.css │ │ ├── pace-theme-fill-left.css │ │ ├── pace-theme-flash.css │ │ ├── pace-theme-flat-top.css │ │ ├── pace-theme-loading-bar.css │ │ ├── pace-theme-mac-osx.css │ │ ├── pace-theme-material.css │ │ └── pace-theme-minimal.css │ │ ├── green │ │ ├── pace-theme-barber-shop.css │ │ ├── pace-theme-big-counter.css │ │ ├── pace-theme-bounce.css │ │ ├── pace-theme-center-atom.css │ │ ├── pace-theme-center-circle.css │ │ ├── pace-theme-center-radar.css │ │ ├── pace-theme-center-simple.css │ │ ├── pace-theme-corner-indicator.css │ │ ├── pace-theme-fill-left.css │ │ ├── pace-theme-flash.css │ │ ├── pace-theme-flat-top.css │ │ ├── pace-theme-loading-bar.css │ │ ├── pace-theme-mac-osx.css │ │ ├── pace-theme-material.css │ │ └── pace-theme-minimal.css │ │ ├── orange │ │ ├── pace-theme-barber-shop.css │ │ ├── pace-theme-big-counter.css │ │ ├── pace-theme-bounce.css │ │ ├── pace-theme-center-atom.css │ │ ├── pace-theme-center-circle.css │ │ ├── pace-theme-center-radar.css │ │ ├── pace-theme-center-simple.css │ │ ├── pace-theme-corner-indicator.css │ │ ├── pace-theme-fill-left.css │ │ ├── pace-theme-flash.css │ │ ├── pace-theme-flat-top.css │ │ ├── pace-theme-loading-bar.css │ │ ├── pace-theme-mac-osx.css │ │ ├── pace-theme-material.css │ │ └── pace-theme-minimal.css │ │ ├── pink │ │ ├── pace-theme-barber-shop.css │ │ ├── pace-theme-big-counter.css │ │ ├── pace-theme-bounce.css │ │ ├── pace-theme-center-atom.css │ │ ├── pace-theme-center-circle.css │ │ ├── pace-theme-center-radar.css │ │ ├── pace-theme-center-simple.css │ │ ├── pace-theme-corner-indicator.css │ │ ├── pace-theme-fill-left.css │ │ ├── pace-theme-flash.css │ │ ├── pace-theme-flat-top.css │ │ ├── pace-theme-loading-bar.css │ │ ├── pace-theme-mac-osx.css │ │ ├── pace-theme-material.css │ │ └── pace-theme-minimal.css │ │ ├── purple │ │ ├── pace-theme-barber-shop.css │ │ ├── pace-theme-big-counter.css │ │ ├── pace-theme-bounce.css │ │ ├── pace-theme-center-atom.css │ │ ├── pace-theme-center-circle.css │ │ ├── pace-theme-center-radar.css │ │ ├── pace-theme-center-simple.css │ │ ├── pace-theme-corner-indicator.css │ │ ├── pace-theme-fill-left.css │ │ ├── pace-theme-flash.css │ │ ├── pace-theme-flat-top.css │ │ ├── pace-theme-loading-bar.css │ │ ├── pace-theme-mac-osx.css │ │ ├── pace-theme-material.css │ │ └── pace-theme-minimal.css │ │ ├── red │ │ ├── pace-theme-barber-shop.css │ │ ├── pace-theme-big-counter.css │ │ ├── pace-theme-bounce.css │ │ ├── pace-theme-center-atom.css │ │ ├── pace-theme-center-circle.css │ │ ├── pace-theme-center-radar.css │ │ ├── pace-theme-center-simple.css │ │ ├── pace-theme-corner-indicator.css │ │ ├── pace-theme-fill-left.css │ │ ├── pace-theme-flash.css │ │ ├── pace-theme-flat-top.css │ │ ├── pace-theme-loading-bar.css │ │ ├── pace-theme-mac-osx.css │ │ ├── pace-theme-material.css │ │ └── pace-theme-minimal.css │ │ ├── silver │ │ ├── pace-theme-barber-shop.css │ │ ├── pace-theme-big-counter.css │ │ ├── pace-theme-bounce.css │ │ ├── pace-theme-center-atom.css │ │ ├── pace-theme-center-circle.css │ │ ├── pace-theme-center-radar.css │ │ ├── pace-theme-center-simple.css │ │ ├── pace-theme-corner-indicator.css │ │ ├── pace-theme-fill-left.css │ │ ├── pace-theme-flash.css │ │ ├── pace-theme-flat-top.css │ │ ├── pace-theme-loading-bar.css │ │ ├── pace-theme-mac-osx.css │ │ ├── pace-theme-material.css │ │ └── pace-theme-minimal.css │ │ ├── white │ │ ├── pace-theme-barber-shop.css │ │ ├── pace-theme-big-counter.css │ │ ├── pace-theme-bounce.css │ │ ├── pace-theme-center-atom.css │ │ ├── pace-theme-center-circle.css │ │ ├── pace-theme-center-radar.css │ │ ├── pace-theme-center-simple.css │ │ ├── pace-theme-corner-indicator.css │ │ ├── pace-theme-fill-left.css │ │ ├── pace-theme-flash.css │ │ ├── pace-theme-flat-top.css │ │ ├── pace-theme-loading-bar.css │ │ ├── pace-theme-mac-osx.css │ │ ├── pace-theme-material.css │ │ └── pace-theme-minimal.css │ │ └── yellow │ │ ├── pace-theme-barber-shop.css │ │ ├── pace-theme-big-counter.css │ │ ├── pace-theme-bounce.css │ │ ├── pace-theme-center-atom.css │ │ ├── pace-theme-center-circle.css │ │ ├── pace-theme-center-radar.css │ │ ├── pace-theme-center-simple.css │ │ ├── pace-theme-corner-indicator.css │ │ ├── pace-theme-fill-left.css │ │ ├── pace-theme-flash.css │ │ ├── pace-theme-flat-top.css │ │ ├── pace-theme-loading-bar.css │ │ ├── pace-theme-mac-osx.css │ │ ├── pace-theme-material.css │ │ └── pace-theme-minimal.css │ ├── pangu │ └── pangu.min.js │ ├── sharer │ └── sharer.min.js │ ├── simple-icons │ └── icons │ │ ├── 1001tracklists.svg │ │ ├── 1password.svg │ │ ├── 3m.svg │ │ ├── 42.svg │ │ ├── 4chan.svg │ │ ├── 4d.svg │ │ ├── 500px.svg │ │ ├── abbott.svg │ │ ├── abbrobotstudio.svg │ │ ├── abbvie.svg │ │ ├── abletonlive.svg │ │ ├── aboutdotme.svg │ │ ├── abstract.svg │ │ ├── academia.svg │ │ ├── accenture.svg │ │ ├── acclaim.svg │ │ ├── accusoft.svg │ │ ├── acer.svg │ │ ├── acm.svg │ │ ├── actigraph.svg │ │ ├── activision.svg │ │ ├── activitypub.svg │ │ ├── acura.svg │ │ ├── adafruit.svg │ │ ├── adblock.svg │ │ ├── adblockplus.svg │ │ ├── addthis.svg │ │ ├── adguard.svg │ │ ├── adidas.svg │ │ ├── adminer.svg │ │ ├── adobe.svg │ │ ├── adobeacrobatreader.svg │ │ ├── adobeaftereffects.svg │ │ ├── adobeaudition.svg │ │ ├── adobecreativecloud.svg │ │ ├── adobedreamweaver.svg │ │ ├── adobefonts.svg │ │ ├── adobeillustrator.svg │ │ ├── adobeindesign.svg │ │ ├── adobelightroom.svg │ │ ├── adobelightroomclassic.svg │ │ ├── adobephotoshop.svg │ │ ├── adobepremierepro.svg │ │ ├── adobexd.svg │ │ ├── adonisjs.svg │ │ ├── adp.svg │ │ ├── adroll.svg │ │ ├── adventofcode.svg │ │ ├── adyen.svg │ │ ├── aerlingus.svg │ │ ├── aeroflot.svg │ │ ├── aeromexico.svg │ │ ├── aerospike.svg │ │ ├── aew.svg │ │ ├── affine.svg │ │ ├── affinity.svg │ │ ├── affinitydesigner.svg │ │ ├── affinityphoto.svg │ │ ├── affinitypublisher.svg │ │ ├── aframe.svg │ │ ├── agora.svg │ │ ├── aib.svg │ │ ├── aidungeon.svg │ │ ├── aiohttp.svg │ │ ├── aiqfome.svg │ │ ├── airasia.svg │ │ ├── airbnb.svg │ │ ├── airbrakedotio.svg │ │ ├── airbus.svg │ │ ├── airbyte.svg │ │ ├── aircall.svg │ │ ├── aircanada.svg │ │ ├── airchina.svg │ │ ├── airfrance.svg │ │ ├── airindia.svg │ │ ├── airplayaudio.svg │ │ ├── airplayvideo.svg │ │ ├── airtable.svg │ │ ├── ajv.svg │ │ ├── akamai.svg │ │ ├── akaunting.svg │ │ ├── alacritty.svg │ │ ├── albertheijn.svg │ │ ├── alby.svg │ │ ├── alchemy.svg │ │ ├── aldinord.svg │ │ ├── aldisud.svg │ │ ├── alfaromeo.svg │ │ ├── alfred.svg │ │ ├── algolia.svg │ │ ├── algorand.svg │ │ ├── alibabacloud.svg │ │ ├── alibabadotcom.svg │ │ ├── alienware.svg │ │ ├── aliexpress.svg │ │ ├── alipay.svg │ │ ├── allegro.svg │ │ ├── alliedmodders.svg │ │ ├── allocine.svg │ │ ├── alltrails.svg │ │ ├── alpinedotjs.svg │ │ ├── alpinelinux.svg │ │ ├── alteryx.svg │ │ ├── altiumdesigner.svg │ │ ├── alwaysdata.svg │ │ ├── amazon.svg │ │ ├── amazonalexa.svg │ │ ├── amazonapigateway.svg │ │ ├── amazonaws.svg │ │ ├── amazoncloudwatch.svg │ │ ├── amazondocumentdb.svg │ │ ├── amazondynamodb.svg │ │ ├── amazonec2.svg │ │ ├── amazonecs.svg │ │ ├── amazoneks.svg │ │ ├── amazonfiretv.svg │ │ ├── amazongames.svg │ │ ├── amazoniam.svg │ │ ├── amazonlumberyard.svg │ │ ├── amazonluna.svg │ │ ├── amazonpay.svg │ │ ├── amazonprime.svg │ │ ├── amazonrds.svg │ │ ├── amazonredshift.svg │ │ ├── amazonroute53.svg │ │ ├── amazons3.svg │ │ ├── amazonsimpleemailservice.svg │ │ ├── amazonsqs.svg │ │ ├── amd.svg │ │ ├── ameba.svg │ │ ├── americanairlines.svg │ │ ├── americanexpress.svg │ │ ├── amg.svg │ │ ├── amp.svg │ │ ├── amul.svg │ │ ├── ana.svg │ │ ├── anaconda.svg │ │ ├── analogue.svg │ │ ├── anchor.svg │ │ ├── andela.svg │ │ ├── android.svg │ │ ├── androidauto.svg │ │ ├── androidstudio.svg │ │ ├── angellist.svg │ │ ├── angular.svg │ │ ├── angularjs.svg │ │ ├── angularuniversal.svg │ │ ├── anilist.svg │ │ ├── ansible.svg │ │ ├── answer.svg │ │ ├── ansys.svg │ │ ├── anta.svg │ │ ├── antdesign.svg │ │ ├── antena3.svg │ │ ├── anydesk.svg │ │ ├── aol.svg │ │ ├── apache.svg │ │ ├── apacheairflow.svg │ │ ├── apacheant.svg │ │ ├── apachecassandra.svg │ │ ├── apachecloudstack.svg │ │ ├── apachecordova.svg │ │ ├── apachecouchdb.svg │ │ ├── apachedruid.svg │ │ ├── apacheecharts.svg │ │ ├── apacheflink.svg │ │ ├── apachegroovy.svg │ │ ├── apachehadoop.svg │ │ ├── apachehive.svg │ │ ├── apachejmeter.svg │ │ ├── apachekafka.svg │ │ ├── apachekylin.svg │ │ ├── apachemaven.svg │ │ ├── apachenetbeanside.svg │ │ ├── apacheopenoffice.svg │ │ ├── apacheparquet.svg │ │ ├── apachepulsar.svg │ │ ├── apacherocketmq.svg │ │ ├── apachesolr.svg │ │ ├── apachespark.svg │ │ ├── apachestorm.svg │ │ ├── apachetomcat.svg │ │ ├── aparat.svg │ │ ├── apifox.svg │ │ ├── apollographql.svg │ │ ├── apostrophe.svg │ │ ├── appian.svg │ │ ├── apple.svg │ │ ├── applearcade.svg │ │ ├── applemusic.svg │ │ ├── applenews.svg │ │ ├── applepay.svg │ │ ├── applepodcasts.svg │ │ ├── appletv.svg │ │ ├── appsignal.svg │ │ ├── appsmith.svg │ │ ├── appstore.svg │ │ ├── appveyor.svg │ │ ├── appwrite.svg │ │ ├── aqua.svg │ │ ├── aral.svg │ │ ├── arangodb.svg │ │ ├── arc.svg │ │ ├── arcgis.svg │ │ ├── archicad.svg │ │ ├── archiveofourown.svg │ │ ├── archlinux.svg │ │ ├── ardour.svg │ │ ├── arduino.svg │ │ ├── argo.svg │ │ ├── argos.svg │ │ ├── ariakit.svg │ │ ├── arkecosystem.svg │ │ ├── arlo.svg │ │ ├── arm.svg │ │ ├── armkeil.svg │ │ ├── arstechnica.svg │ │ ├── artifacthub.svg │ │ ├── artixlinux.svg │ │ ├── artstation.svg │ │ ├── arxiv.svg │ │ ├── asana.svg │ │ ├── asciidoctor.svg │ │ ├── asciinema.svg │ │ ├── asda.svg │ │ ├── aseprite.svg │ │ ├── askfm.svg │ │ ├── askubuntu.svg │ │ ├── assemblyscript.svg │ │ ├── astonmartin.svg │ │ ├── astro.svg │ │ ├── asus.svg │ │ ├── atandt.svg │ │ ├── atari.svg │ │ ├── atlassian.svg │ │ ├── atom.svg │ │ ├── auchan.svg │ │ ├── audacity.svg │ │ ├── audi.svg │ │ ├── audible.svg │ │ ├── audioboom.svg │ │ ├── audiomack.svg │ │ ├── audiotechnica.svg │ │ ├── aurelia.svg │ │ ├── auth0.svg │ │ ├── authelia.svg │ │ ├── authy.svg │ │ ├── autodesk.svg │ │ ├── autodeskrevit.svg │ │ ├── autohotkey.svg │ │ ├── automattic.svg │ │ ├── autoprefixer.svg │ │ ├── avajs.svg │ │ ├── avast.svg │ │ ├── avira.svg │ │ ├── awesomelists.svg │ │ ├── awesomewm.svg │ │ ├── awsamplify.svg │ │ ├── awsfargate.svg │ │ ├── awslambda.svg │ │ ├── awsorganizations.svg │ │ ├── axios.svg │ │ ├── azureartifacts.svg │ │ ├── azuredataexplorer.svg │ │ ├── azuredevops.svg │ │ ├── azurefunctions.svg │ │ ├── azurepipelines.svg │ │ ├── babel.svg │ │ ├── babylondotjs.svg │ │ ├── backblaze.svg │ │ ├── backbonedotjs.svg │ │ ├── backendless.svg │ │ ├── backstage.svg │ │ ├── badgr.svg │ │ ├── badoo.svg │ │ ├── baidu.svg │ │ ├── bamboo.svg │ │ ├── bandcamp.svg │ │ ├── bandlab.svg │ │ ├── bandrautomation.svg │ │ ├── bandsintown.svg │ │ ├── bankofamerica.svg │ │ ├── barclays.svg │ │ ├── baremetrics.svg │ │ ├── basecamp.svg │ │ ├── bastyon.svg │ │ ├── bata.svg │ │ ├── bathasu.svg │ │ ├── battledotnet.svg │ │ ├── bbc.svg │ │ ├── bbciplayer.svg │ │ ├── beatport.svg │ │ ├── beats.svg │ │ ├── beatsbydre.svg │ │ ├── behance.svg │ │ ├── beijingsubway.svg │ │ ├── bem.svg │ │ ├── bentley.svg │ │ ├── bento.svg │ │ ├── bentoml.svg │ │ ├── bereal.svg │ │ ├── betfair.svg │ │ ├── bigbasket.svg │ │ ├── bigbluebutton.svg │ │ ├── bigcartel.svg │ │ ├── bigcommerce.svg │ │ ├── bilibili.svg │ │ ├── billboard.svg │ │ ├── bim.svg │ │ ├── binance.svg │ │ ├── biolink.svg │ │ ├── bisecthosting.svg │ │ ├── bit.svg │ │ ├── bitbucket.svg │ │ ├── bitcoin.svg │ │ ├── bitcoincash.svg │ │ ├── bitcoinsv.svg │ │ ├── bitdefender.svg │ │ ├── bitly.svg │ │ ├── bitrise.svg │ │ ├── bitwarden.svg │ │ ├── bitwig.svg │ │ ├── blackberry.svg │ │ ├── blazemeter.svg │ │ ├── blazor.svg │ │ ├── blender.svg │ │ ├── blockchaindotcom.svg │ │ ├── blogger.svg │ │ ├── bloglovin.svg │ │ ├── blueprint.svg │ │ ├── bluetooth.svg │ │ ├── bmcsoftware.svg │ │ ├── bmw.svg │ │ ├── boardgamegeek.svg │ │ ├── boehringeringelheim.svg │ │ ├── boeing.svg │ │ ├── bombardier.svg │ │ ├── bookalope.svg │ │ ├── bookbub.svg │ │ ├── bookmeter.svg │ │ ├── bookmyshow.svg │ │ ├── bookstack.svg │ │ ├── boost.svg │ │ ├── boots.svg │ │ ├── bootstrap.svg │ │ ├── borgbackup.svg │ │ ├── bosch.svg │ │ ├── bose.svg │ │ ├── botblecms.svg │ │ ├── boulanger.svg │ │ ├── bower.svg │ │ ├── box.svg │ │ ├── boxysvg.svg │ │ ├── brandfolder.svg │ │ ├── brave.svg │ │ ├── breaker.svg │ │ ├── brevo.svg │ │ ├── britishairways.svg │ │ ├── broadcom.svg │ │ ├── bsd.svg │ │ ├── bspwm.svg │ │ ├── bt.svg │ │ ├── buddy.svg │ │ ├── budibase.svg │ │ ├── buefy.svg │ │ ├── buffer.svg │ │ ├── bugatti.svg │ │ ├── bugcrowd.svg │ │ ├── bugsnag.svg │ │ ├── buildkite.svg │ │ ├── bukalapak.svg │ │ ├── bulma.svg │ │ ├── bun.svg │ │ ├── bunq.svg │ │ ├── burgerking.svg │ │ ├── burton.svg │ │ ├── buymeacoffee.svg │ │ ├── buzzfeed.svg │ │ ├── bvg.svg │ │ ├── byjus.svg │ │ ├── byte.svg │ │ ├── bytedance.svg │ │ ├── c.svg │ │ ├── cachet.svg │ │ ├── caddy.svg │ │ ├── cadillac.svg │ │ ├── cafepress.svg │ │ ├── caffeine.svg │ │ ├── cairographics.svg │ │ ├── cairometro.svg │ │ ├── cakephp.svg │ │ ├── campaignmonitor.svg │ │ ├── canonical.svg │ │ ├── canva.svg │ │ ├── capacitor.svg │ │ ├── cardano.svg │ │ ├── carrd.svg │ │ ├── carrefour.svg │ │ ├── carthrottle.svg │ │ ├── carto.svg │ │ ├── cashapp.svg │ │ ├── castbox.svg │ │ ├── castorama.svg │ │ ├── castro.svg │ │ ├── caterpillar.svg │ │ ├── cbs.svg │ │ ├── cdprojekt.svg │ │ ├── celery.svg │ │ ├── centos.svg │ │ ├── ceph.svg │ │ ├── cesium.svg │ │ ├── chai.svg │ │ ├── chainguard.svg │ │ ├── chainlink.svg │ │ ├── chakraui.svg │ │ ├── channel4.svg │ │ ├── chartdotjs.svg │ │ ├── chartmogul.svg │ │ ├── chase.svg │ │ ├── chatbot.svg │ │ ├── chatwoot.svg │ │ ├── checkio.svg │ │ ├── checkmarx.svg │ │ ├── checkmk.svg │ │ ├── chef.svg │ │ ├── chemex.svg │ │ ├── chevrolet.svg │ │ ├── chianetwork.svg │ │ ├── chinaeasternairlines.svg │ │ ├── chinasouthernairlines.svg │ │ ├── chocolatey.svg │ │ ├── chromatic.svg │ │ ├── chromecast.svg │ │ ├── chrysler.svg │ │ ├── chupachups.svg │ │ ├── cilium.svg │ │ ├── cinema4d.svg │ │ ├── circle.svg │ │ ├── circleci.svg │ │ ├── circuitverse.svg │ │ ├── cirrusci.svg │ │ ├── cisco.svg │ │ ├── citrix.svg │ │ ├── citroen.svg │ │ ├── civicrm.svg │ │ ├── civo.svg │ │ ├── ckeditor4.svg │ │ ├── clarifai.svg │ │ ├── claris.svg │ │ ├── clarivate.svg │ │ ├── clickhouse.svg │ │ ├── clickup.svg │ │ ├── clion.svg │ │ ├── cliqz.svg │ │ ├── clockify.svg │ │ ├── clojure.svg │ │ ├── cloud66.svg │ │ ├── cloudbees.svg │ │ ├── cloudcannon.svg │ │ ├── cloudera.svg │ │ ├── cloudflare.svg │ │ ├── cloudflarepages.svg │ │ ├── cloudfoundry.svg │ │ ├── cloudsmith.svg │ │ ├── cloudways.svg │ │ ├── clubhouse.svg │ │ ├── clyp.svg │ │ ├── cmake.svg │ │ ├── cncf.svg │ │ ├── cnn.svg │ │ ├── cocacola.svg │ │ ├── cockpit.svg │ │ ├── cockroachlabs.svg │ │ ├── cocoapods.svg │ │ ├── cocos.svg │ │ ├── coda.svg │ │ ├── codacy.svg │ │ ├── codeberg.svg │ │ ├── codecademy.svg │ │ ├── codeceptjs.svg │ │ ├── codechef.svg │ │ ├── codeclimate.svg │ │ ├── codecov.svg │ │ ├── codefactor.svg │ │ ├── codeforces.svg │ │ ├── codeigniter.svg │ │ ├── codeium.svg │ │ ├── codemagic.svg │ │ ├── codemirror.svg │ │ ├── codenewbie.svg │ │ ├── codepen.svg │ │ ├── codeproject.svg │ │ ├── codereview.svg │ │ ├── codersrank.svg │ │ ├── coderwall.svg │ │ ├── codesandbox.svg │ │ ├── codeship.svg │ │ ├── codesignal.svg │ │ ├── codestream.svg │ │ ├── codewars.svg │ │ ├── codingame.svg │ │ ├── codingninjas.svg │ │ ├── codio.svg │ │ ├── coffeescript.svg │ │ ├── cognizant.svg │ │ ├── coil.svg │ │ ├── coinbase.svg │ │ ├── coinmarketcap.svg │ │ ├── commerzbank.svg │ │ ├── commitlint.svg │ │ ├── commodore.svg │ │ ├── commonworkflowlanguage.svg │ │ ├── compilerexplorer.svg │ │ ├── composer.svg │ │ ├── comptia.svg │ │ ├── comsol.svg │ │ ├── conan.svg │ │ ├── concourse.svg │ │ ├── condaforge.svg │ │ ├── conekta.svg │ │ ├── confluence.svg │ │ ├── construct3.svg │ │ ├── consul.svg │ │ ├── contactlesspayment.svg │ │ ├── containerd.svg │ │ ├── contao.svg │ │ ├── contentful.svg │ │ ├── conventionalcommits.svg │ │ ├── convertio.svg │ │ ├── cookiecutter.svg │ │ ├── coop.svg │ │ ├── cora.svg │ │ ├── coronaengine.svg │ │ ├── coronarenderer.svg │ │ ├── corsair.svg │ │ ├── couchbase.svg │ │ ├── counterstrike.svg │ │ ├── countingworkspro.svg │ │ ├── coursera.svg │ │ ├── coveralls.svg │ │ ├── cpanel.svg │ │ ├── cplusplus.svg │ │ ├── cplusplusbuilder.svg │ │ ├── craftcms.svg │ │ ├── craftsman.svg │ │ ├── cratedb.svg │ │ ├── crayon.svg │ │ ├── creality.svg │ │ ├── createreactapp.svg │ │ ├── creativecommons.svg │ │ ├── creativetechnology.svg │ │ ├── credly.svg │ │ ├── crehana.svg │ │ ├── criticalrole.svg │ │ ├── crowdin.svg │ │ ├── crowdsource.svg │ │ ├── crunchbase.svg │ │ ├── crunchyroll.svg │ │ ├── cryengine.svg │ │ ├── crystal.svg │ │ ├── csharp.svg │ │ ├── css3.svg │ │ ├── cssmodules.svg │ │ ├── csswizardry.svg │ │ ├── cts.svg │ │ ├── cucumber.svg │ │ ├── cultura.svg │ │ ├── curl.svg │ │ ├── curseforge.svg │ │ ├── cyberdefenders.svg │ │ ├── cycling74.svg │ │ ├── cypress.svg │ │ ├── cytoscapedotjs.svg │ │ ├── d.svg │ │ ├── d3dotjs.svg │ │ ├── dacia.svg │ │ ├── daf.svg │ │ ├── dailymotion.svg │ │ ├── daimler.svg │ │ ├── daisyui.svg │ │ ├── dapr.svg │ │ ├── darkreader.svg │ │ ├── dart.svg │ │ ├── darty.svg │ │ ├── daserste.svg │ │ ├── dash.svg │ │ ├── dashlane.svg │ │ ├── dask.svg │ │ ├── dassaultsystemes.svg │ │ ├── databricks.svg │ │ ├── datacamp.svg │ │ ├── datadog.svg │ │ ├── datadotai.svg │ │ ├── datagrip.svg │ │ ├── dataiku.svg │ │ ├── datastax.svg │ │ ├── dataverse.svg │ │ ├── datocms.svg │ │ ├── datto.svg │ │ ├── dazn.svg │ │ ├── dblp.svg │ │ ├── dbt.svg │ │ ├── dcentertainment.svg │ │ ├── debian.svg │ │ ├── decapcms.svg │ │ ├── dedge.svg │ │ ├── deepin.svg │ │ ├── deepnote.svg │ │ ├── deezer.svg │ │ ├── delicious.svg │ │ ├── deliveroo.svg │ │ ├── dell.svg │ │ ├── delonghi.svg │ │ ├── delphi.svg │ │ ├── delta.svg │ │ ├── deno.svg │ │ ├── denon.svg │ │ ├── dependabot.svg │ │ ├── dependencycheck.svg │ │ ├── derspiegel.svg │ │ ├── designernews.svg │ │ ├── deutschebahn.svg │ │ ├── deutschebank.svg │ │ ├── devdotto.svg │ │ ├── devexpress.svg │ │ ├── deviantart.svg │ │ ├── devpost.svg │ │ ├── devrant.svg │ │ ├── dgraph.svg │ │ ├── dhl.svg │ │ ├── diagramsdotnet.svg │ │ ├── dialogflow.svg │ │ ├── diaspora.svg │ │ ├── digg.svg │ │ ├── digikeyelectronics.svg │ │ ├── digitalocean.svg │ │ ├── dior.svg │ │ ├── directus.svg │ │ ├── discogs.svg │ │ ├── discord.svg │ │ ├── discourse.svg │ │ ├── discover.svg │ │ ├── disqus.svg │ │ ├── disroot.svg │ │ ├── distrokid.svg │ │ ├── django.svg │ │ ├── dji.svg │ │ ├── dlib.svg │ │ ├── dlna.svg │ │ ├── dm.svg │ │ ├── docker.svg │ │ ├── docsdotrs.svg │ │ ├── docsify.svg │ │ ├── docusaurus.svg │ │ ├── docusign.svg │ │ ├── dogecoin.svg │ │ ├── doi.svg │ │ ├── dolby.svg │ │ ├── doordash.svg │ │ ├── dotenv.svg │ │ ├── dotnet.svg │ │ ├── douban.svg │ │ ├── doubanread.svg │ │ ├── dovecot.svg │ │ ├── dpd.svg │ │ ├── dragonframe.svg │ │ ├── draugiemdotlv.svg │ │ ├── dribbble.svg │ │ ├── drone.svg │ │ ├── drooble.svg │ │ ├── dropbox.svg │ │ ├── drupal.svg │ │ ├── dsautomobiles.svg │ │ ├── dts.svg │ │ ├── dtube.svg │ │ ├── ducati.svg │ │ ├── duckdb.svg │ │ ├── duckduckgo.svg │ │ ├── dungeonsanddragons.svg │ │ ├── dunked.svg │ │ ├── duolingo.svg │ │ ├── dvc.svg │ │ ├── dwavesystems.svg │ │ ├── dwm.svg │ │ ├── dynamics365.svg │ │ ├── dynatrace.svg │ │ ├── e.svg │ │ ├── e3.svg │ │ ├── ea.svg │ │ ├── eagle.svg │ │ ├── easyeda.svg │ │ ├── easyjet.svg │ │ ├── ebay.svg │ │ ├── ebox.svg │ │ ├── eclipseadoptium.svg │ │ ├── eclipseche.svg │ │ ├── eclipseide.svg │ │ ├── eclipsejetty.svg │ │ ├── eclipsemosquitto.svg │ │ ├── eclipsevertdotx.svg │ │ ├── edeka.svg │ │ ├── editorconfig.svg │ │ ├── edotleclerc.svg │ │ ├── edx.svg │ │ ├── egghead.svg │ │ ├── egnyte.svg │ │ ├── eightsleep.svg │ │ ├── elastic.svg │ │ ├── elasticcloud.svg │ │ ├── elasticsearch.svg │ │ ├── elasticstack.svg │ │ ├── elavon.svg │ │ ├── electron.svg │ │ ├── electronbuilder.svg │ │ ├── electronfiddle.svg │ │ ├── element.svg │ │ ├── elementary.svg │ │ ├── elementor.svg │ │ ├── eleventy.svg │ │ ├── elgato.svg │ │ ├── elixir.svg │ │ ├── eljueves.svg │ │ ├── ello.svg │ │ ├── elm.svg │ │ ├── elsevier.svg │ │ ├── embarcadero.svg │ │ ├── emberdotjs.svg │ │ ├── emby.svg │ │ ├── emirates.svg │ │ ├── emlakjet.svg │ │ ├── empirekred.svg │ │ ├── engadget.svg │ │ ├── enpass.svg │ │ ├── enterprisedb.svg │ │ ├── envato.svg │ │ ├── envoyproxy.svg │ │ ├── epel.svg │ │ ├── epicgames.svg │ │ ├── epson.svg │ │ ├── equinixmetal.svg │ │ ├── ericsson.svg │ │ ├── erlang.svg │ │ ├── esbuild.svg │ │ ├── esea.svg │ │ ├── eslgaming.svg │ │ ├── eslint.svg │ │ ├── esphome.svg │ │ ├── espressif.svg │ │ ├── esri.svg │ │ ├── etcd.svg │ │ ├── ethereum.svg │ │ ├── ethiopianairlines.svg │ │ ├── etihadairways.svg │ │ ├── etsy.svg │ │ ├── eventbrite.svg │ │ ├── eventstore.svg │ │ ├── evernote.svg │ │ ├── exercism.svg │ │ ├── exordo.svg │ │ ├── exoscale.svg │ │ ├── expensify.svg │ │ ├── expertsexchange.svg │ │ ├── expo.svg │ │ ├── express.svg │ │ ├── expressvpn.svg │ │ ├── eyeem.svg │ │ ├── f1.svg │ │ ├── f5.svg │ │ ├── facebook.svg │ │ ├── facebookgaming.svg │ │ ├── facebooklive.svg │ │ ├── faceit.svg │ │ ├── facepunch.svg │ │ ├── falco.svg │ │ ├── falcon.svg │ │ ├── fampay.svg │ │ ├── fandango.svg │ │ ├── fandom.svg │ │ ├── fanfou.svg │ │ ├── fantom.svg │ │ ├── fareharbor.svg │ │ ├── farfetch.svg │ │ ├── fastapi.svg │ │ ├── fastify.svg │ │ ├── fastlane.svg │ │ ├── fastly.svg │ │ ├── fathom.svg │ │ ├── fauna.svg │ │ ├── favro.svg │ │ ├── fdroid.svg │ │ ├── feathub.svg │ │ ├── fedex.svg │ │ ├── fedora.svg │ │ ├── feedly.svg │ │ ├── ferrari.svg │ │ ├── ferrarinv.svg │ │ ├── ferretdb.svg │ │ ├── ffmpeg.svg │ │ ├── fi.svg │ │ ├── fiat.svg │ │ ├── fidoalliance.svg │ │ ├── fifa.svg │ │ ├── fig.svg │ │ ├── figma.svg │ │ ├── figshare.svg │ │ ├── fila.svg │ │ ├── files.svg │ │ ├── filezilla.svg │ │ ├── fing.svg │ │ ├── firebase.svg │ │ ├── firefish.svg │ │ ├── fireflyiii.svg │ │ ├── firefox.svg │ │ ├── firefoxbrowser.svg │ │ ├── fireship.svg │ │ ├── firewalla.svg │ │ ├── first.svg │ │ ├── fitbit.svg │ │ ├── fite.svg │ │ ├── fivem.svg │ │ ├── fiverr.svg │ │ ├── flask.svg │ │ ├── flat.svg │ │ ├── flathub.svg │ │ ├── flatpak.svg │ │ ├── flattr.svg │ │ ├── flickr.svg │ │ ├── flightaware.svg │ │ ├── flipboard.svg │ │ ├── flipkart.svg │ │ ├── floatplane.svg │ │ ├── flood.svg │ │ ├── fluentbit.svg │ │ ├── fluentd.svg │ │ ├── fluke.svg │ │ ├── flutter.svg │ │ ├── flux.svg │ │ ├── fluxus.svg │ │ ├── flyway.svg │ │ ├── fmod.svg │ │ ├── fnac.svg │ │ ├── folium.svg │ │ ├── fonoma.svg │ │ ├── fontawesome.svg │ │ ├── fontbase.svg │ │ ├── fontforge.svg │ │ ├── foodpanda.svg │ │ ├── ford.svg │ │ ├── forestry.svg │ │ ├── forgejo.svg │ │ ├── formstack.svg │ │ ├── fortinet.svg │ │ ├── fortran.svg │ │ ├── fossa.svg │ │ ├── fossilscm.svg │ │ ├── foursquare.svg │ │ ├── foursquarecityguide.svg │ │ ├── fox.svg │ │ ├── foxtel.svg │ │ ├── fozzy.svg │ │ ├── framer.svg │ │ ├── framework7.svg │ │ ├── franprix.svg │ │ ├── fraunhofergesellschaft.svg │ │ ├── freebsd.svg │ │ ├── freecodecamp.svg │ │ ├── freedesktopdotorg.svg │ │ ├── freelancer.svg │ │ ├── freenas.svg │ │ ├── freepik.svg │ │ ├── frontendmentor.svg │ │ ├── frontify.svg │ │ ├── fsecure.svg │ │ ├── fsharp.svg │ │ ├── fugacloud.svg │ │ ├── fujifilm.svg │ │ ├── fujitsu.svg │ │ ├── funimation.svg │ │ ├── furaffinity.svg │ │ ├── furrynetwork.svg │ │ ├── futurelearn.svg │ │ ├── g2.svg │ │ ├── g2a.svg │ │ ├── gameandwatch.svg │ │ ├── gamebanana.svg │ │ ├── gamedeveloper.svg │ │ ├── gamejolt.svg │ │ ├── gamemaker.svg │ │ ├── garmin.svg │ │ ├── gatling.svg │ │ ├── gatsby.svg │ │ ├── gdal.svg │ │ ├── geant.svg │ │ ├── geeksforgeeks.svg │ │ ├── generalelectric.svg │ │ ├── generalmotors.svg │ │ ├── genius.svg │ │ ├── gentoo.svg │ │ ├── geocaching.svg │ │ ├── gerrit.svg │ │ ├── ghost.svg │ │ ├── ghostery.svg │ │ ├── gimp.svg │ │ ├── giphy.svg │ │ ├── git.svg │ │ ├── gitbook.svg │ │ ├── gitea.svg │ │ ├── gitee.svg │ │ ├── gitextensions.svg │ │ ├── github.svg │ │ ├── githubactions.svg │ │ ├── githubpages.svg │ │ ├── githubsponsors.svg │ │ ├── gitignoredotio.svg │ │ ├── gitkraken.svg │ │ ├── gitlab.svg │ │ ├── gitlfs.svg │ │ ├── gitpod.svg │ │ ├── gitter.svg │ │ ├── glassdoor.svg │ │ ├── glitch.svg │ │ ├── globus.svg │ │ ├── gmail.svg │ │ ├── gnome.svg │ │ ├── gnometerminal.svg │ │ ├── gnu.svg │ │ ├── gnubash.svg │ │ ├── gnuemacs.svg │ │ ├── gnuicecat.svg │ │ ├── gnuprivacyguard.svg │ │ ├── gnusocial.svg │ │ ├── go.svg │ │ ├── gocd.svg │ │ ├── godaddy.svg │ │ ├── godotengine.svg │ │ ├── gofundme.svg │ │ ├── gogdotcom.svg │ │ ├── goland.svg │ │ ├── goldenline.svg │ │ ├── goodreads.svg │ │ ├── google.svg │ │ ├── googleadmob.svg │ │ ├── googleads.svg │ │ ├── googleadsense.svg │ │ ├── googleanalytics.svg │ │ ├── googleappsscript.svg │ │ ├── googleassistant.svg │ │ ├── googlebard.svg │ │ ├── googlebigquery.svg │ │ ├── googlecalendar.svg │ │ ├── googlecardboard.svg │ │ ├── googlechat.svg │ │ ├── googlechrome.svg │ │ ├── googleclassroom.svg │ │ ├── googlecloud.svg │ │ ├── googlecloudcomposer.svg │ │ ├── googlecolab.svg │ │ ├── googlecontaineroptimizedos.svg │ │ ├── googledatastudio.svg │ │ ├── googledocs.svg │ │ ├── googledomains.svg │ │ ├── googledrive.svg │ │ ├── googleearth.svg │ │ ├── googleearthengine.svg │ │ ├── googlefit.svg │ │ ├── googlefonts.svg │ │ ├── googleforms.svg │ │ ├── googlehangouts.svg │ │ ├── googlehome.svg │ │ ├── googlekeep.svg │ │ ├── googlelens.svg │ │ ├── googlemaps.svg │ │ ├── googlemarketingplatform.svg │ │ ├── googlemeet.svg │ │ ├── googlemessages.svg │ │ ├── googlemybusiness.svg │ │ ├── googlenearby.svg │ │ ├── googlenews.svg │ │ ├── googleoptimize.svg │ │ ├── googlepay.svg │ │ ├── googlephotos.svg │ │ ├── googleplay.svg │ │ ├── googlepodcasts.svg │ │ ├── googlescholar.svg │ │ ├── googlesearchconsole.svg │ │ ├── googlesheets.svg │ │ ├── googleslides.svg │ │ ├── googlestreetview.svg │ │ ├── googletagmanager.svg │ │ ├── googletranslate.svg │ │ ├── gotomeeting.svg │ │ ├── grab.svg │ │ ├── gradle.svg │ │ ├── gradleplaypublisher.svg │ │ ├── grafana.svg │ │ ├── grammarly.svg │ │ ├── grandfrais.svg │ │ ├── graphql.svg │ │ ├── grav.svg │ │ ├── gravatar.svg │ │ ├── graylog.svg │ │ ├── greenhouse.svg │ │ ├── greensock.svg │ │ ├── griddotai.svg │ │ ├── gridsome.svg │ │ ├── groupme.svg │ │ ├── groupon.svg │ │ ├── grubhub.svg │ │ ├── grunt.svg │ │ ├── gsk.svg │ │ ├── gstreamer.svg │ │ ├── gtk.svg │ │ ├── guangzhoumetro.svg │ │ ├── guilded.svg │ │ ├── gulp.svg │ │ ├── gumroad.svg │ │ ├── gumtree.svg │ │ ├── gunicorn.svg │ │ ├── gurobi.svg │ │ ├── gutenberg.svg │ │ ├── h3.svg │ │ ├── habr.svg │ │ ├── hackaday.svg │ │ ├── hackclub.svg │ │ ├── hackerearth.svg │ │ ├── hackernoon.svg │ │ ├── hackerone.svg │ │ ├── hackerrank.svg │ │ ├── hackster.svg │ │ ├── hackthebox.svg │ │ ├── hal.svg │ │ ├── handlebarsdotjs.svg │ │ ├── handm.svg │ │ ├── handshake.svg │ │ ├── handshake_protocol.svg │ │ ├── happycow.svg │ │ ├── harbor.svg │ │ ├── harmonyos.svg │ │ ├── hashicorp.svg │ │ ├── hashnode.svg │ │ ├── haskell.svg │ │ ├── hasura.svg │ │ ├── hatenabookmark.svg │ │ ├── haveibeenpwned.svg │ │ ├── haxe.svg │ │ ├── hbo.svg │ │ ├── hcl.svg │ │ ├── headlessui.svg │ │ ├── headspace.svg │ │ ├── hearth.svg │ │ ├── hearthisdotat.svg │ │ ├── hedera.svg │ │ ├── hellofresh.svg │ │ ├── hellyhansen.svg │ │ ├── helm.svg │ │ ├── helpdesk.svg │ │ ├── helpscout.svg │ │ ├── here.svg │ │ ├── heroku.svg │ │ ├── hetzner.svg │ │ ├── hexlet.svg │ │ ├── hexo.svg │ │ ├── hey.svg │ │ ├── hibernate.svg │ │ ├── hibob.svg │ │ ├── hilton.svg │ │ ├── hitachi.svg │ │ ├── hive.svg │ │ ├── hive_blockchain.svg │ │ ├── homeadvisor.svg │ │ ├── homeassistant.svg │ │ ├── homeassistantcommunitystore.svg │ │ ├── homebrew.svg │ │ ├── homebridge.svg │ │ ├── homify.svg │ │ ├── honda.svg │ │ ├── honey.svg │ │ ├── honor.svg │ │ ├── hootsuite.svg │ │ ├── hoppscotch.svg │ │ ├── hotelsdotcom.svg │ │ ├── hotjar.svg │ │ ├── hotwire.svg │ │ ├── houdini.svg │ │ ├── houzz.svg │ │ ├── hp.svg │ │ ├── hsbc.svg │ │ ├── html5.svg │ │ ├── htmlacademy.svg │ │ ├── htop.svg │ │ ├── httpie.svg │ │ ├── huawei.svg │ │ ├── hubspot.svg │ │ ├── hugo.svg │ │ ├── hulu.svg │ │ ├── humblebundle.svg │ │ ├── hungryjacks.svg │ │ ├── hurriyetemlak.svg │ │ ├── husqvarna.svg │ │ ├── hyper.svg │ │ ├── hyperledger.svg │ │ ├── hypothesis.svg │ │ ├── hyundai.svg │ │ ├── i18next.svg │ │ ├── i3.svg │ │ ├── iata.svg │ │ ├── ibeacon.svg │ │ ├── ibm.svg │ │ ├── ibmcloud.svg │ │ ├── ibmwatson.svg │ │ ├── iced.svg │ │ ├── iceland.svg │ │ ├── icinga.svg │ │ ├── icloud.svg │ │ ├── icomoon.svg │ │ ├── icon.svg │ │ ├── iconfinder.svg │ │ ├── iconify.svg │ │ ├── iconjar.svg │ │ ├── icons8.svg │ │ ├── icq.svg │ │ ├── ieee.svg │ │ ├── ifixit.svg │ │ ├── ifood.svg │ │ ├── ifttt.svg │ │ ├── igdb.svg │ │ ├── iheartradio.svg │ │ ├── ikea.svg │ │ ├── iledefrancemobilites.svg │ │ ├── imagej.svg │ │ ├── imdb.svg │ │ ├── imgur.svg │ │ ├── immer.svg │ │ ├── immich.svg │ │ ├── imou.svg │ │ ├── improvmx.svg │ │ ├── indeed.svg │ │ ├── indigo.svg │ │ ├── inertia.svg │ │ ├── infiniti.svg │ │ ├── influxdb.svg │ │ ├── infoq.svg │ │ ├── informatica.svg │ │ ├── infosys.svg │ │ ├── infracost.svg │ │ ├── ingress.svg │ │ ├── inkdrop.svg │ │ ├── inkscape.svg │ │ ├── insomnia.svg │ │ ├── instacart.svg │ │ ├── instagram.svg │ │ ├── instapaper.svg │ │ ├── instatus.svg │ │ ├── instructables.svg │ │ ├── instructure.svg │ │ ├── integromat.svg │ │ ├── intel.svg │ │ ├── intellijidea.svg │ │ ├── interactiondesignfoundation.svg │ │ ├── interactjs.svg │ │ ├── interbase.svg │ │ ├── intercom.svg │ │ ├── intermarche.svg │ │ ├── internetarchive.svg │ │ ├── internetcomputer.svg │ │ ├── internetexplorer.svg │ │ ├── intigriti.svg │ │ ├── intuit.svg │ │ ├── invision.svg │ │ ├── invoiceninja.svg │ │ ├── iobroker.svg │ │ ├── ionic.svg │ │ ├── ionos.svg │ │ ├── ios.svg │ │ ├── iota.svg │ │ ├── ipfs.svg │ │ ├── iris.svg │ │ ├── isc2.svg │ │ ├── iscsquared.svg │ │ ├── issuu.svg │ │ ├── istio.svg │ │ ├── itchdotio.svg │ │ ├── iterm2.svg │ │ ├── itunes.svg │ │ ├── itvx.svg │ │ ├── iveco.svg │ │ ├── jabber.svg │ │ ├── jaeger.svg │ │ ├── jaguar.svg │ │ ├── jamboard.svg │ │ ├── jameson.svg │ │ ├── jamstack.svg │ │ ├── jasmine.svg │ │ ├── javascript.svg │ │ ├── jbl.svg │ │ ├── jcb.svg │ │ ├── jeep.svg │ │ ├── jekyll.svg │ │ ├── jellyfin.svg │ │ ├── jenkins.svg │ │ ├── jenkinsx.svg │ │ ├── jest.svg │ │ ├── jet.svg │ │ ├── jetblue.svg │ │ ├── jetbrains.svg │ │ ├── jetpackcompose.svg │ │ ├── jfrog.svg │ │ ├── jfrogbintray.svg │ │ ├── jfrogpipelines.svg │ │ ├── jinja.svg │ │ ├── jira.svg │ │ ├── jirasoftware.svg │ │ ├── jitsi.svg │ │ ├── johndeere.svg │ │ ├── joomla.svg │ │ ├── joplin.svg │ │ ├── jordan.svg │ │ ├── jovian.svg │ │ ├── jpeg.svg │ │ ├── jquery.svg │ │ ├── jrgroup.svg │ │ ├── jsdelivr.svg │ │ ├── jsfiddle.svg │ │ ├── json.svg │ │ ├── jsonwebtokens.svg │ │ ├── jss.svg │ │ ├── juce.svg │ │ ├── juejin.svg │ │ ├── juke.svg │ │ ├── julia.svg │ │ ├── junipernetworks.svg │ │ ├── junit5.svg │ │ ├── jupyter.svg │ │ ├── justeat.svg │ │ ├── justgiving.svg │ │ ├── k3s.svg │ │ ├── k6.svg │ │ ├── kaggle.svg │ │ ├── kahoot.svg │ │ ├── kaios.svg │ │ ├── kakao.svg │ │ ├── kakaotalk.svg │ │ ├── kalilinux.svg │ │ ├── kamailio.svg │ │ ├── kaniko.svg │ │ ├── karlsruherverkehrsverbund.svg │ │ ├── kasasmart.svg │ │ ├── kashflow.svg │ │ ├── kaspersky.svg │ │ ├── katacoda.svg │ │ ├── katana.svg │ │ ├── kaufland.svg │ │ ├── kde.svg │ │ ├── kdenlive.svg │ │ ├── kedro.svg │ │ ├── keepachangelog.svg │ │ ├── keepassxc.svg │ │ ├── kentico.svg │ │ ├── keras.svg │ │ ├── keybase.svg │ │ ├── keycdn.svg │ │ ├── keystone.svg │ │ ├── kfc.svg │ │ ├── khanacademy.svg │ │ ├── khronosgroup.svg │ │ ├── kia.svg │ │ ├── kibana.svg │ │ ├── kicad.svg │ │ ├── kickstarter.svg │ │ ├── kik.svg │ │ ├── kingstontechnology.svg │ │ ├── kinopoisk.svg │ │ ├── kinsta.svg │ │ ├── kirby.svg │ │ ├── kit.svg │ │ ├── kitsu.svg │ │ ├── klarna.svg │ │ ├── klm.svg │ │ ├── klook.svg │ │ ├── knative.svg │ │ ├── knowledgebase.svg │ │ ├── known.svg │ │ ├── koa.svg │ │ ├── koc.svg │ │ ├── kodak.svg │ │ ├── kodi.svg │ │ ├── kofax.svg │ │ ├── kofi.svg │ │ ├── komoot.svg │ │ ├── konami.svg │ │ ├── kong.svg │ │ ├── kongregate.svg │ │ ├── konva.svg │ │ ├── kotlin.svg │ │ ├── koyeb.svg │ │ ├── krita.svg │ │ ├── ktm.svg │ │ ├── kuaishou.svg │ │ ├── kubernetes.svg │ │ ├── kubuntu.svg │ │ ├── kuma.svg │ │ ├── kuula.svg │ │ ├── kyocera.svg │ │ ├── labview.svg │ │ ├── lada.svg │ │ ├── lamborghini.svg │ │ ├── landrover.svg │ │ ├── lapce.svg │ │ ├── laragon.svg │ │ ├── laravel.svg │ │ ├── laravelhorizon.svg │ │ ├── laravelnova.svg │ │ ├── lastdotfm.svg │ │ ├── lastpass.svg │ │ ├── latex.svg │ │ ├── launchpad.svg │ │ ├── lazarus.svg │ │ ├── lbry.svg │ │ ├── leaderprice.svg │ │ ├── leaflet.svg │ │ ├── leagueoflegends.svg │ │ ├── leanpub.svg │ │ ├── leetcode.svg │ │ ├── legacygames.svg │ │ ├── leica.svg │ │ ├── lemmy.svg │ │ ├── lenovo.svg │ │ ├── lens.svg │ │ ├── leptos.svg │ │ ├── lerna.svg │ │ ├── leroymerlin.svg │ │ ├── less.svg │ │ ├── letsencrypt.svg │ │ ├── letterboxd.svg │ │ ├── levelsdotfyi.svg │ │ ├── lg.svg │ │ ├── lgtm.svg │ │ ├── liberadotchat.svg │ │ ├── liberapay.svg │ │ ├── librariesdotio.svg │ │ ├── librarything.svg │ │ ├── libreoffice.svg │ │ ├── libuv.svg │ │ ├── lichess.svg │ │ ├── lidl.svg │ │ ├── lifx.svg │ │ ├── lightburn.svg │ │ ├── lighthouse.svg │ │ ├── lightning.svg │ │ ├── line.svg │ │ ├── lineageos.svg │ │ ├── linear.svg │ │ ├── linkedin.svg │ │ ├── linkerd.svg │ │ ├── linkfire.svg │ │ ├── linktree.svg │ │ ├── linux.svg │ │ ├── linuxcontainers.svg │ │ ├── linuxfoundation.svg │ │ ├── linuxmint.svg │ │ ├── lionair.svg │ │ ├── liquibase.svg │ │ ├── lit.svg │ │ ├── litecoin.svg │ │ ├── litiengine.svg │ │ ├── livechat.svg │ │ ├── livejournal.svg │ │ ├── livewire.svg │ │ ├── llvm.svg │ │ ├── lmms.svg │ │ ├── local.svg │ │ ├── lodash.svg │ │ ├── logitech.svg │ │ ├── logmein.svg │ │ ├── logseq.svg │ │ ├── logstash.svg │ │ ├── looker.svg │ │ ├── loom.svg │ │ ├── loop.svg │ │ ├── loopback.svg │ │ ├── lospec.svg │ │ ├── lotpolishairlines.svg │ │ ├── ltspice.svg │ │ ├── lua.svg │ │ ├── lubuntu.svg │ │ ├── ludwig.svg │ │ ├── lufthansa.svg │ │ ├── lumen.svg │ │ ├── lunacy.svg │ │ ├── lutris.svg │ │ ├── lydia.svg │ │ ├── lyft.svg │ │ ├── maas.svg │ │ ├── macos.svg │ │ ├── macpaw.svg │ │ ├── macys.svg │ │ ├── magasinsu.svg │ │ ├── magento.svg │ │ ├── magisk.svg │ │ ├── mailchimp.svg │ │ ├── maildotcom.svg │ │ ├── maildotru.svg │ │ ├── mailgun.svg │ │ ├── majorleaguehacking.svg │ │ ├── makerbot.svg │ │ ├── mambaui.svg │ │ ├── mamp.svg │ │ ├── man.svg │ │ ├── manageiq.svg │ │ ├── manjaro.svg │ │ ├── mantine.svg │ │ ├── mapbox.svg │ │ ├── maplibre.svg │ │ ├── mariadb.svg │ │ ├── mariadbfoundation.svg │ │ ├── markdown.svg │ │ ├── marketo.svg │ │ ├── marko.svg │ │ ├── marriott.svg │ │ ├── marvelapp.svg │ │ ├── maserati.svg │ │ ├── mastercard.svg │ │ ├── mastercomfig.svg │ │ ├── mastodon.svg │ │ ├── materialdesign.svg │ │ ├── materialdesignicons.svg │ │ ├── matillion.svg │ │ ├── matomo.svg │ │ ├── matrix.svg │ │ ├── matterdotjs.svg │ │ ├── mattermost.svg │ │ ├── matternet.svg │ │ ├── mautic.svg │ │ ├── max.svg │ │ ├── maxplanckgesellschaft.svg │ │ ├── maytag.svg │ │ ├── mazda.svg │ │ ├── mcafee.svg │ │ ├── mcdonalds.svg │ │ ├── mclaren.svg │ │ ├── mdbook.svg │ │ ├── mdnwebdocs.svg │ │ ├── mdx.svg │ │ ├── mediafire.svg │ │ ├── mediamarkt.svg │ │ ├── mediatek.svg │ │ ├── mediatemple.svg │ │ ├── medibangpaint.svg │ │ ├── medium.svg │ │ ├── meetup.svg │ │ ├── mega.svg │ │ ├── meilisearch.svg │ │ ├── mendeley.svg │ │ ├── mercadopago.svg │ │ ├── mercedes.svg │ │ ├── merck.svg │ │ ├── mercurial.svg │ │ ├── messenger.svg │ │ ├── meta.svg │ │ ├── metabase.svg │ │ ├── metafilter.svg │ │ ├── meteor.svg │ │ ├── metro.svg │ │ ├── metrodelaciudaddemexico.svg │ │ ├── metrodemadrid.svg │ │ ├── metrodeparis.svg │ │ ├── mewe.svg │ │ ├── mg.svg │ │ ├── microbit.svg │ │ ├── microdotblog.svg │ │ ├── microeditor.svg │ │ ├── microgenetics.svg │ │ ├── micropython.svg │ │ ├── microsoft.svg │ │ ├── microsoftacademic.svg │ │ ├── microsoftaccess.svg │ │ ├── microsoftazure.svg │ │ ├── microsoftbing.svg │ │ ├── microsoftedge.svg │ │ ├── microsoftexcel.svg │ │ ├── microsoftexchange.svg │ │ ├── microsoftoffice.svg │ │ ├── microsoftonedrive.svg │ │ ├── microsoftonenote.svg │ │ ├── microsoftoutlook.svg │ │ ├── microsoftpowerpoint.svg │ │ ├── microsoftsharepoint.svg │ │ ├── microsoftsqlserver.svg │ │ ├── microsoftteams.svg │ │ ├── microsofttranslator.svg │ │ ├── microsoftvisio.svg │ │ ├── microsoftword.svg │ │ ├── microstation.svg │ │ ├── microstrategy.svg │ │ ├── midi.svg │ │ ├── mikrotik.svg │ │ ├── milvus.svg │ │ ├── minds.svg │ │ ├── minecraft.svg │ │ ├── minetest.svg │ │ ├── mini.svg │ │ ├── minio.svg │ │ ├── minutemailer.svg │ │ ├── miraheze.svg │ │ ├── miro.svg │ │ ├── misskey.svg │ │ ├── mitsubishi.svg │ │ ├── mix.svg │ │ ├── mixcloud.svg │ │ ├── mixpanel.svg │ │ ├── mlb.svg │ │ ├── mlflow.svg │ │ ├── mobx.svg │ │ ├── mobxstatetree.svg │ │ ├── mocha.svg │ │ ├── mockserviceworker.svg │ │ ├── modin.svg │ │ ├── modrinth.svg │ │ ├── modx.svg │ │ ├── mojangstudios.svg │ │ ├── moleculer.svg │ │ ├── momenteo.svg │ │ ├── monero.svg │ │ ├── moneygram.svg │ │ ├── mongodb.svg │ │ ├── mongoose.svg │ │ ├── mongoosedotws.svg │ │ ├── monica.svg │ │ ├── monkeytie.svg │ │ ├── monkeytype.svg │ │ ├── monogame.svg │ │ ├── monoprix.svg │ │ ├── monster.svg │ │ ├── monzo.svg │ │ ├── moo.svg │ │ ├── moonrepo.svg │ │ ├── morrisons.svg │ │ ├── moscowmetro.svg │ │ ├── motorola.svg │ │ ├── mozilla.svg │ │ ├── mqtt.svg │ │ ├── msi.svg │ │ ├── msibusiness.svg │ │ ├── mta.svg │ │ ├── mtr.svg │ │ ├── mubi.svg │ │ ├── mui.svg │ │ ├── mulesoft.svg │ │ ├── muller.svg │ │ ├── multisim.svg │ │ ├── mumble.svg │ │ ├── mural.svg │ │ ├── musescore.svg │ │ ├── musicbrainz.svg │ │ ├── mxlinux.svg │ │ ├── myanimelist.svg │ │ ├── myob.svg │ │ ├── myspace.svg │ │ ├── mysql.svg │ │ ├── n26.svg │ │ ├── namebase.svg │ │ ├── namecheap.svg │ │ ├── nano.svg │ │ ├── nasa.svg │ │ ├── nationalgrid.svg │ │ ├── nativescript.svg │ │ ├── natsdotio.svg │ │ ├── naver.svg │ │ ├── nba.svg │ │ ├── nbb.svg │ │ ├── nbc.svg │ │ ├── ndr.svg │ │ ├── near.svg │ │ ├── nec.svg │ │ ├── neo4j.svg │ │ ├── neovim.svg │ │ ├── nestjs.svg │ │ ├── netapp.svg │ │ ├── netbsd.svg │ │ ├── netflix.svg │ │ ├── netlify.svg │ │ ├── nette.svg │ │ ├── netto.svg │ │ ├── neutralinojs.svg │ │ ├── newbalance.svg │ │ ├── newegg.svg │ │ ├── newjapanprowrestling.svg │ │ ├── newrelic.svg │ │ ├── newyorktimes.svg │ │ ├── nextbilliondotai.svg │ │ ├── nextcloud.svg │ │ ├── nextdoor.svg │ │ ├── nextdotjs.svg │ │ ├── nextra.svg │ │ ├── nextui.svg │ │ ├── nfc.svg │ │ ├── nginx.svg │ │ ├── nginxproxymanager.svg │ │ ├── ngrok.svg │ │ ├── ngrx.svg │ │ ├── niconico.svg │ │ ├── nike.svg │ │ ├── nikon.svg │ │ ├── nim.svg │ │ ├── nintendo.svg │ │ ├── nintendo3ds.svg │ │ ├── nintendogamecube.svg │ │ ├── nintendonetwork.svg │ │ ├── nintendoswitch.svg │ │ ├── nissan.svg │ │ ├── nixos.svg │ │ ├── nodedotjs.svg │ │ ├── nodemon.svg │ │ ├── nodered.svg │ │ ├── nokia.svg │ │ ├── norco.svg │ │ ├── nordvpn.svg │ │ ├── normalizedotcss.svg │ │ ├── norton.svg │ │ ├── norwegian.svg │ │ ├── notepadplusplus.svg │ │ ├── notion.svg │ │ ├── notist.svg │ │ ├── nounproject.svg │ │ ├── novu.svg │ │ ├── now.svg │ │ ├── npm.svg │ │ ├── nrwl.svg │ │ ├── nubank.svg │ │ ├── nucleo.svg │ │ ├── nuget.svg │ │ ├── nuke.svg │ │ ├── numba.svg │ │ ├── numpy.svg │ │ ├── nunjucks.svg │ │ ├── nutanix.svg │ │ ├── nuxtdotjs.svg │ │ ├── nvidia.svg │ │ ├── nx.svg │ │ ├── nxp.svg │ │ ├── nzxt.svg │ │ ├── observable.svg │ │ ├── obsidian.svg │ │ ├── obsstudio.svg │ │ ├── ocaml.svg │ │ ├── octanerender.svg │ │ ├── octave.svg │ │ ├── octobercms.svg │ │ ├── octoprint.svg │ │ ├── octopusdeploy.svg │ │ ├── oculus.svg │ │ ├── odnoklassniki.svg │ │ ├── odysee.svg │ │ ├── ohdear.svg │ │ ├── okcupid.svg │ │ ├── okta.svg │ │ ├── oneplus.svg │ │ ├── onlyfans.svg │ │ ├── onlyoffice.svg │ │ ├── onnx.svg │ │ ├── onstar.svg │ │ ├── opel.svg │ │ ├── openaccess.svg │ │ ├── openai.svg │ │ ├── openaigym.svg │ │ ├── openapiinitiative.svg │ │ ├── openbadges.svg │ │ ├── openbsd.svg │ │ ├── openbugbounty.svg │ │ ├── opencollective.svg │ │ ├── opencontainersinitiative.svg │ │ ├── opencv.svg │ │ ├── openfaas.svg │ │ ├── opengl.svg │ │ ├── openid.svg │ │ ├── openjdk.svg │ │ ├── openlayers.svg │ │ ├── openmined.svg │ │ ├── opennebula.svg │ │ ├── openproject.svg │ │ ├── openscad.svg │ │ ├── opensea.svg │ │ ├── opensearch.svg │ │ ├── opensourcehardware.svg │ │ ├── opensourceinitiative.svg │ │ ├── openssl.svg │ │ ├── openstack.svg │ │ ├── openstreetmap.svg │ │ ├── opensuse.svg │ │ ├── opentelemetry.svg │ │ ├── opentext.svg │ │ ├── opentf.svg │ │ ├── openverse.svg │ │ ├── openvpn.svg │ │ ├── openwrt.svg │ │ ├── openzeppelin.svg │ │ ├── openzfs.svg │ │ ├── opera.svg │ │ ├── operagx.svg │ │ ├── opnsense.svg │ │ ├── opsgenie.svg │ │ ├── opslevel.svg │ │ ├── oracle.svg │ │ ├── orcid.svg │ │ ├── oreilly.svg │ │ ├── org.svg │ │ ├── origin.svg │ │ ├── osano.svg │ │ ├── osgeo.svg │ │ ├── oshkosh.svg │ │ ├── osmc.svg │ │ ├── osu.svg │ │ ├── otto.svg │ │ ├── overcast.svg │ │ ├── overleaf.svg │ │ ├── ovh.svg │ │ ├── owasp.svg │ │ ├── owncloud.svg │ │ ├── oxygen.svg │ │ ├── oyo.svg │ │ ├── p5dotjs.svg │ │ ├── packagist.svg │ │ ├── packer.svg │ │ ├── paddlepaddle.svg │ │ ├── paddypower.svg │ │ ├── pagekit.svg │ │ ├── pagerduty.svg │ │ ├── pagespeedinsights.svg │ │ ├── pagseguro.svg │ │ ├── palantir.svg │ │ ├── paloaltonetworks.svg │ │ ├── paloaltosoftware.svg │ │ ├── panasonic.svg │ │ ├── pandas.svg │ │ ├── pandora.svg │ │ ├── pantheon.svg │ │ ├── paperspace.svg │ │ ├── paritysubstrate.svg │ │ ├── parsedotly.svg │ │ ├── passport.svg │ │ ├── pastebin.svg │ │ ├── patreon.svg │ │ ├── paychex.svg │ │ ├── payloadcms.svg │ │ ├── payoneer.svg │ │ ├── paypal.svg │ │ ├── paytm.svg │ │ ├── pcgamingwiki.svg │ │ ├── peakdesign.svg │ │ ├── pearson.svg │ │ ├── peerlist.svg │ │ ├── peertube.svg │ │ ├── pegasusairlines.svg │ │ ├── pelican.svg │ │ ├── peloton.svg │ │ ├── penny.svg │ │ ├── penpot.svg │ │ ├── pepsi.svg │ │ ├── percy.svg │ │ ├── perforce.svg │ │ ├── perl.svg │ │ ├── persistent.svg │ │ ├── personio.svg │ │ ├── petsathome.svg │ │ ├── peugeot.svg │ │ ├── pexels.svg │ │ ├── pfsense.svg │ │ ├── phabricator.svg │ │ ├── philipshue.svg │ │ ├── phoenixframework.svg │ │ ├── phonepe.svg │ │ ├── photobucket.svg │ │ ├── photocrowd.svg │ │ ├── photopea.svg │ │ ├── php.svg │ │ ├── phpmyadmin.svg │ │ ├── phpstorm.svg │ │ ├── piaggiogroup.svg │ │ ├── picardsurgeles.svg │ │ ├── picartodottv.svg │ │ ├── picnic.svg │ │ ├── picpay.svg │ │ ├── pihole.svg │ │ ├── pimcore.svg │ │ ├── pinboard.svg │ │ ├── pingdom.svg │ │ ├── pinterest.svg │ │ ├── pioneerdj.svg │ │ ├── pivotaltracker.svg │ │ ├── piwigo.svg │ │ ├── pix.svg │ │ ├── pixabay.svg │ │ ├── pixiv.svg │ │ ├── pkgsrc.svg │ │ ├── planet.svg │ │ ├── planetscale.svg │ │ ├── plangrid.svg │ │ ├── platformdotsh.svg │ │ ├── platzi.svg │ │ ├── plausibleanalytics.svg │ │ ├── playcanvas.svg │ │ ├── playerdotme.svg │ │ ├── playerfm.svg │ │ ├── playstation.svg │ │ ├── playstation2.svg │ │ ├── playstation3.svg │ │ ├── playstation4.svg │ │ ├── playstation5.svg │ │ ├── playstationvita.svg │ │ ├── playwright.svg │ │ ├── pleroma.svg │ │ ├── plesk.svg │ │ ├── plex.svg │ │ ├── plotly.svg │ │ ├── pluralsight.svg │ │ ├── plurk.svg │ │ ├── pluscodes.svg │ │ ├── pm2.svg │ │ ├── pnpm.svg │ │ ├── pocket.svg │ │ ├── pocketbase.svg │ │ ├── pocketcasts.svg │ │ ├── podcastaddict.svg │ │ ├── podcastindex.svg │ │ ├── podman.svg │ │ ├── poe.svg │ │ ├── poetry.svg │ │ ├── pointy.svg │ │ ├── pokemon.svg │ │ ├── polars.svg │ │ ├── polkadot.svg │ │ ├── poly.svg │ │ ├── polymerproject.svg │ │ ├── polywork.svg │ │ ├── popos.svg │ │ ├── porsche.svg │ │ ├── portainer.svg │ │ ├── postcss.svg │ │ ├── postgresql.svg │ │ ├── posthog.svg │ │ ├── postman.svg │ │ ├── postmates.svg │ │ ├── powerapps.svg │ │ ├── powerautomate.svg │ │ ├── powerbi.svg │ │ ├── powerfx.svg │ │ ├── powerpages.svg │ │ ├── powers.svg │ │ ├── powershell.svg │ │ ├── powervirtualagents.svg │ │ ├── prdotco.svg │ │ ├── preact.svg │ │ ├── precommit.svg │ │ ├── prefect.svg │ │ ├── premierleague.svg │ │ ├── prestashop.svg │ │ ├── presto.svg │ │ ├── prettier.svg │ │ ├── pretzel.svg │ │ ├── prevention.svg │ │ ├── prezi.svg │ │ ├── prime.svg │ │ ├── primevideo.svg │ │ ├── printables.svg │ │ ├── prisma.svg │ │ ├── prismic.svg │ │ ├── privateinternetaccess.svg │ │ ├── probot.svg │ │ ├── processingfoundation.svg │ │ ├── processwire.svg │ │ ├── producthunt.svg │ │ ├── progate.svg │ │ ├── progress.svg │ │ ├── prometheus.svg │ │ ├── prosieben.svg │ │ ├── protocolsdotio.svg │ │ ├── protodotio.svg │ │ ├── proton.svg │ │ ├── protoncalendar.svg │ │ ├── protondb.svg │ │ ├── protondrive.svg │ │ ├── protonmail.svg │ │ ├── protonvpn.svg │ │ ├── protools.svg │ │ ├── protractor.svg │ │ ├── proxmox.svg │ │ ├── pterodactyl.svg │ │ ├── pubg.svg │ │ ├── publons.svg │ │ ├── pubmed.svg │ │ ├── pug.svg │ │ ├── pulumi.svg │ │ ├── puma.svg │ │ ├── puppet.svg │ │ ├── puppeteer.svg │ │ ├── purescript.svg │ │ ├── purgecss.svg │ │ ├── purism.svg │ │ ├── pusher.svg │ │ ├── pwa.svg │ │ ├── pycharm.svg │ │ ├── pydantic.svg │ │ ├── pyg.svg │ │ ├── pypi.svg │ │ ├── pypy.svg │ │ ├── pyscaffold.svg │ │ ├── pysyft.svg │ │ ├── pytest.svg │ │ ├── python.svg │ │ ├── pythonanywhere.svg │ │ ├── pytorch.svg │ │ ├── pyup.svg │ │ ├── qantas.svg │ │ ├── qatarairways.svg │ │ ├── qemu.svg │ │ ├── qgis.svg │ │ ├── qi.svg │ │ ├── qiita.svg │ │ ├── qiskit.svg │ │ ├── qiwi.svg │ │ ├── qlik.svg │ │ ├── qmk.svg │ │ ├── qt.svg │ │ ├── qualcomm.svg │ │ ├── qualtrics.svg │ │ ├── qualys.svg │ │ ├── quantcast.svg │ │ ├── quantconnect.svg │ │ ├── quarkus.svg │ │ ├── quasar.svg │ │ ├── qubesos.svg │ │ ├── quest.svg │ │ ├── quickbooks.svg │ │ ├── quicklook.svg │ │ ├── quicktime.svg │ │ ├── quip.svg │ │ ├── quora.svg │ │ ├── qwant.svg │ │ ├── qwiklabs.svg │ │ ├── qzone.svg │ │ ├── r.svg │ │ ├── r3.svg │ │ ├── rabbitmq.svg │ │ ├── racket.svg │ │ ├── radar.svg │ │ ├── radiopublic.svg │ │ ├── radixui.svg │ │ ├── radstudio.svg │ │ ├── railway.svg │ │ ├── rainmeter.svg │ │ ├── rakuten.svg │ │ ├── ram.svg │ │ ├── rancher.svg │ │ ├── rarible.svg │ │ ├── rasa.svg │ │ ├── raspberrypi.svg │ │ ├── ravelry.svg │ │ ├── ray.svg │ │ ├── razer.svg │ │ ├── razorpay.svg │ │ ├── react.svg │ │ ├── reacthookform.svg │ │ ├── reactivex.svg │ │ ├── reactos.svg │ │ ├── reactquery.svg │ │ ├── reactrouter.svg │ │ ├── reacttable.svg │ │ ├── readdotcv.svg │ │ ├── readme.svg │ │ ├── readthedocs.svg │ │ ├── realm.svg │ │ ├── reason.svg │ │ ├── reasonstudios.svg │ │ ├── recoil.svg │ │ ├── red.svg │ │ ├── redbubble.svg │ │ ├── reddit.svg │ │ ├── redhat.svg │ │ ├── redhatopenshift.svg │ │ ├── redis.svg │ │ ├── redmine.svg │ │ ├── redox.svg │ │ ├── redux.svg │ │ ├── reduxsaga.svg │ │ ├── redwoodjs.svg │ │ ├── reebok.svg │ │ ├── relay.svg │ │ ├── relianceindustrieslimited.svg │ │ ├── remark.svg │ │ ├── remix.svg │ │ ├── renault.svg │ │ ├── render.svg │ │ ├── renovatebot.svg │ │ ├── renpy.svg │ │ ├── renren.svg │ │ ├── replit.svg │ │ ├── republicofgamers.svg │ │ ├── rescript.svg │ │ ├── rescuetime.svg │ │ ├── researchgate.svg │ │ ├── resharper.svg │ │ ├── resurrectionremixos.svg │ │ ├── retool.svg │ │ ├── retroarch.svg │ │ ├── retropie.svg │ │ ├── revanced.svg │ │ ├── revealdotjs.svg │ │ ├── reverbnation.svg │ │ ├── revoltdotchat.svg │ │ ├── revolut.svg │ │ ├── revue.svg │ │ ├── rewe.svg │ │ ├── rezgo.svg │ │ ├── rhinoceros.svg │ │ ├── rider.svg │ │ ├── rimacautomobili.svg │ │ ├── ring.svg │ │ ├── riotgames.svg │ │ ├── ripple.svg │ │ ├── riscv.svg │ │ ├── riseup.svg │ │ ├── roadmapdotsh.svg │ │ ├── roamresearch.svg │ │ ├── robinhood.svg │ │ ├── roblox.svg │ │ ├── robloxstudio.svg │ │ ├── robotframework.svg │ │ ├── rocketdotchat.svg │ │ ├── rocksdb.svg │ │ ├── rockylinux.svg │ │ ├── roku.svg │ │ ├── rollsroyce.svg │ │ ├── rollupdotjs.svg │ │ ├── rome.svg │ │ ├── rootme.svg │ │ ├── roots.svg │ │ ├── rootsbedrock.svg │ │ ├── rootssage.svg │ │ ├── ros.svg │ │ ├── rossmann.svg │ │ ├── rotaryinternational.svg │ │ ├── rottentomatoes.svg │ │ ├── roundcube.svg │ │ ├── rsocket.svg │ │ ├── rss.svg │ │ ├── rstudio.svg │ │ ├── rte.svg │ │ ├── rtl.svg │ │ ├── rtlzwei.svg │ │ ├── rubocop.svg │ │ ├── ruby.svg │ │ ├── rubygems.svg │ │ ├── rubyonrails.svg │ │ ├── rubysinatra.svg │ │ ├── ruff.svg │ │ ├── rumble.svg │ │ ├── rundeck.svg │ │ ├── runkeeper.svg │ │ ├── runkit.svg │ │ ├── rust.svg │ │ ├── rxdb.svg │ │ ├── ryanair.svg │ │ ├── s7airlines.svg │ │ ├── sabanci.svg │ │ ├── safari.svg │ │ ├── sage.svg │ │ ├── sahibinden.svg │ │ ├── sailfishos.svg │ │ ├── sailsdotjs.svg │ │ ├── salesforce.svg │ │ ├── saltproject.svg │ │ ├── samsung.svg │ │ ├── samsungpay.svg │ │ ├── sandisk.svg │ │ ├── sanfranciscomunicipalrailway.svg │ │ ├── sanic.svg │ │ ├── sanity.svg │ │ ├── saopaulometro.svg │ │ ├── sap.svg │ │ ├── sass.svg │ │ ├── sat1.svg │ │ ├── saturn.svg │ │ ├── saucelabs.svg │ │ ├── scala.svg │ │ ├── scaleway.svg │ │ ├── scania.svg │ │ ├── schneiderelectric.svg │ │ ├── scikitlearn.svg │ │ ├── scipy.svg │ │ ├── scopus.svg │ │ ├── scpfoundation.svg │ │ ├── scrapbox.svg │ │ ├── scratch.svg │ │ ├── screencastify.svg │ │ ├── scribd.svg │ │ ├── scrimba.svg │ │ ├── scrollreveal.svg │ │ ├── scrumalliance.svg │ │ ├── scrutinizerci.svg │ │ ├── scylladb.svg │ │ ├── seagate.svg │ │ ├── searxng.svg │ │ ├── seat.svg │ │ ├── securityscorecard.svg │ │ ├── sefaria.svg │ │ ├── sega.svg │ │ ├── selenium.svg │ │ ├── sellfy.svg │ │ ├── semanticrelease.svg │ │ ├── semanticscholar.svg │ │ ├── semanticuireact.svg │ │ ├── semanticweb.svg │ │ ├── semaphoreci.svg │ │ ├── semrush.svg │ │ ├── semver.svg │ │ ├── sencha.svg │ │ ├── sendinblue.svg │ │ ├── sennheiser.svg │ │ ├── sensu.svg │ │ ├── sentry.svg │ │ ├── sepa.svg │ │ ├── sequelize.svg │ │ ├── serverfault.svg │ │ ├── serverless.svg │ │ ├── sessionize.svg │ │ ├── setapp.svg │ │ ├── sfml.svg │ │ ├── shadow.svg │ │ ├── shanghaimetro.svg │ │ ├── sharex.svg │ │ ├── sharp.svg │ │ ├── shazam.svg │ │ ├── shell.svg │ │ ├── shelly.svg │ │ ├── shenzhenmetro.svg │ │ ├── shieldsdotio.svg │ │ ├── shikimori.svg │ │ ├── shopee.svg │ │ ├── shopify.svg │ │ ├── shopware.svg │ │ ├── shortcut.svg │ │ ├── shotcut.svg │ │ ├── showpad.svg │ │ ├── showtime.svg │ │ ├── shutterstock.svg │ │ ├── siemens.svg │ │ ├── sifive.svg │ │ ├── signal.svg │ │ ├── similarweb.svg │ │ ├── simkl.svg │ │ ├── simpleanalytics.svg │ │ ├── simpleicons.svg │ │ ├── simplenote.svg │ │ ├── sinaweibo.svg │ │ ├── singaporeairlines.svg │ │ ├── singlestore.svg │ │ ├── sitecore.svg │ │ ├── sitepoint.svg │ │ ├── sketch.svg │ │ ├── sketchfab.svg │ │ ├── sketchup.svg │ │ ├── skillshare.svg │ │ ├── skoda.svg │ │ ├── sky.svg │ │ ├── skynet.svg │ │ ├── skypack.svg │ │ ├── skype.svg │ │ ├── skypeforbusiness.svg │ │ ├── skyrock.svg │ │ ├── slack.svg │ │ ├── slackware.svg │ │ ├── slashdot.svg │ │ ├── slickpic.svg │ │ ├── slides.svg │ │ ├── slideshare.svg │ │ ├── smart.svg │ │ ├── smartthings.svg │ │ ├── smashdotgg.svg │ │ ├── smashingmagazine.svg │ │ ├── smrt.svg │ │ ├── smugmug.svg │ │ ├── snapchat.svg │ │ ├── snapcraft.svg │ │ ├── sncf.svg │ │ ├── snowflake.svg │ │ ├── snowpack.svg │ │ ├── snyk.svg │ │ ├── socialblade.svg │ │ ├── society6.svg │ │ ├── socketdotio.svg │ │ ├── sogou.svg │ │ ├── solid.svg │ │ ├── solidity.svg │ │ ├── sololearn.svg │ │ ├── solus.svg │ │ ├── sonar.svg │ │ ├── sonarcloud.svg │ │ ├── sonarlint.svg │ │ ├── sonarqube.svg │ │ ├── sonarsource.svg │ │ ├── sonatype.svg │ │ ├── songkick.svg │ │ ├── songoda.svg │ │ ├── sonicwall.svg │ │ ├── sonos.svg │ │ ├── sony.svg │ │ ├── soundcharts.svg │ │ ├── soundcloud.svg │ │ ├── sourceengine.svg │ │ ├── sourceforge.svg │ │ ├── sourcegraph.svg │ │ ├── sourcehut.svg │ │ ├── sourcetree.svg │ │ ├── southwestairlines.svg │ │ ├── spacemacs.svg │ │ ├── spacex.svg │ │ ├── spacy.svg │ │ ├── sparkar.svg │ │ ├── sparkasse.svg │ │ ├── sparkfun.svg │ │ ├── sparkpost.svg │ │ ├── spdx.svg │ │ ├── speakerdeck.svg │ │ ├── spectrum.svg │ │ ├── speedtest.svg │ │ ├── speedypage.svg │ │ ├── sphinx.svg │ │ ├── spigotmc.svg │ │ ├── spinnaker.svg │ │ ├── spinrilla.svg │ │ ├── splunk.svg │ │ ├── spoj.svg │ │ ├── spond.svg │ │ ├── spotify.svg │ │ ├── spotlight.svg │ │ ├── spreadshirt.svg │ │ ├── spreaker.svg │ │ ├── spring.svg │ │ ├── spring_creators.svg │ │ ├── springboot.svg │ │ ├── springsecurity.svg │ │ ├── spyderide.svg │ │ ├── sqlalchemy.svg │ │ ├── sqlite.svg │ │ ├── square.svg │ │ ├── squareenix.svg │ │ ├── squarespace.svg │ │ ├── ssrn.svg │ │ ├── sst.svg │ │ ├── stackbit.svg │ │ ├── stackblitz.svg │ │ ├── stackedit.svg │ │ ├── stackexchange.svg │ │ ├── stackhawk.svg │ │ ├── stackoverflow.svg │ │ ├── stackpath.svg │ │ ├── stackshare.svg │ │ ├── stadia.svg │ │ ├── staffbase.svg │ │ ├── standardjs.svg │ │ ├── standardresume.svg │ │ ├── starbucks.svg │ │ ├── stardock.svg │ │ ├── starlingbank.svg │ │ ├── starship.svg │ │ ├── startrek.svg │ │ ├── starz.svg │ │ ├── statamic.svg │ │ ├── statuspage.svg │ │ ├── statuspal.svg │ │ ├── steam.svg │ │ ├── steamdb.svg │ │ ├── steamdeck.svg │ │ ├── steamworks.svg │ │ ├── steelseries.svg │ │ ├── steem.svg │ │ ├── steemit.svg │ │ ├── steinberg.svg │ │ ├── stellar.svg │ │ ├── stencyl.svg │ │ ├── stimulus.svg │ │ ├── stitcher.svg │ │ ├── stmicroelectronics.svg │ │ ├── stopstalk.svg │ │ ├── storyblok.svg │ │ ├── storybook.svg │ │ ├── strapi.svg │ │ ├── strava.svg │ │ ├── streamlit.svg │ │ ├── stripe.svg │ │ ├── strongswan.svg │ │ ├── stryker.svg │ │ ├── stubhub.svg │ │ ├── studio3t.svg │ │ ├── studyverse.svg │ │ ├── styledcomponents.svg │ │ ├── stylelint.svg │ │ ├── styleshare.svg │ │ ├── stylus.svg │ │ ├── subaru.svg │ │ ├── sublimetext.svg │ │ ├── substack.svg │ │ ├── subtitleedit.svg │ │ ├── subversion.svg │ │ ├── suckless.svg │ │ ├── sumologic.svg │ │ ├── supabase.svg │ │ ├── supercrease.svg │ │ ├── supermicro.svg │ │ ├── superuser.svg │ │ ├── surrealdb.svg │ │ ├── surveymonkey.svg │ │ ├── suse.svg │ │ ├── suzuki.svg │ │ ├── svelte.svg │ │ ├── svg.svg │ │ ├── svgdotjs.svg │ │ ├── svgo.svg │ │ ├── swagger.svg │ │ ├── swarm.svg │ │ ├── swc.svg │ │ ├── swift.svg │ │ ├── swiggy.svg │ │ ├── swiper.svg │ │ ├── swr.svg │ │ ├── symantec.svg │ │ ├── symbolab.svg │ │ ├── symfony.svg │ │ ├── symphony.svg │ │ ├── sympy.svg │ │ ├── synology.svg │ │ ├── system76.svg │ │ ├── tableau.svg │ │ ├── tablecheck.svg │ │ ├── tacobell.svg │ │ ├── tado.svg │ │ ├── taichigraphics.svg │ │ ├── taichilang.svg │ │ ├── tails.svg │ │ ├── tailwindcss.svg │ │ ├── talend.svg │ │ ├── talenthouse.svg │ │ ├── tamiya.svg │ │ ├── tampermonkey.svg │ │ ├── taobao.svg │ │ ├── tapas.svg │ │ ├── target.svg │ │ ├── task.svg │ │ ├── tasmota.svg │ │ ├── tata.svg │ │ ├── tauri.svg │ │ ├── taxbuzz.svg │ │ ├── tcs.svg │ │ ├── teamcity.svg │ │ ├── teamspeak.svg │ │ ├── teamviewer.svg │ │ ├── ted.svg │ │ ├── teespring.svg │ │ ├── tekton.svg │ │ ├── tele5.svg │ │ ├── telegram.svg │ │ ├── telegraph.svg │ │ ├── temporal.svg │ │ ├── tencentqq.svg │ │ ├── tensorflow.svg │ │ ├── teradata.svg │ │ ├── teratail.svg │ │ ├── termius.svg │ │ ├── terraform.svg │ │ ├── tesco.svg │ │ ├── tesla.svg │ │ ├── testcafe.svg │ │ ├── testin.svg │ │ ├── testinglibrary.svg │ │ ├── testrail.svg │ │ ├── tether.svg │ │ ├── textpattern.svg │ │ ├── tga.svg │ │ ├── thangs.svg │ │ ├── thealgorithms.svg │ │ ├── theconversation.svg │ │ ├── theirishtimes.svg │ │ ├── themighty.svg │ │ ├── themodelsresource.svg │ │ ├── themoviedatabase.svg │ │ ├── thenorthface.svg │ │ ├── theregister.svg │ │ ├── thesoundsresource.svg │ │ ├── thespritersresource.svg │ │ ├── thewashingtonpost.svg │ │ ├── thingiverse.svg │ │ ├── thinkpad.svg │ │ ├── threadless.svg │ │ ├── threads.svg │ │ ├── threedotjs.svg │ │ ├── threema.svg │ │ ├── thumbtack.svg │ │ ├── thunderbird.svg │ │ ├── thurgauerkantonalbank.svg │ │ ├── thymeleaf.svg │ │ ├── ticketmaster.svg │ │ ├── tidal.svg │ │ ├── tiddlywiki.svg │ │ ├── tide.svg │ │ ├── tidyverse.svg │ │ ├── tietoevry.svg │ │ ├── tiktok.svg │ │ ├── tile.svg │ │ ├── timescale.svg │ │ ├── tina.svg │ │ ├── tinder.svg │ │ ├── tinyletter.svg │ │ ├── tistory.svg │ │ ├── tmobile.svg │ │ ├── tmux.svg │ │ ├── tnt.svg │ │ ├── todoist.svg │ │ ├── toggl.svg │ │ ├── toggltrack.svg │ │ ├── tokyometro.svg │ │ ├── toml.svg │ │ ├── tomorrowland.svg │ │ ├── topcoder.svg │ │ ├── toptal.svg │ │ ├── torbrowser.svg │ │ ├── torproject.svg │ │ ├── toshiba.svg │ │ ├── tourbox.svg │ │ ├── toyota.svg │ │ ├── tplink.svg │ │ ├── tqdm.svg │ │ ├── traefikmesh.svg │ │ ├── traefikproxy.svg │ │ ├── trailforks.svg │ │ ├── trainerroad.svg │ │ ├── trakt.svg │ │ ├── transportforireland.svg │ │ ├── transportforlondon.svg │ │ ├── travisci.svg │ │ ├── treehouse.svg │ │ ├── trello.svg │ │ ├── trendmicro.svg │ │ ├── treyarch.svg │ │ ├── trilium.svg │ │ ├── triller.svg │ │ ├── trino.svg │ │ ├── tripadvisor.svg │ │ ├── tripdotcom.svg │ │ ├── trivy.svg │ │ ├── trove.svg │ │ ├── trpc.svg │ │ ├── truenas.svg │ │ ├── trulia.svg │ │ ├── trustedshops.svg │ │ ├── trustpilot.svg │ │ ├── tryhackme.svg │ │ ├── tryitonline.svg │ │ ├── tsnode.svg │ │ ├── tubi.svg │ │ ├── tui.svg │ │ ├── tumblr.svg │ │ ├── tunein.svg │ │ ├── turbo.svg │ │ ├── turborepo.svg │ │ ├── turbosquid.svg │ │ ├── turkishairlines.svg │ │ ├── turso.svg │ │ ├── tutanota.svg │ │ ├── tvtime.svg │ │ ├── twilio.svg │ │ ├── twitch.svg │ │ ├── twitter.svg │ │ ├── twoo.svg │ │ ├── typeform.svg │ │ ├── typescript.svg │ │ ├── typo3.svg │ │ ├── uber.svg │ │ ├── ubereats.svg │ │ ├── ubiquiti.svg │ │ ├── ubisoft.svg │ │ ├── ublockorigin.svg │ │ ├── ubuntu.svg │ │ ├── ubuntumate.svg │ │ ├── udacity.svg │ │ ├── udemy.svg │ │ ├── ufc.svg │ │ ├── uikit.svg │ │ ├── ulule.svg │ │ ├── umami.svg │ │ ├── umbraco.svg │ │ ├── uml.svg │ │ ├── unacademy.svg │ │ ├── underarmour.svg │ │ ├── underscoredotjs.svg │ │ ├── undertale.svg │ │ ├── unicode.svg │ │ ├── unilever.svg │ │ ├── unitedairlines.svg │ │ ├── unitednations.svg │ │ ├── unity.svg │ │ ├── unlicense.svg │ │ ├── uno.svg │ │ ├── unocss.svg │ │ ├── unraid.svg │ │ ├── unrealengine.svg │ │ ├── unsplash.svg │ │ ├── untangle.svg │ │ ├── untappd.svg │ │ ├── upcloud.svg │ │ ├── uplabs.svg │ │ ├── uploaded.svg │ │ ├── ups.svg │ │ ├── upstash.svg │ │ ├── uptimekuma.svg │ │ ├── uptobox.svg │ │ ├── upwork.svg │ │ ├── usps.svg │ │ ├── utorrent.svg │ │ ├── v.svg │ │ ├── v2ex.svg │ │ ├── v8.svg │ │ ├── vaadin.svg │ │ ├── vagrant.svg │ │ ├── vala.svg │ │ ├── valorant.svg │ │ ├── valve.svg │ │ ├── vapor.svg │ │ ├── vault.svg │ │ ├── vaultwarden.svg │ │ ├── vauxhall.svg │ │ ├── vbulletin.svg │ │ ├── vectorlogozone.svg │ │ ├── vectorworks.svg │ │ ├── veeam.svg │ │ ├── veepee.svg │ │ ├── vega.svg │ │ ├── velog.svg │ │ ├── venmo.svg │ │ ├── vercel.svg │ │ ├── verdaccio.svg │ │ ├── veritas.svg │ │ ├── verizon.svg │ │ ├── vespa.svg │ │ ├── vexxhost.svg │ │ ├── vfairs.svg │ │ ├── viadeo.svg │ │ ├── viaplay.svg │ │ ├── viber.svg │ │ ├── vim.svg │ │ ├── vimeo.svg │ │ ├── vimeolivestream.svg │ │ ├── virgin.svg │ │ ├── virginmedia.svg │ │ ├── virtualbox.svg │ │ ├── virustotal.svg │ │ ├── visa.svg │ │ ├── visualbasic.svg │ │ ├── visualstudio.svg │ │ ├── visualstudiocode.svg │ │ ├── vite.svg │ │ ├── vitess.svg │ │ ├── vitest.svg │ │ ├── vivaldi.svg │ │ ├── vivawallet.svg │ │ ├── vivino.svg │ │ ├── vk.svg │ │ ├── vlcmediaplayer.svg │ │ ├── vmware.svg │ │ ├── vodafone.svg │ │ ├── voidlinux.svg │ │ ├── voipdotms.svg │ │ ├── volkswagen.svg │ │ ├── volvo.svg │ │ ├── vonage.svg │ │ ├── vorondesign.svg │ │ ├── vowpalwabbit.svg │ │ ├── vox.svg │ │ ├── vsco.svg │ │ ├── vscodium.svg │ │ ├── vtex.svg │ │ ├── vuedotjs.svg │ │ ├── vuetify.svg │ │ ├── vulkan.svg │ │ ├── vultr.svg │ │ ├── vyond.svg │ │ ├── w3c.svg │ │ ├── wacom.svg │ │ ├── wagtail.svg │ │ ├── wails.svg │ │ ├── wakatime.svg │ │ ├── walkman.svg │ │ ├── wallabag.svg │ │ ├── walletconnect.svg │ │ ├── walmart.svg │ │ ├── wantedly.svg │ │ ├── wappalyzer.svg │ │ ├── warnerbros.svg │ │ ├── warp.svg │ │ ├── wasabi.svg │ │ ├── wasmcloud.svg │ │ ├── wasmer.svg │ │ ├── wattpad.svg │ │ ├── wayland.svg │ │ ├── waze.svg │ │ ├── wearos.svg │ │ ├── weasyl.svg │ │ ├── web3dotjs.svg │ │ ├── webassembly.svg │ │ ├── webauthn.svg │ │ ├── webcomponentsdotorg.svg │ │ ├── webdriverio.svg │ │ ├── webflow.svg │ │ ├── webgl.svg │ │ ├── webhint.svg │ │ ├── weblate.svg │ │ ├── webmin.svg │ │ ├── webmoney.svg │ │ ├── webpack.svg │ │ ├── webrtc.svg │ │ ├── webstorm.svg │ │ ├── webtoon.svg │ │ ├── webtrees.svg │ │ ├── wechat.svg │ │ ├── wegame.svg │ │ ├── weightsandbiases.svg │ │ ├── welcometothejungle.svg │ │ ├── wellfound.svg │ │ ├── wemo.svg │ │ ├── westerndigital.svg │ │ ├── wetransfer.svg │ │ ├── whatsapp.svg │ │ ├── wheniwork.svg │ │ ├── whitesource.svg │ │ ├── wii.svg │ │ ├── wiiu.svg │ │ ├── wikidata.svg │ │ ├── wikidotgg.svg │ │ ├── wikidotjs.svg │ │ ├── wikimediacommons.svg │ │ ├── wikipedia.svg │ │ ├── wikiquote.svg │ │ ├── wikivoyage.svg │ │ ├── winamp.svg │ │ ├── windicss.svg │ │ ├── windows.svg │ │ ├── windows10.svg │ │ ├── windows11.svg │ │ ├── windows95.svg │ │ ├── windowsterminal.svg │ │ ├── windowsxp.svg │ │ ├── winmate.svg │ │ ├── wipro.svg │ │ ├── wire.svg │ │ ├── wireguard.svg │ │ ├── wireshark.svg │ │ ├── wise.svg │ │ ├── wish.svg │ │ ├── wistia.svg │ │ ├── wix.svg │ │ ├── wizzair.svg │ │ ├── wolfram.svg │ │ ├── wolframlanguage.svg │ │ ├── wolframmathematica.svg │ │ ├── woo.svg │ │ ├── woocommerce.svg │ │ ├── wordpress.svg │ │ ├── workplace.svg │ │ ├── worldhealthorganization.svg │ │ ├── wpengine.svg │ │ ├── wpexplorer.svg │ │ ├── wprocket.svg │ │ ├── writedotas.svg │ │ ├── wwe.svg │ │ ├── wwise.svg │ │ ├── x.svg │ │ ├── xamarin.svg │ │ ├── xaml.svg │ │ ├── xampp.svg │ │ ├── xbox.svg │ │ ├── xcode.svg │ │ ├── xdadevelopers.svg │ │ ├── xdotorg.svg │ │ ├── xero.svg │ │ ├── xfce.svg │ │ ├── xiaomi.svg │ │ ├── xilinx.svg │ │ ├── xing.svg │ │ ├── xmpp.svg │ │ ├── xo.svg │ │ ├── xrp.svg │ │ ├── xsplit.svg │ │ ├── xstate.svg │ │ ├── yahoo.svg │ │ ├── yale.svg │ │ ├── yamahacorporation.svg │ │ ├── yamahamotorcorporation.svg │ │ ├── yaml.svg │ │ ├── yammer.svg │ │ ├── yandexcloud.svg │ │ ├── yarn.svg │ │ ├── ycombinator.svg │ │ ├── yelp.svg │ │ ├── yeti.svg │ │ ├── yoast.svg │ │ ├── yolo.svg │ │ ├── yourtraveldottv.svg │ │ ├── youtube.svg │ │ ├── youtubegaming.svg │ │ ├── youtubemusic.svg │ │ ├── youtubestudio.svg │ │ ├── youtubetv.svg │ │ ├── yubico.svg │ │ ├── zabka.svg │ │ ├── zalando.svg │ │ ├── zalo.svg │ │ ├── zapier.svg │ │ ├── zara.svg │ │ ├── zazzle.svg │ │ ├── zcash.svg │ │ ├── zdf.svg │ │ ├── zebratechnologies.svg │ │ ├── zelle.svg │ │ ├── zend.svg │ │ ├── zendesk.svg │ │ ├── zendframework.svg │ │ ├── zenn.svg │ │ ├── zenodo.svg │ │ ├── zensar.svg │ │ ├── zerodha.svg │ │ ├── zeromq.svg │ │ ├── zerply.svg │ │ ├── zettlr.svg │ │ ├── zhihu.svg │ │ ├── zig.svg │ │ ├── zigbee.svg │ │ ├── zilch.svg │ │ ├── zillow.svg │ │ ├── zincsearch.svg │ │ ├── zingat.svg │ │ ├── zod.svg │ │ ├── zoho.svg │ │ ├── zoiper.svg │ │ ├── zomato.svg │ │ ├── zoom.svg │ │ ├── zorin.svg │ │ ├── zotero.svg │ │ ├── zsh.svg │ │ ├── zulip.svg │ │ ├── zwave.svg │ │ └── zyte.svg │ ├── twemoji │ └── twemoji.min.js │ ├── twikoo │ └── twikoo.all.min.js │ ├── typeit │ └── index.umd.js │ ├── valine │ ├── Valine.min.js │ ├── emoji │ │ ├── apple.yml │ │ ├── facebook.yml │ │ ├── google.yml │ │ └── twitter.yml │ └── valine.scss │ ├── waline │ ├── waline.css │ └── waline.umd.js │ └── xxhash-wasm │ └── xxhash-wasm.js ├── demo ├── content │ └── posts │ │ └── first_post.md └── hugo.toml ├── giscus.json ├── go.mod ├── hugo.toml ├── i18n ├── de.toml ├── en.toml ├── es.toml ├── fr.toml ├── hi.toml ├── it.toml ├── pl.toml ├── pt-BR.toml ├── ro.toml ├── ru.toml ├── sr.toml ├── vi.toml ├── zh-CN.toml └── zh-TW.toml ├── images ├── alipay.jpg ├── apple-devices-preview.png ├── screenshot.png ├── tn.png └── wechatpay.jpg ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ ├── render-blockquote-alert.html │ │ ├── render-codeblock-echarts.html │ │ ├── render-codeblock-mermaid.html │ │ ├── render-codeblock-timeline.html │ │ ├── render-codeblock.html │ │ ├── render-heading.html │ │ ├── render-image.html │ │ └── render-link.html │ ├── baseof.html │ ├── friends.html │ ├── home.archives.html │ ├── home.baidu_urls.txt │ ├── home.html │ ├── home.offline.html │ ├── home.readme.md │ ├── home.rss.xml │ ├── home.search.json │ ├── search.html │ ├── section.html │ ├── section.rss.xml │ ├── single.html │ ├── single.md │ ├── summary.html │ ├── tags.html │ ├── taxonomies.html │ ├── term.html │ ├── term.rss.xml │ └── terms.html ├── partials │ ├── assets.html │ ├── breadcrumb.html │ ├── custom.html │ ├── feed │ │ └── rss.html │ ├── footer.html │ ├── function │ │ ├── content-encryption.html │ │ ├── content.html │ │ ├── dos2unix.html │ │ ├── escape.html │ │ ├── escapeurl.html │ │ ├── fontawesome.html │ │ ├── format-number.html │ │ ├── fraction.html │ │ ├── get-author-map.html │ │ ├── get-remote-image.html │ │ ├── get-remote-json.html │ │ ├── id.html │ │ ├── is-url-remote.html │ │ ├── marked-text.html │ │ ├── params.html │ │ ├── path.html │ │ ├── resource.html │ │ ├── ruby.html │ │ ├── suffix-validation.html │ │ ├── task-lists.html │ │ └── trim.html │ ├── head │ │ ├── link.html │ │ ├── meta.html │ │ ├── script.html │ │ └── seo.html │ ├── header.html │ ├── home │ │ └── profile.html │ ├── init │ │ ├── detection-deprecated.html │ │ ├── detection-env.html │ │ ├── detection-version.html │ │ ├── global.html │ │ ├── index.html │ │ └── patch.html │ ├── paginator.html │ ├── plugin │ │ ├── admonition.html │ │ ├── alert.html │ │ ├── analytics.html │ │ ├── compatibility.html │ │ ├── echarts.html │ │ ├── fixit-encryptor.html │ │ ├── icon.html │ │ ├── image-legacy.html │ │ ├── image.html │ │ ├── link.html │ │ ├── mermaid.html │ │ ├── post-chat-ai.html │ │ ├── reward.html │ │ ├── script.html │ │ ├── share.html │ │ ├── social.html │ │ ├── style.html │ │ └── timeline.html │ ├── recently-updated.html │ ├── scratch │ │ ├── script.html │ │ └── style.html │ ├── single │ │ ├── collection-list.html │ │ ├── collection-nav.html │ │ ├── comment.html │ │ ├── expiration-reminder.html │ │ ├── fixit-decryptor.html │ │ ├── footer.html │ │ ├── post-author.html │ │ ├── post-included-in.html │ │ ├── related-aside.html │ │ ├── related.html │ │ └── reward.html │ └── widgets.html ├── posts │ └── single.html ├── robots.txt ├── shortcodes │ ├── admonition.html │ ├── bilibili.html │ ├── bluesky.html │ ├── center-quote.html │ ├── details.html │ ├── douyin.html │ ├── echarts.html │ ├── fixit-encryptor.html │ ├── gist.html │ ├── image.html │ ├── link.html │ ├── mapbox.html │ ├── mermaid.html │ ├── music.html │ ├── raw.html │ ├── reward.html │ ├── script.html │ ├── spotify.html │ ├── style.html │ ├── timeline.html │ ├── typeit.html │ └── version.html └── sitemap.xml ├── package.json ├── pnpm-lock.yaml ├── static ├── favicon.ico └── lib │ ├── katex │ └── fonts │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ ├── KaTeX_Main-BoldItalic.woff │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── lightgallery │ ├── fonts │ │ ├── lg.svg │ │ ├── lg.ttf │ │ ├── lg.woff │ │ └── lg.woff2 │ └── images │ │ └── loading.gif │ └── webfonts │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff2 │ ├── fa-v4compatibility.ttf │ └── fa-v4compatibility.woff2 └── theme.toml /.gitattributes: -------------------------------------------------------------------------------- 1 | assets/lib/**/* linguist-vendored 2 | *.toml linguist-detectable 3 | *.md linguist-detectable 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: Questions 问题讨论 4 | url: https://github.com/hugo-fixit/FixIt/discussions/new 5 | about: Please ask questions in Discussion. 请在讨论中提问。 6 | 7 | - name: Theme Documentation 主题文档 8 | url: https://fixit.lruihao.cn/documentation/ 9 | about: Please read the documentation carefully. 请先仔细阅读主题文档。 10 | -------------------------------------------------------------------------------- /.github/configs/codeql.yml: -------------------------------------------------------------------------------- 1 | name: "CodeQL config" 2 | 3 | paths-ignore: 4 | - assets/lib/** 5 | - docs/** -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx fixit-releaser version --dev 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="v" 2 | message=":bookmark: Chore(release): %s" -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "budparr.language-hugo-vscode", 4 | "kaellarkin.hugo-shortcode-syntax", 5 | "eliostruyf.vscode-hugo-themer" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: {{ replace .TranslationBaseName "-" " " | title }} 3 | subtitle: 4 | date: {{ .Date }} 5 | slug: {{ substr .File.UniqueID 0 7 }} 6 | description: 7 | keywords: 8 | draft: true 9 | --- 10 | -------------------------------------------------------------------------------- /archetypes/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: {{ T "assets.search" }} 3 | layout: search 4 | date: {{ .Date }} 5 | --- 6 | -------------------------------------------------------------------------------- /assets/css/_custom.scss: -------------------------------------------------------------------------------- 1 | // ============================== 2 | // Custom style 3 | // 自定义样式 4 | // ============================== 5 | -------------------------------------------------------------------------------- /assets/css/_mixin/_blur.scss: -------------------------------------------------------------------------------- 1 | @mixin blur { 2 | .blur & { 3 | @include filter(blur(1.5px)); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /assets/css/_mixin/_details.scss: -------------------------------------------------------------------------------- 1 | @mixin details-transition-open { 2 | @include transition(max-height 0.2s cubic-bezier(0, 1, 0, 1) -0.1s); 3 | } 4 | 5 | @mixin details-transition-close { 6 | @include transition(max-height 0.2s cubic-bezier(0.5, 0, 1, 0) 0s); 7 | } 8 | 9 | details { 10 | &.center { 11 | summary { 12 | text-align: center; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /assets/css/_mixin/_index.scss: -------------------------------------------------------------------------------- 1 | @import '_compatibility'; 2 | @import '_link'; 3 | @import '_blur'; 4 | @import '_details'; 5 | @import '_scrollbar-width'; 6 | @import '_z-index'; 7 | -------------------------------------------------------------------------------- /assets/css/_mixin/_scrollbar-width.scss: -------------------------------------------------------------------------------- 1 | @mixin scrollbar-width($width: thin, $widthLegacy: 12px) { 2 | --#{$prefix}scrollbar-width: #{$width}; 3 | --#{$prefix}scrollbar-width-legacy: #{$widthLegacy}; 4 | } 5 | -------------------------------------------------------------------------------- /assets/css/_mixin/_z-index.scss: -------------------------------------------------------------------------------- 1 | @mixin z-index($level, $diff: 0) { 2 | z-index: ($level * 100) + $diff; 3 | } 4 | -------------------------------------------------------------------------------- /assets/css/_override.scss: -------------------------------------------------------------------------------- 1 | // ============================== 2 | // Override Variables 3 | // 覆盖变量 4 | // ============================== 5 | -------------------------------------------------------------------------------- /assets/css/_page/_404.scss: -------------------------------------------------------------------------------- 1 | #content-404 { 2 | font-size: 1.8rem; 3 | line-height: 3rem; 4 | @include transform(translateY(30vh)); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /assets/css/_page/_index.scss: -------------------------------------------------------------------------------- 1 | .page { 2 | position: relative; 3 | @extend %page-style; 4 | 5 | .content { 6 | [id] { 7 | scroll-margin-top: var(--#{$prefix}scroll-mt); 8 | } 9 | } 10 | 11 | @include blur; 12 | } 13 | 14 | @import '_single'; 15 | @import '_special'; 16 | @import '_archive'; 17 | @import '_home'; 18 | @import '_404'; 19 | @import '_offline'; 20 | -------------------------------------------------------------------------------- /assets/css/_page/_special/_index.scss: -------------------------------------------------------------------------------- 1 | .special { 2 | .single-title, 3 | .single-subtitle { 4 | text-align: right; 5 | } 6 | 7 | &.friends { 8 | @import '_friends'; 9 | } 10 | 11 | &.search { 12 | @import '_search'; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /assets/css/_page/_special/_search.scss: -------------------------------------------------------------------------------- 1 | // Style of layout named 'search' 2 | // TODO Adapting to dark mode, maybe use css variables 3 | 4 | // Google CSE 5 | .gcse-searchbox:empty, 6 | .gcse-searchresults:empty { 7 | display: none; 8 | } 9 | 10 | // Bing CSE (Unsupported) 11 | -------------------------------------------------------------------------------- /assets/css/_partials/_img.scss: -------------------------------------------------------------------------------- 1 | img { 2 | @include border-radius($global-border-radius/2); 3 | } 4 | -------------------------------------------------------------------------------- /assets/css/_partials/_maps/_utilities.scss: -------------------------------------------------------------------------------- 1 | // Utilities 2 | 3 | // property order 4 | $orders: ( 5 | first: -1, 6 | 0: 0, 7 | 1: 1, 8 | 2: 2, 9 | 3: 3, 10 | 4: 4, 11 | 5: 5, 12 | last: 6, 13 | ) !default; -------------------------------------------------------------------------------- /assets/css/_partials/_mask.scss: -------------------------------------------------------------------------------- 1 | #mask { 2 | background-repeat: no-repeat; 3 | background-position: center; 4 | position: fixed; 5 | top: 0; 6 | left: 0; 7 | width: 100%; 8 | height: 100%; 9 | background-color: rgba(0, 0, 0, 0); 10 | @include z-index(0, -1); 11 | 12 | .blur & { 13 | @include z-index(1); 14 | background-color: rgba(0, 0, 0, 0.25); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /assets/css/_partials/_single/_comment.scss: -------------------------------------------------------------------------------- 1 | >#comments { 2 | padding: 2rem 0; 3 | @extend .print-d-none; 4 | 5 | iframe { 6 | width: 100%; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /assets/css/_partials/_widgets.scss: -------------------------------------------------------------------------------- 1 | @import '_widgets/cookieconsent'; 2 | @import '_widgets/fixed-button'; 3 | @import '_widgets/github-corner'; 4 | @import '_widgets/noscript-warning'; 5 | @import '_widgets/post-chat'; 6 | @import '_widgets/reading-progress'; 7 | @import '_widgets/typeit'; 8 | -------------------------------------------------------------------------------- /assets/css/_partials/_widgets/_cookieconsent.scss: -------------------------------------------------------------------------------- 1 | .cc-window.cc-banner { 2 | .cc-btn { 3 | color: $global-font-color; 4 | 5 | &:hover, 6 | &:focus { 7 | background-color: #ccc; 8 | } 9 | 10 | [data-theme='dark'] & { 11 | color: $global-font-color; 12 | 13 | &:hover, 14 | &:focus { 15 | background-color: #fff; 16 | } 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assets/css/_partials/_widgets/_post-chat.scss: -------------------------------------------------------------------------------- 1 | #postChat_button, 2 | .post-TianliGPT { 3 | @extend .print-d-none; 4 | } 5 | -------------------------------------------------------------------------------- /assets/css/_partials/_widgets/_typeit.scss: -------------------------------------------------------------------------------- 1 | .typeit { 2 | .highlight { 3 | padding: 0.375rem; 4 | font-size: 0.875rem; 5 | font-family: $code-font-family; 6 | font-weight: bold; 7 | word-break: break-all; 8 | white-space: pre-wrap; 9 | } 10 | 11 | --ti-cursor-font-family: #{$global-font-family}; 12 | --ti-cursor-transform: translateX(0); 13 | } 14 | -------------------------------------------------------------------------------- /assets/css/_shortcodes/_bilibili.scss: -------------------------------------------------------------------------------- 1 | .bilibili { 2 | position: relative; 3 | width: 100%; 4 | height: auto; 5 | aspect-ratio: 16 / 9; 6 | margin: 1rem auto; 7 | text-align: center; 8 | 9 | iframe { 10 | position: absolute; 11 | width: 100%; 12 | height: 100%; 13 | left: 0; 14 | top: 0; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /assets/css/_shortcodes/_echarts.scss: -------------------------------------------------------------------------------- 1 | .echarts { 2 | margin: 0.5rem 0; 3 | text-align: center; 4 | } 5 | -------------------------------------------------------------------------------- /assets/css/_shortcodes/_index.scss: -------------------------------------------------------------------------------- 1 | @import '_admonition'; 2 | @import '_bilibili'; 3 | @import '_douyin'; 4 | @import '_cardlink'; 5 | @import '_center-quote'; 6 | @import '_echarts'; 7 | @import '_instagram'; 8 | @import '_mapbox'; 9 | @import '_mermaid'; 10 | @import '_timeline'; 11 | -------------------------------------------------------------------------------- /assets/css/_shortcodes/_instagram.scss: -------------------------------------------------------------------------------- 1 | iframe.instagram-media { 2 | [data-theme='dark'] & { 3 | border: none !important; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /assets/css/_shortcodes/_mapbox.scss: -------------------------------------------------------------------------------- 1 | .mapbox { 2 | margin: 0.5rem 0; 3 | padding: 0.5rem 0; 4 | @include border-radius($global-border-radius); 5 | } 6 | -------------------------------------------------------------------------------- /assets/css/_shortcodes/_mermaid.scss: -------------------------------------------------------------------------------- 1 | .mermaid { 2 | &[data-processed='true'] { 3 | text-align: center; 4 | } 5 | 6 | svg { 7 | max-width: 100%; 8 | height: auto; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | @import "_variables"; 4 | @import "_override"; 5 | @import "_mixin/index"; 6 | @import "_core/root"; 7 | @import "_core/base"; 8 | @import "_core/layout"; 9 | @import "_core/common"; 10 | @import "_page"; 11 | @import "_core/media"; 12 | @import "_core/patch"; 13 | @import "_custom"; 14 | -------------------------------------------------------------------------------- /assets/data/polyfill.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | - html5shiv 3 | - Object.values 4 | - Promise 5 | - fetch 6 | - Element.prototype.after 7 | algoliasearch: 8 | - Promise 9 | - Object.entries 10 | - Object.assign 11 | TypeIt: 12 | - Array.prototype.fill 13 | - Array.prototype.find 14 | - Array.from 15 | - IntersectionObserver 16 | - Math.sign 17 | - Object.assign 18 | - Promise 19 | -------------------------------------------------------------------------------- /assets/images/icons/alerts/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/lib/pace/pace-patch-flat-top.css: -------------------------------------------------------------------------------- 1 | /* To patch pace theme flat-top z-index error */ 2 | .pace { 3 | z-index: 2000; 4 | } -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/42.svg: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/abletonlive.svg: -------------------------------------------------------------------------------- 1 | Ableton Live -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/accenture.svg: -------------------------------------------------------------------------------- 1 | Accenture -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/activitypub.svg: -------------------------------------------------------------------------------- 1 | ActivityPub -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/addthis.svg: -------------------------------------------------------------------------------- 1 | AddThis -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/adguard.svg: -------------------------------------------------------------------------------- 1 | AdGuard -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/adobe.svg: -------------------------------------------------------------------------------- 1 | Adobe -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/adroll.svg: -------------------------------------------------------------------------------- 1 | Adroll -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/adventofcode.svg: -------------------------------------------------------------------------------- 1 | Advent Of Code -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/aerospike.svg: -------------------------------------------------------------------------------- 1 | Aerospike -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/affinity.svg: -------------------------------------------------------------------------------- 1 | Affinity -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/aframe.svg: -------------------------------------------------------------------------------- 1 | A-Frame -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/airbrakedotio.svg: -------------------------------------------------------------------------------- 1 | Airbrake.io -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/airfrance.svg: -------------------------------------------------------------------------------- 1 | Air France -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/alacritty.svg: -------------------------------------------------------------------------------- 1 | Alacritty -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/alfred.svg: -------------------------------------------------------------------------------- 1 | Alfred -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/algorand.svg: -------------------------------------------------------------------------------- 1 | Algorand -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/alpinedotjs.svg: -------------------------------------------------------------------------------- 1 | Alpine.js -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/amp.svg: -------------------------------------------------------------------------------- 1 | AMP -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/analogue.svg: -------------------------------------------------------------------------------- 1 | Analogue -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/androidauto.svg: -------------------------------------------------------------------------------- 1 | Android Auto -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/angular.svg: -------------------------------------------------------------------------------- 1 | Angular -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/angularjs.svg: -------------------------------------------------------------------------------- 1 | AngularJS -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/anydesk.svg: -------------------------------------------------------------------------------- 1 | AnyDesk -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/arkecosystem.svg: -------------------------------------------------------------------------------- 1 | ARK Ecosystem -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/artixlinux.svg: -------------------------------------------------------------------------------- 1 | Artix Linux -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/artstation.svg: -------------------------------------------------------------------------------- 1 | ArtStation -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/asciinema.svg: -------------------------------------------------------------------------------- 1 | asciinema -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/aseprite.svg: -------------------------------------------------------------------------------- 1 | Aseprite -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/atlassian.svg: -------------------------------------------------------------------------------- 1 | Atlassian -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/auth0.svg: -------------------------------------------------------------------------------- 1 | Auth0 -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/autodesk.svg: -------------------------------------------------------------------------------- 1 | Autodesk -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | Autoprefixer -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/awesomelists.svg: -------------------------------------------------------------------------------- 1 | Awesome Lists -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/awesomewm.svg: -------------------------------------------------------------------------------- 1 | awesomeWM -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/awsamplify.svg: -------------------------------------------------------------------------------- 1 | AWS Amplify -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/axios.svg: -------------------------------------------------------------------------------- 1 | Axios -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/azuredevops.svg: -------------------------------------------------------------------------------- 1 | Azure DevOps -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/babylondotjs.svg: -------------------------------------------------------------------------------- 1 | Babylon.js -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/bandcamp.svg: -------------------------------------------------------------------------------- 1 | Bandcamp -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/bandsintown.svg: -------------------------------------------------------------------------------- 1 | Bandsintown -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/beats.svg: -------------------------------------------------------------------------------- 1 | Beats -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/beatsbydre.svg: -------------------------------------------------------------------------------- 1 | Beats by Dre -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/betfair.svg: -------------------------------------------------------------------------------- 1 | Betfair -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/bigcartel.svg: -------------------------------------------------------------------------------- 1 | Big Cartel -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/bitbucket.svg: -------------------------------------------------------------------------------- 1 | Bitbucket -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/boardgamegeek.svg: -------------------------------------------------------------------------------- 1 | BoardGameGeek -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/bookmeter.svg: -------------------------------------------------------------------------------- 1 | Bookmeter -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/buffer.svg: -------------------------------------------------------------------------------- 1 | Buffer -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/bulma.svg: -------------------------------------------------------------------------------- 1 | Bulma -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/buzzfeed.svg: -------------------------------------------------------------------------------- 1 | BuzzFeed -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/bytedance.svg: -------------------------------------------------------------------------------- 1 | ByteDance -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/campaignmonitor.svg: -------------------------------------------------------------------------------- 1 | Campaign Monitor -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/capacitor.svg: -------------------------------------------------------------------------------- 1 | Capacitor -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/carthrottle.svg: -------------------------------------------------------------------------------- 1 | Car Throttle -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/chainlink.svg: -------------------------------------------------------------------------------- 1 | Chainlink -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/chartmogul.svg: -------------------------------------------------------------------------------- 1 | ChartMogul -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/chase.svg: -------------------------------------------------------------------------------- 1 | Chase -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/chatwoot.svg: -------------------------------------------------------------------------------- 1 | Chatwoot -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/checkmk.svg: -------------------------------------------------------------------------------- 1 | Checkmk -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/clickhouse.svg: -------------------------------------------------------------------------------- 1 | ClickHouse -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/clickup.svg: -------------------------------------------------------------------------------- 1 | ClickUp -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/cloudera.svg: -------------------------------------------------------------------------------- 1 | Cloudera -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | Cloudsmith -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/clubhouse.svg: -------------------------------------------------------------------------------- 1 | Clubhouse -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/cmake.svg: -------------------------------------------------------------------------------- 1 | CMake -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/cncf.svg: -------------------------------------------------------------------------------- 1 | CNCF -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/codeberg.svg: -------------------------------------------------------------------------------- 1 | Codeberg -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/codeclimate.svg: -------------------------------------------------------------------------------- 1 | Code Climate -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/codesandbox.svg: -------------------------------------------------------------------------------- 1 | CodeSandbox -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/codio.svg: -------------------------------------------------------------------------------- 1 | Codio -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/commodore.svg: -------------------------------------------------------------------------------- 1 | Commodore -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/commonworkflowlanguage.svg: -------------------------------------------------------------------------------- 1 | Common Workflow Language -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/containerd.svg: -------------------------------------------------------------------------------- 1 | containerd -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/conventionalcommits.svg: -------------------------------------------------------------------------------- 1 | Conventional Commits -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/cratedb.svg: -------------------------------------------------------------------------------- 1 | CrateDB -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/crehana.svg: -------------------------------------------------------------------------------- 1 | Crehana -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/crunchyroll.svg: -------------------------------------------------------------------------------- 1 | Crunchyroll -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/css3.svg: -------------------------------------------------------------------------------- 1 | CSS3 -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/dacia.svg: -------------------------------------------------------------------------------- 1 | Dacia -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/daserste.svg: -------------------------------------------------------------------------------- 1 | Das Erste -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/datocms.svg: -------------------------------------------------------------------------------- 1 | DatoCMS -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/decapcms.svg: -------------------------------------------------------------------------------- 1 | Decap CMS -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/dedge.svg: -------------------------------------------------------------------------------- 1 | D-EDGE -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/delicious.svg: -------------------------------------------------------------------------------- 1 | del.icio.us -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/designernews.svg: -------------------------------------------------------------------------------- 1 | Designer News -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/deutschebank.svg: -------------------------------------------------------------------------------- 1 | Deutsche Bank -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/devexpress.svg: -------------------------------------------------------------------------------- 1 | DevExpress -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/deviantart.svg: -------------------------------------------------------------------------------- 1 | DeviantArt -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/devpost.svg: -------------------------------------------------------------------------------- 1 | Devpost -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/digg.svg: -------------------------------------------------------------------------------- 1 | Digg -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/docusign.svg: -------------------------------------------------------------------------------- 1 | DocuSign -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/dolby.svg: -------------------------------------------------------------------------------- 1 | Dolby -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/doordash.svg: -------------------------------------------------------------------------------- 1 | DoorDash -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/douban.svg: -------------------------------------------------------------------------------- 1 | Douban -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/doubanread.svg: -------------------------------------------------------------------------------- 1 | Douban Read -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/dropbox.svg: -------------------------------------------------------------------------------- 1 | Dropbox -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/dunked.svg: -------------------------------------------------------------------------------- 1 | Dunked -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/dwm.svg: -------------------------------------------------------------------------------- 1 | dwm -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/ea.svg: -------------------------------------------------------------------------------- 1 | EA -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/eclipseche.svg: -------------------------------------------------------------------------------- 1 | Eclipse Che -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/elasticstack.svg: -------------------------------------------------------------------------------- 1 | Elastic Stack -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/elementor.svg: -------------------------------------------------------------------------------- 1 | Elementor -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/elixir.svg: -------------------------------------------------------------------------------- 1 | Elixir -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/ello.svg: -------------------------------------------------------------------------------- 1 | Ello -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/elm.svg: -------------------------------------------------------------------------------- 1 | Elm -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/engadget.svg: -------------------------------------------------------------------------------- 1 | Engadget -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/envato.svg: -------------------------------------------------------------------------------- 1 | Envato -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/esbuild.svg: -------------------------------------------------------------------------------- 1 | esbuild -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/esea.svg: -------------------------------------------------------------------------------- 1 | ESEA -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/ethereum.svg: -------------------------------------------------------------------------------- 1 | Ethereum -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/exoscale.svg: -------------------------------------------------------------------------------- 1 | Exoscale -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/expertsexchange.svg: -------------------------------------------------------------------------------- 1 | Experts Exchange -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/f1.svg: -------------------------------------------------------------------------------- 1 | F1 -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/facebookgaming.svg: -------------------------------------------------------------------------------- 1 | Facebook Gaming -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/faceit.svg: -------------------------------------------------------------------------------- 1 | FACEIT -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/farfetch.svg: -------------------------------------------------------------------------------- 1 | FARFETCH -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/fastapi.svg: -------------------------------------------------------------------------------- 1 | FastAPI -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/feathub.svg: -------------------------------------------------------------------------------- 1 | FeatHub -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/fifa.svg: -------------------------------------------------------------------------------- 1 | FIFA -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/firebase.svg: -------------------------------------------------------------------------------- 1 | Firebase -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/flipboard.svg: -------------------------------------------------------------------------------- 1 | Flipboard -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/flutter.svg: -------------------------------------------------------------------------------- 1 | Flutter -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/framer.svg: -------------------------------------------------------------------------------- 1 | Framer -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/framework7.svg: -------------------------------------------------------------------------------- 1 | Framework7 -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/freelancer.svg: -------------------------------------------------------------------------------- 1 | Freelancer -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/fsharp.svg: -------------------------------------------------------------------------------- 1 | F# -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/funimation.svg: -------------------------------------------------------------------------------- 1 | Funimation -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/futurelearn.svg: -------------------------------------------------------------------------------- 1 | FutureLearn -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/gamemaker.svg: -------------------------------------------------------------------------------- 1 | Gamemaker -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/giphy.svg: -------------------------------------------------------------------------------- 1 | GIPHY -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/gitlfs.svg: -------------------------------------------------------------------------------- 1 | Git LFS -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/gitter.svg: -------------------------------------------------------------------------------- 1 | Gitter -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/gmail.svg: -------------------------------------------------------------------------------- 1 | Gmail -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/gocd.svg: -------------------------------------------------------------------------------- 1 | GoCD -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/goldenline.svg: -------------------------------------------------------------------------------- 1 | GoldenLine -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/googlecloudcomposer.svg: -------------------------------------------------------------------------------- 1 | Google Cloud Composer -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/googledocs.svg: -------------------------------------------------------------------------------- 1 | Google Docs -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/googlefonts.svg: -------------------------------------------------------------------------------- 1 | Google Fonts -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/googlehangouts.svg: -------------------------------------------------------------------------------- 1 | Google Hangouts -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/googlehome.svg: -------------------------------------------------------------------------------- 1 | Google Home -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/googlescholar.svg: -------------------------------------------------------------------------------- 1 | Google Scholar -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/googleslides.svg: -------------------------------------------------------------------------------- 1 | Google Slides -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/griddotai.svg: -------------------------------------------------------------------------------- 1 | Grid.ai -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/gtk.svg: -------------------------------------------------------------------------------- 1 | GTK -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/guangzhoumetro.svg: -------------------------------------------------------------------------------- 1 | Guangzhou Metro -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/gurobi.svg: -------------------------------------------------------------------------------- 1 | Gurobi -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hackclub.svg: -------------------------------------------------------------------------------- 1 | Hack Club -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/handshake.svg: -------------------------------------------------------------------------------- 1 | Handshake -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hashicorp.svg: -------------------------------------------------------------------------------- 1 | HashiCorp -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hashnode.svg: -------------------------------------------------------------------------------- 1 | Hashnode -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/haskell.svg: -------------------------------------------------------------------------------- 1 | Haskell -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hearth.svg: -------------------------------------------------------------------------------- 1 | Hearth -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hedera.svg: -------------------------------------------------------------------------------- 1 | Hedera -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hexlet.svg: -------------------------------------------------------------------------------- 1 | Hexlet -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hexo.svg: -------------------------------------------------------------------------------- 1 | Hexo -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hibernate.svg: -------------------------------------------------------------------------------- 1 | Hibernate -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/homeadvisor.svg: -------------------------------------------------------------------------------- 1 | HomeAdvisor -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hotwire.svg: -------------------------------------------------------------------------------- 1 | Hotwire -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/houzz.svg: -------------------------------------------------------------------------------- 1 | Houzz -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hsbc.svg: -------------------------------------------------------------------------------- 1 | HSBC -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/html5.svg: -------------------------------------------------------------------------------- 1 | HTML5 -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hurriyetemlak.svg: -------------------------------------------------------------------------------- 1 | Hurriyetemlak -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/hyper.svg: -------------------------------------------------------------------------------- 1 | Hyper -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/icons8.svg: -------------------------------------------------------------------------------- 1 | Icons8 -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/ifttt.svg: -------------------------------------------------------------------------------- 1 | IFTTT -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/inertia.svg: -------------------------------------------------------------------------------- 1 | Inertia -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/informatica.svg: -------------------------------------------------------------------------------- 1 | Informatica -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/instapaper.svg: -------------------------------------------------------------------------------- 1 | Instapaper -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/instructure.svg: -------------------------------------------------------------------------------- 1 | Instructure -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/interactjs.svg: -------------------------------------------------------------------------------- 1 | InteractJS -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/istio.svg: -------------------------------------------------------------------------------- 1 | Istio -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/jamboard.svg: -------------------------------------------------------------------------------- 1 | Jamboard -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/jamstack.svg: -------------------------------------------------------------------------------- 1 | Jamstack -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/jfrogbintray.svg: -------------------------------------------------------------------------------- 1 | JFrog Bintray -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/jovian.svg: -------------------------------------------------------------------------------- 1 | Jovian -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/juejin.svg: -------------------------------------------------------------------------------- 1 | Juejin -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/julia.svg: -------------------------------------------------------------------------------- 1 | Julia -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/kahoot.svg: -------------------------------------------------------------------------------- 1 | Kahoot! -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/kaufland.svg: -------------------------------------------------------------------------------- 1 | Kaufland -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/kedro.svg: -------------------------------------------------------------------------------- 1 | Kedro -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/keras.svg: -------------------------------------------------------------------------------- 1 | Keras -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/keystone.svg: -------------------------------------------------------------------------------- 1 | Keystone -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/kibana.svg: -------------------------------------------------------------------------------- 1 | Kibana -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/kirby.svg: -------------------------------------------------------------------------------- 1 | Kirby -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/klarna.svg: -------------------------------------------------------------------------------- 1 | Klarna -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/konva.svg: -------------------------------------------------------------------------------- 1 | Konva -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/kotlin.svg: -------------------------------------------------------------------------------- 1 | Kotlin -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/koyeb.svg: -------------------------------------------------------------------------------- 1 | Koyeb -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/kuula.svg: -------------------------------------------------------------------------------- 1 | Kuula -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/kyocera.svg: -------------------------------------------------------------------------------- 1 | Kyocera -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/lapce.svg: -------------------------------------------------------------------------------- 1 | Lapce -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/lens.svg: -------------------------------------------------------------------------------- 1 | Lens -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/lighthouse.svg: -------------------------------------------------------------------------------- 1 | Lighthouse -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/lightning.svg: -------------------------------------------------------------------------------- 1 | Lightning -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/linuxfoundation.svg: -------------------------------------------------------------------------------- 1 | Linux Foundation -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/lit.svg: -------------------------------------------------------------------------------- 1 | Lit -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/litiengine.svg: -------------------------------------------------------------------------------- 1 | LITIENGINE -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/lmms.svg: -------------------------------------------------------------------------------- 1 | LMMS -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/logstash.svg: -------------------------------------------------------------------------------- 1 | Logstash -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/lospec.svg: -------------------------------------------------------------------------------- 1 | Lospec -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/ludwig.svg: -------------------------------------------------------------------------------- 1 | Ludwig -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/macys.svg: -------------------------------------------------------------------------------- 1 | Macy's -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/magento.svg: -------------------------------------------------------------------------------- 1 | Magento -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/manjaro.svg: -------------------------------------------------------------------------------- 1 | Manjaro -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/marketo.svg: -------------------------------------------------------------------------------- 1 | Marketo -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/marko.svg: -------------------------------------------------------------------------------- 1 | Marko -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/materialdesignicons.svg: -------------------------------------------------------------------------------- 1 | Material Design Icons -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/mcafee.svg: -------------------------------------------------------------------------------- 1 | McAfee -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/mdnwebdocs.svg: -------------------------------------------------------------------------------- 1 | MDN Web Docs -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/merck.svg: -------------------------------------------------------------------------------- 1 | Merck -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/metafilter.svg: -------------------------------------------------------------------------------- 1 | MetaFilter -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/micropython.svg: -------------------------------------------------------------------------------- 1 | MicroPython -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/microsoft.svg: -------------------------------------------------------------------------------- 1 | Microsoft -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/microstrategy.svg: -------------------------------------------------------------------------------- 1 | MicroStrategy -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/midi.svg: -------------------------------------------------------------------------------- 1 | MIDI -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/minutemailer.svg: -------------------------------------------------------------------------------- 1 | Minutemailer -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/miro.svg: -------------------------------------------------------------------------------- 1 | Miro -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/mitsubishi.svg: -------------------------------------------------------------------------------- 1 | Mitsubishi -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/mlflow.svg: -------------------------------------------------------------------------------- 1 | MLflow -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/modx.svg: -------------------------------------------------------------------------------- 1 | MODX -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/monoprix.svg: -------------------------------------------------------------------------------- 1 | Monoprix -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/monster.svg: -------------------------------------------------------------------------------- 1 | Monster -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/natsdotio.svg: -------------------------------------------------------------------------------- 1 | NATS.io -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/naver.svg: -------------------------------------------------------------------------------- 1 | Naver -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/neovim.svg: -------------------------------------------------------------------------------- 1 | Neovim -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/netapp.svg: -------------------------------------------------------------------------------- 1 | NetApp -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/netflix.svg: -------------------------------------------------------------------------------- 1 | Netflix -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/newrelic.svg: -------------------------------------------------------------------------------- 1 | New Relic -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/nintendo.svg: -------------------------------------------------------------------------------- 1 | Nintendo -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/norco.svg: -------------------------------------------------------------------------------- 1 | Norco -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/nordvpn.svg: -------------------------------------------------------------------------------- 1 | NordVPN -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/normalizedotcss.svg: -------------------------------------------------------------------------------- 1 | Normalize.css -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/npm.svg: -------------------------------------------------------------------------------- 1 | npm -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/nunjucks.svg: -------------------------------------------------------------------------------- 1 | Nunjucks -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/okta.svg: -------------------------------------------------------------------------------- 1 | Okta -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/oneplus.svg: -------------------------------------------------------------------------------- 1 | OnePlus -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/opencontainersinitiative.svg: -------------------------------------------------------------------------------- 1 | Open Containers Initiative -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/openid.svg: -------------------------------------------------------------------------------- 1 | OpenID -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/openzeppelin.svg: -------------------------------------------------------------------------------- 1 | OpenZeppelin -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/oracle.svg: -------------------------------------------------------------------------------- 1 | Oracle -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/osano.svg: -------------------------------------------------------------------------------- 1 | Osano -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/ovh.svg: -------------------------------------------------------------------------------- 1 | OVH -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/packer.svg: -------------------------------------------------------------------------------- 1 | Packer -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/pagekit.svg: -------------------------------------------------------------------------------- 1 | Pagekit -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/palantir.svg: -------------------------------------------------------------------------------- 1 | Palantir -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/paloaltonetworks.svg: -------------------------------------------------------------------------------- 1 | Palo Alto Networks -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/pandas.svg: -------------------------------------------------------------------------------- 1 | pandas -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/pandora.svg: -------------------------------------------------------------------------------- 1 | Pandora -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/passport.svg: -------------------------------------------------------------------------------- 1 | Passport -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/patreon.svg: -------------------------------------------------------------------------------- 1 | Patreon -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/payloadcms.svg: -------------------------------------------------------------------------------- 1 | Payload CMS -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/peakdesign.svg: -------------------------------------------------------------------------------- 1 | Peak Design -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/peertube.svg: -------------------------------------------------------------------------------- 1 | PeerTube -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/pepsi.svg: -------------------------------------------------------------------------------- 1 | Pepsi -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/pexels.svg: -------------------------------------------------------------------------------- 1 | Pexels -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/pinboard.svg: -------------------------------------------------------------------------------- 1 | Pinboard -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/pkgsrc.svg: -------------------------------------------------------------------------------- 1 | pkgsrc -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/planetscale.svg: -------------------------------------------------------------------------------- 1 | PlanetScale -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/platformdotsh.svg: -------------------------------------------------------------------------------- 1 | Platform.sh -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/platzi.svg: -------------------------------------------------------------------------------- 1 | Platzi -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/playcanvas.svg: -------------------------------------------------------------------------------- 1 | PlayCanvas -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/playerdotme.svg: -------------------------------------------------------------------------------- 1 | Player.me -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/playstation2.svg: -------------------------------------------------------------------------------- 1 | PlayStation 2 -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/pleroma.svg: -------------------------------------------------------------------------------- 1 | Pleroma -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/pnpm.svg: -------------------------------------------------------------------------------- 1 | pnpm -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/poetry.svg: -------------------------------------------------------------------------------- 1 | Poetry -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/polymerproject.svg: -------------------------------------------------------------------------------- 1 | Polymer Project -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/powerbi.svg: -------------------------------------------------------------------------------- 1 | Power BI -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/prefect.svg: -------------------------------------------------------------------------------- 1 | Prefect -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/printables.svg: -------------------------------------------------------------------------------- 1 | Printables -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/producthunt.svg: -------------------------------------------------------------------------------- 1 | Product Hunt -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/prosieben.svg: -------------------------------------------------------------------------------- 1 | ProSieben -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/puppet.svg: -------------------------------------------------------------------------------- 1 | Puppet -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/purism.svg: -------------------------------------------------------------------------------- 1 | Purism -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/pyup.svg: -------------------------------------------------------------------------------- 1 | PyUp -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/quicktime.svg: -------------------------------------------------------------------------------- 1 | QuickTime -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/quora.svg: -------------------------------------------------------------------------------- 1 | Quora -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/radar.svg: -------------------------------------------------------------------------------- 1 | Radar -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/radixui.svg: -------------------------------------------------------------------------------- 1 | Radix UI -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/rakuten.svg: -------------------------------------------------------------------------------- 1 | Rakuten -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/razorpay.svg: -------------------------------------------------------------------------------- 1 | Razorpay -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/reason.svg: -------------------------------------------------------------------------------- 1 | Reason -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/red.svg: -------------------------------------------------------------------------------- 1 | Red -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/renault.svg: -------------------------------------------------------------------------------- 1 | Renault -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/replit.svg: -------------------------------------------------------------------------------- 1 | Replit -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/reverbnation.svg: -------------------------------------------------------------------------------- 1 | ReverbNation -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/revoltdotchat.svg: -------------------------------------------------------------------------------- 1 | Revolt.chat -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/riotgames.svg: -------------------------------------------------------------------------------- 1 | Riot Games -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/riseup.svg: -------------------------------------------------------------------------------- 1 | Riseup -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/roblox.svg: -------------------------------------------------------------------------------- 1 | Roblox -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/robloxstudio.svg: -------------------------------------------------------------------------------- 1 | Roblox Studio -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/rockylinux.svg: -------------------------------------------------------------------------------- 1 | Rocky Linux -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/rootsbedrock.svg: -------------------------------------------------------------------------------- 1 | Roots Bedrock -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/rootssage.svg: -------------------------------------------------------------------------------- 1 | Roots Sage -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/rtlzwei.svg: -------------------------------------------------------------------------------- 1 | RTLZWEI -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/rubygems.svg: -------------------------------------------------------------------------------- 1 | RubyGems -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/ruff.svg: -------------------------------------------------------------------------------- 1 | Ruff -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/rundeck.svg: -------------------------------------------------------------------------------- 1 | Rundeck -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/sailsdotjs.svg: -------------------------------------------------------------------------------- 1 | Sails.js -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/saltproject.svg: -------------------------------------------------------------------------------- 1 | Salt Project -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/saopaulometro.svg: -------------------------------------------------------------------------------- 1 | São Paulo Metro -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/scala.svg: -------------------------------------------------------------------------------- 1 | Scala -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/semanticweb.svg: -------------------------------------------------------------------------------- 1 | Semantic Web -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/serverless.svg: -------------------------------------------------------------------------------- 1 | Serverless -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/shotcut.svg: -------------------------------------------------------------------------------- 1 | Shotcut -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/shutterstock.svg: -------------------------------------------------------------------------------- 1 | Shutterstock -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/sifive.svg: -------------------------------------------------------------------------------- 1 | SiFive -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/simpleanalytics.svg: -------------------------------------------------------------------------------- 1 | Simple Analytics -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/slashdot.svg: -------------------------------------------------------------------------------- 1 | Slashdot -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/slickpic.svg: -------------------------------------------------------------------------------- 1 | SlickPic -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/snapcraft.svg: -------------------------------------------------------------------------------- 1 | Snapcraft -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/snowpack.svg: -------------------------------------------------------------------------------- 1 | Snowpack -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/sourcehut.svg: -------------------------------------------------------------------------------- 1 | SourceHut -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/spacex.svg: -------------------------------------------------------------------------------- 1 | SpaceX -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/sparkar.svg: -------------------------------------------------------------------------------- 1 | Spark AR -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/spdx.svg: -------------------------------------------------------------------------------- 1 | SPDX -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/spectrum.svg: -------------------------------------------------------------------------------- 1 | Spectrum -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/spinrilla.svg: -------------------------------------------------------------------------------- 1 | Spinrilla -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/spreadshirt.svg: -------------------------------------------------------------------------------- 1 | Spreadshirt -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/spreaker.svg: -------------------------------------------------------------------------------- 1 | Spreaker -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/squareenix.svg: -------------------------------------------------------------------------------- 1 | Square Enix -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/stackblitz.svg: -------------------------------------------------------------------------------- 1 | StackBlitz -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/statuspage.svg: -------------------------------------------------------------------------------- 1 | Statuspage -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/steamdeck.svg: -------------------------------------------------------------------------------- 1 | Steam Deck -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/stitcher.svg: -------------------------------------------------------------------------------- 1 | Stitcher -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/strava.svg: -------------------------------------------------------------------------------- 1 | Strava -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/streamlit.svg: -------------------------------------------------------------------------------- 1 | Streamlit -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/substack.svg: -------------------------------------------------------------------------------- 1 | Substack -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/suckless.svg: -------------------------------------------------------------------------------- 1 | suckless -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/supabase.svg: -------------------------------------------------------------------------------- 1 | Supabase -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/suzuki.svg: -------------------------------------------------------------------------------- 1 | Suzuki -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/task.svg: -------------------------------------------------------------------------------- 1 | Task -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/tasmota.svg: -------------------------------------------------------------------------------- 1 | Tasmota -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/telegraph.svg: -------------------------------------------------------------------------------- 1 | Telegraph -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/tensorflow.svg: -------------------------------------------------------------------------------- 1 | TensorFlow -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/teratail.svg: -------------------------------------------------------------------------------- 1 | teratail -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/terraform.svg: -------------------------------------------------------------------------------- 1 | Terraform -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/testcafe.svg: -------------------------------------------------------------------------------- 1 | TestCafe -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/thumbtack.svg: -------------------------------------------------------------------------------- 1 | Thumbtack -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/thurgauerkantonalbank.svg: -------------------------------------------------------------------------------- 1 | Thurgauer Kantonalbank -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/tidal.svg: -------------------------------------------------------------------------------- 1 | Tidal -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/tistory.svg: -------------------------------------------------------------------------------- 1 | Tistory -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/tmux.svg: -------------------------------------------------------------------------------- 1 | tmux -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/toggltrack.svg: -------------------------------------------------------------------------------- 1 | Toggl Track -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/toml.svg: -------------------------------------------------------------------------------- 1 | TOML -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/toptal.svg: -------------------------------------------------------------------------------- 1 | Toptal -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/trailforks.svg: -------------------------------------------------------------------------------- 1 | Trailforks -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/transportforireland.svg: -------------------------------------------------------------------------------- 1 | Transport for Ireland -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/truenas.svg: -------------------------------------------------------------------------------- 1 | TrueNAS -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/trustpilot.svg: -------------------------------------------------------------------------------- 1 | Trustpilot -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/tvtime.svg: -------------------------------------------------------------------------------- 1 | TV Time -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/twitch.svg: -------------------------------------------------------------------------------- 1 | Twitch -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/udemy.svg: -------------------------------------------------------------------------------- 1 | Udemy -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/uikit.svg: -------------------------------------------------------------------------------- 1 | UIkit -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/undertale.svg: -------------------------------------------------------------------------------- 1 | Undertale -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/unraid.svg: -------------------------------------------------------------------------------- 1 | Unraid -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/unsplash.svg: -------------------------------------------------------------------------------- 1 | Unsplash -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/v2ex.svg: -------------------------------------------------------------------------------- 1 | V2EX -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/vagrant.svg: -------------------------------------------------------------------------------- 1 | Vagrant -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/vbulletin.svg: -------------------------------------------------------------------------------- 1 | vBulletin -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/vectorlogozone.svg: -------------------------------------------------------------------------------- 1 | Vector Logo Zone -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/vega.svg: -------------------------------------------------------------------------------- 1 | Vega -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/vercel.svg: -------------------------------------------------------------------------------- 1 | Vercel -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/verizon.svg: -------------------------------------------------------------------------------- 1 | Verizon -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/viaplay.svg: -------------------------------------------------------------------------------- 1 | Viaplay -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/virustotal.svg: -------------------------------------------------------------------------------- 1 | VirusTotal -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/vitess.svg: -------------------------------------------------------------------------------- 1 | Vitess -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/vonage.svg: -------------------------------------------------------------------------------- 1 | Vonage -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/vorondesign.svg: -------------------------------------------------------------------------------- 1 | Voron Design -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/vuedotjs.svg: -------------------------------------------------------------------------------- 1 | Vue.js -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/vuetify.svg: -------------------------------------------------------------------------------- 1 | Vuetify -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/warp.svg: -------------------------------------------------------------------------------- 1 | Warp -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/windows.svg: -------------------------------------------------------------------------------- 1 | Windows -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/windows10.svg: -------------------------------------------------------------------------------- 1 | Windows 10 -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/windows11.svg: -------------------------------------------------------------------------------- 1 | Windows 11 -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/wise.svg: -------------------------------------------------------------------------------- 1 | Wise -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/x.svg: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/xdadevelopers.svg: -------------------------------------------------------------------------------- 1 | XDA Developers -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/xilinx.svg: -------------------------------------------------------------------------------- 1 | Xilinx -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/xsplit.svg: -------------------------------------------------------------------------------- 1 | XSplit -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/xstate.svg: -------------------------------------------------------------------------------- 1 | XState -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/yahoo.svg: -------------------------------------------------------------------------------- 1 | Yahoo! -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/ycombinator.svg: -------------------------------------------------------------------------------- 1 | Y Combinator -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/yeti.svg: -------------------------------------------------------------------------------- 1 | Yeti -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/yubico.svg: -------------------------------------------------------------------------------- 1 | Yubico -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/zcash.svg: -------------------------------------------------------------------------------- 1 | Zcash -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/zend.svg: -------------------------------------------------------------------------------- 1 | Zend -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/zendesk.svg: -------------------------------------------------------------------------------- 1 | Zendesk -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/zerodha.svg: -------------------------------------------------------------------------------- 1 | Zerodha -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/zig.svg: -------------------------------------------------------------------------------- 1 | Zig -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/zincsearch.svg: -------------------------------------------------------------------------------- 1 | ZincSearch -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/zorin.svg: -------------------------------------------------------------------------------- 1 | Zorin -------------------------------------------------------------------------------- /assets/lib/simple-icons/icons/zotero.svg: -------------------------------------------------------------------------------- 1 | Zotero -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hugo-fixit/FixIt 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /images/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/images/alipay.jpg -------------------------------------------------------------------------------- /images/apple-devices-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/images/apple-devices-preview.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/images/tn.png -------------------------------------------------------------------------------- /images/wechatpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/images/wechatpay.jpg -------------------------------------------------------------------------------- /layouts/_default/_markup/render-codeblock-echarts.html: -------------------------------------------------------------------------------- 1 | {{- dict 2 | "Options" .Attributes 3 | "Inner" .Inner 4 | "Resources" .Page.Resources 5 | "Position" .Position 6 | | partial "plugin/echarts.html" 7 | -}} 8 | {{- .Page.Store.Set "hasEcharts" true -}} 9 | -------------------------------------------------------------------------------- /layouts/_default/_markup/render-codeblock-mermaid.html: -------------------------------------------------------------------------------- 1 | {{- dict "Options" .Attributes "Inner" .Inner | partial "plugin/mermaid.html" -}} 2 | {{- .Page.Store.Set "hasMermaid" true -}} 3 | -------------------------------------------------------------------------------- /layouts/_default/_markup/render-codeblock-timeline.html: -------------------------------------------------------------------------------- 1 | {{- dict 2 | "Options" .Attributes 3 | "Inner" .Inner 4 | "Resources" .Page.Resources 5 | "Position" .Position 6 | | partial "plugin/timeline.html" 7 | -}} 8 | -------------------------------------------------------------------------------- /layouts/_default/_markup/render-codeblock.html: -------------------------------------------------------------------------------- 1 | {{- $result := transform.HighlightCodeBlock . -}} 2 | {{- $result.Wrapped -}} 3 | -------------------------------------------------------------------------------- /layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- 1 | {{- $destination := .Destination -}} 2 | {{- with dict "Path" $destination | partial "function/resource.html" -}} 3 | {{- $destination = .RelPermalink -}} 4 | {{- end -}} 5 | {{- $options := dict "Destination" $destination "Title" .Title "Content" .Text "ExternalIcon" .Page.Site.Params.externalIcon -}} 6 | {{- partial "plugin/link.html" $options -}} 7 | -------------------------------------------------------------------------------- /layouts/_default/home.baidu_urls.txt: -------------------------------------------------------------------------------- 1 | {{- range (where .Site.Pages "Kind" "page") -}} 2 | {{- println .Permalink -}} 3 | {{- end -}} -------------------------------------------------------------------------------- /layouts/_default/home.rss.xml: -------------------------------------------------------------------------------- 1 | {{- $options := dict "Site" .Site "Config" .Site.Params.feed "OutputFormats" .OutputFormats -}} 2 | {{- $options = dict "Permalink" .Permalink "Version" (.Scratch.Get "version") | merge $options -}} 3 | {{- $options = dict "Title" .Site.Title "Pages" (.Scratch.Get "mainSectionPages") | merge $options -}} 4 | {{- partial "feed/rss.html" $options -}} 5 | -------------------------------------------------------------------------------- /layouts/partials/function/dos2unix.html: -------------------------------------------------------------------------------- 1 | {{- /* Unify new lines symbol */ -}} 2 | {{- /* See https://en.wikipedia.org/wiki/Newline */ -}} 3 | 4 | {{- return replace . "\r\n" "\n" -}} 5 | -------------------------------------------------------------------------------- /layouts/partials/function/escape.html: -------------------------------------------------------------------------------- 1 | {{- /* Escape character */ -}} 2 | {{- /* {?X} -> X */ -}} 3 | {{- $REin := `\{\?(.)\}` -}} 4 | {{- $REout := `$1` -}} 5 | {{- return replaceRE $REin $REout . -}} 6 | -------------------------------------------------------------------------------- /layouts/partials/function/escapeurl.html: -------------------------------------------------------------------------------- 1 | {{- /* Escape url special characters to query format, e.g: `#` -> `%23` */ -}} 2 | {{- /* https://github.com/hugo-fixit/FixIt/issues/245 */ -}} 3 | 4 | {{- $content := . -}} 5 | {{- $content = replace $content "#" "%23" -}} 6 | {{- return $content -}} 7 | -------------------------------------------------------------------------------- /layouts/partials/function/fraction.html: -------------------------------------------------------------------------------- 1 | {{- /* Fraction */ -}} 2 | {{- /* [A]/[B] -> A/B */ -}} 3 | {{- $REin := `\[(.+?)\]/\[(.+?)\]` -}} 4 | {{- $REout := `$1/$2` -}} 5 | {{- return replaceRE $REin $REout . -}} 6 | -------------------------------------------------------------------------------- /layouts/partials/function/is-url-remote.html: -------------------------------------------------------------------------------- 1 | {{- return and (not (eq .Scheme "")) .Host -}} 2 | -------------------------------------------------------------------------------- /layouts/partials/function/params.html: -------------------------------------------------------------------------------- 1 | {{- $params := page.Params | merge site.Params.page -}} 2 | {{- return $params -}} -------------------------------------------------------------------------------- /layouts/partials/function/path.html: -------------------------------------------------------------------------------- 1 | {{- /* https://discourse.gohugo.io/t/how-decode-urls-in-hugo/7549/4 */ -}} 2 | {{- $URL := partial "function/escapeurl.html" . -}} 3 | {{- $URL = $URL | urlize | urls.Parse -}} 4 | {{- return $URL.Path -}} 5 | -------------------------------------------------------------------------------- /layouts/partials/function/ruby.html: -------------------------------------------------------------------------------- 1 | {{- /* Ruby */ -}} 2 | {{- /* [EN]^(English) -> ENEnglish */ -}} 3 | {{- $REin := `\[(.+?)\]\^\((.+?)\)` -}} 4 | {{- $REout := `$1$2` -}} 5 | {{- return replaceRE $REin $REout . -}} 6 | -------------------------------------------------------------------------------- /layouts/partials/function/trim.html: -------------------------------------------------------------------------------- 1 | {{- /* Trim whitespace from the beginning and end of a string */ -}} 2 | {{- return (. | replaceRE `[\s]+` " " | strings.TrimSpace) -}} 3 | -------------------------------------------------------------------------------- /layouts/partials/plugin/mermaid.html: -------------------------------------------------------------------------------- 1 | {{- /* Mermaid support for code fences extended and shortcodes. */ -}} 2 |
{{ .Inner | safeHTML }}
3 | 4 | {{- /* EOF */ -}} 5 | -------------------------------------------------------------------------------- /layouts/partials/scratch/script.html: -------------------------------------------------------------------------------- 1 | {{- $this := .Scratch.Get "this" -}} 2 | {{- $script := $this.script | default slice -}} 3 | {{- $script = $script | append (slice .Data) -}} 4 | {{- .Scratch.SetInMap "this" "script" $script -}} 5 | -------------------------------------------------------------------------------- /layouts/partials/scratch/style.html: -------------------------------------------------------------------------------- 1 | {{- $this := .Scratch.Get "this" -}} 2 | {{- $style := $this.style | default slice -}} 3 | {{- $style = $style | append (slice .Data) -}} 4 | {{- .Scratch.SetInMap "this" "style" $style -}} 5 | -------------------------------------------------------------------------------- /layouts/partials/single/reward.html: -------------------------------------------------------------------------------- 1 | {{- $reward := .Scratch.Get "reward" -}} 2 | {{- $author := .Store.Get "author" -}} 3 | {{- $options := dict "Reward" $reward "Id" "fi-reward" "Author" $author.name -}} 4 | {{- partial "plugin/reward.html" $options -}} 5 | -------------------------------------------------------------------------------- /layouts/shortcodes/bluesky.html: -------------------------------------------------------------------------------- 1 | {{- $link := .Get "link" -}} 2 | {{- $query := querify "url" $link -}} 3 | {{- $request := printf "https://embed.bsky.app/oembed?%s" $query -}} 4 | {{- $jsonOembed := resources.GetRemote $request -}} 5 | {{- $jsonOembed = $jsonOembed | transform.Unmarshal -}} 6 | {{- $jsonOHTML := $jsonOembed.html -}} 7 | {{- $jsonOHTML | safeHTML -}} 8 | -------------------------------------------------------------------------------- /layouts/shortcodes/center-quote.html: -------------------------------------------------------------------------------- 1 |
2 | {{ .Inner | .Page.RenderString }} 3 |
4 | {{- /* EOF */ -}} 5 | -------------------------------------------------------------------------------- /layouts/shortcodes/gist.html: -------------------------------------------------------------------------------- 1 | 2 | {{- /* EOF */ -}} 3 | -------------------------------------------------------------------------------- /layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- 1 | {{- $options := dict -}} 2 | {{- dict "Options" $options "Inner" .Inner | partial "plugin/mermaid.html" -}} 3 | {{- .Page.Store.Set "hasMermaid" true -}} 4 | -------------------------------------------------------------------------------- /layouts/shortcodes/raw.html: -------------------------------------------------------------------------------- 1 | 2 | {{- $tag := .Get "tag" | default (.Get 0) | default "div" -}} 3 | {{- printf `<%v class="fi-row">%v` $tag .Inner $tag | safeHTML -}} 4 | -------------------------------------------------------------------------------- /layouts/shortcodes/script.html: -------------------------------------------------------------------------------- 1 | {{- $scriptArr := .Page.Store.Get "scriptArr" | default slice -}} 2 | {{- $content := trim (partial "function/dos2unix.html" .Inner) "\n" -}} 3 | {{- if not (in $scriptArr $content) -}} 4 | {{- $scriptArr | append $content | .Page.Store.Set "scriptArr" -}} 5 | {{- end -}} 6 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/favicon.ico -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/katex/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/lightgallery/fonts/lg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/lightgallery/fonts/lg.ttf -------------------------------------------------------------------------------- /static/lib/lightgallery/fonts/lg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/lightgallery/fonts/lg.woff -------------------------------------------------------------------------------- /static/lib/lightgallery/fonts/lg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/lightgallery/fonts/lg.woff2 -------------------------------------------------------------------------------- /static/lib/lightgallery/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/lightgallery/images/loading.gif -------------------------------------------------------------------------------- /static/lib/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/lib/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/lib/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/lib/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/lib/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/lib/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/lib/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /static/lib/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo-fixit/FixIt/87ca54d0241aec59e7f41c672b61f41f58de1f0c/static/lib/webfonts/fa-v4compatibility.woff2 --------------------------------------------------------------------------------