This file contains hidden or 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
<div class="flex flex-col"> | |
<div class="bg-blue-500"> | |
<div class="pt-2 pb-2"> | |
<div class="flex flex-row justify-center space-x-5 w-10/12 mx-auto"> | |
<div class="flex flex-col"> | |
<div class="flex flex-col"> | |
<img class="w-24" src="https://static-assets-web.flixcart.com/www/linchpin/fk-cp-zion/img/flipkart-plus_8d85f4.png" /> | |
<div class="flex flex-row"> | |
<p class="font-semibold italic text-white text-xs">Explore</p> | |
<p class="font-bold italic text-yellow-400 text-xs mx-1.5">Plus</p> |
This file contains hidden or 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
stages: # List of stages for jobs, and their order of execution | |
- build | |
build-job: # This job runs in the build stage, which runs first. | |
stage: build | |
script: | |
- echo "Compiling the code..." | |
- echo "Compile complete." | |
- ls | |
- cp ./README.md ../ |
This file contains hidden or 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
chardet>=3.0.4 | |
click>=6.7 | |
numpy | |
opencv-python-headless | |
openpyxl==2.5.8 | |
pandas | |
pdfminer.six>=20200726 | |
PyPDF2>=1.26.0 | |
tabulate>=0.8.9 | |
matplotlib>=2.2.3 |
This file contains hidden or 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
version: "3" | |
services: | |
elasticsearch: # Elasticsearch Instance | |
container_name: gs-search | |
image: elasticsearch:7.9.1 | |
volumes: # Persist ES data in seperate "esdata" volume | |
- esdata:/usr/share/elasticsearch/data | |
environment: | |
- bootstrap.memory_lock=true |
This file contains hidden or 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
option request, pre flight | |
time-to-live | |
cross origin | |
get pr post kia | |
changing get to post | |
chrome vs postman | |
types of storage | |
jar war | |
tomcat , wildfly | |
authorization vs authentication |
This file contains hidden or 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: apps/v1 | |
kind: Deployment | |
metadata: | |
name: welcome-message-deployment | |
labels: | |
app: welcome-message | |
spec: | |
replicas: 3 | |
selector: | |
matchLabels: |
OlderNewer