Install Ansible in Linux using Pip
# Python 3.12.4
python -m venv venv
source venv/bin/activate
# Install rustup
## Ubuntu: sudo apt install -y rustup
## Archlinux: sudo pacman -S rustup
Install Ansible in Linux using Pip
# Python 3.12.4
python -m venv venv
source venv/bin/activate
# Install rustup
## Ubuntu: sudo apt install -y rustup
## Archlinux: sudo pacman -S rustup
# microcksId: Bookinfo Graph API: 1.0 | |
type Query { | |
"""Description of a book in HTML""" | |
productsForHome: [Product] | |
} | |
"""Each book has a product entry""" | |
type Product { | |
"""Unique identifier for books""" | |
id: String | |
"""The book title""" |
openapi: 3.0.3 | |
info: | |
title: Catstronauts REST API | |
description: REST API for Catstronauts to retrieve data for tracks, authors and modules. | |
version: 1.0.0 | |
servers: | |
- url: / | |
tags: | |
- name: Tracks | |
description: A track is a collection of modules around a topic for catstronauts to learn about. |
gloo: | |
gatewayProxies: | |
gatewayProxy: | |
gatewaySettings: | |
options: | |
accessLoggingService: | |
accessLog: | |
- fileSink: | |
path: /dev/stdout | |
stringFormat: > |
#!/bin/bash | |
# Usage./create-ecr.sh create repo-name | |
set -x | |
set -e | |
ECR_IMAGE_NAME="" | |
if [ "$1" = "" ]; | |
then | |
echo "No Args passed" |
<!-- | |
Program to accept Student ID (combination of alphabets an numbers), | |
date of joining Collige, percentage in previous class (in digits) | |
The data should be sent to the server. | |
--> | |
<html> | |
<head> | |
<title>HTML question 1</title> | |
</head> | |
<body> |