Adds endpoints for receiving updates to repository tag (add/modify/delete).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: ingress-nginx | |
labels: | |
app.kubernetes.io/name: ingress-nginx | |
app.kubernetes.io/part-of: ingress-nginx | |
--- |
- Go to https://vj-type.com/product/dida/
- Open Chrome Devtools (Ctrl+Shift+I Linux / Cmd+Shift+I MacOS)
- Select Network tab and Font subtab and refresh page
- Should see 3 entries, one starts with
data:application/x-font-woff
: suspicious... - Click the suspected entry row and click the Preview tab
- Hey, that's our font!
- Click the Headers tab
- Copy all text after
Request URL: data:application/x-font-woff;charset=utf-8;base64,
- Paste text into https://www.opinionatedgeek.com/codecs/base64decoder
- Download
Base64Decoded.bin
(I promise it's safe)
- Some files
require('fs')
and other Node.js - gRPC C++ dependency (https://github.com/grpc/grpc-node#c-based-client-and-server)
But there is a pure JS implementation (https://github.com/grpc/grpc-node#pure-javascript-client)for Node.js still
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#53A3DA,#A0C4DB,#F1606D,#FFFFFF,#a0c4db,#ffffff,#00fc37,#EB4D5C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: operators.coreos.com/v1alpha1 | |
kind: CatalogSource | |
metadata: | |
name: only-etcd | |
spec: | |
sourceType: grpc | |
image: quay.io/alecmerdler/upstream-community-operators@sha256:532500777738110d8841b2c0e4c5365cb9d2c6641428dff2cf6ab1ce37c53964 | |
displayName: Only etcd | |
publisher: CoreOS, Inc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelector('header').remove(); | |
document.querySelector('.pf-c-page__sidebar').style.position = 'unset'; | |
document.querySelector('.pf-c-page__main').style.top = '0'; |