인증된 AgentReady.md 증명서
발급일 sig: ac6fcd3e675969c2 검증 →

분석된 URL

https://raah.im

다른 URL 분석

AI-Ready 점수

76 / B

양호

/ 100

토큰 절감량

HTML 토큰 32.281
Markdown 토큰 1031
절감 97%

점수 상세

시맨틱 HTML 85/100
콘텐츠 효율성 70/100
AI 발견 가능성 55/100
구조화 데이터 85/100
접근성 100/100

신흥 프로토콜

3개 중 0개 감지

AI 에이전트가 찾는 well-known 엔드포인트. 감지되면 에이전트가 서비스를 자동으로 발견하고 연결할 수 있습니다.

  • OAuth Discovery RFC 8414
    /.well-known/oauth-authorization-server
  • MCP Server Card Anthropic
    /.well-known/mcp.json
  • A2A Agent Card Google
    /.well-known/agent.json

페이지의 실제 콘텐츠와 전체 HTML의 비율이 낮습니다. 페이지 무게의 상당 부분이 콘텐츠가 아닌 마크업, 스크립트, 스타일입니다.

구현 방법

CSS를 외부 스타일시트로 이동하고, 인라인 스타일을 제거하고, JavaScript를 최소화하고, HTML이 콘텐츠 구조에 집중하도록 하세요.

사이트가 Markdown for Agents를 지원하지 않습니다. 이 Cloudflare 표준을 통해 AI 에이전트가 마크다운 형식으로 콘텐츠를 요청할 수 있으며, 토큰 사용량을 ~80% 줄일 수 있습니다.

구현 방법

다음 중 하나 이상을 구현하세요: (1) Accept: text/markdown에 마크다운 콘텐츠로 응답. (2) .md URL 제공 (예: /page.md). (3) <link rel="alternate" type="text/markdown"> 태그 추가. (4) 마크다운 발견을 위한 Link HTTP 헤더 추가.

{\n res.setHeader('Vary', 'Accept');\n res.setHeader('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n res.type('text/markdown; charset=utf-8');\n return res.send(renderMarkdown('page'));\n }\n res.render('page');\n});"},{"id":"fastify","label":"Fastify","language":"javascript","filename":"server.js","code":"// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n reply.header('Vary', 'Accept');\n reply.header('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n }\n return reply.view('/page.ejs');\n});"},{"id":"nextjs","label":"Next.js","language":"typescript","filename":"app/page/route.ts","code":"// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n const accept = req.headers.get('accept') || '';\n if (accept.includes('text/markdown')) {\n return new Response(await renderMarkdown('page'), {\n headers: {\n 'Content-Type': 'text/markdown; charset=utf-8',\n 'Vary': 'Accept',\n },\n });\n }\n // Fall through to the page component\n return new Response(null, { status: 404 });\n}"},{"id":"wordpress","label":"WordPress","language":"php","filename":"functions.php","code":"post_content));\n exit;\n});"},{"id":"static","label":"Hugo / Jekyll / Astro","language":"txt","filename":"static/page.md","code":"# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in :\n# "}] }'>

Content-Signal 지시어가 발견되지 않았습니다. 이는 AI 에이전트에게 콘텐츠 사용 방법(검색 색인, AI 입력, 훈련 데이터)을 알려줍니다. 권장 위치는 robots.txt입니다.

구현 방법

robots.txt에 Content-Signal을 추가하세요: User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no. 마크다운 응답의 HTTP 헤더로도 추가할 수 있습니다.

{\n res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n done();\n});"}] }'>

페이지가 <div> 요소에 크게 의존합니다. <section>, <nav>, <header>, <footer>, <aside> 같은 시맨틱 요소는 AI 에이전트에게 의미 있는 구조를 제공합니다.

구현 방법

범용 <div> 컨테이너를 적절한 시맨틱 요소로 교체하세요. 주제별 그룹에는 <section>, 내비게이션에는 <nav>, 페이지/섹션 헤더와 푸터에는 <header>/<footer>를 사용하세요.

Markdown 토큰: 1031
Available for Internships

## Hey, I'm Raahim 👋

I build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.

Karachi, PK

## < Work Experience />

### Folio3 Software

Software Engineering Intern

July 2025 – September 2025

Karachi, PK

-   Competed successfully against 142 applicants to secure one of 37 spots in a rigorous 9-week hybrid internship.
-   Built and deployed an AI mock interview platform using Next.js, PostgreSQL, and OpenAI Realtime SDK on Vercel.
-   Placed runner-up in the final showcase, presenting detailed technical design and business value to leadership.
-   Rotated across product, backend, DevOps, QA, and GenAI tracks, delivering features at each SDLC stage.

### E.ocean Developers Day 2025 – ACM NUCES

Executive, Team Automation

March 2025 – April 2025

Karachi, PK

-   Developed a Flutter feature enabling Participant Relations to update competition timings dynamically for real-time attendance tracking.
-   Updated and executed a Python email dispatch script, delivering timely communications to all event attendees.
-   Built, deployed, and stress-tested a React + Vite certificate generator, issuing 700+ certificates in real-time post-event.
-   Engineered a logging utility and monitoring dashboard to track performance; awarded Star Performer for contributions.

### FAST NU Smart Video Surveillance Laboratory

Software Engineering Intern

June 2024 – December 2024

Karachi, PK

-   Engineered a Django REST backend for an AI travel guide app, integrating Cohere's NLP API to generate structured itinerary plans from user preferences and Canadian point-of-interest data.
-   Deployed the application MVP on AWS EC2 with Nginx, configured logging and monitoring, and integrated backend APIs with a React Native frontend for cross-platform delivery.
-   Conducted computer vision experiments for the MediaEval benchmark using OpenAI's CLIP (deep learning image-text model); fine-tuned hyperparameters and evaluated results with PhD researchers.

### OPEN Silicon Valley

Website Operations Coordinator (Seasonal / Ad-hoc)

January 2024 – March 2026

Remote, US

-   Managed the full web presence across four domains: opensv.org, opensvforum.org, opensvconnect.org, and pitchkaro.org, ensuring uptime, brand consistency, and timely updates.
-   Designed and deployed event landing pages for Annual Forum 2024, Annual Forum 2025, Synergy 2025, Biotech & Healthcare Forum 2026, and the Pitch Karo startup pitch competition.
-   Built a badge printing and registration verification app deployed on-site, enabling event volunteers to manage attendee check-ins in real time.

### Sastaticket.pk

Software Engineering Intern

January 2024

Karachi, PK

-   Received mentorship from an engineering manager on Django best practices, RESTful API design, and Pythonic coding patterns in a production environment.
-   Observed on-site engineering operations and received a guided walkthrough of the production codebase, gaining exposure to how large-scale Django applications are structured and maintained.

## < Education />

### FAST National University of Computer & Emerging Sciences

BS in Computer Science

August 2023 - June 2027

Karachi, PK

### Sceptre College

GCE A Levels in Mathematics, Physics, Chemistry, Computer Science, Further Mathematics

August 2021 - June 2023

Karachi, PK

## < Skills & Interests />

### Technologies & Frameworks

FastAPIDjangoFlaskReactJSNext.jsExpress.jsReact NativeFlutterJestPandasNumPy

### Languages

PythonSQLJavaScriptTypeScriptHTMLCSSBashShellYAMLJSONMarkdownLaTeX

### Tools & Platforms

GitDockerAWS (EC2)PostgreSQLMongoDBPostmanSeleniumVercelNginxSwagger

### Interests

AIBackendOpen SourceDevOpsRefactoringQAAutomationAgileAPI DocsServerlessCloudCI/CD

## < Projects />

### Boolean Retrieval Engine: Trump Speeches

Built an NLP-based boolean and proximity retrieval engine over a 56-document corpus using Python and NLTK (Porter stemming, stopword removal, tokenization); constructed inverted and positional indexes, exposed search via a FastAPI REST API with Swagger docs and a React + Vite frontend; Dockerized and deployed on Vercel.

### Turing Machine Based Anagram Checker

