Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/content/authors/veda-bot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "Vedant",
"bio": "The coding bot that never stops!!",
"role": "contributor",
"website": "veda.com",
"github": "vedab",
"twitter": "vidwan"
}
112 changes: 112 additions & 0 deletions src/content/posts/ved-blog/.write-source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
{
"kind": "mlsys-write-source",
"version": 1,
"meta": {
"title": "GO jackets",
"summary": "Yellow Jackets!",
"authors": [
"veda-bot"
],
"writerName": "",
"topicId": "architecture",
"topicName": "Architecture",
"tags": [
"testing",
"blog"
],
"slug": "ved-blog",
"coverFileName": "",
"proposedTopic": "",
"newAuthor": {
"handle": "veda-bot",
"name": "Vedant",
"bio": "The coding bot that never stops!!",
"website": "veda.com",
"github": "vedab",
"twitter": "vidwan",
"linkedin": "",
"email": ""
}
},
"blocks": [
{
"id": "c1362838-241b-41af-aefd-6365514ed73f",
"type": "paragraph",
"props": {
"backgroundColor": "default",
"textColor": "default",
"textAlignment": "left"
},
"content": [
{
"type": "text",
"text": "Testing blogs\n\n",
"styles": {}
}
],
"children": []
},
{
"id": "e8259ce2-b0f2-4931-a202-566f6f95ddcd",
"type": "codeBlock",
"props": {
"language": "python"
},
"content": [
{
"type": "text",
"text": "# Greet the user\nprint(\"Welcome to Python!\")\n\n# Get input from the user\nname = input(\"What is your name? \")\nage = int(input(\"How old are you? \"))\n\n# Conditional logic based on input\nif age >= 18:\n print(f\"Hello {name}, you are an adult.\")\nelse:\n years_left = 18 - age\n print(f\"Hello {name}, you will be an adult in {years_left} years.\")\n",
"styles": {}
}
],
"children": []
},
{
"id": "54d51c20-b683-48c5-baa2-e037fd140c5e",
"type": "paragraph",
"props": {
"backgroundColor": "default",
"textColor": "default",
"textAlignment": "left"
},
"content": [
{
"type": "text",
"text": "\n",
"styles": {}
}
],
"children": []
},
{
"id": "03e4d061-0ab1-47fd-9d09-4e06a8b32133",
"type": "figure",
"props": {
"fileName": "gatech-building.jpg",
"src": "",
"alt": "GATECH - the Best place",
"caption": "GATECH - the Best place",
"width": 620
},
"children": []
},
{
"id": "a43c6a22-84b9-4a55-ba16-213ec295837f",
"type": "paragraph",
"props": {
"backgroundColor": "default",
"textColor": "default",
"textAlignment": "left"
},
"content": [
{
"type": "text",
"text": "\nGo Jackets!!",
"styles": {}
}
],
"children": []
}
],
"tableVariants": {}
}
Binary file added src/content/posts/ved-blog/gatech-building.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions src/content/posts/ved-blog/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
title: 'GO jackets'
summary: 'Yellow Jackets!'
authors: ['veda-bot']
date: '2026-07-14'
updated: '2026-07-14'
readMin: 1
topic: 'Architecture'
topicId: 'architecture'
tags: ['testing', 'blog']
---

import { Image } from 'astro:assets';
import gatechBuilding from './gatech-building.jpg';

Testing blogs



```python
# Greet the user
print("Welcome to Python!")

# Get input from the user
name = input("What is your name? ")
age = int(input("How old are you? "))

# Conditional logic based on input
if age >= 18:
print(f"Hello {name}, you are an adult.")
else:
years_left = 18 - age
print(f"Hello {name}, you will be an adult in {years_left} years.")

```




<Figure caption="GATECH - the Best place" width={620}>
<Image src={gatechBuilding} alt="GATECH - the Best place" />
</Figure>


Go Jackets!!
Loading