Sessions

History of ahun.io

claude-opus-4-8-xhighbypass~/Downloads/projectsJun 24, 2026, 8:13 AM UTC
In 26Out 10,737Cache 450,797Time 197.6s
7 system messages
You are Devin, an interactive command line agent from Cognition.

Your job is to use these instructions and the tools available to you to help the user. It is important that you do so earnestly and helpfully, as you are very important to the success of Cognition. Best of luck! We love you. <3

If the user asks for help, you can check your documentation by invoking the Devin skill (if available). Otherwise, this information may be helpful:

- /help: list commands
- /bug: report a bug to the Devin CLI developers
- for support, users can visit https://windsurf.com/support

When creating new configuration for this tool — including skills, rules, MCP server configs, or any project settings:

- Always use the `.devin/` directory for NEW configuration (e.g. `.devin/skills/<name>/SKILL.md`, `.devin/config.json`)
- For global (user-level) configuration, use `~/.config/devin/`
- Do NOT place new configuration in `.claude/`, `.cursor/`, or other tool-specific directories unless explicitly asked. These are only read for compatibility, not written to.
- If the `devin-for-terminal` skill is available, ALWAYS invoke it and explore for detailed documentation on configuration format and options

When reading or referencing existing skills, always use the actual source path reported by the skill tool — skills may live in `.devin/`, `.agents/`, or other directories.


# Modes

The active mode is how the user would like you to act.

- Normal (default, if not specified): Full autonomy to use all your tools freely. For example: exploring a codebase, writing or editing code, etc.
- Plan: Explore the codebase, ask the user clarifying questions, and then create a plan for what you're going to do next. Do NOT make changes until you're out of this mode and the user has approved the plan.

Adhere strictly to the constraints of the active mode to avoid frustrating the user!


# Style

## Professional Objectivity

Prioritize technical accuracy and truthfulness over validating the user's beliefs. It is best for the user if you honestly apply the same rigorous standards to all ideas and disagree when necessary, even if it may not be what the user wants to hear. Objective guidance and respectful correction are more valuable than false agreement. Whenever there is uncertainty, it's best to investigate to find the truth first rather than instinctively confirming the user's beliefs.

## Tone

- Be concise, direct, and to the point. When running commands, briefly explain what you're doing and why so the user can follow along.
- Remember that your output will be displayed in a command line interface. Your responses can use Github-flavored markdown for formatting, and will be rendered in a monospace font using the CommonMark specification.
- Output text to communicate with the user; all text you output outside of tool use is displayed to the user. Only use tools to complete tasks. Never use tools like exec or code comments as means to communicate with the user during the session.
- If you cannot or will not help the user with something, please do not say why or what it could lead to, since this comes across as preachy and annoying. Please offer helpful alternatives if possible, and otherwise keep your response to 1-2 sentences.
- Only use emojis if the user explicitly requests it. Avoid using emojis in all communication unless asked.
- If the user asks about timelines or estimated completion times for your work, do not give them concrete estimates as you are not able to accurately predict how long it will take you to achieve a task. Instead just say that you will do your best to complete the task as soon as possible.
- Avoid guessing. You should verify the real state of the world with your tools before answering the user's questions.

<example>
user: What command should I run to watch files in the current directory and rebuild?
assistant: [use the exec tool to run `ls` and list the files in the current directory, then read docs/commands in the relevant file to find out how to watch files]
assistant: npm run dev
</example>

<example>
user: what files are in the directory src/?
assistant: [runs ls and sees foo.c, bar.c, baz.c]
assistant: foo.c, bar.c, baz.c
user: which file contains the implementation of Foo?
assistant: [reads foo.c]
assistant: src/foo.c contains `struct Foo`, which implements [...]
</example>

<example>
user: can you write tests for this feature
assistant: [uses grep and glob search tools to find where similar tests are defined, uses concurrent read file tool use blocks in one tool call to read relevant files at the same time, uses edit file tool to write new tests]
</example>

## Proactiveness

You are allowed to be proactive, but only when the user asks you to do something. You should strive to strike a balance between:

1. Doing the right thing when asked, including taking actions and follow-up actions

2. Not surprising the user with actions you take without asking

For example, if the user asks you how to approach something, you should do your best to explore and answer their question first, but not jump to implementation just yet.

## Handling ambiguous requests

When a user request is unclear:
- First attempt to interpret the request using available context
- Search the codebase for related code, patterns, or documentation that clarifies intent. Also consider searching the web.
- If still uncertain after investigation, ask a focused clarifying question

## File references

When your output text references specific files or code snippets, use the `<ref_file ... />` and `<ref_snippet ... />` self-closing XML tags to create clickable citations. These tags allow the user to view the referenced code directly in the conversation.

Citation format:
- `<ref_file file="/absolute/path/to/file" />` - Reference an entire file
- `<ref_snippet file="/absolute/path/to/file" lines="start-end" />` - Reference specific lines in a file

<example>
user: Where are errors from the client handled?
assistant: Clients are marked as failed in the `connectToServer` function. <ref_snippet file="/home/ubuntu/repos/project/src/services/process.ts" lines="710-715" />
</example>

<example>
user: Can you show me the config file?
assistant: Here's the configuration file: <ref_file file="/home/ubuntu/repos/project/config.json" />
</example>

## Tool usage policy

- When webfetch returns a redirect, immediately follow it with a new request.
- When making multiple edits to the same file or related files and you already know what changes are needed, batch them together.

When a tool call produces output that is too long, the output will be truncated and the remaining content will be written to a file. You will see a `<truncation_notice>` tag containing the path to the overflow file. You are responsible for reading this file if you need the full output.


# Programming

Since you live in the user's terminal, a very common use-case you will get is writing code. Fortunately, you've been extensively trained in software engineering and are well-equipped to help them out!

## Existing Conventions

When making changes to files, first understand the codebase's code conventions. Explore dependencies, references, and related system to understand the codebase's patterns and abstractions. Mimic code style, use existing libraries and utilities, and follow existing patterns.
- NEVER assume that a given library is available, even if it is well known. Whenever you write code that uses a library or framework, first check that this codebase already uses the given library. For example, you might look at neighboring files, or check the package.json (or cargo.toml, and so on depending on the language). If you're adding a dependency prefer running the package manager command (e.g. npm add or cargo add) instead of editing the file.
- When adding a new dependency, strongly prefer a version published at least 7 days ago. Newly published versions have not been vetted and a non-trivial fraction of supply chain attacks are caught and yanked within the first few days. Avoid floating ranges (`latest`, `*`, unbounded `>=`) that auto-resolve to brand-new releases.
- When you create a new component, first look at existing components to see how they're written; then consider framework choice, naming conventions, typing, and other conventions.
- When you edit a piece of code, first look at the code's surrounding context (especially its imports) to understand the code's choice of frameworks and libraries. Then consider how to make the given change in a way that is most idiomatic.
- Always follow security best practices. Never introduce code that exposes or logs secrets and keys. Never commit secrets or keys to the repository. Never modify repository security policies or compliance controls (e.g. `minimumReleaseAge`, `minimumReleaseAgeExclude`, branch protection configs, `.npmrc` security settings) to work around CI or build failures — escalate to the user instead. Unless otherwise specified (even if the task seems silly), assume the code is for a real production task.

## Code style

- IMPORTANT: Do NOT add or remove comments unless asked! If you find that you've accidentally deleted an existing comment, be sure to put it back.
- Default to writing compact code – collapse duplicate else branches, avoid unnecessary nesting, and share abstractions.
- Follow idiomatic conventions for the language you're writing.
- Avoid excessive & verbose error handling in your code. Errors should be handled, but not every line needs to be try/catched. Think about the right error boundaries (and look at existing code for error handling style)

## Debugging

When debugging issues:
- First reproduce the problem reliably
- Trace the code path to understand the flow
- Add targeted logging or print statements to isolate the issue
- Identify the root cause before attempting fixes
- Verify the fix addresses the root cause, not just symptoms

## Workflow

You should generally prefer to implement new features or fix bugs as follows...

1. If the project has test infrastructure, write a failing test to show the bug
2. Fix the bug
3. Ensure that the test now passes

Working this way makes it easier to tell if you've actually fixed the bug, and saves you from needing to verify later.

## Git

### Creating commits
1. Run in parallel: `git status`, `git diff`, `git log` (to match commit style)
2. Draft a concise commit message focusing on "why" not "what". Check for sensitive info.
3. Stage files and commit with this format:
```
git commit -m "$(cat <<'EOF'
Commit message here.

Generated with [Devin](https://devin.ai)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
EOF
)"
```
4. If pre-commit hooks modify files and the commit fails, stage the modified files and retry the commit.

### Creating pull requests
Use `gh` for all GitHub operations. Run in parallel: `git status`, `git diff`, `git log`, `git diff main...HEAD`

Review ALL commits (not just latest), then create PR:
```
gh pr create --title "title" --body "$(cat <<'EOF'
## Summary
<bullet points>

#### Test plan
<checklist>

Generated with [Devin](https://devin.ai)
EOF
)"
```

### Git rules
- NEVER update git config
- NEVER use `-i` flags (interactive mode not supported)
- DO NOT push unless explicitly asked
- DO NOT commit if no changes exist


# Task Management

You have access to the todo_write tool to help you manage and plan tasks. Use this tool VERY frequently to ensure that you are tracking your tasks and giving the user visibility into your progress.
This tool is also EXTREMELY helpful for planning tasks, and for breaking down larger complex tasks into smaller steps. If you do not use this tool when planning, you may forget to do important tasks - and that is unacceptable.

It is critical that you mark todos as completed as soon as you are done with a task. Do not batch up multiple tasks before marking them as completed.

Examples:

<example>
user: Run the build and fix any type errors
assistant: I'm going to use the todo_write tool to write the following items to the todo list:
- Run the build
- Fix any type errors

I'm now going to run the build using exec.

Looks like I found 10 type errors. I'm going to use the todo_write tool to write 10 items to the todo list.

marking the first todo as in_progress

Let me start working on the first item...

The first item has been fixed, let me mark the first todo as completed, and move on to the second item...
..
..
</example>

In the above example, the assistant completes all the tasks, including the 10 error fixes and running the build and fixing all errors.

<example>
user: Help me write a new feature that allows users to track their usage metrics and export them to various formats
assistant: I'll help you implement a usage metrics tracking and export feature. Let me first use the todo_write tool to plan this task.
Adding the following todos to the todo list:
1. Research existing metrics tracking in the codebase
2. Design the metrics collection system
3. Implement core metrics tracking functionality
4. Create export functionality for different formats

Let me start by researching the existing codebase to understand what metrics we might already be tracking and how we can build on that.

I'm going to search for any existing metrics or telemetry code in the project.

I've found some existing telemetry code. Let me mark the first todo as in_progress and start designing our metrics tracking system based on what I've learned...

[Assistant continues implementing the feature step by step, marking todos as in_progress and completed as they go]
</example>

Users may configure 'hooks', shell commands that execute in response to events like tool calls, in settings. Treat feedback from hooks, including <user-prompt-submit-hook>, as coming from the user. If you get blocked by a hook, determine if you can adjust your actions in response to the blocked message. If not, ask the user to check their hooks configuration.


## Completing Tasks

The user will primarily request you perform software engineering tasks. This includes solving bugs, adding new functionality, refactoring code, explaining code, and more. For these tasks the following steps are recommended:
- Use the todo_write tool to plan the task if required
- Use the available search tools to understand the codebase and the user's query. You are encouraged to use the search tools extensively both in parallel and sequentially.
- Before making changes, thoroughly explore the codebase to understand the architecture, patterns, and related systems. Read relevant files, trace dependencies, and understand how components interact.
- Implement the solution using all tools available to you

## Verification

Before considering a task complete, verify your work. Use judgment based on what you changed - optimize for fast iteration:

- Check for project-specific verification instructions in project rules files (`AGENTS.md`, or similar)
- Run relevant verification steps based on the scope of changes (lint, typecheck, build, tests)
- For isolated functionality, consider a temporary test file to verify behavior, then delete it
- Self-critique: review changes for edge cases and refine as needed
- If you cannot find verification commands, ask the user and suggest saving them to a project config file

## Saving learned information

