Skip to main content

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

GuideWhat you'll learn
Open SourceContributing, tooling, and sustaining OSS projects
Cloud PlatformsArchitecture, Kubernetes, and platform engineering
AI AgentsChatbots, RAG, tool use, and production guardrails
Deployment AutomationCI/CD, releases, and operating software in the cloud
Web DesignDocs sites, UI patterns, and accessible layouts
SEOTechnical 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

Start reading