Implemented a Turing Machine anagram checker in Python and PyQt5 with both GUI and CLI interfaces; visualized step-by-step state transitions and tape manipulation to demonstrate core computational theory and algorithm design principles.

## < Recommendations />

## < Contact />

### Get In Touch

I'm currently looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.

Feel free to reach out if you'd like to connect!
Raahim Irfan | Software Engineer

[Raahim Irfan](https://raah.im/)Toggle menu

Available for Internships

# Hey, I'm Raahim 👋

I build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.

[[email protected]](mailto:[email protected])

Karachi, PK

[+92-321-8133858](tel:+923218133858)

[raahimirfan100](https://linkedin.com/in/raahimirfan100)

[raahimirfan100](https://github.com/raahimirfan100)

[Get in Touch](https://raah.im/#contact)[See My Work](https://raah.im/#projects)

## < Work Experience />

### Folio3 Software

Software Engineering Intern

July 2025 – September 2025

Karachi, PK

-   ▹Competed successfully against 142 applicants to secure one of 37 spots in a rigorous 9-week hybrid internship.
-   ▹Built and deployed an AI mock interview platform using Next.js, PostgreSQL, and OpenAI Realtime SDK on Vercel.
-   ▹Placed runner-up in the final showcase, presenting detailed technical design and business value to leadership.
-   ▹Rotated across product, backend, DevOps, QA, and GenAI tracks, delivering features at each SDLC stage.

### E.ocean Developers Day 2025 – ACM NUCES

Executive, Team Automation

March 2025 – April 2025

Karachi, PK

-   ▹Developed a Flutter feature enabling Participant Relations to update competition timings dynamically for real-time attendance tracking.
-   ▹Updated and executed a Python email dispatch script, delivering timely communications to all event attendees.
-   ▹Built, deployed, and stress-tested a React + Vite certificate generator, issuing 700+ certificates in real-time post-event.
-   ▹Engineered a logging utility and monitoring dashboard to track performance; awarded Star Performer for contributions.

### FAST NU Smart Video Surveillance Laboratory

Software Engineering Intern

June 2024 – December 2024

Karachi, PK

-   ▹Engineered a Django REST backend for an AI travel guide app, integrating Cohere's NLP API to generate structured itinerary plans from user preferences and Canadian point-of-interest data.
-   ▹Deployed the application MVP on AWS EC2 with Nginx, configured logging and monitoring, and integrated backend APIs with a React Native frontend for cross-platform delivery.
-   ▹Conducted computer vision experiments for the MediaEval benchmark using OpenAI's CLIP (deep learning image-text model); fine-tuned hyperparameters and evaluated results with PhD researchers.

### OPEN Silicon Valley

Website Operations Coordinator (Seasonal / Ad-hoc)

January 2024 – March 2026

Remote, US

-   ▹Managed the full web presence across four domains: opensv.org, opensvforum.org, opensvconnect.org, and pitchkaro.org, ensuring uptime, brand consistency, and timely updates.
-   ▹Designed and deployed event landing pages for Annual Forum 2024, Annual Forum 2025, Synergy 2025, Biotech & Healthcare Forum 2026, and the Pitch Karo startup pitch competition.
-   ▹Built a badge printing and registration verification app deployed on-site, enabling event volunteers to manage attendee check-ins in real time.

### Sastaticket.pk

Software Engineering Intern

January 2024

Karachi, PK

-   ▹Received mentorship from an engineering manager on Django best practices, RESTful API design, and Pythonic coding patterns in a production environment.
-   ▹Observed on-site engineering operations and received a guided walkthrough of the production codebase, gaining exposure to how large-scale Django applications are structured and maintained.

[View Full Resume](https://raah.im/resume.pdf)

## < Education />

### FAST National University of Computer & Emerging Sciences

BS in Computer Science

August 2023 - June 2027

Karachi, PK

### Sceptre College

GCE A Levels in Mathematics, Physics, Chemistry, Computer Science, Further Mathematics

August 2021 - June 2023

Karachi, PK

## < Skills & Interests />

### Technologies & Frameworks

FastAPIDjangoFlaskReactJSNext.jsExpress.jsReact NativeFlutterJestPandasNumPy

### Languages

PythonSQLJavaScriptTypeScriptHTMLCSSBashShellYAMLJSONMarkdownLaTeX

### Tools & Platforms

GitDockerAWS (EC2)PostgreSQLMongoDBPostmanSeleniumVercelNginxSwagger

### Interests

AIBackendOpen SourceDevOpsRefactoringQAAutomationAgileAPI DocsServerlessCloudCI/CD

## < Projects />

### Boolean Retrieval Engine: Trump Speeches

Built an NLP-based boolean and proximity retrieval engine over a 56-document corpus using Python and NLTK (Porter stemming, stopword removal, tokenization); constructed inverted and positional indexes, exposed search via a FastAPI REST API with Swagger docs and a React + Vite frontend; Dockerized and deployed on Vercel.

PythonNLTKFastAPIReactDocker

[View Project](https://github.com/raahimirfan100/cs4051-ir-a1-boolean-retrieval-trump)

### Turing Machine Based Anagram Checker

Implemented a Turing Machine anagram checker in Python and PyQt5 with both GUI and CLI interfaces; visualized step-by-step state transitions and tape manipulation to demonstrate core computational theory and algorithm design principles.

PythonPyQt5AlgorithmsVisualization

[View Project](https://github.com/raahimirfan100/Turing-Machine-Anagram-Simulator-TOA-Project)

## < Recommendations />

Direct Manager

“Raahim has extremely high agency and showed ownership of the success of the project itself unlike any other. He delivered a high quality backend for our React Native app including documentation and was able to effectively communicate with team members of all technical backgrounds. Any company would be fortunate to have him because he brings exceptional dedication, strong problem-solving skills, and a consistent ability to deliver meaningful results.”

HS

Hammaad Salman

April 4, 2026

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Direct Manager

“Raahim is a self-starter, innovative, resourceful and works 24/7 until the job is done. I worked with Raahim during my tenure at OPEN SV's President. He managed our entire web-presence and developed tools for operations from scratch.”

AH

Amer Haider

February 25, 2026

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Client

“I've had the pleasure of working with Raahim across multiple projects. Raahim is diligent, has strong work ethic, and exceptional IT acumen. He not only understands the technical landscape deeply but also brings a level of reliability that makes collaboration effortless. Raahim delivers high-quality work on time, every time, and often goes the extra mile to ensure project success. He is a dedicated professional with a bright future ahead, and I'm confident he will be an asset to any team or organization.”

FY

Farhan Younas

November 20, 2025

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Senior Colleague

“I had the opportunity to work with Raahim on developing a website, and he did a solid job from start to finish. He was reliable, easy to communicate with, and delivered what we needed on time. I appreciated his ability to take feedback and quickly turn it into updates without any friction. Overall, a good professional to collaborate with, and I'm happy to recommend him.”

SA

Sahar Arshad

November 16, 2025

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Direct Manager

“I mentored Raahim during Folio3 Summer Internship program. He is really dedicated and talented and worked really hard throughout the internship program. He was one of the star performers of Folio3 Summer Internship program and contributed significantly towards the team project!”

AK

Arbaz Khan

October 7, 2025

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Direct Manager

“Raahim is an exceptionally talented student. He worked as an intern under my direct supervision in Smart Video Surveillance Lab, NCBC from June 2024 to March 2025. He was responsible for the development and fine tuning of back-end technology including Large Language / Machine Learning Models for a mobile application in React Native. He did a great job. He is hardworking, responsible, always available whenever needed. He surely would be an asset for any software company and highly recommended him for possible positions in Computer Science.”

MA

Muhammad Atif Tahir

June 3, 2025

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Same Team

“As Chair of the SYNERGY Leadership Forum 2025 at OPEN Silicon Valley, I've had the privilege of working closely with Raahim, who led the creation and development of our conference website. Raahim brought not only strong technical skills to the table but also a strategic mindset and sharp understanding of our goals—from the importance of timely speaker updates to ensuring a seamless user experience that aligned with the conference's broader vision. What stood out most was his responsiveness and clarity in communication. Raahim is not just quick to respond—he's thoughtful, energetic, and a fantastic listener. Even under tight deadlines, he remained positive and composed, translating ideas into action with impressive speed and accuracy. His ability to see both the big picture and the small details makes him an invaluable partner on any initiative. I wholeheartedly recommend Raahim to any team or organization looking for a talented, strategic, and collaborative web lead.”

ZJ

Zainab Jeewanjee

April 14, 2025

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Senior Colleague

“Very rarely does one come across young individuals with such a knack for hard work, learning and consistent effort. Having first been Raahim's counsellor in college, to then later having him as an intern at Alt Academy, I must say the growth I had witnessed was truly remarkable. He is one that doesn't shy away from fuelling his curiosity, always asking every question on his mind, while simultaneously pitching ideas with confidence. I believe wherever his path takes him, he is bound to offer immense value to any organisation.”

MA

Minahil Ahmed

March 21, 2025

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Direct Manager

“I worked with Raahim for a few months over his summer break and found him to be an excellent addition to the team. He puts great efforts into ensuring that his work is high-quality and is very detail-oriented and responsible in doing so. Raahim is passionate about making a difference through his work and as a Content Associate, was able to channel that passion towards providing excellent academic resources for students. As part of a team, Raahim continues to think of the larger goal and iteratively improving procedures - rather than simply following the traditional methods. This motivates him to go above and beyond in ensuring growth and advancement.”

AH

Ashfia Hasan

October 30, 2023

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Classmate

“I've seen Raahim's transformational journey of becoming a confident individual from being a shy tech enthusiast, thanks to the countless hours we spent studying together and discussing new ideas. Our collaborative efforts extended beyond the classroom, working together on various projects where Raahim's talents truly shone through. His ability to build fantastic websites and his enthusiasm for attending networking events proved his commitment to growth and development. Throughout my experience with Raahim, I found him to be a passionate individual who aimed to put his best foot forward.”

GD

Gaurav Dev

April 10, 2023

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Classmate

“I worked with Raahim in various projects throughout our time together at college. I found Raahim to be dedicated and hardworking, specifically in the areas of innovation and technology. Raahim likes to take on new opportunities and learn from others which makes him a great team player. Raahim is a highly skilled individual with expertise in web development, but really he can tackle anything that comes his way!”

SS

Shayaan Salahuddin

March 26, 2023

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

Direct Manager

“We knew Raahim was going to be an amazing addition to the team when he came to the interview prepared with a list of bugs on our website. He interned with us for a few months, and during this time I found him inquisitive and as someone who liked to innovate. He's very responsive, punctual, humble and an awesome team player. He brings great ideas to the table though he's a little shy sometimes.”

MI

Mahad Imran

September 2, 2022

[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)

## < Contact />

### Get In Touch

I'm currently looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.

Feel free to reach out if you'd like to connect!

[[email protected]](mailto:[email protected])

[+92-321-8133858](tel:+923218133858)

[linkedin.com/in/raahimirfan100](https://linkedin.com/in/raahimirfan100)

[github.com/raahimirfan100](https://github.com/raahimirfan100)

### Send a Message

이 파일을 서버의 /index.md에 업로드하여 AI 에이전트가 페이지의 깔끔한 버전에 접근할 수 있게 하세요. Accept: text/markdown 콘텐츠 협상을 설정하여 자동으로 제공할 수도 있습니다.

권장 내용

llms.txt 다운로드
# Raahim Irfan

> Implemented a Turing Machine anagram checker in Python and PyQt5 with both GUI and CLI interfaces; visualized step-by-step state transitions and tape manipulation to demonstrate core computational theory and algorithm design principles.

## Main
- [Raahim Irfan | Software Engineer](https://raah.im): I build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scala…
- [Raahim Irfan](https://raah.im/)

전체 llms.txt는 도메인 전체 분석이 필요합니다 (곧 출시)

이 파일을 도메인 루트의 https://raah.im/llms.txt에 업로드하세요. ChatGPT, Claude, Perplexity 등의 AI 에이전트가 이 파일을 확인하여 사이트 구조를 파악합니다.

이 사이트에는 이미 llms.txt 파일이 있습니다.

유효한 형식
# raah.im — Raahim Irfan

> Personal portfolio and URL shortener by Raahim Irfan, a Software Engineer specialising in AI, backend systems, and DevOps. Runs 100% on Cloudflare.

## About

Raahim Irfan is a Software Engineer based in Karachi, Pakistan. He builds scalable backend systems, AI integrations, and DevOps tooling, and is seeking internships in AI, Backend, DevOps, and Product Management.

- LinkedIn: https://linkedin.com/in/raahimirfan100
- GitHub: https://github.com/raahimirfan100

## Public Content

- Portfolio homepage at https://raah.im — work experience, education, projects, skills, and contact information
- Link shortener: raah.im acts as a personal URL shortener; short links redirect to their destinations

## Private / Not for Indexing

- Dashboard at /dashboard/ — requires authentication, not public
- API at /api/ — programmatic access, not intended for indexing
- API documentation at /_docs/ — internal developer reference only

시맨틱 HTML

article 또는 main 요소 사용 (100/100)

Has <main>

올바른 제목 계층 구조 (100/100)

Clean heading hierarchy

시맨틱 HTML 요소 사용 (24/100)

12 semantic elements, 155 divs (ratio: 7%)

의미 있는 이미지 alt 속성 (100/100)

No images found

낮은 div 중첩 깊이 (100/100)

Avg div depth: 4.3, max: 7

콘텐츠 효율성

양호한 토큰 감소율 (100/100)

97% token reduction (HTML→Markdown)

양호한 콘텐츠 대 잡음 비율 (0/100)

Content ratio: 4.6% (4490 content chars / 98518 HTML bytes)

최소한의 인라인 스타일 (100/100)

3/688 elements with inline styles (0.4%)

적절한 페이지 무게 (100/100)

HTML size: 96KB

AI 발견 가능성

llms.txt 파일 있음 (100/100)

llms.txt exists and is valid

robots.txt 파일 있음 (100/100)

robots.txt exists

robots.txt가 AI 봇 허용 (100/100)

All major AI bots allowed

sitemap.xml 있음 (100/100)

Sitemap found

Markdown for Agents 지원 (0/100)
&#10007; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header
Content-Signal 있음 (robots.txt 또는 HTTP 헤더) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

구조화 데이터

Schema.org / JSON-LD 있음 (50/100)

JSON-LD found but basic types: WebSite, ProfilePage, CreativeWork, CreativeWork, ItemList

Open Graph 태그 있음 (100/100)

All OG tags present

메타 설명 있음 (100/100)

Meta description: 151 chars

정규 URL 있음 (100/100)

Canonical URL present

lang 속성 있음 (100/100)

lang="en"

접근성

JavaScript 없이 콘텐츠 이용 가능 (100/100)

Content available without JavaScript

적절한 페이지 크기 (100/100)

Page size: 96KB

HTML에서 콘텐츠가 빠른 위치에 배치 (100/100)

Main content starts at 15% of HTML

{
  "url": "https://raah.im",
  "timestamp": 1778595018500,
  "fetch": {
    "mode": "simple",
    "timeMs": 117,
    "htmlSizeBytes": 98518,
    "supportsMarkdown": false,
    "markdownAgents": {
      "contentNegotiation": false,
      "mdUrl": {
        "found": false,
        "url": null
      },
      "linkTag": {
        "found": false,
        "url": null
      },
      "linkHeader": {
        "found": false,
        "url": null
      },
      "responseHeaders": {
        "contentSignal": null,
        "xMarkdownTokens": null,
        "vary": null
      },
      "frontmatter": {
        "present": false,
        "fields": [],
        "level": "none"
      },
      "level": "none"
    },
    "statusCode": 200
  },
  "extraction": {
    "title": "Raahim Irfan | Software Engineer",
    "excerpt": "I build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.",
    "byline": "Raahim Irfan",
    "siteName": "Raahim Irfan",
    "lang": "en",
    "contentLength": 4490,
    "metadata": {
      "description": "I build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.",
      "ogTitle": "Raahim Irfan | Software Engineer",
      "ogDescription": "I build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.",
      "ogImage": "https://raah.im/_og/s/o_z3vo49.png",
      "ogType": "website",
      "canonical": "https://raah.im",
      "lang": "en",
      "schemas": [
        {
          "@context": "https://schema.org",
          "@type": "WebSite",
          "name": "Raahim Irfan",
          "url": "https://raah.im",
          "description": "I build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.",
          "author": {
            "@type": "Person",
            "name": "Raahim Irfan"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "ProfilePage",
          "name": "Raahim Irfan",
          "mainEntity": {
            "@context": "https://schema.org",
            "@type": "Person",
            "name": "Raahim Irfan",
            "url": "https://raah.im",
            "jobTitle": "Software Engineer",
            "worksFor": [
              {
                "@type": "Organization",
                "name": "Folio3 Software"
              },
              {
                "@type": "Organization",
                "name": "E.ocean Developers Day 2025 – ACM NUCES"
              },
              {
                "@type": "Organization",
                "name": "FAST NU Smart Video Surveillance Laboratory"
              },
              {
                "@type": "Organization",
                "name": "OPEN Silicon Valley"
              },
              {
                "@type": "Organization",
                "name": "Sastaticket.pk"
              }
            ],
            "email": "[email protected]",
            "telephone": "+92-321-8133858",
            "sameAs": [
              "https://linkedin.com/in/raahimirfan100",
              "https://github.com/raahimirfan100"
            ],
            "description": "I build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.",
            "address": {
              "@type": "PostalAddress",
              "addressLocality": "Karachi, PK"
            }
          },
          "url": "https://raah.im",
          "description": "Raahim Irfan - Software Engineer Portfolio"
        },
        {
          "@context": "https://schema.org",
          "@type": "CreativeWork",
          "name": "Boolean Retrieval Engine: Trump Speeches",
          "description": "Built an NLP-based boolean and proximity retrieval engine over a 56-document corpus using Python and NLTK (Porter stemming, stopword removal, tokenization); constructed inverted and positional indexes, exposed search via a FastAPI REST API with Swagger docs and a React + Vite frontend; Dockerized and deployed on Vercel.",
          "creator": {
            "@type": "Person",
            "name": "Raahim Irfan"
          },
          "url": "https://github.com/raahimirfan100/cs4051-ir-a1-boolean-retrieval-trump",
          "keywords": "Python, NLTK, FastAPI, React, Docker"
        },
        {
          "@context": "https://schema.org",
          "@type": "CreativeWork",
          "name": "Turing Machine Based Anagram Checker",
          "description": "Implemented a Turing Machine anagram checker in Python and PyQt5 with both GUI and CLI interfaces; visualized step-by-step state transitions and tape manipulation to demonstrate core computational theory and algorithm design principles.",
          "creator": {
            "@type": "Person",
            "name": "Raahim Irfan"
          },
          "url": "https://github.com/raahimirfan100/Turing-Machine-Anagram-Simulator-TOA-Project",
          "keywords": "Python, PyQt5, Algorithms, Visualization"
        },
        {
          "@context": "https://schema.org",
          "@type": "ItemList",
          "name": "Skills",
          "itemListElement": [
            {
              "@type": "ListItem",
              "position": 1,
              "item": {
                "@type": "DefinedTerm",
                "name": "FastAPI"
              }
            },
            {
              "@type": "ListItem",
              "position": 2,
              "item": {
                "@type": "DefinedTerm",
                "name": "Django"
              }
            },
            {
              "@type": "ListItem",
              "position": 3,
              "item": {
                "@type": "DefinedTerm",
                "name": "Flask"
              }
            },
            {
              "@type": "ListItem",
              "position": 4,
              "item": {
                "@type": "DefinedTerm",
                "name": "ReactJS"
              }
            },
            {
              "@type": "ListItem",
              "position": 5,
              "item": {
                "@type": "DefinedTerm",
                "name": "Next.js"
              }
            },
            {
              "@type": "ListItem",
              "position": 6,
              "item": {
                "@type": "DefinedTerm",
                "name": "Express.js"
              }
            },
            {
              "@type": "ListItem",
              "position": 7,
              "item": {
                "@type": "DefinedTerm",
                "name": "React Native"
              }
            },
            {
              "@type": "ListItem",
              "position": 8,
              "item": {
                "@type": "DefinedTerm",
                "name": "Flutter"
              }
            },
            {
              "@type": "ListItem",
              "position": 9,
              "item": {
                "@type": "DefinedTerm",
                "name": "Jest"
              }
            },
            {
              "@type": "ListItem",
              "position": 10,
              "item": {
                "@type": "DefinedTerm",
                "name": "Pandas"
              }
            },
            {
              "@type": "ListItem",
              "position": 11,
              "item": {
                "@type": "DefinedTerm",
                "name": "NumPy"
              }
            },
            {
              "@type": "ListItem",
              "position": 12,
              "item": {
                "@type": "DefinedTerm",
                "name": "Python"
              }
            },
            {
              "@type": "ListItem",
              "position": 13,
              "item": {
                "@type": "DefinedTerm",
                "name": "SQL"
              }
            },
            {
              "@type": "ListItem",
              "position": 14,
              "item": {
                "@type": "DefinedTerm",
                "name": "JavaScript"
              }
            },
            {
              "@type": "ListItem",
              "position": 15,
              "item": {
                "@type": "DefinedTerm",
                "name": "TypeScript"
              }
            },
            {
              "@type": "ListItem",
              "position": 16,
              "item": {
                "@type": "DefinedTerm",
                "name": "HTML"
              }
            },
            {
              "@type": "ListItem",
              "position": 17,
              "item": {
                "@type": "DefinedTerm",
                "name": "CSS"
              }
            },
            {
              "@type": "ListItem",
              "position": 18,
              "item": {
                "@type": "DefinedTerm",
                "name": "Bash"
              }
            },
            {
              "@type": "ListItem",
              "position": 19,
              "item": {
                "@type": "DefinedTerm",
                "name": "Shell"
              }
            },
            {
              "@type": "ListItem",
              "position": 20,
              "item": {
                "@type": "DefinedTerm",
                "name": "YAML"
              }
            },
            {
              "@type": "ListItem",
              "position": 21,
              "item": {
                "@type": "DefinedTerm",
                "name": "JSON"
              }
            },
            {
              "@type": "ListItem",
              "position": 22,
              "item": {
                "@type": "DefinedTerm",
                "name": "Markdown"
              }
            },
            {
              "@type": "ListItem",
              "position": 23,
              "item": {
                "@type": "DefinedTerm",
                "name": "LaTeX"
              }
            },
            {
              "@type": "ListItem",
              "position": 24,
              "item": {
                "@type": "DefinedTerm",
                "name": "Git"
              }
            },
            {
              "@type": "ListItem",
              "position": 25,
              "item": {
                "@type": "DefinedTerm",
                "name": "Docker"
              }
            },
            {
              "@type": "ListItem",
              "position": 26,
              "item": {
                "@type": "DefinedTerm",
                "name": "AWS (EC2)"
              }
            },
            {
              "@type": "ListItem",
              "position": 27,
              "item": {
                "@type": "DefinedTerm",
                "name": "PostgreSQL"
              }
            },
            {
              "@type": "ListItem",
              "position": 28,
              "item": {
                "@type": "DefinedTerm",
                "name": "MongoDB"
              }
            },
            {
              "@type": "ListItem",
              "position": 29,
              "item": {
                "@type": "DefinedTerm",
                "name": "Postman"
              }
            },
            {
              "@type": "ListItem",
              "position": 30,
              "item": {
                "@type": "DefinedTerm",
                "name": "Selenium"
              }
            },
            {
              "@type": "ListItem",
              "position": 31,
              "item": {
                "@type": "DefinedTerm",
                "name": "Vercel"
              }
            },
            {
              "@type": "ListItem",
              "position": 32,
              "item": {
                "@type": "DefinedTerm",
                "name": "Nginx"
              }
            },
            {
              "@type": "ListItem",
              "position": 33,
              "item": {
                "@type": "DefinedTerm",
                "name": "Swagger"
              }
            },
            {
              "@type": "ListItem",
              "position": 34,
              "item": {
                "@type": "DefinedTerm",
                "name": "AI"
              }
            },
            {
              "@type": "ListItem",
              "position": 35,
              "item": {
                "@type": "DefinedTerm",
                "name": "Backend"
              }
            },
            {
              "@type": "ListItem",
              "position": 36,
              "item": {
                "@type": "DefinedTerm",
                "name": "Open Source"
              }
            },
            {
              "@type": "ListItem",
              "position": 37,
              "item": {
                "@type": "DefinedTerm",
                "name": "DevOps"
              }
            },
            {
              "@type": "ListItem",
              "position": 38,
              "item": {
                "@type": "DefinedTerm",
                "name": "Refactoring"
              }
            },
            {
              "@type": "ListItem",
              "position": 39,
              "item": {
                "@type": "DefinedTerm",
                "name": "QA"
              }
            },
            {
              "@type": "ListItem",
              "position": 40,
              "item": {
                "@type": "DefinedTerm",
                "name": "Automation"
              }
            },
            {
              "@type": "ListItem",
              "position": 41,
              "item": {
                "@type": "DefinedTerm",
                "name": "Agile"
              }
            },
            {
              "@type": "ListItem",
              "position": 42,
              "item": {
                "@type": "DefinedTerm",
                "name": "API Docs"
              }
            },
            {
              "@type": "ListItem",
              "position": 43,
              "item": {
                "@type": "DefinedTerm",
                "name": "Serverless"
              }
            },
            {
              "@type": "ListItem",
              "position": 44,
              "item": {
                "@type": "DefinedTerm",
                "name": "Cloud"
              }
            },
            {
              "@type": "ListItem",
              "position": 45,
              "item": {
                "@type": "DefinedTerm",
                "name": "CI/CD"
              }
            }
          ]
        }
      ],
      "robotsMeta": "index, follow",
      "author": "Raahim Irfan",
      "generator": null,
      "markdownAlternateHref": null
    }
  },
  "markdown": "Available for Internships\n\n## Hey, I'm Raahim 👋\n\nI build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.\n\nKarachi, PK\n\n## < Work Experience />\n\n### Folio3 Software\n\nSoftware Engineering Intern\n\nJuly 2025 – September 2025\n\nKarachi, PK\n\n-   Competed successfully against 142 applicants to secure one of 37 spots in a rigorous 9-week hybrid internship.\n-   Built and deployed an AI mock interview platform using Next.js, PostgreSQL, and OpenAI Realtime SDK on Vercel.\n-   Placed runner-up in the final showcase, presenting detailed technical design and business value to leadership.\n-   Rotated across product, backend, DevOps, QA, and GenAI tracks, delivering features at each SDLC stage.\n\n### E.ocean Developers Day 2025 – ACM NUCES\n\nExecutive, Team Automation\n\nMarch 2025 – April 2025\n\nKarachi, PK\n\n-   Developed a Flutter feature enabling Participant Relations to update competition timings dynamically for real-time attendance tracking.\n-   Updated and executed a Python email dispatch script, delivering timely communications to all event attendees.\n-   Built, deployed, and stress-tested a React + Vite certificate generator, issuing 700+ certificates in real-time post-event.\n-   Engineered a logging utility and monitoring dashboard to track performance; awarded Star Performer for contributions.\n\n### FAST NU Smart Video Surveillance Laboratory\n\nSoftware Engineering Intern\n\nJune 2024 – December 2024\n\nKarachi, PK\n\n-   Engineered a Django REST backend for an AI travel guide app, integrating Cohere's NLP API to generate structured itinerary plans from user preferences and Canadian point-of-interest data.\n-   Deployed the application MVP on AWS EC2 with Nginx, configured logging and monitoring, and integrated backend APIs with a React Native frontend for cross-platform delivery.\n-   Conducted computer vision experiments for the MediaEval benchmark using OpenAI's CLIP (deep learning image-text model); fine-tuned hyperparameters and evaluated results with PhD researchers.\n\n### OPEN Silicon Valley\n\nWebsite Operations Coordinator (Seasonal / Ad-hoc)\n\nJanuary 2024 – March 2026\n\nRemote, US\n\n-   Managed the full web presence across four domains: opensv.org, opensvforum.org, opensvconnect.org, and pitchkaro.org, ensuring uptime, brand consistency, and timely updates.\n-   Designed and deployed event landing pages for Annual Forum 2024, Annual Forum 2025, Synergy 2025, Biotech & Healthcare Forum 2026, and the Pitch Karo startup pitch competition.\n-   Built a badge printing and registration verification app deployed on-site, enabling event volunteers to manage attendee check-ins in real time.\n\n### Sastaticket.pk\n\nSoftware Engineering Intern\n\nJanuary 2024\n\nKarachi, PK\n\n-   Received mentorship from an engineering manager on Django best practices, RESTful API design, and Pythonic coding patterns in a production environment.\n-   Observed on-site engineering operations and received a guided walkthrough of the production codebase, gaining exposure to how large-scale Django applications are structured and maintained.\n\n## < Education />\n\n### FAST National University of Computer & Emerging Sciences\n\nBS in Computer Science\n\nAugust 2023 - June 2027\n\nKarachi, PK\n\n### Sceptre College\n\nGCE A Levels in Mathematics, Physics, Chemistry, Computer Science, Further Mathematics\n\nAugust 2021 - June 2023\n\nKarachi, PK\n\n## < Skills & Interests />\n\n### Technologies & Frameworks\n\nFastAPIDjangoFlaskReactJSNext.jsExpress.jsReact NativeFlutterJestPandasNumPy\n\n### Languages\n\nPythonSQLJavaScriptTypeScriptHTMLCSSBashShellYAMLJSONMarkdownLaTeX\n\n### Tools & Platforms\n\nGitDockerAWS (EC2)PostgreSQLMongoDBPostmanSeleniumVercelNginxSwagger\n\n### Interests\n\nAIBackendOpen SourceDevOpsRefactoringQAAutomationAgileAPI DocsServerlessCloudCI/CD\n\n## < Projects />\n\n### Boolean Retrieval Engine: Trump Speeches\n\nBuilt an NLP-based boolean and proximity retrieval engine over a 56-document corpus using Python and NLTK (Porter stemming, stopword removal, tokenization); constructed inverted and positional indexes, exposed search via a FastAPI REST API with Swagger docs and a React + Vite frontend; Dockerized and deployed on Vercel.\n\n### Turing Machine Based Anagram Checker\n\nImplemented a Turing Machine anagram checker in Python and PyQt5 with both GUI and CLI interfaces; visualized step-by-step state transitions and tape manipulation to demonstrate core computational theory and algorithm design principles.\n\n## < Recommendations />\n\n## < Contact />\n\n### Get In Touch\n\nI'm currently looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.\n\nFeel free to reach out if you'd like to connect!\n",
  "fullPageMarkdown": "Raahim Irfan | Software Engineer\n\n[Raahim Irfan](https://raah.im/)Toggle menu\n\nAvailable for Internships\n\n# Hey, I'm Raahim 👋\n\nI build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.\n\n[[email protected]](mailto:[email protected])\n\nKarachi, PK\n\n[+92-321-8133858](tel:+923218133858)\n\n[raahimirfan100](https://linkedin.com/in/raahimirfan100)\n\n[raahimirfan100](https://github.com/raahimirfan100)\n\n[Get in Touch](https://raah.im/#contact)[See My Work](https://raah.im/#projects)\n\n## < Work Experience />\n\n### Folio3 Software\n\nSoftware Engineering Intern\n\nJuly 2025 – September 2025\n\nKarachi, PK\n\n-   ▹Competed successfully against 142 applicants to secure one of 37 spots in a rigorous 9-week hybrid internship.\n-   ▹Built and deployed an AI mock interview platform using Next.js, PostgreSQL, and OpenAI Realtime SDK on Vercel.\n-   ▹Placed runner-up in the final showcase, presenting detailed technical design and business value to leadership.\n-   ▹Rotated across product, backend, DevOps, QA, and GenAI tracks, delivering features at each SDLC stage.\n\n### E.ocean Developers Day 2025 – ACM NUCES\n\nExecutive, Team Automation\n\nMarch 2025 – April 2025\n\nKarachi, PK\n\n-   ▹Developed a Flutter feature enabling Participant Relations to update competition timings dynamically for real-time attendance tracking.\n-   ▹Updated and executed a Python email dispatch script, delivering timely communications to all event attendees.\n-   ▹Built, deployed, and stress-tested a React + Vite certificate generator, issuing 700+ certificates in real-time post-event.\n-   ▹Engineered a logging utility and monitoring dashboard to track performance; awarded Star Performer for contributions.\n\n### FAST NU Smart Video Surveillance Laboratory\n\nSoftware Engineering Intern\n\nJune 2024 – December 2024\n\nKarachi, PK\n\n-   ▹Engineered a Django REST backend for an AI travel guide app, integrating Cohere's NLP API to generate structured itinerary plans from user preferences and Canadian point-of-interest data.\n-   ▹Deployed the application MVP on AWS EC2 with Nginx, configured logging and monitoring, and integrated backend APIs with a React Native frontend for cross-platform delivery.\n-   ▹Conducted computer vision experiments for the MediaEval benchmark using OpenAI's CLIP (deep learning image-text model); fine-tuned hyperparameters and evaluated results with PhD researchers.\n\n### OPEN Silicon Valley\n\nWebsite Operations Coordinator (Seasonal / Ad-hoc)\n\nJanuary 2024 – March 2026\n\nRemote, US\n\n-   ▹Managed the full web presence across four domains: opensv.org, opensvforum.org, opensvconnect.org, and pitchkaro.org, ensuring uptime, brand consistency, and timely updates.\n-   ▹Designed and deployed event landing pages for Annual Forum 2024, Annual Forum 2025, Synergy 2025, Biotech & Healthcare Forum 2026, and the Pitch Karo startup pitch competition.\n-   ▹Built a badge printing and registration verification app deployed on-site, enabling event volunteers to manage attendee check-ins in real time.\n\n### Sastaticket.pk\n\nSoftware Engineering Intern\n\nJanuary 2024\n\nKarachi, PK\n\n-   ▹Received mentorship from an engineering manager on Django best practices, RESTful API design, and Pythonic coding patterns in a production environment.\n-   ▹Observed on-site engineering operations and received a guided walkthrough of the production codebase, gaining exposure to how large-scale Django applications are structured and maintained.\n\n[View Full Resume](https://raah.im/resume.pdf)\n\n## < Education />\n\n### FAST National University of Computer & Emerging Sciences\n\nBS in Computer Science\n\nAugust 2023 - June 2027\n\nKarachi, PK\n\n### Sceptre College\n\nGCE A Levels in Mathematics, Physics, Chemistry, Computer Science, Further Mathematics\n\nAugust 2021 - June 2023\n\nKarachi, PK\n\n## < Skills & Interests />\n\n### Technologies & Frameworks\n\nFastAPIDjangoFlaskReactJSNext.jsExpress.jsReact NativeFlutterJestPandasNumPy\n\n### Languages\n\nPythonSQLJavaScriptTypeScriptHTMLCSSBashShellYAMLJSONMarkdownLaTeX\n\n### Tools & Platforms\n\nGitDockerAWS (EC2)PostgreSQLMongoDBPostmanSeleniumVercelNginxSwagger\n\n### Interests\n\nAIBackendOpen SourceDevOpsRefactoringQAAutomationAgileAPI DocsServerlessCloudCI/CD\n\n## < Projects />\n\n### Boolean Retrieval Engine: Trump Speeches\n\nBuilt an NLP-based boolean and proximity retrieval engine over a 56-document corpus using Python and NLTK (Porter stemming, stopword removal, tokenization); constructed inverted and positional indexes, exposed search via a FastAPI REST API with Swagger docs and a React + Vite frontend; Dockerized and deployed on Vercel.\n\nPythonNLTKFastAPIReactDocker\n\n[View Project](https://github.com/raahimirfan100/cs4051-ir-a1-boolean-retrieval-trump)\n\n### Turing Machine Based Anagram Checker\n\nImplemented a Turing Machine anagram checker in Python and PyQt5 with both GUI and CLI interfaces; visualized step-by-step state transitions and tape manipulation to demonstrate core computational theory and algorithm design principles.\n\nPythonPyQt5AlgorithmsVisualization\n\n[View Project](https://github.com/raahimirfan100/Turing-Machine-Anagram-Simulator-TOA-Project)\n\n## < Recommendations />\n\nDirect Manager\n\n“Raahim has extremely high agency and showed ownership of the success of the project itself unlike any other. He delivered a high quality backend for our React Native app including documentation and was able to effectively communicate with team members of all technical backgrounds. Any company would be fortunate to have him because he brings exceptional dedication, strong problem-solving skills, and a consistent ability to deliver meaningful results.”\n\nHS\n\nHammaad Salman\n\nApril 4, 2026\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nDirect Manager\n\n“Raahim is a self-starter, innovative, resourceful and works 24/7 until the job is done. I worked with Raahim during my tenure at OPEN SV's President. He managed our entire web-presence and developed tools for operations from scratch.”\n\nAH\n\nAmer Haider\n\nFebruary 25, 2026\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nClient\n\n“I've had the pleasure of working with Raahim across multiple projects. Raahim is diligent, has strong work ethic, and exceptional IT acumen. He not only understands the technical landscape deeply but also brings a level of reliability that makes collaboration effortless. Raahim delivers high-quality work on time, every time, and often goes the extra mile to ensure project success. He is a dedicated professional with a bright future ahead, and I'm confident he will be an asset to any team or organization.”\n\nFY\n\nFarhan Younas\n\nNovember 20, 2025\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nSenior Colleague\n\n“I had the opportunity to work with Raahim on developing a website, and he did a solid job from start to finish. He was reliable, easy to communicate with, and delivered what we needed on time. I appreciated his ability to take feedback and quickly turn it into updates without any friction. Overall, a good professional to collaborate with, and I'm happy to recommend him.”\n\nSA\n\nSahar Arshad\n\nNovember 16, 2025\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nDirect Manager\n\n“I mentored Raahim during Folio3 Summer Internship program. He is really dedicated and talented and worked really hard throughout the internship program. He was one of the star performers of Folio3 Summer Internship program and contributed significantly towards the team project!”\n\nAK\n\nArbaz Khan\n\nOctober 7, 2025\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nDirect Manager\n\n“Raahim is an exceptionally talented student. He worked as an intern under my direct supervision in Smart Video Surveillance Lab, NCBC from June 2024 to March 2025. He was responsible for the development and fine tuning of back-end technology including Large Language / Machine Learning Models for a mobile application in React Native. He did a great job. He is hardworking, responsible, always available whenever needed. He surely would be an asset for any software company and highly recommended him for possible positions in Computer Science.”\n\nMA\n\nMuhammad Atif Tahir\n\nJune 3, 2025\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nSame Team\n\n“As Chair of the SYNERGY Leadership Forum 2025 at OPEN Silicon Valley, I've had the privilege of working closely with Raahim, who led the creation and development of our conference website. Raahim brought not only strong technical skills to the table but also a strategic mindset and sharp understanding of our goals—from the importance of timely speaker updates to ensuring a seamless user experience that aligned with the conference's broader vision. What stood out most was his responsiveness and clarity in communication. Raahim is not just quick to respond—he's thoughtful, energetic, and a fantastic listener. Even under tight deadlines, he remained positive and composed, translating ideas into action with impressive speed and accuracy. His ability to see both the big picture and the small details makes him an invaluable partner on any initiative. I wholeheartedly recommend Raahim to any team or organization looking for a talented, strategic, and collaborative web lead.”\n\nZJ\n\nZainab Jeewanjee\n\nApril 14, 2025\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nSenior Colleague\n\n“Very rarely does one come across young individuals with such a knack for hard work, learning and consistent effort. Having first been Raahim's counsellor in college, to then later having him as an intern at Alt Academy, I must say the growth I had witnessed was truly remarkable. He is one that doesn't shy away from fuelling his curiosity, always asking every question on his mind, while simultaneously pitching ideas with confidence. I believe wherever his path takes him, he is bound to offer immense value to any organisation.”\n\nMA\n\nMinahil Ahmed\n\nMarch 21, 2025\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nDirect Manager\n\n“I worked with Raahim for a few months over his summer break and found him to be an excellent addition to the team. He puts great efforts into ensuring that his work is high-quality and is very detail-oriented and responsible in doing so. Raahim is passionate about making a difference through his work and as a Content Associate, was able to channel that passion towards providing excellent academic resources for students. As part of a team, Raahim continues to think of the larger goal and iteratively improving procedures - rather than simply following the traditional methods. This motivates him to go above and beyond in ensuring growth and advancement.”\n\nAH\n\nAshfia Hasan\n\nOctober 30, 2023\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nClassmate\n\n“I've seen Raahim's transformational journey of becoming a confident individual from being a shy tech enthusiast, thanks to the countless hours we spent studying together and discussing new ideas. Our collaborative efforts extended beyond the classroom, working together on various projects where Raahim's talents truly shone through. His ability to build fantastic websites and his enthusiasm for attending networking events proved his commitment to growth and development. Throughout my experience with Raahim, I found him to be a passionate individual who aimed to put his best foot forward.”\n\nGD\n\nGaurav Dev\n\nApril 10, 2023\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nClassmate\n\n“I worked with Raahim in various projects throughout our time together at college. I found Raahim to be dedicated and hardworking, specifically in the areas of innovation and technology. Raahim likes to take on new opportunities and learn from others which makes him a great team player. Raahim is a highly skilled individual with expertise in web development, but really he can tackle anything that comes his way!”\n\nSS\n\nShayaan Salahuddin\n\nMarch 26, 2023\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\nDirect Manager\n\n“We knew Raahim was going to be an amazing addition to the team when he came to the interview prepared with a list of bugs on our website. He interned with us for a few months, and during this time I found him inquisitive and as someone who liked to innovate. He's very responsive, punctual, humble and an awesome team player. He brings great ideas to the table though he's a little shy sometimes.”\n\nMI\n\nMahad Imran\n\nSeptember 2, 2022\n\n[](https://www.linkedin.com/in/raahimirfan100/details/recommendations/)\n\n## < Contact />\n\n### Get In Touch\n\nI'm currently looking for AI, Backend, DevOps, and Product Management internships with a focus on scalable systems & real-world impact.\n\nFeel free to reach out if you'd like to connect!\n\n[[email protected]](mailto:[email protected])\n\n[+92-321-8133858](tel:+923218133858)\n\n[linkedin.com/in/raahimirfan100](https://linkedin.com/in/raahimirfan100)\n\n[github.com/raahimirfan100](https://github.com/raahimirfan100)\n\n### Send a Message\n",
  "markdownStats": {
    "images": 0,
    "links": 0,
    "tables": 0,
    "codeBlocks": 0,
    "headings": 21
  },
  "tokens": {
    "htmlTokens": 32281,
    "markdownTokens": 1031,
    "reduction": 31250,
    "reductionPercent": 97
  },
  "score": {
    "score": 76,
    "grade": "B",
    "dimensions": {
      "semanticHtml": {
        "score": 85,
        "weight": 20,
        "grade": "B",
        "checks": {
          "uses_article_or_main": {
            "score": 100,
            "weight": 20,
            "details": "Has <main>"
          },
          "proper_heading_hierarchy": {
            "score": 100,
            "weight": 25,
            "details": "Clean heading hierarchy"
          },
          "semantic_elements": {
            "score": 24,
            "weight": 20,
            "details": "12 semantic elements, 155 divs (ratio: 7%)"
          },
          "meaningful_alt_texts": {
            "score": 100,
            "weight": 15,
            "details": "No images found"
          },
          "low_div_nesting": {
            "score": 100,
            "weight": 20,
            "details": "Avg div depth: 4.3, max: 7"
          }
        }
      },
      "contentEfficiency": {
        "score": 70,
        "weight": 25,
        "grade": "C",
        "checks": {
          "token_reduction_ratio": {
            "score": 100,
            "weight": 40,
            "details": "97% token reduction (HTML→Markdown)"
          },
          "content_to_noise_ratio": {
            "score": 0,
            "weight": 30,
            "details": "Content ratio: 4.6% (4490 content chars / 98518 HTML bytes)"
          },
          "minimal_inline_styles": {
            "score": 100,
            "weight": 15,
            "details": "3/688 elements with inline styles (0.4%)"
          },
          "reasonable_page_weight": {
            "score": 100,
            "weight": 15,
            "details": "HTML size: 96KB"
          }
        }
      },
      "aiDiscoverability": {
        "score": 55,
        "weight": 25,
        "grade": "D",
        "checks": {
          "has_llms_txt": {
            "score": 100,
            "weight": 20,
            "details": "llms.txt exists and is valid"
          },
          "has_robots_txt": {
            "score": 100,
            "weight": 10,
            "details": "robots.txt exists"
          },
          "robots_allows_ai_bots": {
            "score": 100,
            "weight": 15,
            "details": "All major AI bots allowed"
          },
          "has_sitemap": {
            "score": 100,
            "weight": 10,
            "details": "Sitemap found"
          },
          "supports_markdown_negotiation": {
            "score": 0,
            "weight": 25,
            "details": "No Markdown for Agents support detected"
          },
          "has_content_signals": {
            "score": 0,
            "weight": 20,
            "details": "No Content-Signal found (robots.txt or HTTP headers)"
          }
        }
      },
      "structuredData": {
        "score": 85,
        "weight": 15,
        "grade": "B",
        "checks": {
          "has_schema_org": {
            "score": 50,
            "weight": 30,
            "details": "JSON-LD found but basic types: WebSite, ProfilePage, CreativeWork, CreativeWork, ItemList"
          },
          "has_open_graph": {
            "score": 100,
            "weight": 25,
            "details": "All OG tags present"
          },
          "has_meta_description": {
            "score": 100,
            "weight": 20,
            "details": "Meta description: 151 chars"
          },
          "has_canonical_url": {
            "score": 100,
            "weight": 15,
            "details": "Canonical URL present"
          },
          "has_lang_attribute": {
            "score": 100,
            "weight": 10,
            "details": "lang=\"en\""
          }
        }
      },
      "accessibility": {
        "score": 100,
        "weight": 15,
        "grade": "A",
        "checks": {
          "content_without_js": {
            "score": 100,
            "weight": 40,
            "details": "Content available without JavaScript"
          },
          "reasonable_page_size": {
            "score": 100,
            "weight": 30,
            "details": "Page size: 96KB"
          },
          "fast_content_position": {
            "score": 100,
            "weight": 30,
            "details": "Main content starts at 15% of HTML"
          }
        }
      }
    }
  },
  "recommendations": [
    {
      "id": "improve_content_ratio",
      "priority": "critical",
      "category": "contentEfficiency",
      "titleKey": "rec.improve_content_ratio.title",
      "descriptionKey": "rec.improve_content_ratio.description",
      "howToKey": "rec.improve_content_ratio.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "Content ratio: 4.6% (4490 content chars / 98518 HTML bytes)"
    },
    {
      "id": "add_markdown_negotiation",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_markdown_negotiation.title",
      "descriptionKey": "rec.add_markdown_negotiation.description",
      "howToKey": "rec.add_markdown_negotiation.howto",
      "effort": "significant",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "No Markdown for Agents support detected"
    },
    {
      "id": "add_content_signals",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_content_signals.title",
      "descriptionKey": "rec.add_content_signals.description",
      "howToKey": "rec.add_content_signals.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No Content-Signal found (robots.txt or HTTP headers)"
    },
    {
      "id": "add_semantic_elements",
      "priority": "high",
      "category": "semanticHtml",
      "titleKey": "rec.add_semantic_elements.title",
      "descriptionKey": "rec.add_semantic_elements.description",
      "howToKey": "rec.add_semantic_elements.howto",
      "effort": "moderate",
      "estimatedImpact": 5,
      "checkScore": 24,
      "checkDetails": "12 semantic elements, 155 divs (ratio: 7%)"
    }
  ],
  "llmsTxtPreview": "# Raahim Irfan\n\n> Implemented a Turing Machine anagram checker in Python and PyQt5 with both GUI and CLI interfaces; visualized step-by-step state transitions and tape manipulation to demonstrate core computational theory and algorithm design principles.\n\n## Main\n- [Raahim Irfan | Software Engineer](https://raah.im): I build cool stuff with code. Looking for AI, Backend, DevOps, and Product Management internships with a focus on scala…\n- [Raahim Irfan](https://raah.im/)\n\n",
  "llmsTxtExisting": "# raah.im — Raahim Irfan\n\n> Personal portfolio and URL shortener by Raahim Irfan, a Software Engineer specialising in AI, backend systems, and DevOps. Runs 100% on Cloudflare.\n\n## About\n\nRaahim Irfan is a Software Engineer based in Karachi, Pakistan. He builds scalable backend systems, AI integrations, and DevOps tooling, and is seeking internships in AI, Backend, DevOps, and Product Management.\n\n- LinkedIn: https://linkedin.com/in/raahimirfan100\n- GitHub: https://github.com/raahimirfan100\n\n## Public Content\n\n- Portfolio homepage at https://raah.im — work experience, education, projects, skills, and contact information\n- Link shortener: raah.im acts as a personal URL shortener; short links redirect to their destinations\n\n## Private / Not for Indexing\n\n- Dashboard at /dashboard/ — requires authentication, not public\n- API at /api/ — programmatic access, not intended for indexing\n- API documentation at /_docs/ — internal developer reference only",
  "emergingProtocols": {
    "oauthDiscovery": {
      "exists": false,
      "url": "https://raah.im/.well-known/oauth-authorization-server"
    },
    "mcpServerCard": {
      "exists": false,
      "url": "https://raah.im/.well-known/mcp.json"
    },
    "a2aAgentCard": {
      "exists": false,
      "url": "https://raah.im/.well-known/agent.json"
    },
    "count": 0
  },
  "snippets": [
    {
      "id": "add_content_signals",
      "title": "Add Content-Signal directives",
      "description": "Content-Signal tells AI agents how they may use your content. The canonical location is robots.txt, but you can also expose it as an HTTP header from any stack.",
      "language": "txt",
      "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no",
      "filename": "/robots.txt",
      "stacks": [
        {
          "id": "robots",
          "label": "robots.txt",
          "language": "txt",
          "filename": "/robots.txt",
          "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no"
        },
        {
          "id": "nginx",
          "label": "Nginx",
          "language": "nginx",
          "filename": "server block",
          "code": "# Inside your server { } block:\nadd_header Content-Signal \"search=yes, ai-input=yes, ai-train=no\" always;"
        },
        {
          "id": "apache",
          "label": "Apache",
          "language": "apache",
          "filename": ".htaccess",
          "code": "# In .htaccess (or VirtualHost):\nHeader set Content-Signal \"search=yes, ai-input=yes, ai-train=no\""
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// In your theme's functions.php or a small mu-plugin\nadd_action('send_headers', function () {\n    header('Content-Signal: search=yes, ai-input=yes, ai-train=no');\n});\n\n// Optional: also append the directive to the dynamic robots.txt\nadd_filter('robots_txt', function ($output) {\n    return $output . \"\\nContent-Signal: search=yes, ai-input=yes, ai-train=no\\n\";\n}, 10, 1);"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "middleware.ts",
          "code": "// middleware.ts (Next.js 13+ App Router or Pages Router)\nimport { NextResponse } from 'next/server';\nexport function middleware() {\n  const res = NextResponse.next();\n  res.headers.set(\n    'Content-Signal',\n    'search=yes, ai-input=yes, ai-train=no'\n  );\n  return res;\n}\nexport const config = { matcher: '/:path*' };"
        },
        {
          "id": "cloudflare",
          "label": "Cloudflare Workers",
          "language": "javascript",
          "filename": "worker.js",
          "code": "// Cloudflare Worker that proxies your origin and adds the header\nexport default {\n  async fetch(request, env, ctx) {\n    const res = await fetch(request);\n    const newRes = new Response(res.body, res);\n    newRes.headers.set(\n      'Content-Signal',\n      'search=yes, ai-input=yes, ai-train=no'\n    );\n    return newRes;\n  },\n};"
        },
        {
          "id": "express",
          "label": "Express / Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Express\napp.use((req, res, next) => {\n  res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n  reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  done();\n});"
        }
      ]
    },
    {
      "id": "add_markdown_negotiation",
      "title": "Support Markdown for Agents",
      "description": "Let AI agents request a clean Markdown version of any page via content negotiation, .md alternate URLs, link tags or Link headers.",
      "language": "html",
      "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">",
      "filename": "<head>",
      "stacks": [
        {
          "id": "html",
          "label": "HTML <head>",
          "language": "html",
          "filename": "<head>",
          "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        },
        {
          "id": "express",
          "label": "Express",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\napp.get('/page', (req, res) => {\n  res.setHeader('Vary', 'Accept');\n  res.setHeader('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    res.type('text/markdown; charset=utf-8');\n    return res.send(renderMarkdown('page'));\n  }\n  res.render('page');\n});"
        },
        {
          "id": "fastify",
          "label": "Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n  reply.header('Vary', 'Accept');\n  reply.header('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n  }\n  return reply.view('/page.ejs');\n});"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "app/page/route.ts",
          "code": "// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n  const accept = req.headers.get('accept') || '';\n  if (accept.includes('text/markdown')) {\n    return new Response(await renderMarkdown('page'), {\n      headers: {\n        'Content-Type': 'text/markdown; charset=utf-8',\n        'Vary': 'Accept',\n      },\n    });\n  }\n  // Fall through to the page component\n  return new Response(null, { status: 404 });\n}"
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// Mechanism 1: respond to Accept: text/markdown on the same URL\nadd_action('template_redirect', function () {\n    if (!is_singular()) return;\n    $accept = $_SERVER['HTTP_ACCEPT'] ?? '';\n    if (strpos($accept, 'text/markdown') === false) return;\n    header('Content-Type: text/markdown; charset=utf-8');\n    header('Vary: Accept');\n    $post = get_queried_object();\n    echo \"# \" . get_the_title($post) . \"\\n\\n\";\n    echo wp_strip_all_tags(apply_filters('the_content', $post->post_content));\n    exit;\n});"
        },
        {
          "id": "static",
          "label": "Hugo / Jekyll / Astro",
          "language": "txt",
          "filename": "static/page.md",
          "code": "# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in <head>:\n#   <link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        }
      ]
    }
  ]
}

API를 사용하여 프로그래밍 방식으로 가져올 수 있습니다 (곧 출시)

이 JSON은 내부용입니다 — Markdown 및 llms.txt 파일과 달리 사이트에 업로드하기 위한 것이 아닙니다. 시간에 따른 점수 추적을 위한 기준값으로 저장하거나, 개발팀과 공유하거나, CI/CD 파이프라인에 통합하세요.

결과 공유

Twitter LinkedIn

배지 삽입

이 배지를 사이트에 추가하세요. AI 준비도 점수가 변경되면 자동으로 업데이트됩니다.

AgentReady.md score for raah.im
Script 권장
<script src="https://agentready.md/badge.js" data-id="34c0e4b9-a6cf-4aef-be83-46ce3f481996" data-domain="raah.im"></script>
Markdown
[![AgentReady.md score for raah.im](https://agentready.md/badge/raah.im.svg)](https://agentready.md/ko/r/34c0e4b9-a6cf-4aef-be83-46ce3f481996)

곧 출시: 전체 도메인 분석

전체 도메인을 크롤링하고, llms.txt를 생성하고, AI 준비도 점수를 시간에 따라 모니터링하세요. 대기자 명단에 등록하여 알림을 받으세요.

명단에 등록되었습니다! 서비스 출시 시 알려드리겠습니다.