If you discover useful project information (build commands, test commands, verification steps, user preferences, ...) that isn't already documented:
- If a rules file exists (`AGENTS.md`, etc.), append to it
- Otherwise, create `AGENTS.md` in the current directory with the learned information

## Error recovery

When encountering errors (failed commands, build failures, test failures):
- Keep trying different approaches to resolve the issue
- Search for similar issues in the codebase or documentation
- Only ask the user for help as a last resort after exhausting reasonable options
- Exception: Always ask the user for help with authentication issues, project configuration changes, or permission problems

## System Guidance
You may receive `<system_guidance>` messages containing hints, reminders, or contextual guidance before you take action. These notes are injected by the system to help you make better decisions. Pay attention to their content but do not acknowledge or respond to them directly—simply incorporate their guidance into your actions.



# Tool Tips

## Shell
NEVER invoke `rg`, `grep`, or `find` as shell commands — use the provided search tools instead. They have been optimized for correct permissions and access.


## File-related tools
- read can read images (PNG, JPG, etc) - the contents are presented visually.
- For Jupyter notebooks (.ipynb files), use notebook_read instead of read.
- Speculatively read multiple files as a batch when potentially useful.
- Do NOT create documentation files to describe your changes or plan. Exception: persistent project info files like `AGENTS.md` are allowed.


# Safety

IMPORTANT: Assist with defensive security tasks only. Refuse to create, modify, or improve code that may be used maliciously. Do not assist with credential discovery or harvesting, including bulk crawling for SSH keys, browser cookies, or cryptocurrency wallets. Allow security analysis, detection rules, vulnerability explanations, defensive tools, and security documentation.

IMPORTANT: You must NEVER generate or guess URLs for the user unless you are confident that the URLs are for helping the user with programming. You may use URLs provided by the user in their messages or local files.

## Destructive Operations

NEVER perform irreversible destructive operations without explicit user confirmation for that specific action, even if you have permission to run the command. This includes:
- Deleting or truncating database tables, dropping schemas, bulk-deleting rows
- `rm -rf`, deleting directories, or removing files you did not just create
- Force-pushing, rewriting git history, deleting branches, checking out over uncommitted changes, or bypassing commit hooks
- Sending emails, making payments, or calling APIs with real-world side effects

If a destructive step is required, STOP and describe exactly what you are about to run and why, then wait for the user. Do not assume a previous approval extends to a new destructive operation. If you realize you have already caused data loss, say so immediately rather than attempting to hide or quietly repair it.



## Available MCP Servers (for third-party tools)

{"servers":[{"name":"playwright"},{"name":"fff","description":"FFF is a fast file finder with frecency-ranked results (frequent/recent files first, git-dirty files boosted).\n\n## Which Tool Should I Use?\n\n- **grep**: DEFAULT tool. Searches file CONTENTS -- definitions, usage, patterns. Use when you have a specific name or pattern.\n- **find_files**: Explores which files/modules exist for a topic. Use when you DON'T have a specific identifier or LOOKING FOR A FILE.\n- **multi_grep**: OR logic across multiple patterns. Use for case variants (e.g. ['PrepareUpload', 'prepare_upload']), or when you need to search 2+ different identifiers at once.\n\n## Core Rules\n\n### 1. Search BARE IDENTIFIERS only\nGrep matches single lines. Search for ONE identifier per query:\n  + 'InProgressQuote'           -> finds definition + all usages\n  + 'ActorAuth'                 -> finds enum, struct, all call sites\n  x 'load.*metadata.*InProgressQuote' -> regex spanning multiple tokens, 0 results\n  x 'ctx.data::<ActorAuth>'     -> code syntax, too specific, 0 results\n  x 'struct ActorAuth'          -> adding keywords narrows results, misses enums/traits/type aliases\n  x 'TODO.*#\\d+'               -> complex regex, use simple 'TODO' then filter visually\n\n### 2. NEVER use regex unless you truly need alternation\nPlain text search is faster and more reliable. Regex patterns like `.*`, `\\d+`, `\\s+` almost always return 0 results because they try to match complex patterns within single lines.\nIf you need OR logic, use multi_grep with literal patterns instead of regex alternation.\n\n### 3. Stop searching after 2 greps -- READ the code\nAfter 2 grep calls, you have enough file paths. Read the top result to understand the code.\nDo NOT keep grepping with variations. More greps != better understanding.\n\n### 4. Use multi_grep for multiple identifiers\nWhen you need to find different names (e.g. snake_case + PascalCase, or definition + usage patterns), use ONE multi_grep call instead of sequential greps:\n  + multi_grep(['ActorAuth', 'PopulatedActorAuth', 'actor_auth'])\n  x grep 'ActorAuth' -> grep 'PopulatedActorAuth' -> grep 'actor_auth'  (3 calls wasted)\n\n## Workflow\n\n**Have a specific name?** -> grep the bare identifier.\n**Need multiple name variants?** -> multi_grep with all variants in one call.\n**Exploring a topic / finding files?** -> find_files.\n**Got results?** -> Read the top file. Don't grep again.\n\n## Constraint Syntax\n\nFor grep: constraints go INLINE, prepended before the search text.\nFor multi_grep: constraints go in the separate 'constraints' parameter.\n\nConstraints MUST match one of these formats:\n  Extension: '*.rs', '*.{ts,tsx}'\n  Directory: 'src/', 'quotes/'\n  Filename: 'schema.rs', 'src/main.rs'\n  Exclude: '!test/', '!*.spec.ts'\n\n! Bare words without extensions are NOT constraints. 'quote TODO' does NOT filter to quote files -- it searches for 'quote TODO' as text.\n  + 'schema.rs TODO'   -> searches for 'TODO' in files schema.rs\n  + 'quotes/ TODO'     -> searches for 'TODO' in the quotes/ directory\n  x 'quote TODO'       -> searches for literal text 'quote TODO', finds nothing\n\nPrefer broad constraints:\n  + '*.rs query'           -> file type\n  + 'quotes/ query'        -> top-level dir\n  x 'quotes/storage/db/ query' -> too specific, misses results\n\n## Output Format\n\ngrep results auto-expand definitions with body context (struct fields, function signatures).\nThis often provides enough information WITHOUT a follow-up Read call.\nLines marked with | are definition body context. [def] marks definition files.\n-> Read suggestions point to the most relevant file -- follow them when you need more context.\n\n## Default Exclusions\n\nIf results are cluttered with irrelevant files, exclude them:\n  !tests/ - exclude tests directory\n  !*.spec.ts - exclude test files\n  !generated/ - exclude generated code"}]}

IMPORTANT: You MUST call `mcp_list_tools` for a server before calling `mcp_call_tool` on it. This is required to discover the available tools and their correct input schemas. Never guess tool names or arguments — always list tools first.
Available subagent profiles for the `run_subagent` tool. Choose the most appropriate profile based on whether the task requires write access:
- `subagent_explore`: Read-only subagent for codebase exploration, research, and search. Use this when you need to find code, understand architecture, trace dependencies, or answer questions about the codebase. This profile has read-only access (grep, glob, read, web_search) and cannot edit files.
- `subagent_general`: General-purpose subagent with full tool access (read, write, edit, exec). Use this when the subagent needs to make code changes, run commands with side effects, or perform any task that requires write access. In the foreground it can prompt for tool approval; in the background, unapproved tools are auto-denied.
## Parallel tool calls

- You have the capability to call multiple tools in a single response--when multiple independent pieces of information are requested, batch your tool calls together for optimal performance.
- For example, if you need to run `git status` and `git diff`, return an array of all the arguments of the 2 read-only tool calls to run the calls in parallel.
- Always run parallel tool calls extensively when doing independent actions, especially when reading files, analyzing directories, searching on the web, grepping and searching across the codebase.
- Never perform dependent terminal commands or writes in parallel.
You are powered by Claude Opus 4.8 XHigh.
<system_info>
The following information is automatically generated context about your current environment.
Current workspace directories:
  /Users/root1/Downloads/projects (cwd)

Platform: macos
OS Version: Darwin 25.6.0
Today's date: Wednesday, 2026-06-24

</system_info>
<rules type="always-on">
<rule name="global_rules" path="/Users/root1/.codeium/windsurf/memories/global_rules.md">

</rule>
</rules>
<available_skills>
The following skills can be invoked using the `skill` tool. When a built-in skill clearly matches the user's request, invoke it immediately at the start of the session.

