Welcome to ashis.site
ashis.site is a developer documentation site. These guides cover open-source technologies, cloud platforms, AI agents, deployment automation, web design, and SEO — the stacks used to build, ship, and grow modern software on the web.
Use the sidebar to browse by topic, search across docs and blog posts, or press ⌘K / Ctrl+K for the command menu.
Documentation areas
| Guide | What you'll learn |
|---|---|
| Open Source | Contributing, tooling, and sustaining OSS projects |
| Cloud Platforms | Architecture, Kubernetes, and platform engineering |
| AI Agents | Chatbots, RAG, tool use, and production guardrails |
| Deployment Automation | CI/CD, releases, and operating software in the cloud |
| Web Design | Docs sites, UI patterns, and accessible layouts |
| SEO | Technical SEO, metadata, and discoverability |
Who these guides are for
- Developers adopting or maintaining open-source libraries and tools
- Teams designing workloads on cloud platforms (AWS, GCP, Kubernetes)
- Engineers building AI agents and chatbots for real users
- Platform and DevOps folks automating deployment and operations
- Builders improving web design and SEO for docs and marketing sites
Quick example — deployment automation
Deploy a containerized API to a cloud platform with Kubernetes:
kubectl apply -f deployment.yaml
kubectl rollout status deployment/api
deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: api
spec:
replicas: 3
selector:
matchLabels:
app: api
template:
metadata:
labels:
app: api
spec:
containers:
- name: api
image: ghcr.io/ashiskumarbaral/api:latest
ports:
- containerPort: 8080