Enterprise Search

Summary An element in stack. APIs Search POST https://search-api.test.kfupm.edu.sa/api/as/v1/engines/test/search Content-Type: application/json Authorization: Bearer search-2e6t6s7egdqdpuxpgangpqjc "query": "search"

1 min · Jaaved Khan

Docker CS

Frequently used Build: docker build -t tag-name # from dir that contains Dockerfile Login docker login # default registry is docker hub docker login registry-1.docker.io Push i. create a repository on docker hub and copy the command, “docker push jaaved9/assessment:tagname” docker push jaaved9/assessment:latest ii. To push to private or non docker hub repo docker push localhost.localdomain:5000/ubuntu # give full URL

1 min · Jaaved Khan

Emacs compile from source, native-compilation

Installation steps followed this Download code from source ``` git clone git://git.savannah.gnu.org/emacs.git emacs-native-comp ``` install packages ``` sudo apt install libgccjit-10-dev # libgccjit-8-dev sudo apt install libjansson-dev export CC=“gcc-10” # export CC=“gcc-8” #while using libgccjit-8-dev ``` Run ``` ./autogen.sh ./configure –with-native-compilation –with-json –with-mailutils ./configure –with-native-compilation –with-json –with-mailutils –with-cairo # worked ./configure –with-native-compilation –with-json –with-mailutils –with-cairo ./configure –with-native-compilation –with-json –with-mailutils –with-cairo –with-imagemagick –with-jpeg –with-png –with-rsvg...

1 min · Jaaved Khan

Exporting Org Roam notes to hugo - Sidharth Arya

0 min · Jaaved Khan

Encoding

general meaning to convert or translate. to convert (a message, information, etc.) into code. Code(in this context): a system for communication by telegraph, heliograph, etc., in which long and short sounds, light flashes, etc., are used to symbolize the content of a message: e.g.Morse code. a system used for brevity or secrecy of communication, in which arbitrarily chosen words, letters, or symbols are assigned definite meanings.

1 min · Jaaved Khan

Ellucian

0 min · Jaaved Khan

Elastic Cloud on Kubernetes

Prerequisite Installing Kubernetes Make sure that persistent volumn is created Installation Steps official doc kubectl get nodes # to check nodes kubectl describe nodes # to details of node, make sure there no warnings and issues kubectl get pods # to see all the pods Install Custom Resource Definitions and the Operator with Role Based Access Control kubectl create -f https://download.elastic.co/downloads/eck/1.7.0/crds.yaml kubectl apply -f https://download.elastic.co/downloads/eck/1.7.0/operator.yaml Monitor Operator kubectl -n elastic-system logs -f statefulset....

2 min · Jaaved Khan

Dr. Khayyat

Summary Director(CEO) of ICTC from 2017/8 to 2019

1 min · Jaaved Khan

Docker and Kubernetes The complete guide

Multi-container applications with position ease box interval due front 2.5 0 0 2021-08-08T17:45:33Z is like an adverstiment and is actually what is available. When default storage is not availalbe or ready, specify the storage class in the claim - make sure that the storage class exists....

1 min · Jaaved Khan

Encode/Decode in Python3

Decoding Decode(v):convert (a coded message) into intelligible language. From this definition it means, in context of python, to convert a string of bytes(coded) to unicode(intellible). In python3, strings are already decoded with . ref. There is no string without encoding If you followed the discussion so far, you probably already picked up on a crucial point about saving and reading text on a computer: Having a string without knowing its encoding makes no sense at all....

1 min · Jaaved Khan