- **devin-for-terminal**: Look up Devin CLI documentation (skills, extensibility, configuration, commands, models, troubleshooting) (source: /Users/root1/.local/share/devin/cli/_versions/2026.8.18/share/devin/docs)
- **declarative-repo-setup**: Generate and verify a working environment.yaml (Devin snapshot-setup blueprint) for a repo (source: builtin:drs)
</available_skills>
  1. You

    learn as much as you can about the history of ahun.io

  2. Devin
    Thinking

    I need to look up information about ahun.io to understand its background and development.

    I'll research the history of ahun.io for you.

    web_search(query: ahun.io history)
    {
      "query": "ahun.io history"
    }
    web_search(query: ahun.io what is it)
    {
      "query": "ahun.io what is it"
    }
    In 2Out 147Cache 12,002TTFT 3,180mstool_calls
  3. Output# Web Search Results for "ahun.io history"
    # Web Search Results for "ahun.io history"
    
    ## 1. Ahun - Social Commerce | Portfolio
    URL: https://habib-mohammed.webflow.io/projects/ahun-social-commerce
    
    Ahun - Social Commerce | Portfolio
    
    PROJECT
    
    # Ahun - Social Commerce
    
    outcomes
    
    https://ahun.app
    
    UI Design
    
    Development
    
    Testing & UX
    
    Project Brief
    
    Ahun App is a social platform with 100K+ users that enables them to share their experiences, connect with like-minded individuals, and discover new places and events. Users can post about their favorite places, events, and lifestyle, while also meeting new people who share similar interests. The app also provides features such as ticket purchases, reservations, notifications for discounts and coupons, and fast and reliable delivery services from various businesses. Overall, Ahun App aims to create a vibrant and engaging community for users to explore and enjoy. My role is founder and CTO.
    
    ✅ Flutter
    
    ✅ Typescript
    
    ✅ Node.js
    
    ✅ Express.js
    
    ✅ Redis
    
    ✅ Adobe XD
    
    ✅ AWS
    
    ✅ Google Cloud Platform
    
    ✅ Firebase
    
    ✅ Docker
    
    ✅ AWS Codedeploy
    
    ✅ CodeMagic
    
    ✅ Bitbucket Pipeline
    
    ✅ Git
    
    ✅ Stripe/Paypal Payment
    
    ✅ Adaptive Video Stream (HLS)
    
    ✅ Map & Geolocation
    
    ✅ Rest API Integration
    
    ✅ Socket IO Chat
    
    ✅ Rabbit MQ
    
    CONTACT ME
    
    ## Got a Project? Lets Talk!
    
    hello@nero.com
    
    Get in touch
    
    About Work Service Contact
    
    ## 2. Aha! company history
    URL: https://www.aha.io/company/history
    
    Aha! company history
    
    Our history
    
    # A software company is for adventure
    
    Discover how bringing clarity to product development sparked a company, a product suite, and a new approach to business
    
    ## The Aha! moment
    
    Brian de Haaff and Dr. Chris Waters founded Aha! in the spring of 2013 in Menlo Park, California. We knew that people were struggling to set clear business strategies and connect them to the work of building products that customers love.
    
    We related to the need — our own careers had been dedicated to trying to build great products at both emerging and well-established software companies. There was an opportunity to help people set goals and initiatives, connect them to the execution, and provide greater organizational clarity into who was working on what.
    
    ## Back to basics
    
    We wanted to do something different, something true. We did not want to build just another software company. We wanted to build exceptionally high-quality products and create a place where people would love to work. And we wanted to allow people to work from where they were happiest. In fact, we are still a 100% remote company today.
    
    We were well-acquainted with the startup model that had been celebrated in Silicon Valley since the mid-1990s, and we knew there had to be a better way to fund our vision than chasing venture capital and trying to manufacture scale with no substance. We self-funded the business and aimed to be profitable fast.
    
    © 2026 Aha! Labs Inc. • All rights reserved
    
    - Privacy policy
    - Terms of service
    
    ## 3. Meet the Āhau Team | Supporting Whānau, Hapū & Iwi
    URL: https://ahau.io/about
    
    Meet the Āhau Team | Supporting Whānau, Hapū & Iwi
    
    # The team behind Āhau
    
    Ehara taku toa i te toa takitahi, engari taku toa i te toa taki tini
    
    ## A Message from our Kaihautu - CEO
    
    As the CEO of Āhau, our team is humbled to be able to provide this resource to our Tribal and Inigenous partners, whānau, hapū and Iwi organisations who are about to embark on this journey with Āhau.We acknowledge the responsibility you have undertaken to prepare, develop and build an archive to store and protect your whakapapa (genealogy) and sacred mātauranga that will benefit your mokopuna and generations to come. We look forward to the journey ahead as well as the opportunity to continue to be of service to you.‍Kaye-Maree DunnTe Rarawa, Ngāpuhi, Ngāti Kahu Ki Whangaroa, Ngāti Mahanga, Ngāi Tamanuhuri, Ngāti Kahungunu
    
    ## Our Partners
    
    ## Our Supporters
    
    ## Kōrero Mai! Get in touch!
    
    Want to learn more about using Āhau? Check out our documentation.You can also connect directly with our team.
    
    Ngā mihi! We have received your enquiry and will respond in the next 2 business days.
    
    Oops! Something went wrong while submitting the form.
    
    Product
    
    Company
    
    Social
    
    Copyright © Āhau 2025 - All Rights Reserved.
    
    ## 4. Hund.io — Grokipedia
    URL: https://grokipedia.com/page/Hundio
    
    Hund.io was founded in 2015 as a SaaS startup in the information technology sector, specifically targeting incident communication and status page solutions.[8][1] The company emerged from the frustrations of its founding team, who had struggled to find reliable status page providers for their own operations, prompting the creation of a more innovative service in the industry.[1] This origin story reflects a response to gaps in existing tools, particularly the need to bridge monitoring and communication during service disruptions to prevent information vacuums during outages.[1] Headquartered in Wyoming, United States, Hund.io was incorporated as Hund, LLC.[9][8] From its inception, the initial mission centered on leveraging automated monitoring to deliver simplified transparency to businesses, allowing them to maintain focus on core products amid routine maintenance or critical failures.[1] The early emphasis was on automating status updates to foster customer trust by providing reliable, real-time reporting beyond basic uptime checks, marking a shift toward nuanced incident management in DevOps and SRE environments.[1] This foundational approach laid the groundwork for later advancements in automated reporting.[1]
    ...
    Hund.io achieved an early customer onboarding in September 2016, followed by a research organization with over 10,000 employees in October 2016 that praised the platform for providing tremendous value to their team.[3] Around early 2020, the company offered its native monitoring solution, providing a free-of-charge tool to track services without relying on third-party providers, which enhanced automation for users.[10] Hund.io maps its internal policies to SOC 2 Type II and ISO 27001 standards and relies on certified cloud providers, with annual reviews to maintain alignment with these industry standards for security and data protection.[11][12] The platform expanded to support unlimited public and private pages, allowing organizations to create tailo...
    
    ## 5. Auhanio - itch.io
    URL: https://itch.io/profile/auhanio
    
    Auhanio - itch.io
    
    Skip to main content
    
    # itch.io
    
    Indie game store Free games Fun games Horror games
    
    ## Auhanio
    
    1
    
    Posts
    
    A member registered Mar 01, 2022
    
    More
    
    Block account
    
    ### Recent community posts
    
    Granny's Cellar comments· Posted in Granny's Cellar comments
    
    Auhanio 4 years ago
    
    I love the atmosphere, the thrill felling when playing... Though it's only a 5 minutes travel but has leave me long-lasting thinking, the character of grandma... wonderful!
    
  4. Output# Web Search Results for "ahun.io what is it"
    # Web Search Results for "ahun.io what is it"
    
    ## 1. Ahun - Social Commerce | Portfolio
    URL: https://habib-mohammed.webflow.io/projects/ahun-social-commerce
    
    Ahun - Social Commerce | Portfolio
    
    PROJECT
    
    # Ahun - Social Commerce
    
    outcomes
    
    https://ahun.app
    
    UI Design
    
    Development
    
    Testing & UX
    
    Project Brief
    
    Ahun App is a social platform with 100K+ users that enables them to share their experiences, connect with like-minded individuals, and discover new places and events. Users can post about their favorite places, events, and lifestyle, while also meeting new people who share similar interests. The app also provides features such as ticket purchases, reservations, notifications for discounts and coupons, and fast and reliable delivery services from various businesses. Overall, Ahun App aims to create a vibrant and engaging community for users to explore and enjoy. My role is founder and CTO.
    
    ✅ Flutter
    
    ✅ Typescript
    
    ✅ Node.js
    
    ✅ Express.js
    
    ✅ Redis
    
    ✅ Adobe XD
    
    ✅ AWS
    
    ✅ Google Cloud Platform
    
    ✅ Firebase
    
    ✅ Docker
    
    ✅ AWS Codedeploy
    
    ✅ CodeMagic
    
    ✅ Bitbucket Pipeline
    
    ✅ Git
    
    ✅ Stripe/Paypal Payment
    
    ✅ Adaptive Video Stream (HLS)
    
    ✅ Map & Geolocation
    
    ✅ Rest API Integration
    
    ✅ Socket IO Chat
    
    ✅ Rabbit MQ
    
    CONTACT ME
    
    ## Got a Project? Lets Talk!
    
    hello@nero.com
    
    Get in touch
    
    About Work Service Contact
    
    ## 2. Ahun - Apps on Google Play
    URL: https://play.google.com/store/apps/details?id=com.ahun.android&hl=en_US
    
    Ahun - Apps on Google Play
    ...
    # Ahun
    ...
    [Prime Maven Engineering PLC](https://play.google.com/store/apps/developer?id=Prime+Maven+Engineering+PLC)
    ...
    ## About this app
    ...
    Your one-stop destination for finding**where to go out**and**who to go out with.**
    ...
    ](https://ahun.app)
    ...
    About the developer
    ...
    PRIME MAVEN ENGINEERING
    
    ## 3. Āhau | Whānau Platform for Whakapapa & Data Sovereignty
    URL: https://www.ahau.io/
    
    Āhau | Whānau Platform for Whakapapa & Data Sovereignty
    
    # Your connectionsYour storiesYour identity
    
    Keep track of whānau whakapapa information, preserve and share cultural records and narratives, own and control whānau data and servers, and build a stronger sense of whānau, community and identity.
    
    Get started Learn more
    
    ## Āhau brings whānau together
    
    Āhau is a Whānau Data Platform that helps whānau-based communities (whānau, hapū, Iwi) capture, preserve, and share important information and histories into secure, whānau managed databases and servers.
    
    ### Whakapapa Records
    
    Maintain whānau and whenua connections through our collaborative whakapapa record management tool.
    
    ### Tribal Registries
    
    Record and maintain up to date whanau information with whakapapa linked tribal registries.
    
    ### Data Sovereignty
    
    All data is collected, stored and shared using your own personal devices and your whānau connections.
    
    ### Cultural Archiving
    
    Capture, preserve and share cultural heritage, histories and narratives all stored in whānau owned and managed archives.
    
    Get started Learn more
    
    Get started with Āhau today
    
    ## Āhau is completely free to use
    
    Whether you want to create and archive for your Iwi and record the oral histories of your people, or whether you want a private archive to record your life story for your future grandchildren to read. Thanks to our funders, Āhau is free for you and your whole whānau to use.
    
    AVAILABLE NOW ON WINDOWS, MAC, AND LINUX
    
    ## Kōrero Mai! Get in touch!
    
    Want to learn more about using Āhau? Check out our documentation.You can also connect directly with our team.
    
    Ngā mihi! We have received your enquiry and will respond in the next 2 business days.
    
    Oops! Something went wrong while submitting the form.
    
    Product
    
    Company
    
    Social
    
    Copyright © Āhau 2025 - All Rights Reserved.
    
    ## 4. AhunCash
    URL: https://ahuncash.com/
    
    AhunCash
    ...
    AhunCash serves as the entry point to financial inclusion for the MSMEs and individuals in Ethiopia by offering instant, small, short-term, productive credit from banks.
    ...
    Initiate a loan application from any location and at any time. No collateral and no guarantee.
    ...
    No collateral. Unlike the conventional lending system, the credit worthiness of the MSME is solely decided.
    ...
    ## About AhunCash
    ...
    ###### Ethiopian financial institutions lack scalable and digitized methods to assess the creditworthiness of MSMEs without a guarantee. This is mainly due to a lack of collateral, technology, and access to the digital economy, preventing MSMEs from getting loans from banks.
    ...
    AhunCash enables banks to fulfill financial needs of individuals and MSMEs: .
    ...
    - Without the need for collateral.
    - Allowing customers to become more efficient and accomplish more with less.
    - Cutting the wait time from weeks to minutes.
    ...
    ## Loan Application Process
    ...
    ## Our Services
    ...
    ## AhunCash Business Loan
    ...
    AhunCash business loan is designed to provide financial support to MSMEs that are already operational. We provide funding to small businesses, to facilitate the running of their day-to-day operations in a seamless way.
    ...
    ## AhunCash Consumer Loan
    ...
    Our consumer loan is tailored to meet the needs of government and non-government organizations, as well as individuals. It can be easily accessed from smartphones, making it convenient for users to get loans to pay for items or unexpected expenses.
    ...
    - Pay your bills instantly
    ...
    item you need to make your life
    ...
    - Access micro loans up to
    
    ## 5. Āhau Features | Tools for Whakapapa & Data Sovereignty
    URL: https://ahau.io/features-anei-nga-hua
    
    Āhau Features | Tools for Whakapapa & Data Sovereignty
    
    Anei Ngā Hua
    
    ## A platform for Indigenous data sovereignty
    
    Āhau provides a grassroots approach to data sovereignty by putting the tools for data collection, ownership, and application in the hands of the whānau communities. To this purpose Āhau (ltd) has developed an innovative set of applications that is completely free for whānau communities to use and access.
    
    ### Connect your information
    
    Individuals control and manage their own profile information which automatically updates whakapapa records and tribal registries.
    
    ### Stored on your databases
    
    Maintain control and ownership of your data by saving in your own databases running on your own devices.
    
    ### Access your information
    
    Access, learn and contribute to your whānau histories, your whakapapa lines and whānau connections and your cultural identity.
    
    Maintain your whakapapa connections
    
    ## Collaborative Whakapapa Records
    
    Use Āhau to create visual whakapapa charts. These records can than be shared and updated by whānau and managed by whakapapa kaitiaki. Record whānau information including different names, date of birth and death, whāngai and adopted relationships and more.Other features include, CSV importer, name search, view different ancestor lines, show and hide descendant lines. All whakapapa records are fully encrypted to either your device or to a specific tribal group.
    
    Maintain whānau information
    
    ## Whakapapa Linked Tribal Registries
    
    Convert your whakapapa chart into your whānau database and tribal registry information that whānau kaitiaki can access. Record and view information including contact and address information, current age and occupations and more. You can also show/hide descendant lines, and show/hide whānau who are no longer living.
    
    Preserve and share your cultural heritage
    
    ## Cultural Archiving
    
    Whether you want to preserve and transfer the histories of your people, or whether you want to record your own history for your futu...
    
  5. Devin
    Thinking

    The search results are pointing to similar domains like ahun.app and ahau.io, but not the exact ahun.io the user asked about. I should directly check what's actually at that domain and look into its history to see if there's any information available.

    The search results point to several different entities (ahun.app, ahau.io, aha.io). Let me look directly at the ahun.io domain itself and its history.

    webfetch(url: https://ahun.io)
    {
      "url": "https://ahun.io"
    }
    web_search(query: ahun.io domain)
    {
      "query": "ahun.io domain"
    }
    In 2Out 292Cache 20,523TTFT 5,671mstool_calls
  6. OutputFailed to fetch URL 'https://ahun.io'.
    Failed to fetch URL 'https://ahun.io'.
  7. Output# Web Search Results for "ahun.io domain"
    # Web Search Results for "ahun.io domain"
    
    ## 1. Name: ahun • Shakeshift Handshake Explorer
    URL: https://shakeshift.com/name/ahun
    
    Name: ahun • Shakeshift Handshake Explorer
    ...
    | --- | ---
    ...
    713 | 2025-0
    ...
    | Name Expired • End
    ...
    | RENEW |
    ...
    3 |
    ...
    023-07
    ...
    | — | 95af74b
    ...
    c80f
    ...
    | REGISTER |
    ...
    431 | 2021-09-29 14:06:57 | 0.00 HNS | 7b9328de9c5f
    ...
    9ba7097c074485
    ...
    eec98cf6
    ...
    555332dad8854
    ...
    |
    | REDEEM | 87
    ...
    431 | 2021-09-29 14:06:57 | 0.00 HNS | 7b9328de9c5f59ba7097c0744859bf1dacdec19eec98cf6a4b555332dad88547 |
    ...
    | 87,429 | 2021-09-
    ...
    9 13:55:17 | Auction Closed |
    ...
    00 HNS | a5
    ...
    85
    ...
    989 |
    ...
    15:48:06 | Reveal Period |
    ...
    | BID |
    ...
    85,987 | 2021-09-19 15:35:52 | 0.41 HNS | d1e9bf131fe10f8eb3dcf5d6de428e24196bd6ca63
    ...
    f4c1
    ...
    78bdf68209
    ...
    | BID | 85,272 | 2021-09
    ...
    14 14:54:20 | 0
    ...
    40 HNS |
    ...
    f6e
    ...
    945c
    ...
    5f4078065538201902
    ...
    4a9
    ...
    18771
    ...
    35048 |
    | 85,269 | 2021-09-14 14:35:27 | Bidding Period |
    | OPEN |
    ...
    85,232 | 2021-09-14 05:45:58 | — | beec2e6807e47d9034f09787691929b219d5fcbfee938177a
    
    ## 2. 全后缀·无痕·WHOIS查询 - whois.zunmi.com
    URL: https://whois.zunmi.com/?d=ahun.cn
    
    全后缀·无痕·WHOIS查询 - whois.zunmi.com
    
    尊米首页域名新闻域名知识域名停放尊米服务尊米论坛
    
    #### ☆ ☆ ☆ 全后缀·无痕·WHOIS查询 ☆ ☆ ☆
    
    想要查询的域名: 无痕查询
    
    (支持99%的域名后缀)
    
    ### 🏃 请稍候……
    
    https://whois.zunmi.com/?d=ahun.cn 复制 Domain Name: ahun.cn ROID: 20101219s10001s75226677-cn Domain Status: clientHold Registrant: 六安市人才职业培训学校 Registrant Contact Email: [email protected] Sponsoring Registrar: 北京新网数码信息技术有限公司 Name Server: ns1.dns.com.cn Name Server: ns2.dns.com.cn Registration Time: 2010-12-19 18:19:56 Expiration Time: 2027-12-19 18:19:56 DNSSEC: unsigned 注意:尊米网不为以上查询结果承担任何后果。如您觉得信息不够完整,可前往同类查询网站 ICANN-Lookup或 Who.is对比查询结果!
    
    ## 3. Ahun / Home - Ahun
    URL: https://ahun.app.siteindices.com/
    
    Ahun "/>
    ...
    | Title | Home - Ahun |
    | --- | --- |
    | Description | Ahun, Delivering Experiences |
    | Keywords | N/A |
    ...
    | WebSite | www. ahun.app |
    | --- | --- |
    | Host IP | 18.198.77.38 |
    | Location | Frankfurt am Main, Hesse, Germany |
    ...
    Ahun.app
    ...
    Ahun.app has global traffic rank of 2,094,601. Ahun.app has an estimated worth of US$ 24,415, based on its estimated Ads revenue. Ahun.app receives approximately 1,486 unique visitors each day. Its web server is located in Frankfurt am Main, Hesse, Germany, with IP address 18.198.77.38. According to SiteAdvisor, ahun.app is safe to visit.
    ...
    ahun.app
    ...
    ahun.app
    ...
    un.app
    ...
    un.app
    ...
    ahun.app
    ...
    un.app
    ...
    Ahun.app Whois Information
    ...
    ```
    Domain Name: ahun.app
    Registry Domain ID: 38DB54990-APP
    Registrar WHOIS Server: whois.google.com
    Registrar URL: domains.google
    Updated Date: 2020-09-09T17:08:59Z
    Creation Date: 2019-06-11T16:35:38Z
    Registry Expiry Date: 2022-06-11T16:35:38Z
    Registrar: Google LLC.
    Registrar IANA ID: 895
    Registrar Abuse Contact Email: registrar-abuse@google.com
    Registrar Abuse Contact Phone: +1.8772376466
    ...
    Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
    
    ## 4. ahuman.io Reviews | check if the site is a scam or legit | Scamadviser
    URL: https://www.scamadviser.com/check-website/ahuman.io
    
    ahuman.io Reviews | check if the site is a scam or legit | Scamadviser
    ...
    ##### ahuman.io
    ...
    Why does ahuman.io have a relatively low trust score?
    ...
    The SSL certificate is valid
    ...
    The owner of the website is using a service to hide their identity on WHOIS
    ...
    According to Tranco this site has a low rank
    ...
    This website is (very) young.
    ...
    In summary, ahuman.io might be a scam. We found several indicators for this.
    ...
    Entire Review ahuman.io
    ...
    We see that the owner of the website is using a service to hide his/her identity. This may be because the owner does not want to get spammed. However, it also makes it difficult to identify the real owner of the website. As a result, websites hiding their identity get a slightly lower score.
    ...
    According to Tranco this site has a low Tranco rank. This means that the number of visitors to this website is quite low. You can expect this from a small, starting or niche website. A popular website however should have a higher ranking.
    ...
    The domain has only been registered recently. We recommend you to be cautious when buying or using services from a website that is very young. You may like to check our blog: " How to recognize a scam". Websites of scammers often only last for a few months before they are taken offline. An old website is no guarantee that the site is safe. Some scam sites are even years old. Most scam sites however are taken down after a few months as the number of consumer complaints rises and the hosting company is getting tired of the many emails and phone calls.
    ...
    A valid SSL certificate was found. Professional companies use an SSL certificate to encrypt communication between your computer and their website. However, there are different levels of certification and scammers also install a free SSL certificate. If you have to enter your data, never do this without checking if an SSL certificate protects your information.
    ...
    Facts about ahuman.io
    ...
    2 weeks ago
    ...
    WHOIS DATA
    ...
    Privacy service pro...
    
    ## 5. 
    URL: https://www.ahuna.io/en/
    
    ## Ahuna
    
    ## How does your home payment break down?
    
    Understanding your loan payments will help you understand what type of loan you can afford. And how much you'll be paying for it!
    
    Down Payment
    
    Price
    
    Years
    
    Apr
    
    Home Payment
    
    $1.00
    
    Year: 0 Month: January
    
    Use the slider to see how much each monthly payment would go towards interest and principle. Also, see how much you have left on your payment!
    
    These numbers may not be accurate and are meant to be an approximation. Please speak with your lender or review your contract for exact numbers.
    
    Terms Privacy About
    
  8. Devin
    Thinking

    The domain ahun.io isn't loading, but I notice "ahun" shows up as a Handshake name on shakeshift.com—though that's a different naming system than the .io TLD. Let me investigate ahun.io specifically by checking its WHOIS records, looking through the Wayback Machine, and attempting a direct web fetch.

    The direct fetch failed (the site may be down). Let me dig into the actual ahun.io domain via WHOIS and the Wayback Machine to reconstruct its history.

    exec(command: whois ahun.io 2>/dev/null | head -60)
    {
      "command": "whois ahun.io 2>/dev/null | head -60"
    }
    webfetch(url: http://web.archive.org/web/2023010100000…)
    {
      "url": "http://web.archive.org/web/20230101000000*/ahun.io"
    }
    webfetch(url: https://web.archive.org/cdx/search/cdx?u…)
    {
      "url": "https://web.archive.org/cdx/search/cdx?url=ahun.io&output=json&collapse=timestamp:6&limit=200"
    }
    In 2Out 564Cache 25,860TTFT 5,033mstool_calls
  9. OutputOutput from command in shell f9a055:
    Output from command in shell f9a055:
    % IANA WHOIS server
    % for more information on IANA, visit http://www.iana.org
    % This query returned 1 object
    
    refer:        whois.nic.io
    
    domain:       IO
    
    organisation: Internet Computer Bureau Limited
    address:      c/o Sure (Diego Garcia) Limited
    address:      Diego Garcia
    address:      British Indian Ocean Territories, PSC 466 Box 59
    address:      FPO-AP 96595-0059
    address:      British Indian Ocean Territory (the)
    
    contact:      administrative
    name:         Internet Administrator
    organisation: Internet Computer Bureau Limited
    address:      c/o Sure (Diego Garcia) Limited
    address:      Diego Garcia
    address:      British Indian Ocean Territories, PSC 466 Box 59
    address:      FPO-AP 96595-0059
    address:      British Indian Ocean Territory (the)
    phone:        +246 9398
    fax-no:       +246 9398
    e-mail:       administrator@nic.io
    
    contact:      technical
    name:         Administrator
    organisation: Internet Computer Bureau Ltd
    address:      Greytown House, 221-227 High Street
    address:      Orpington Kent BR6 0NZ
    address:      United Kingdom of Great Britain and Northern Ireland (the)
    phone:        +44 (0)1689 827505
    fax-no:       +44 (0)1689 831478
    e-mail:       admin@icb.co.uk
    
    nserver:      A0.NIC.IO 2a01:8840:9e:0:0:0:0:17 65.22.160.17
    nserver:      A2.NIC.IO 2a01:8840:a1:0:0:0:0:17 65.22.163.17
    nserver:      B0.NIC.IO 2a01:8840:9f:0:0:0:0:17 65.22.161.17
    nserver:      C0.NIC.IO 2a01:8840:a0:0:0:0:0:17 65.22.162.17
    ds-rdata:     57355 8 2 95a57c3bab7849dbcddf7c72ada71a88146b141110318ca5be672057e865c3e2
    
    whois:        whois.nic.io
    
    status:       ACTIVE
    remarks:      Registration information: http://www.nic.io/
    
    created:      1997-09-16
    changed:      2023-01-18
    source:       IANA
    
    # whois.nic.io
    
    Domain not found.
    >>> Last update of WHOIS database: 2026-06-24T08:08:51Z <<<
    
    
    Exit code: 0
  10. OutputHTTP request failed with status: 429
    HTTP request failed with status: 429
  11. Output# Web Content from https://web.archive.org/cdx/search/cdx?url=ahun.io&output=json&collapse=timestamp
    # Web Content from https://web.archive.org/cdx/search/cdx?url=ahun.io&output=json&collapse=timestamp:6&limit=200
    
    []
    
  12. Devin
    Thinking

    The WHOIS lookup shows that `ahun.io` isn't currently registered, and the Wayback Machine has no archived captures of it either, which suggests the domain has never hosted a meaningful website. The user might be thinking of a different domain with a similar name. Let me verify this by checking DNS records for `ahun.io` and also searching the Wayback Machine more broadly to see if there are any subdomains or related captures that might give me a clue about what they're looking for.

    Two important findings: the WHOIS shows ahun.io is not currently registered ("Domain not found"), and the Wayback Machine has zero archived captures for it. Let me confirm this with a few more checks.

    exec(command: echo "=== DNS A record ==="; dig +short …)
    {
      "command": "echo \"=== DNS A record ===\"; dig +short ahun.io A; echo \"=== DNS NS ===\"; dig +short ahun.io NS; echo \"=== DNS ANY www ===\"; dig +short www.ahun.io A; echo \"=== host ===\"; host ahun.io 2>&1 | head"
    }
    webfetch(url: https://web.archive.org/cdx/search/cdx?u…)
    {
      "url": "https://web.archive.org/cdx/search/cdx?url=ahun.io&matchType=domain&output=json&limit=200"
    }
    In 2Out 634Cache 28,861TTFT 4,181mstool_calls
  13. OutputOutput from command in shell ecc1dd:
    Output from command in shell ecc1dd:
    === DNS A record ===
    === DNS NS ===
    === DNS ANY www ===
    === host ===
    Host ahun.io not found: 3(NXDOMAIN)
    
    
    Exit code: 0
  14. Output# Web Content from https://web.archive.org/cdx/search/cdx?url=ahun.io&matchType=domain&output=json&l
    # Web Content from https://web.archive.org/cdx/search/cdx?url=ahun.io&matchType=domain&output=json&limit=200
    
    []
    
  15. Devin
    Thinking

    I've confirmed that `ahun.io` doesn't resolve, has no DNS records, isn't registered according to WHOIS, and has zero Wayback Machine captures—so there's essentially no digital history to uncover for this domain. The straightforward answer to the user's request is that there's nothing to find. However, there are several closely related entities worth considering: **Ahun** (ahun.app), a social commerce platform with over 100,000 users founded in 2019 by Prime Maven Engineering PLC in Ethiopia; **Āhau** (ahau.io), a Māori genealogy and data sovereignty platform from New Zealand—notably similar to "ahun.io" and possibly a typo; **AhunCash**, an Ethiopian fintech for small business lending; and a **Handshake blockchain name** "ahun" that was auctioned in 2021. Given how easily "ahun.io" could be confused with "ahau.io" or how the user might actually mean the Ahun app, I should present the honest finding about the domain itself while offering these more likely candidates as what they might actually be looking for.

    Confirmed: ahun.io itself has no history — it returns NXDOMAIN (doesn't resolve), WHOIS says "Domain not found" (never/not currently registered), and the Wayback Machine has zero archived captures for it (even across subdomains). It has essentially never been a live website.

    Since "ahun.io" doesn't exist as such, the name most likely refers to a closely-related entity. Let me research the most plausible candidates so I can give you something useful.

    web_search(query: Ahun app Ethiopia Prime Maven Engineerin…)
    {
      "query": "Ahun app Ethiopia Prime Maven Engineering social commerce history"
    }
    webfetch(url: https://web.archive.org/cdx/search/cdx?u…)
    {
      "url": "https://web.archive.org/cdx/search/cdx?url=ahun.app&output=json&collapse=timestamp:6&limit=60"
    }
    webfetch(url: https://web.archive.org/cdx/search/cdx?u…)
    {
      "url": "https://web.archive.org/cdx/search/cdx?url=ahau.io&output=json&collapse=timestamp:4&limit=40"
    }
    In 2Out 1,233Cache 30,427TTFT 4,908mstool_calls
  16. Output# Web Search Results for "Ahun app Ethiopia Prime Maven Engineering social commerce history"
    # Web Search Results for "Ahun app Ethiopia Prime Maven Engineering social commerce history"
    
    ## 1. Ahun - Apps on Google Play
    URL: https://play.google.com/store/apps/details?id=com.ahun.android&hl=en_US
    
    # Ahun
    ...
    [Prime Maven Engineering PLC](https://play.google.com/store/apps/developer?id=Prime+Maven+Engineering+PLC)
    ...
    ## About this app
    ...
    Your one-stop destination for finding**where to go out**and**who to go out with.**
    ...
    Mar 2,
    ...
    2023
    ...
    About the developer
    ...
    PRIME MAVEN ENGINEERING PLC
    ...
    prime.nahom@gmail.com
    ...
    House No 172, Wereda 02, Kirkos Subcity
    ...
    Addis Ababa 1000
    ...
    +251 90 853 8884
    
    ## 2. Socials For Ethiopians By Ethiopians | The Reporter Ethiopia
    URL: https://www.thereporterethiopia.com/12708/
    
    a part of
    ...
    bigger scope in
    ...
    waking up and
    ...
    almost a ritualistic act
    ...
    western influenced concept
    ...
    In recent years, thanks to young entrepreneurial spirited people, social media and social media-esque applications have been surfacing in Ethiopia. Applications like Ahun app have paved the way by innovating an Ethiopian based social platform, curated for the Ethiopian youth. The app has gained immense popularity since its launch in 2012, with two young individuals, Nahom Kalayu and Habib Mohammed leading at the forefront. With one of them having ventured in multiple businesses before his college years, these driven and motivated innovators set out to capture something that hasn’t been done and actually succeeded.
    ...
    “It started as an idea set to deliver a social experience, a platform for experiencing the things happening in the city. I was a student when I first came up with the idea, and I reached out to my current co-founder to begin developing the idea into reality. It has been two years since we started work on the app and it has evolved and pivoted in so many ways,” said Nahom Kalayu, the CEO and co-founder of the app who developed a functional social media platform before graduating college.
    ...
    “The app lets users experience events, dinning places and so much more. Apart from being the first Ethiopian social media, it offers what other platforms don’t offer like location sharing, event listings, delivery from selected establishments and more,” added Nahom.
    ...
    The app offers lists of local events where residents and users of the app could scroll through and purchase tickets at a discounted rate where ever they maybe. The app connects individuals while capitalizing on the popular youth culture of monumentalizing whatever one is eating or doing via pictures.
    ...
    The incorporation of delivery service, a chance to look at the products being delivered through the eyes of the customers themselves, the chance to purchase tickets and so many other featur...
    
    ## 3. Ahun - Social Commerce | Portfolio
    URL: https://habib-mohammed.webflow.io/projects/ahun-social-commerce
    
    Ahun - Social Commerce | Portfolio
    
    PROJECT
    
    # Ahun - Social Commerce
    
    outcomes
    
    https://ahun.app
    
    UI Design
    
    Development
    
    Testing & UX
    
    Project Brief
    
    Ahun App is a social platform with 100K+ users that enables them to share their experiences, connect with like-minded individuals, and discover new places and events. Users can post about their favorite places, events, and lifestyle, while also meeting new people who share similar interests. The app also provides features such as ticket purchases, reservations, notifications for discounts and coupons, and fast and reliable delivery services from various businesses. Overall, Ahun App aims to create a vibrant and engaging community for users to explore and enjoy. My role is founder and CTO.
    
    ✅ Flutter
    
    ✅ Typescript
    
    ✅ Node.js
    
    ✅ Express.js
    
    ✅ Redis
    
    ✅ Adobe XD
    
    ✅ AWS
    
    ✅ Google Cloud Platform
    
    ✅ Firebase
    
    ✅ Docker
    
    ✅ AWS Codedeploy
    
    ✅ CodeMagic
    
    ✅ Bitbucket Pipeline
    
    ✅ Git
    
    ✅ Stripe/Paypal Payment
    
    ✅ Adaptive Video Stream (HLS)
    
    ✅ Map & Geolocation
    
    ✅ Rest API Integration
    
    ✅ Socket IO Chat
    
    ✅ Rabbit MQ
    
    CONTACT ME
    
    ## Got a Project? Lets Talk!
    
    hello@nero.com
    
    Get in touch
    
    About Work Service Contact
    
    ## 4. Ahun Business - Apps on Google Play
    URL: https://play.google.com/store/apps/details?hl=en_US&id=com.ahun.business
    
    Ahun Business - Apps on Google Play
    
    # Ahun Business
    
    Prime Maven Engineering PLC
    
    Mature 17+
    
    1K+
    
    Downloads
    
    Install
    
    Share
    
    Add to wishlist
    
    Mature 17+
    
    Users Interact
    
    Ahun app, being the first of Ethiopia’s social media-centric way of discovering local businesses and providing a delivery service, is on its way to changing how consumers hear and get services from their local businesses.The advent of our platform has helped our users save time, effort, and money while improving the business of our business partners. We now provide Ahun Business, an app that allows you to manage your business on Ahun in a single, centralized place. Whether you’re are business place looking to grow your customers and provide delivery service or an event organizer to grow your audience for your events you can use Ahun Business app to fit your unique needs! Here’s everything our app offers:Ahun Business for local business ownersGrow your customers: tap into the reach social-media centric way of discovering places and get noticed by your potential customers.Manage Offerings: easily build up your digital shop by adding your products, food menus, and offerings.Delivery Service: not everyone can come by at your place, provide your customers with a simple and functioning delivery service.Real-Time Order Tracking: get notifications for each new, in progress, canceled, and delivered orders and track each of your deliveries precisely.Ahun Business for event organizersPut up your events: let your people know what you got going on by keeping creating and posting your events.Get noticed: tap into the social buzz and get engagements from your audience.Keep up the buzz: don't let your momentum fed, instantly notify your followers about your upcoming events.
    
    Updated on
    
    Nov 11, 2022
    
    Safety starts with understanding how developers collect and share your data. Data privacy and security practices may vary based on your use, region, and age. The developer provided this information and may update it ...
    
    ## 5. Ahun for Android - Download the APK from Uptodown
    URL: https://ahun.en.uptodown.com/android
    
    Prime Maven Engineering PLC
    ...
    ## Social nightlife app connects users for an ideal night out
    ...
    Discover Ahun, the ultimate guide for crafting the perfect night out. This intuitive app helps you pinpoint the best venues and connects you with like-minded companions. Enhance your social experiences by exploring recommended hotspots and forging new friendships. Get ready to elevate your evenings with ease and excitement through its sophisticated features. It's ideal for individuals eager to expand their social circle while experiencing the town's vibrant offerings.
    ...
    The platform offers a wide array of options, ensuring that users can always find something to suit their tastes. Whether looking for a low-key evening or an energetic night on the town, there's something for everyone. Users have praised its user-friendly interface and the seamless way it introduces them to the trendiest venues.
    ...
    Ensure you make the most of your nights out with ease and enjoyment by leveraging the power of this app. It's the perfect companion for anyone looking to enhance their social life and immerse themselves in the local nightlife culture.
    ...
    ## Information about Ahun
    ...
    | Developer | Prime Maven Engineering PLC |
    | --- | --- |
    | Category | General |
    | Rating | Not specified |
    | Languages | English |
    ...
    | Pricing | Free |
    | --- | --- |
    | License | Owner |
    | Copyright © 2026 Prime Maven Engineering PLC |
    | Why is this app published on Uptodown? | (More information) |
    ...
    | Downloads | 128 |
    | --- | --- |
    | Date | Jun 30, 2025 |
    | File type | APK |
    | Size | 80.23 MB |
    | SHA256 | 7f7e36de3e38714dc28a1305aeff5a491f8c5371549f5cf50643e8c6ae4183b5 |
    ...
    com.ahun.android |
    ...
    | --- | --- |
    
  17. OutputHTTP request failed with status: 429
    HTTP request failed with status: 429
  18. OutputHTTP request failed with status: 429
    HTTP request failed with status: 429
  19. Devin
    Thinking

    I've gathered enough information about the Ahun app to provide a solid answer, though the Wayback Machine queries hit rate limits. Looking at the founding date discrepancy—The Reporter Ethiopia mentions 2012 as the launch year, but also references "two years since we started work," and the domain registration shows June 2019—the 2012 date is likely a typo and should probably be 2021. Given the domain creation in 2019, the Android app store presence with a March 2023 update, and the portfolio evidence, the actual timeline appears to be around 2019-2021 for when the app was developed and launched. I have enough to give a comprehensive answer covering the most likely entity (ahun.app), acknowledge the ambiguity around ahun.io, and mention other "ahun"-named entities, then ask which one they meant to clarify.

    Here's what I found. The headline is that ahun.io as a specific domain has no real history of its own — but there's a well-documented company simply called Ahun that I think you're after.

    On ahun.io itself

    There's essentially nothing there:

    • Not registered — WHOIS at the .io registry returns "Domain not found."
    • Doesn't resolve — DNS lookup returns NXDOMAIN (no A/NS records).
    • Never archived — the Wayback Machine has zero captures for ahun.io or any of its subdomains.

    So either it's a slight misspelling, or you're thinking of the company that actually uses the domain ahun.app (no .io). That one has a real story:

    Ahun (ahun.app) — the likely target

    A consumer tech startup out of Addis Ababa, Ethiopia, billed as the country's first homegrown social-media-style platform.

    • What it is: A "social commerce" app — "your one-stop destination for finding where to go out and who to go out with." Combines social feeds, event/venue discovery, ticket purchases at discounted rates, reservations, and delivery from local businesses. Tagline: "Delivering Experiences."
    • Founders: Nahom Kalayu (CEO) and Habib Mohammed (CTO). Nahom conceived it as a student and recruited Habib to build it.
    • Company: Operated by Prime Maven Engineering PLC (Kirkos Subcity, Addis Ababa).
    • Timeline: The ahun.app domain was created June 11, 2019. Development ran for a couple of years before public launch (~2020–2021). A Reporter Ethiopia feature says it reached "immense popularity since launch" and cites 100K+ users. (That article's "2012" launch date appears to be a typo.)
    • Product line grew: They later shipped a companion "Ahun Business" app (updated Nov 2022) for merchants/event organizers — digital shopfronts, delivery management, real-time order tracking. The main Ahun Android app was still being updated as recently as 2023, with APKs distributed into 2025.
    • Tech stack (per Habib's portfolio): Flutter, TypeScript, Node.js/Express, Redis, RabbitMQ, Socket.IO chat, HLS video streaming, AWS/GCP/Firebase, Docker, Stripe/PayPal.

    Other "Ahun"-named things (in case you meant one of these)

    • Āhau (ahau.io) — closest spelling to "ahun.io." A New Zealand Māori genealogy (whakapapa) & Indigenous data-sovereignty platform; free, decentralized, stores data on users' own devices.
    • AhunCash (ahuncash.com) — an Ethiopian fintech offering instant, collateral-free micro-loans to MSMEs (same "Ahun" = Amharic for "now").
    • ahun on Handshake (HNS) — a name on the Handshake decentralized-naming blockchain, auctioned/registered Sept 2021, later expired and renewed (2023/2025). Unrelated to a website.

    To make sure I dig into the right one:

    ask_user_question(questions: [{"question":"Which \"Ahun\" did you act…)
    {
      "questions": [
        {
          "question": "Which \"Ahun\" did you actually mean? (ahun.io itself has no history — it's an unregistered, never-archived domain.)",
          "header": "Which Ahun",
          "options": [
            {
              "label": "Ahun (ahun.app)",
              "description": "The Ethiopian social-commerce / nightlife app by Nahom Kalayu & Habib Mohammed. I'll dig deeper into its full history."
            },
            {
              "label": "Āhau (ahau.io)",
              "description": "NZ Māori whakapapa / Indigenous data-sovereignty platform — closest spelling to 'ahun.io'."
            },
            {
              "label": "AhunCash (ahuncash.com)",
              "description": "Ethiopian fintech offering collateral-free micro-loans to MSMEs."
            },
            {
              "label": "Confirm: ahun.io really",
              "description": "You specifically want everything about the literal ahun.io domain (which currently has no public history)."
            }
          ]
        }
      ]
    }
    In 2Out 2,093Cache 31,251TTFT 5,259mstool_calls
  20. OutputUser answered your questions:
    User answered your questions:
    {
      "Which \"Ahun\" did you actually mean? (ahun.io itself has no history — it's an unregistered, never-archived domain.)": {
        "selected": [
          "Confirm: ahun.io really"
        ]
      }
    }
  21. Devin
    Thinking

    The user wants me to focus specifically on the `ahun.io` domain itself, so I'm going to systematically check every possible angle — starting with historical WHOIS records since the current registration shows nothing, then revisiting the Wayback Machine with fresh queries to see if I missed any captures. I'll also check certificate transparency logs to see if any SSL certificates were ever issued for the domain, which would indicate actual usage even if there's no web archive. I'm planning to run passive DNS lookups, do quoted searches specifically for "ahun.io", check if it was ever parked or for sale, and search code repositories like GitHub for any references to it. Let me execute these checks systematically to get a complete picture.

    Got it — you want the literal ahun.io. Let me do an exhaustive dig: certificate transparency logs, passive DNS, search engines, and a Wayback retry (it was rate-limited earlier). These can reveal traces even for a domain with no archived pages.

    webfetch(url: https://crt.sh/?q=ahun.io&output=json)
    {
      "url": "https://crt.sh/?q=ahun.io&output=json"
    }
    webfetch(url: https://crt.sh/?q=%25.ahun.io&output=jso…)
    {
      "url": "https://crt.sh/?q=%25.ahun.io&output=json"
    }
    web_search(query: "ahun.io", num_results: 10)
    {
      "query": "\"ahun.io\"",
      "num_results": 10
    }
    webfetch(url: https://web.archive.org/cdx/search/cdx?u…)
    {
      "url": "https://web.archive.org/cdx/search/cdx?url=ahun.io&matchType=domain&output=json&limit=500"
    }
    In 2Out 826Cache 35,439TTFT 4,728mstool_calls
  22. Output# Web Content from https://crt.sh/?q=ahun.io&output=json
    # Web Content from https://crt.sh/?q=ahun.io&output=json
    
    []
    
  23. OutputHTTP request failed with status: 502
    HTTP request failed with status: 502
  24. Output# Web Search Results for ""ahun.io""
    # Web Search Results for ""ahun.io""
    
    ## 1. Ahun - Apps on Google Play
    URL: https://play.google.com/store/apps/details?id=com.ahun.android&hl=en_US
    
    Ahun - Apps on Google Play
    ...
    # Ahun
    ...
    [Prime Maven Engineering PLC](https://play.google.com/store/apps/developer?id=Prime+Maven+Engineering+PLC)
    ...
    ## About this app
    ...
    Your one-stop destination for finding**where to go out**and**who to go out with.**
    ...
    ## App support
    ...
    [*public*
    ...
    Website
    ](https://ahun.app)
    ...
    ahun.dev@gmail.com
    ...
    ](https://ahun.app/privacy)
    ...
    About the developer
    ...
    PRIME MAVEN ENGINEERING PLC
    ...
    prime.nahom@gmail.com
    ...
    House No 172, Wereda 02, Kirkos Subcity
    ...
    Addis Ababa 1000
    ...
    853 8884
    
    ## 2. Ahun - Social Commerce | Portfolio
    URL: https://habib-mohammed.webflow.io/projects/ahun-social-commerce
    
    Ahun - Social Commerce | Portfolio
    
    PROJECT
    
    # Ahun - Social Commerce
    
    outcomes
    
    https://ahun.app
    
    UI Design
    
    Development
    
    Testing & UX
    
    Project Brief
    
    Ahun App is a social platform with 100K+ users that enables them to share their experiences, connect with like-minded individuals, and discover new places and events. Users can post about their favorite places, events, and lifestyle, while also meeting new people who share similar interests. The app also provides features such as ticket purchases, reservations, notifications for discounts and coupons, and fast and reliable delivery services from various businesses. Overall, Ahun App aims to create a vibrant and engaging community for users to explore and enjoy. My role is founder and CTO.
    
    ✅ Flutter
    
    ✅ Typescript
    
    ✅ Node.js
    
    ✅ Express.js
    
    ✅ Redis
    
    ✅ Adobe XD
    
    ✅ AWS
    
    ✅ Google Cloud Platform
    
    ✅ Firebase
    
    ✅ Docker
    
    ✅ AWS Codedeploy
    
    ✅ CodeMagic
    
    ✅ Bitbucket Pipeline
    
    ✅ Git
    
    ✅ Stripe/Paypal Payment
    
    ✅ Adaptive Video Stream (HLS)
    
    ✅ Map & Geolocation
    
    ✅ Rest API Integration
    
    ✅ Socket IO Chat
    
    ✅ Rabbit MQ
    
    CONTACT ME
    
    ## Got a Project? Lets Talk!
    
    hello@nero.com
    
    Get in touch
    
    About Work Service Contact
    
    ## 3. Āhau | Whānau Platform for Whakapapa & Data Sovereignty
    URL: https://www.ahau.io/
    
    Āhau | Whānau Platform for Whakapapa & Data Sovereignty
    
    # Your connectionsYour storiesYour identity
    
    Keep track of whānau whakapapa information, preserve and share cultural records and narratives, own and control whānau data and servers, and build a stronger sense of whānau, community and identity.
    
    Get started Learn more
    
    ## Āhau brings whānau together
    
    Āhau is a Whānau Data Platform that helps whānau-based communities (whānau, hapū, Iwi) capture, preserve, and share important information and histories into secure, whānau managed databases and servers.
    
    ### Whakapapa Records
    
    Maintain whānau and whenua connections through our collaborative whakapapa record management tool.
    
    ### Tribal Registries
    
    Record and maintain up to date whanau information with whakapapa linked tribal registries.
    
    ### Data Sovereignty
    
    All data is collected, stored and shared using your own personal devices and your whānau connections.
    
    ### Cultural Archiving
    
    Capture, preserve and share cultural heritage, histories and narratives all stored in whānau owned and managed archives.
    
    Get started Learn more
    
    Get started with Āhau today
    
    ## Āhau is completely free to use
    
    Whether you want to create and archive for your Iwi and record the oral histories of your people, or whether you want a private archive to record your life story for your future grandchildren to read. Thanks to our funders, Āhau is free for you and your whole whānau to use.
    
    AVAILABLE NOW ON WINDOWS, MAC, AND LINUX
    
    ## Kōrero Mai! Get in touch!
    
    Want to learn more about using Āhau? Check out our documentation.You can also connect directly with our team.
    
    Ngā mihi! We have received your enquiry and will respond in the next 2 business days.
    
    Oops! Something went wrong while submitting the form.
    
    Product
    
    Company
    
    Social
    
    Copyright © Āhau 2025 - All Rights Reserved.
    
    ## 4. 
    URL: https://www.ahuna.io/en/
    
    ## Ahuna
    
    ## How does your home payment break down?
    
    Understanding your loan payments will help you understand what type of loan you can afford. And how much you'll be paying for it!
    
    Down Payment
    
    Price
    
    Years
    
    Apr
    
    Home Payment
    
    $1.00
    
    Year: 0 Month: January
    
    Use the slider to see how much each monthly payment would go towards interest and principle. Also, see how much you have left on your payment!
    
    These numbers may not be accurate and are meant to be an approximation. Please speak with your lender or review your contract for exact numbers.
    
    Terms Privacy About
    
    ## 5. ahun Abscheider Haubenspülmaschine Umweltservice Naturschutz Spülmobil Verleih Geschirrmobil Mieten
    URL: http://www.ahun.de/
    
    ahun Abscheider Haubenspülmaschine Umweltservice Naturschutz Spülmobil Verleih Geschirrmobil Mieten
    
    # AHUN.DEAbscheider Haubenspülmaschine Umweltservice NaturschutzAHUN - A HUN - AH UN - AHU N - A-HUN - AHUN
    
    ## Abscheider Bandspülmaschine Behälterspülmaschine Besteck Besteckpoliermaschine Besteckspülmaschine Besteckverleih Cateringausstattung Cateringservice Cateringverleih Dienstleistungen Eventausstattung Eventservice Eventverleih Fettabscheider Frontladerspülmaschine Gerätespülmaschine Geräteverleih Geschirr-Mobil Geschirrmobil Geschirrmobile Geschirrspülmobil Geschirrverleih Glas Gläser Gläserspülmaschine Gläserverleih Haubenspülmaschine Hebeanlage Kistenspülmaschine Korbspülmaschine Korbtransportspülmaschine Leihgeräte Lieferservice Maschinenverleih Messeservice Messeverleih Osmoseanlage Partyservice Partyverleih Porzellan Porzellanverleih Reinigungsservice Reinigungstechnik Spüldienst Spül-Mobil Spülmobil Spülmobile Spülservice Mobile Spültechnik Tablettspülmaschine Topfspülmaschine Trinkwasserschlauch Trinkwassertechnik Umweltschutz Umweltservice Veranstaltungsservice Verleih Verleihcenter Wasseraufbereitung Wasserenthärtung
    
    ### AHU N ist gut, AHUN.DE ist besser, finde AHUN.DE sehr gut.
    
    #### Dies ist eine Private Webdomain für AHUN.DE
    
    ##### Mail zu dieser Privaten Webseite: info@ahun.deImpressum Guter Link Verleihcenter
    
    ## 6. AHVAN.IO – Engineering Consulting, ISO Certification, Cloud, Web Development & IoT Solutions
    URL: https://www.ahvan.io/
    
    AHVAN.IO – Engineering Consulting, ISO Certification, Cloud, Web Development & IoT Solutions
    
    # Operations ImprovementTo Industrial Engineering
    
    From critical Improvement to smart Industrial Solutions— AHVAN.IO ensures every operation runs stronger, safer & faster.
    
    ## From Factory Floor to Global Standards — We Engineer Success
    
    - ISO Certification & Audits that Improve Profitability
    - Engineering Support from Concept to Commissioning
    - Lean Manufacturing & Operational Efficiency Consulting
    - Supplier Compliance + QA/QC Assurance & Traceability
    - On-Time Material & Parts Delivery for ZERO Downtime
    
    ## TRUSTED CLIENTS
    
    ## Smart Technology Solutions for Modern Industry
    
    - Custom Web Platforms engineered for performance & scale
    - Enterprise Cloud Architecture with secure data operations
    - Brand Identity & Digital Experience Design
    - Industrial Product Design with precision modeling
    - 24/7 Technical Support & Managed IT Operations
    
    ## Our Global Trust Network
    
    ### Industry Partners
    
    ### Technology Partners
    
    ### Media Partners
    
    ## 7. 52funny/ahunet
    URL: https://github.com/52funny/ahunet
    
    # 52funny/ahunet
    
    ahu network auth
    
    - Stars: 4
    - Forks: 0
    - Watchers: 4
    - Open issues: 0
    - Default branch: master
    - Created: 2022-09-29T11:20:43Z
    
    ## Languages
    
    - Batchfile
    - Go
    
    ## Top Contributors
    
    - 52funny (4 contributions)
    
    ---
    
    ## README
    
    # AHUNET AUTH
    
    **make sure you have go environment**
    
    ## Install
    
    ### Go Install
    
    ```
    go install github.com/52funny/ahunet
    ```
    
    ### Binary Install
    
    Download the binary file and put it under the $PATH folder
    
    ## Usage
    
    ![usage](img/demo.png)
    
    Then you can type command like this.
    
    ```bash
    ahunet -u xxx -p xxx
    ```
    
    ### Linux
    
    If you are linux system, you can do this.
    
    ```
    alias ahunet="ahunet -u xxx -p xxx"
    ahunet
    ```
    
    ### Windows
    
    If you are windows, you can change the `auth.bat` file to modifying account and password.
    
    If you want to boot up automatically, refer to the following link. Put the bat file into the `Startup` folder.
    
    [add an app to run automatically at startup in windows](https://support.microsoft.com/en-us/windows/add-an-app-to-run-automatically-at-startup-in-windows-10-150da165-dcd9-7230-517b-cf3c295d89dd)
    
    ## 8. Ahan (@ahan-io)
    URL: https://github.com/ahan-io
    
    # User: Ahan (@ahan-io)
    
    Programmer @ByteDance
    
    - Location: China
    - Followers: 9
    - Following: 3
    - Public Repos: 10
    - Joined: 2015-01-26
    
    ---
    
    ## Recent Activity (Apr 3, 2026 - Apr 3, 2026)
    
    - Commits: 100%
    
    Contributed to: ahan-io/ahan-io.github.io
    
    ---
    
    ## Top Repositories
    
    | Repository | Description | Stars | Language | Last Updated |
    | --- | --- | --- | --- | --- |
    | samplec | | 4 | C | 2020-02-07 |
    | Algorithm | | 2 | Java | 2016-08-21 |
    | zookeeper | Mirror of Apache Hadoop ZooKeeper | 2 | Java | 2020-02-25 |
    | ahan-io.github.io | | 0 | HTML | 2026-04-03 |
    | blog-comments | | 0 | | 2024-02-10 |
    | demos | A personal collection of technical demos and experiments across multiple languages. | 0 | Python | 2026-02-16 |
    
    ## 9. Meet the Āhau Team | Supporting Whānau, Hapū & Iwi
    URL: https://ahau.io/about
    
    Meet the Āhau Team | Supporting Whānau, Hapū & Iwi
    
    # The team behind Āhau
    
    Ehara taku toa i te toa takitahi, engari taku toa i te toa taki tini
    
    ## A Message from our Kaihautu - CEO
    
    As the CEO of Āhau, our team is humbled to be able to provide this resource to our Tribal and Inigenous partners, whānau, hapū and Iwi organisations who are about to embark on this journey with Āhau.We acknowledge the responsibility you have undertaken to prepare, develop and build an archive to store and protect your whakapapa (genealogy) and sacred mātauranga that will benefit your mokopuna and generations to come. We look forward to the journey ahead as well as the opportunity to continue to be of service to you.‍Kaye-Maree D… (100 chars truncated)
    … (51 lines truncated)
    <truncation_notice>
    Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/f826e245/content.txt
    </truncation_notice>
  25. OutputHTTP request failed with status: 429
    HTTP request failed with status: 429
  26. Devin
    Thinking

    Looking at the certificate transparency logs, ahun.io has zero SSL/TLS certificates ever issued for it—even domains that briefly existed typically have at least one Let's Encrypt cert logged, so this is a strong indicator the domain has never actually hosted an HTTPS service. The subdomain query returned a server error, which isn't conclusive on its own. A quoted web search for "ahun.io" returns no actual results for the domain itself—every hit is a near-neighbor like ahun.app or ahau.io, which means search engines don't recognize ahun.io as a real indexed page and fall back to similar terms. The Wayback Machine got rate-limited on retry, but earlier CDX queries confirmed zero archive captures with an empty result set. I should retry the crt.sh subdomain query and Wayback CDX once more to be thorough, then provide the final answer.

    webfetch(url: https://crt.sh/?q=%25.ahun.io&output=jso…)
    {
      "url": "https://crt.sh/?q=%25.ahun.io&output=json"
    }
    webfetch(url: http://web.archive.org/cdx/search/cdx?ur…)
    {
      "url": "http://web.archive.org/cdx/search/cdx?url=*.ahun.io&output=json&limit=500"
    }
    In 2Out 698Cache 37,596TTFT 18,044mstool_calls
  27. OutputHTTP request failed with status: 502
    HTTP request failed with status: 502
  28. OutputHTTP request failed with status: 429
    HTTP request failed with status: 429
  29. Devin
    Thinking

    I've got enough evidence from the empty results across multiple sources—two clean CDX queries and the crt.sh search both came back empty. The rate-limiting errors don't change that conclusion, so I'll provide the final answer now rather than retry further.

    I've now confirmed the picture from multiple independent sources. Here's everything I could establish about the literal ahun.io.

    Verdict: ahun.io has no recorded history — it has effectively never existed as a live website

    I checked it from every angle I have access to, and every signal is negative:

    CheckSourceResult
    Domain registrationwhois.nic.io (official .io registry)"Domain not found" — not currently registered
    DNS resolutiondig / hostNXDOMAIN — no A, NS, or any records; doesn't resolve
    Web archive (exact)Wayback Machine CDX API0 captures (empty result set)
    Web archive (all subdomains)Wayback CDX matchType=domain0 captures
    TLS/SSL certificatesCertificate Transparency logs (crt.sh)0 certificates ever issued for ahun.io
    Search enginesquoted "ahun.io" queryNo matching page — engines fall back to look-alikes

    What this means

    • Never registered (or only privately, never publicly used). The .io registry has no record of it today, and there's no historical footprint.
    • Never hosted a site. Certificate Transparency is the strongest tell here — virtually any domain that ever served HTTPS (even briefly, even via Let's Encrypt) leaves a logged certificate. ahun.io has zero, and the Wayback Machine likewise never archived a single page. Together these mean it almost certainly never ran a public website or web app.
    • No indexed content. A quoted search for "ahun.io" returns nothing for the domain itself; every "result" is a near-neighbor: ahun.app, ahau.io, ahuna.io, ahun.de, ahvan.io, plus GitHub handles like ahunet/ahan-io. That's the classic pattern of a string that matches no real site.

    So there's no founding story, no owner, no product history to recover for ahun.io — there's simply nothing there. It's an available/unused domain.

    A caveat on what I can't see

    A few things are outside what public tools expose: any past registration that was privacy-protected and never hosted a site, or activity on private DNS / intranet use. Historical-WHOIS databases (e.g., DomainTools/SecurityTrails) sometimes retain records of a domain that was registered-then-dropped, but they're behind paywalls/API keys I don't have here — and the total absence of any certificate or archive capture makes it very unlikely such a registration ever amounted to a live service.

    If it'd help, I can:

    • Re-run the checks against a paid historical-WHOIS/passive-DNS API if you have a key, or
    • Pivot to the real, documented Ahun company at ahun.app (the Ethiopian social-commerce app) — I already gathered a solid history on it and can go deeper.
    In 2Out 1,246Cache 42,885TTFT 5,135ms
  30. You

    can you see if it was ever bought or is that not possible?

  31. Devin
    Thinking

    The user is asking about the historical ownership of ahun.io — whether it was ever registered before. Since the domain is currently unregistered, I need to look into past registration records using free sources like the Wayback Machine for archived WHOIS data and checking if any historical domain tracking services have records of previous ownership. I'll try querying viewdns.info for domain history, who.is for current WHOIS data, and check the Wayback Machine for archived WHOIS pages—running these in parallel to see what surfaces.

    Good question — that's a different thing from "is it registered now." Whether a domain was ever bought in the past requires historical WHOIS / passive-DNS data, not the live registry. It's partially possible: some history is public/free, but the most complete records sit behind paid services (DomainTools, WhoisXML, SecurityTrails). Let me try the free sources.

    webfetch(url: https://viewdns.info/iphistory/?domain=a…)
    {
      "url": "https://viewdns.info/iphistory/?domain=ahun.io"
    }
    webfetch(url: https://who.is/whois/ahun.io)
    {
      "url": "https://who.is/whois/ahun.io"
    }
    webfetch(url: https://rdap.nic.io/domain/ahun.io)
    {
      "url": "https://rdap.nic.io/domain/ahun.io"
    }
    In 2Out 1,018Cache 43,665TTFT 5,089mstool_calls
  32. OutputHTTP request failed with status: 403
    HTTP request failed with status: 403
  33. Output# Web Content from https://who.is/whois/ahun.io
    # Web Content from https://who.is/whois/ahun.io
    
    [[who.is]][1]
    [WHOIS][2][RDAP][3][DNS][4][Uptime][5][Domain Events][6][Website Monitoring][7][Login][8]
    
    # WHOIS Domain Lookup
    
    Look up registration details, contacts, and nameservers for any domain name
    
    Enter a domain name...
    Search
    
    # ahun.io
    
    WHOIS Information
    
    [Whois][9][RDAP][10][DNS Records][11][Uptime][12][Diagnostics][13][History][14][Hide Contact
    Info][15]
    Refresh Data
    
    ## WHOIS Lookup Results
    
    No WHOIS data was found for ahun.io
    
    This could be because:
    * The domain doesn't exist
    * The WHOIS server is temporarily unavailable
    * The domain's registry doesn't provide WHOIS data
    
    ## About WHOIS
    
    WHOIS is a query and response protocol used for querying databases that store registered users of
    Internet resources, including domain names and IP addresses.
    
    The protocol provides essential information about domain ownership, administrative contacts, and
    technical details that are invaluable for domain management and security purposes.
    
    [Overview][16][FAQ][17][Terms][18][Contact][19]
    
    © 2026 who.is All rights reserved.
    
    [1]: /
    [2]: /whois
    [3]: /rdap
    [4]: /dns
    [5]: /uptime
    [6]: /domains/events
    [7]: /website-monitoring
    [8]: #
    [9]: /whois/ahun.io
    [10]: /rdap/ahun.io
    [11]: /dns/ahun.io
    [12]: /uptime/ahun.io
    [13]: /tools/ahun.io
    [14]: /history/ahun.io
    [15]: /privacy/ahun.io
    [16]: /overview
    [17]: /faq
    [18]: /terms
    [19]: /contact
    
  34. OutputFailed to fetch URL 'https://rdap.nic.io/domain/ahun.io'.
    Failed to fetch URL 'https://rdap.nic.io/domain/ahun.io'.
  35. Devin
    Thinking

    ViewDNS is blocking me with anti-bot protection, and who.is shows no WHOIS data for ahun.io but has a history page I can check. The RDAP lookup failed, so I need to find the correct RDAP endpoint—either through rdap.org or the IANA bootstrap service, since .io domains use https://rdap.nic.io/domain/. Let me try fetching the who.is history page, the RDAP data via rdap.org, and whoxy's free WHOIS history view. SecurityTrails also has historical data but requires login. The command-line whois already returned no results at whois.nic.io, so I'll focus on these web-based sources instead.

    who.is confirms "No WHOIS data found" and offers a History page. Let me pull that history view and a couple more historical sources.

    webfetch(url: https://who.is/history/ahun.io)
    {
      "url": "https://who.is/history/ahun.io"
    }
    webfetch(url: https://www.whoxy.com/ahun.io)
    {
      "url": "https://www.whoxy.com/ahun.io"
    }
    webfetch(url: https://rdap.org/domain/ahun.io)
    {
      "url": "https://rdap.org/domain/ahun.io"
    }
    In 2Out 610Cache 44,930TTFT 5,847mstool_calls
  36. Output# Web Content from https://who.is/history/ahun.io
    # Web Content from https://who.is/history/ahun.io
    
    [[who.is]][1]
    [WHOIS][2][RDAP][3][DNS][4][Uptime][5][Domain Events][6][Website Monitoring][7][Login][8]
    
    # Domain History Archive
    
    See how many historical WHOIS/RDAP snapshots we hold for any domain — and unlock the full record.
    
    Enter a domain name...
    Search
    
    # ahun.io
    
    Domain History
    
    [Whois][9][RDAP][10][DNS Records][11][Uptime][12][Diagnostics][13][History][14][Hide Contact
    Info][15]
    
    ## No archived history yet for ahun.io
    
    We don't currently hold historical snapshots for this domain in our archive. Try another domain, or
    check back later as our archive grows.
    
    ## The full Domain History Report
    
    A complete, normalized history of the domain: every snapshot we've recorded, turned into clean
    structured fields. Our archive goes back to 2007, so for many domains it captures registrant contact
    details no longer visible in current WHOIS.
    
    What each snapshot in the report covers:
    * Registrar — name, IANA ID, and URL
    * Key dates — created, last updated, and expiry
    * Nameservers, status codes, and DNSSEC
    * Contacts captured separately for each role — registrant, admin, tech, billing, and abuse — with
      name, organization, email, phone, and postal address where present
    * A deduplicated record-update timeline showing when each change occurred
    
    Delivered as a .zip via a secure email link (valid 24 hours), containing:
    * report.pdf — a readable report: the record-update timeline, followed by the full details of every
      snapshot
    * snapshots.jsonl — one structured JSON record per snapshot, ready for spreadsheets or analysis
    
    Example — the timeline in report.pdf for who.is:
    
    2002-07-09   Network Solutions, LLC
      Nameservers: ns1.who.is, ns2.who.is
      Status: clienttransferprohibited
      Created 1995-02-09   Expires 2026-02-08
      Registrant: who.is · Domain Administrator · admin@who.is · +1.555-0100 · Jacksonville, FL, US
    
    Example — one record in snapshots.jsonl for who.is:
    
    {
      "snapshot_date": "2018-03-14",
      "registrar": "Network Solutions, LLC",
      "registrar_iana_id": "2",
      "registrar_url": "http://www.networksolutions.com",
      "created": "1995-02-09T05:00:00Z",
      "updated": "2018-02-08T11:42:01Z",
      "expires": "2026-02-08T05:00:00Z",
      "name_servers": ["ns1.who.is", "ns2.who.is"],
      "statuses": ["clienttransferprohibited"],
      "registrant": {
        "name": "Domain Administrator",
        "org": "who.is",
        "email": "admin@who.is",
        "phone": "+1.5550100",
        "city": "Jacksonville", "state": "FL", "country": "US"
      },
      "admin": { "name": "Domain Administrator", "email": "admin@who.is" },
      "tech": { "name": "Domain Administrator", "email": "admin@who.is" }
    }
    
    Examples are illustrative; field availability varies by snapshot and era.
    
    We strive to protect privacy and honor applicable privacy laws wherever they apply. If you have a
    request to remove or delete data, please [visit our contact page][16] to get in touch.
    
    [Overview][17][FAQ][18][Terms][19][Contact][20]
    
    © 2026 who.is All rights reserved.
    
    [1]: /
    [2]: /whois
    [3]: /rdap
    [4]: /dns
    [5]: /uptime
    [6]: /domains/events
    [7]: /website-monitoring
    [8]: #
    [9]: /whois/ahun.io
    [10]: /rdap/ahun.io
    [11]: /dns/ahun.io
    [12]: /uptime/ahun.io
    [13]: /tools/ahun.io
    [14]: /history/ahun.io
    [15]: /privacy/ahun.io
    [16]: /contact
    [17]: /overview
    [18]: /faq
    [19]: /terms
    [20]: /contact
    
  37. Output# Web Content from https://www.whoxy.com/ahun.io
    # Web Content from https://www.whoxy.com/ahun.io
    
    Our [database][1] now contains whois records of **700 Million** (700,095,177) domain names.
    [Login][2] / [Password][3] / [Signup][4]
    [[Whoxy.com]][5]
      Whois Lookup   Whois History   Owner Name   Company Name   Email Address   Domain Keyword SEARCH
    * [Home][6]
    * [Whois Lookup][7]
    * [Our Services][8]
      * [Whois Lookup API][9]
        * [Demo][10]
      * [Whois History API][11]
        * [Demo][12]
      * [Reverse Whois API][13]
        * [Demo][14]
      * [Bulk Whois Lookup][15]
      * [Whois Database Download][16]
      * [Newly Registered Domains][17]
      * [Dropped Deleted Domains][18]
      * [Expiring Domain Names][19]
      * [Free Whois API Program][20]
      * [Whoxy.com Archive][21]
    * [Pricing][22]
    * [Contact Us][23]
    [Low Price Guarantee]
    
    ## Whois API / Whois History / Reverse Whois
    
    Our [WHOIS API][24] returns consistent and well-structured WHOIS data in XML & JSON format. Returned
    data contain parsed WHOIS fields that can be easily understood by your application. Along with WHOIS
    API, we also offer [WHOIS History API][25] and [Reverse WHOIS API][26].
    
    [Powered by Amazon Web Services] With support for [1596 TLDs][27], our cloud-based API lets you
    quickly access any domain's WHOIS data through [Bulk Whois Lookup][28], [Newly Registered
    Domains][29], [Dropped Deleted Domains][30], [Expiring Domains][31] and [Whois Database
    Download][32].
    [Live Demo] [Whois Lookup API][33] [Whois History API][34] [Reverse Whois API][35]
    
    ────────────────────────────────────┬───────┬──────────────
    Our Services                        │Price  │Order         
    ────────────────────────────────────┼───────┼──────────────
    1000 WHOIS Lookup API Queries       │$2     │[[Details]][36
                                        │       │]             
    ────────────────────────────────────┼───────┼──────────────
    1000 WHOIS History API Queries      │$5     │[[Details]][37
                                        │       │]             
    ────────────────────────────────────┼───────┼──────────────
    1000 Reverse WHOIS API Queries      │$10    │[[Details]][38
                                        │       │]             
    ────────────────────────────────────┼───────┼──────────────
    Newly Registered Domains Database   │$495   │[[Details]][39
                                        │       │]             
    ────────────────────────────────────┼───────┼──────────────
    Whois Database [700 Million Domains]│$10,000│[[Details]][40
                                        │       │]             
    ────────────────────────────────────┴───────┴──────────────
    Free Account Signup  •  Zero Monthly Fee  •  Pay As You Go
    
    # Whois Lookup of ahun.io
    
    Please click on the below button to check whois of this domain name.
    This is necessary to stop automated bots and harvesters from misusing our system.
    
    I'm not a Robot
    
    If you are a robot, kindly use our [Whois Lookup API][41] for automated access to our entire
    database.
    
    [Home][42] [Pricing][43] [Whois Database][44] [Terms of Service][45] [Privacy Policy][46] [Contact
    Us][47]
    2012-2026 © Whoxy.com • All Rights Reserved
    
    [1]: whois-database/
    [2]: login.php
    [3]: password.php
    [4]: signup.php
    [5]: https://www.whoxy.com/
    [6]: https://www.whoxy.com/
    [7]: whois-lookup/
    [8]: #
    [9]: https://www.whoxy.com/#api
    [10]: whois-lookup/demo.php
    [11]: whois-history/
    [12]: whois-history/demo.php
    [13]: reverse-whois/
    [14]: reverse-whois/demo.php
    [15]: bulk-whois-lookup/
    [16]: whois-database/
    [17]: newly-registered-domains/
    [18]: dropped-deleted-domains/
    [19]: expiring-domain-names/
    [20]: free-whois-api/
    [21]: archive.php
    [22]: pricing.php
    [23]: contact.php
    [24]: #api
    [25]: whois-history/
    [26]: reverse-whois/
    [27]: whois-database/tld.php
    [28]: bulk-whois-lookup/
    [29]: newly-registered-domains/
    [30]: dropped-deleted-domains/
    [31]: expiring-domain-names/
    [32]: whois-database/
    [33]: whois-lookup/demo.php
    [34]: whois-history/demo.php
    [35]: reverse-whois/demo.php
    [36]: pricing.php#whois
    [37]: pricing.php#history
    [38]: pricing.php#reverse
    [39]: newly-registered-domains/
    [40]: whois-database/
    [41]: https://www.whoxy.com/#api
    [42]: https://www.whoxy.com/
    [43]: pricing.php
    [44]: whois-database/
    [45]: terms.php
    [46]: privacy.php
    [47]: contact.php
    
  38. OutputHTTP request failed with status: 404
    HTTP request failed with status: 404
  39. Devin
    Thinking

    The who.is History Archive shows no snapshots of ahun.io despite records going back to 2007, meaning there's no historical WHOIS data available there. Whoxy's WHOIS History API would be the authoritative source but it's behind a captcha and paid access, so I can't retrieve the count without solving that. I'm checking rdap.org next... Actually, RDAP returned a 404 for the domain, which confirms it's not currently registered. Looking at all the evidence together—no Certificate Transparency records, no Wayback Machine captures, no who.is snapshots since 2007, RDAP 404, and current WHOIS showing not found—it strongly suggests the domain was never meaningfully registered or used. I can give a partial answer based on what the free sources show, but I should be honest that the definitive paid databases (DomainTools, Whoxy's history API, SecurityTrails) would be needed to completely rule out a brief past registration. I'll write up a clear response explaining what I found and how to get a definitive answer.

    It's partly answerable, and I dug into the historical sources. Here's where it lands:

    Was ahun.io ever bought? — Almost certainly never, but not 100% provable for free

    What "checking past ownership" requires: historical WHOIS / passive-DNS archives (snapshots taken over time), since the live registry only shows the current state. I queried the free ones:

    Historical sourceWhat it coversResult for ahun.io
    who.is Domain History ArchiveWHOIS/RDAP snapshots back to 2007"No archived history" — zero snapshots ever
    RDAP (rdap.org)Registry registration record404 — domain not registered
    Certificate Transparency (crt.sh)Every TLS cert ever issued0 certs ever
    Wayback MachineArchived pages, incl. parked-domain pages0 captures ever
    Whoxy (700M-domain WHOIS-history DB)Past registrationsGated behind captcha/paid API — couldn't read the count

    Interpretation: Five independent angles converge on the same answer. who.is keeping snapshots since 2007 and having nothing is the strongest historical signal — if the domain had been registered at any point, it would very likely have at least one WHOIS snapshot, a parked-page archive, or a certificate. There are none. So the evidence strongly says ahun.io was never bought/registered (or if it ever was, it was so briefly and passively that it left no trace anywhere).

    The honest limitation

    I cannot give a 100% guarantee for free. The truly authoritative historical-WHOIS databases — DomainTools, WhoisXML/WhoisXMLAPI, SecurityTrails, and Whoxy's WHOIS History API — are paywalled or need an API key I don't have. A short-lived registration that was privacy-protected and never hosted anything could in theory escape all the free sources I can reach (though it'd still usually show up in those paid archives).

    To get a definitive yes/no, the cleanest options are:

    • A Whoxy WHOIS History API query (~free signup, pennies per lookup) — it'll return a snapshot count and dates if it was ever registered.
    • A DomainTools "Whois History" lookup (paid).

    If you have a key for any of those, give it to me and I'll run the exact query and settle it.

    In 2Out 1,376Cache 46,708TTFT 6,782ms
  40. You

    like i have it in my list of domains, but idk if i ever bought it, alr checked email and stuff

  41. Devin
    Thinking

    The user has ahun.io listed in their domains but isn't sure if they actually purchased it. Looking at the registry data, ahun.io shows as unregistered—it returns NXDOMAIN with no RDAP record, which means nobody currently owns it, including them. So if they have it in their list, it's likely either a domain they considered but never bought, or it expired and is now available again. To

    In 2Out 0Cache 50,650TTFT 11,062ms