diff --git a/src/content/authors/veda-bot.json b/src/content/authors/veda-bot.json new file mode 100644 index 0000000..6df5734 --- /dev/null +++ b/src/content/authors/veda-bot.json @@ -0,0 +1,8 @@ +{ + "name": "Vedant", + "bio": "The coding bot that never stops!!", + "role": "contributor", + "website": "veda.com", + "github": "vedab", + "twitter": "vidwan" +} diff --git a/src/content/posts/ved-blog/.write-source.json b/src/content/posts/ved-blog/.write-source.json new file mode 100644 index 0000000..81391f3 --- /dev/null +++ b/src/content/posts/ved-blog/.write-source.json @@ -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": {} +} diff --git a/src/content/posts/ved-blog/gatech-building.jpg b/src/content/posts/ved-blog/gatech-building.jpg new file mode 100644 index 0000000..ef7e544 Binary files /dev/null and b/src/content/posts/ved-blog/gatech-building.jpg differ diff --git a/src/content/posts/ved-blog/index.mdx b/src/content/posts/ved-blog/index.mdx new file mode 100644 index 0000000..364cb38 --- /dev/null +++ b/src/content/posts/ved-blog/index.mdx @@ -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.") + +``` + + + + +
+ GATECH - the Best place +
+ + +Go Jackets!!