Spaces:
Sleeping
Sleeping
Commit ·
4b55bd6
0
Parent(s):
add all files
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .dockerignore +13 -0
- .env.example +3 -0
- .gitignore +2 -0
- Dockerfile +31 -0
- README.md +107 -0
- app/__pycache__/engine.cpython-313.pyc +0 -0
- app/__pycache__/main.cpython-313.pyc +0 -0
- app/engine.py +46 -0
- app/main.py +30 -0
- data/about-us.md +97 -0
- data/blogs.md +16 -0
- data/cleaned/about-us.md +84 -0
- data/cleaned/blogs.md +3 -0
- data/cleaned/committee.md +4 -0
- data/cleaned/contact-us.md +8 -0
- data/cleaned/event_15%20DAYS%20OF%20LEARNING.md +39 -0
- data/cleaned/event_CODE-JAM.md +25 -0
- data/cleaned/event_CYBER%20SHIELD.md +30 -0
- data/cleaned/event_DATAVERSE.md +22 -0
- data/cleaned/event_Dronacharya%202026.md +23 -0
- data/cleaned/event_Energy%20Hackathon.md +19 -0
- data/cleaned/event_Flashmob.md +13 -0
- data/cleaned/event_GIRLS%20LOCUS%20CUP.md +23 -0
- data/cleaned/event_GIRLS-TO-CODE.md +21 -0
- data/cleaned/event_HACK-A-WEEK.md +22 -0
- data/cleaned/event_HARDWARE-FELLOWSHIP.md +22 -0
- data/cleaned/event_LOCUS%20Exhibition.md +15 -0
- data/cleaned/event_Robo%20Line%20Dash%202026.md +21 -0
- data/cleaned/event_RoboPop%202026.md +21 -0
- data/cleaned/event_RoboSoccer%202026.md +21 -0
- data/cleaned/event_RoboWarz%202026.md +21 -0
- data/cleaned/event_Walkathon.md +13 -0
- data/cleaned/events.md +4 -0
- data/cleaned/index.md +15 -0
- data/cleaned/medium.com_zerone-magazine_tagged_blogging-competition.md +120 -0
- data/cleaned/medium.com_zerone-magazine_tagged_technical-competition.md +118 -0
- data/cleaned/past-locus.md +3 -0
- data/cleaned/raw_web_content.md +0 -0
- data/cleaned/sponsors.md +193 -0
- data/cleaned/teams.md +133 -0
- data/cleaned/zerone.md +102 -0
- data/committee.md +4 -0
- data/contact-us.md +21 -0
- data/event_15%20DAYS%20OF%20LEARNING.md +54 -0
- data/event_CODE-JAM.md +40 -0
- data/event_CYBER%20SHIELD.md +45 -0
- data/event_DATAVERSE.md +37 -0
- data/event_Dronacharya%202026.md +38 -0
- data/event_Energy%20Hackathon.md +33 -0
- data/event_Flashmob.md +27 -0
.dockerignore
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
venv/
|
| 2 |
+
.env
|
| 3 |
+
.git/
|
| 4 |
+
__pycache__/
|
| 5 |
+
*.pyc
|
| 6 |
+
*.pyo
|
| 7 |
+
*.pyd
|
| 8 |
+
.db
|
| 9 |
+
.DS_Store
|
| 10 |
+
data/
|
| 11 |
+
!data/cleaned/
|
| 12 |
+
scripts/
|
| 13 |
+
tests/
|
.env.example
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
PINECONE_API_KEY="jhkjsfhkjhfsdkjhfsd"
|
| 2 |
+
PINECONE_INDEX_NAME=locus-rag
|
| 3 |
+
MISTRAL_API_KEY="hkjfhkjshdfkjh"
|
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
venv/
|
| 2 |
+
.env
|
Dockerfile
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use an official Python runtime as a parent image
|
| 2 |
+
FROM python:3.13-slim
|
| 3 |
+
|
| 4 |
+
# Set the working directory in the container
|
| 5 |
+
WORKDIR /app
|
| 6 |
+
|
| 7 |
+
# Install system dependencies
|
| 8 |
+
RUN apt-get update && apt-get install -y \
|
| 9 |
+
build-essential \
|
| 10 |
+
curl \
|
| 11 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
+
|
| 13 |
+
# Copy the requirements file into the container
|
| 14 |
+
COPY requirements.txt .
|
| 15 |
+
|
| 16 |
+
# Install any needed packages specified in requirements.txt
|
| 17 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 18 |
+
|
| 19 |
+
# Copy the rest of the application code into the container
|
| 20 |
+
COPY . .
|
| 21 |
+
|
| 22 |
+
# Expose the port the app runs on
|
| 23 |
+
EXPOSE 8000
|
| 24 |
+
|
| 25 |
+
# Define environment variables (placeholders, should be provided at runtime)
|
| 26 |
+
ENV PINECONE_API_KEY=""
|
| 27 |
+
ENV PINECONE_INDEX_NAME="locus-rag"
|
| 28 |
+
ENV MISTRAL_API_KEY=""
|
| 29 |
+
|
| 30 |
+
# Run the application
|
| 31 |
+
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|
README.md
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Locus RAG Bot
|
| 2 |
+
|
| 3 |
+
A RAG-based question-answering bot designed to provide information about LOCUS 2026 and past events. It uses web-crawled data, Medium articles, and local embeddings to answer user queries accurately.
|
| 4 |
+
|
| 5 |
+
## Features
|
| 6 |
+
- **Data Ingestion**: Crawls `locus.com.np` and related Medium articles.
|
| 7 |
+
- **Data Cleaning**: Removes boilerplate (navbars, footers) for better RAG performance.
|
| 8 |
+
- **Local Embeddings**: Uses `Sentence Transformers` (`all-MiniLM-L6-v2`) for free, local embedding generation.
|
| 9 |
+
- **Mistral AI**: Uses Mistral AI's large model for high-quality answer generation.
|
| 10 |
+
- **Vector Store**: Powered by Pinecone for fast and scalable retrieval.
|
| 11 |
+
- **FastAPI**: Clean and efficient API for querying the bot.
|
| 12 |
+
|
| 13 |
+
## Project Structure
|
| 14 |
+
```
|
| 15 |
+
locus-rag-bot/
|
| 16 |
+
├── app/ # FastAPI backend + RAG logic
|
| 17 |
+
│ ├── engine.py # Core RAG engine (LangChain + Pinecone + Mistral)
|
| 18 |
+
│ └── main.py # FastAPI application
|
| 19 |
+
├── data/ # Raw & cleaned markdown data
|
| 20 |
+
├── scripts/ # Utility scripts
|
| 21 |
+
│ ├── ingest.py # Crawls website content
|
| 22 |
+
│ ├── clean_data.py # Cleans markdown boilerplate
|
| 23 |
+
│ └── index_data.py # Indexes data to Pinecone
|
| 24 |
+
├── .env.example # Template for environment variables
|
| 25 |
+
├── Dockerfile # For containerized deployment
|
| 26 |
+
└── requirements.txt # Project dependencies
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
## Setup
|
| 30 |
+
|
| 31 |
+
### 1. Local Environment
|
| 32 |
+
```bash
|
| 33 |
+
# Create and activate virtual environment
|
| 34 |
+
python3 -m venv venv
|
| 35 |
+
source venv/bin/activate
|
| 36 |
+
|
| 37 |
+
# Install dependencies
|
| 38 |
+
pip install -r requirements.txt
|
| 39 |
+
```
|
| 40 |
+
|
| 41 |
+
### 2. Configuration
|
| 42 |
+
Copy `.env.example` to `.env` and fill in your keys:
|
| 43 |
+
```bash
|
| 44 |
+
cp .env.example .env
|
| 45 |
+
```
|
| 46 |
+
Required keys:
|
| 47 |
+
- `MISTRAL_API_KEY`: Get from [Mistral AI Console](https://console.mistral.ai/).
|
| 48 |
+
- `PINECONE_API_KEY`: Get from [Pinecone Dashboard](https://app.pinecone.io/).
|
| 49 |
+
- `PINECONE_INDEX_NAME`: Your Pinecone index name (dimension: 384).
|
| 50 |
+
|
| 51 |
+
## Data Pipeline
|
| 52 |
+
|
| 53 |
+
### 1. Ingest Data
|
| 54 |
+
Crawls the website and saves content to `data/`.
|
| 55 |
+
```bash
|
| 56 |
+
python3 scripts/ingest.py
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
### 2. Clean Data
|
| 60 |
+
Removes boilerplate from the crawled markdown.
|
| 61 |
+
```bash
|
| 62 |
+
python3 scripts/clean_data.py
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
### 3. Index Data
|
| 66 |
+
Generates embeddings and uploads them to Pinecone.
|
| 67 |
+
```bash
|
| 68 |
+
python3 scripts/index_data.py
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
## Running the API
|
| 72 |
+
|
| 73 |
+
### Locally
|
| 74 |
+
```bash
|
| 75 |
+
uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
|
| 76 |
+
```
|
| 77 |
+
The API docs will be available at `http://localhost:8000/docs`.
|
| 78 |
+
|
| 79 |
+
### Using Docker
|
| 80 |
+
```bash
|
| 81 |
+
# Build the image
|
| 82 |
+
docker build -t locus-rag-bot .
|
| 83 |
+
|
| 84 |
+
# Run the container
|
| 85 |
+
docker run -p 8000:8000 --env-file .env locus-rag-bot
|
| 86 |
+
```
|
| 87 |
+
|
| 88 |
+
## API Usage
|
| 89 |
+
|
| 90 |
+
### Health Check
|
| 91 |
+
`GET /health`
|
| 92 |
+
|
| 93 |
+
### Query the Bot
|
| 94 |
+
`POST /query`
|
| 95 |
+
```bash
|
| 96 |
+
curl -X POST "http://localhost:8000/query" \
|
| 97 |
+
-H "Content-Type: application/json" \
|
| 98 |
+
-d '{"question": "What is LOCUS?"}'
|
| 99 |
+
```
|
| 100 |
+
|
| 101 |
+
Response:
|
| 102 |
+
```json
|
| 103 |
+
{
|
| 104 |
+
"answer": "LOCUS is an annual national technological festival organized by students of Pulchowk Campus...",
|
| 105 |
+
"context": ["..."]
|
| 106 |
+
}
|
| 107 |
+
```
|
app/__pycache__/engine.cpython-313.pyc
ADDED
|
Binary file (1.99 kB). View file
|
|
|
app/__pycache__/main.cpython-313.pyc
ADDED
|
Binary file (1.97 kB). View file
|
|
|
app/engine.py
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
from dotenv import load_dotenv
|
| 3 |
+
from langchain_mistralai import ChatMistralAI
|
| 4 |
+
from langchain_huggingface import HuggingFaceEmbeddings
|
| 5 |
+
from langchain_pinecone import PineconeVectorStore
|
| 6 |
+
from langchain_classic.chains import create_retrieval_chain
|
| 7 |
+
from langchain_classic.chains.combine_documents import create_stuff_documents_chain
|
| 8 |
+
from langchain_core.prompts import ChatPromptTemplate
|
| 9 |
+
|
| 10 |
+
load_dotenv()
|
| 11 |
+
|
| 12 |
+
def get_rag_chain():
|
| 13 |
+
index_name = os.getenv("PINECONE_INDEX_NAME", "locus-rag")
|
| 14 |
+
embeddings = HuggingFaceEmbeddings(model_name="all-MiniLM-L6-v2")
|
| 15 |
+
vectorstore = PineconeVectorStore(index_name=index_name, embedding=embeddings)
|
| 16 |
+
|
| 17 |
+
retriever = vectorstore.as_retriever(search_kwargs={"k": 5})
|
| 18 |
+
|
| 19 |
+
llm = ChatMistralAI(model="mistral-large-latest", temperature=0)
|
| 20 |
+
|
| 21 |
+
system_prompt = (
|
| 22 |
+
"You are an assistant for question-answering tasks. "
|
| 23 |
+
"Use the following pieces of retrieved context to answer "
|
| 24 |
+
"the question. If you don't know the answer, say that you "
|
| 25 |
+
"don't know. Use three sentences maximum and keep the "
|
| 26 |
+
"answer concise."
|
| 27 |
+
"\n\n"
|
| 28 |
+
"{context}"
|
| 29 |
+
)
|
| 30 |
+
|
| 31 |
+
prompt = ChatPromptTemplate.from_messages(
|
| 32 |
+
[
|
| 33 |
+
("system", system_prompt),
|
| 34 |
+
("human", "{input}"),
|
| 35 |
+
]
|
| 36 |
+
)
|
| 37 |
+
|
| 38 |
+
question_answer_chain = create_stuff_documents_chain(llm, prompt)
|
| 39 |
+
rag_chain = create_retrieval_chain(retriever, question_answer_chain)
|
| 40 |
+
|
| 41 |
+
return rag_chain
|
| 42 |
+
|
| 43 |
+
if __name__ == "__main__":
|
| 44 |
+
chain = get_rag_chain()
|
| 45 |
+
response = chain.invoke({"input": "What is LOCUS?"})
|
| 46 |
+
print(response["answer"])
|
app/main.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from fastapi import FastAPI, HTTPException
|
| 2 |
+
from pydantic import BaseModel
|
| 3 |
+
from app.engine import get_rag_chain
|
| 4 |
+
|
| 5 |
+
app = FastAPI(title="Locus RAG Bot API")
|
| 6 |
+
|
| 7 |
+
class QueryRequest(BaseModel):
|
| 8 |
+
question: str
|
| 9 |
+
|
| 10 |
+
class QueryResponse(BaseModel):
|
| 11 |
+
answer: str
|
| 12 |
+
context: list[str] = []
|
| 13 |
+
|
| 14 |
+
# Initialize chain once
|
| 15 |
+
rag_chain = get_rag_chain()
|
| 16 |
+
|
| 17 |
+
@app.get("/health")
|
| 18 |
+
async def health_check():
|
| 19 |
+
return {"status": "healthy"}
|
| 20 |
+
|
| 21 |
+
@app.post("/query", response_model=QueryResponse)
|
| 22 |
+
async def query_bot(request: QueryRequest):
|
| 23 |
+
try:
|
| 24 |
+
response = rag_chain.invoke({"input": request.question})
|
| 25 |
+
return QueryResponse(
|
| 26 |
+
answer=response["answer"],
|
| 27 |
+
context=[doc.page_content for doc in response["context"]]
|
| 28 |
+
)
|
| 29 |
+
except Exception as e:
|
| 30 |
+
raise HTTPException(status_code=500, detail=str(e))
|
data/about-us.md
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[](https://www.locus.com.np/)[Home](https://www.locus.com.np/)[About](https://www.locus.com.np/about-us)[Events3](https://www.locus.com.np/events)[Zerone](https://www.locus.com.np/zerone)[Sponsors](https://www.locus.com.np/sponsors)
|
| 2 |
+
More
|
| 3 |
+
# About LOCUS 2026
|
| 4 |
+
22nd National Technology Fest
|
| 5 |
+
22nd National Technology Fest in January 2026, IOE Pulchowk Engineering Campus, Nepal
|
| 6 |
+
* * *
|
| 7 |
+

|
| 8 |
+
LOCUS 2026, an annual tech show themed Progress and Purpose: Nepal Ahead with Innovation and Identity is organized by the dedicated students of Pulchowk Campus. This annual event attracts participants from across the nation, eager to compete for a prize pool of Rs 5,00,000+. The heart of LOCUS 2026 is the highly anticipated exhibition, where hundreds of pioneering projects, ranging from software development and artificial intelligence to electronics and robotics, are displayed. It is a unique opportunity for aspiring technologists to gain recognition, learn from peers, and network with industry professionals.
|
| 9 |
+

|
| 10 |
+
The dedicated LOCUS Committee, composed of passionate students from Computer, Electronics and Electrical engineering departments, has worked tirelessly to bring this event to life. Their enthusiasm and innovative spirit are clear in every aspect of LOCUS 2026, making it a truly remarkable experience for everyone involved. From organizing workshops and competitions to preparing for the exhibition, the committee members have demonstrated exceptional dedication. Their efforts have not only created a platform for innovation but also fostered a sense of community among young technologists.
|
| 11 |
+
# LOCUS 2026 Committee
|
| 12 |
+

|
| 13 |
+
[](https://www.facebook.com/subash.kandel.524)[](https://x.com/subash_cndl)[](https://www.instagram.com/subashkandel_)[](https://www.linkedin.com/in/subashkandel/)
|
| 14 |
+

|
| 15 |
+
Coordinator
|
| 16 |
+
### Subash Kandel
|
| 17 |
+

|
| 18 |
+
[](https://www.facebook.com/ashimsapkota22)[](https://x.com/Ashimm_Sapkota)[](https://www.instagram.com/ashim.sapkota/)[](https://www.linkedin.com/in/ashim-sapkota-a75873268/)
|
| 19 |
+

|
| 20 |
+
Chief Correspondent
|
| 21 |
+
### Ashim Sapkota
|
| 22 |
+

|
| 23 |
+
[](https://www.facebook.com/share/16v7XvQyDq/?mibextid=wwXIfr)[](https://www.locus.com.np/about-us)[](https://www.instagram.com/pradi__s/)[](http://linkedin.com/in/pradipti-shrestha-90384a261)
|
| 24 |
+

|
| 25 |
+
Finance Coordinator
|
| 26 |
+
### Pradipti Shrestha
|
| 27 |
+

|
| 28 |
+
[](https://www.facebook.com/nissan.subedi.23)[](https://www.locus.com.np/about-us)[](https://www.instagram.com/niss_an23/)[](https://www.linkedin.com/in/nishanta-subedi-1b017927a/)
|
| 29 |
+

|
| 30 |
+
Event Manager
|
| 31 |
+
### Nishanta Subedi
|
| 32 |
+

|
| 33 |
+
[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)
|
| 34 |
+

|
| 35 |
+
Marketing Director
|
| 36 |
+
### Nandani Sah
|
| 37 |
+

|
| 38 |
+
[](https://www.facebook.com/yujal.shrestha)[](https://www.locus.com.np/about-us)[](https://www.instagram.com/yujal40/)[](https://www.linkedin.com/in/yujal-shrestha-88ba43261/)
|
| 39 |
+

|
| 40 |
+
Creative Director
|
| 41 |
+
### Yujal Shrestha
|
| 42 |
+

|
| 43 |
+
[](https://www.facebook.com/bishal.lamichhane.9809)[](https://www.locus.com.np/about-us)[](https://www.instagram.com/bishal_lamichhane__/)[](https://www.linkedin.com/in/bishal-lamichhane-60309122b/)
|
| 44 |
+

|
| 45 |
+
Project Manager
|
| 46 |
+
### Bishal Lamichhane
|
| 47 |
+

|
| 48 |
+
[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)
|
| 49 |
+

|
| 50 |
+
Electrical Coordinator
|
| 51 |
+
### Sudip Adhikari
|
| 52 |
+

|
| 53 |
+
[](https://www.facebook.com/sadhana.panthee)[](https://www.locus.com.np/about-us)[](https://www.instagram.com/_sadhanaaa__/)[](https://www.linkedin.com/in/sadhana-panthi-746561257/)
|
| 54 |
+

|
| 55 |
+
Software Coordinator
|
| 56 |
+
### Sadhana Panthi
|
| 57 |
+

|
| 58 |
+
[](https://www.facebook.com/iamaashhu)[](https://www.locus.com.np/about-us)[](https://www.instagram.com/why_aashu/)[](https://www.locus.com.np/about-us)
|
| 59 |
+

|
| 60 |
+
Hardware Coordinator
|
| 61 |
+
### Aashutosh pandey
|
| 62 |
+

|
| 63 |
+
[](https://www.facebook.com/anup.aryal.675601/)[](https://x.com/A_n_o_o_b)[](https://www.instagram.com/a.n.o_o.b/)[](https://www.linkedin.com/in/anup-aryal-825374255/)
|
| 64 |
+

|
| 65 |
+
Research And Resource Manager
|
| 66 |
+
### Anup Aryal
|
| 67 |
+

|
| 68 |
+
[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.instagram.com/_aditidiot_)[](https://www.locus.com.np/www.linkedin.com/in/aditi-subedi-694ab72aa)
|
| 69 |
+

|
| 70 |
+
Social Media and PR Manager
|
| 71 |
+
### Aditi Subedi
|
| 72 |
+

|
| 73 |
+
[](https://www.facebook.com/geetu.neupane.92)[](https://www.locus.com.np/about-us)[](https://www.instagram.com/geeta_neupane88/)[](https://www.linkedin.com/in/geeta-neupane-34081123a/)
|
| 74 |
+

|
| 75 |
+
Logistics Coordinator
|
| 76 |
+
### Gita Neupane
|
| 77 |
+

|
| 78 |
+
[](https://www.facebook.com/kshitiz.parajuli)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)
|
| 79 |
+

|
| 80 |
+
Outreach Manager
|
| 81 |
+
### Kshitiz Parajuli
|
| 82 |
+

|
| 83 |
+
[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)
|
| 84 |
+

|
| 85 |
+
Research Executive
|
| 86 |
+
### Divyanshu Misra
|
| 87 |
+
[Prospectus](https://drive.google.com/file/d/14UPRPobB6AXR7YmS1570rtIHgWdVpyDY/view)
|
| 88 |
+
### IOE PULCHOWK
|
| 89 |
+
Pulchowk, Lalitpur
|
| 90 |
+
Nepal
|
| 91 |
+

|
| 92 |
+
### CONTACT US
|
| 93 |
+
locus@ioe.edu.np
|
| 94 |
+
#### FOLLOW US
|
| 95 |
+
[](https://www.instagram.com/locus_ioe/)[](https://www.facebook.com/locus.ioe)[](https://www.linkedin.com/company/locusioe/)
|
| 96 |
+
MADE WITH ❤ BY LOST
|
| 97 |
+
©COPYRIGHT 2024, PULCHOWK ENGINEERING CAMPUS
|
data/blogs.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[](https://www.locus.com.np/)[Home](https://www.locus.com.np/)[About](https://www.locus.com.np/about-us)[Events3](https://www.locus.com.np/events)[Zerone](https://www.locus.com.np/zerone)[Sponsors](https://www.locus.com.np/sponsors)
|
| 2 |
+
More
|
| 3 |
+
# LOCUS Blogs
|
| 4 |
+
Explore our collection of insightful articles, tutorials, and updates from the LOCUS community
|
| 5 |
+
[  software-engineeringhackathons Hack-A-Week 2026: Everything You Need to Know Hack-A-Week 2026 RoadmapHack-A-Week 2026 is a week-long innovation-focused hackathon designed to bring together passionate developers, designers, and... LOCUS Jan 5, 2026 ](https://www.locus.com.np/blog/hack-a-week-2026-everything-you-need-to-know)
|
| 6 |
+
[Prospectus](https://drive.google.com/file/d/14UPRPobB6AXR7YmS1570rtIHgWdVpyDY/view)
|
| 7 |
+
### IOE PULCHOWK
|
| 8 |
+
Pulchowk, Lalitpur
|
| 9 |
+
Nepal
|
| 10 |
+

|
| 11 |
+
### CONTACT US
|
| 12 |
+
locus@ioe.edu.np
|
| 13 |
+
#### FOLLOW US
|
| 14 |
+
[](https://www.instagram.com/locus_ioe/)[](https://www.facebook.com/locus.ioe)[](https://www.linkedin.com/company/locusioe/)
|
| 15 |
+
MADE WITH ❤ BY LOST
|
| 16 |
+
©COPYRIGHT 2024, PULCHOWK ENGINEERING CAMPUS
|
data/cleaned/about-us.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# About LOCUS 2026
|
| 2 |
+
22nd National Technology Fest
|
| 3 |
+
22nd National Technology Fest in January 2026, IOE Pulchowk Engineering Campus, Nepal
|
| 4 |
+
* * *
|
| 5 |
+

|
| 6 |
+
LOCUS 2026, an annual tech show themed Progress and Purpose: Nepal Ahead with Innovation and Identity is organized by the dedicated students of Pulchowk Campus. This annual event attracts participants from across the nation, eager to compete for a prize pool of Rs 5,00,000+. The heart of LOCUS 2026 is the highly anticipated exhibition, where hundreds of pioneering projects, ranging from software development and artificial intelligence to electronics and robotics, are displayed. It is a unique opportunity for aspiring technologists to gain recognition, learn from peers, and network with industry professionals.
|
| 7 |
+

|
| 8 |
+
The dedicated LOCUS Committee, composed of passionate students from Computer, Electronics and Electrical engineering departments, has worked tirelessly to bring this event to life. Their enthusiasm and innovative spirit are clear in every aspect of LOCUS 2026, making it a truly remarkable experience for everyone involved. From organizing workshops and competitions to preparing for the exhibition, the committee members have demonstrated exceptional dedication. Their efforts have not only created a platform for innovation but also fostered a sense of community among young technologists.
|
| 9 |
+
# LOCUS 2026 Committee
|
| 10 |
+

|
| 11 |
+
[](https://x.com/subash_cndl)
|
| 12 |
+

|
| 13 |
+
Coordinator
|
| 14 |
+
### Subash Kandel
|
| 15 |
+

|
| 16 |
+
[](https://x.com/Ashimm_Sapkota)
|
| 17 |
+

|
| 18 |
+
Chief Correspondent
|
| 19 |
+
### Ashim Sapkota
|
| 20 |
+

|
| 21 |
+
[](https://www.locus.com.np/about-us)[](http://linkedin.com/in/pradipti-shrestha-90384a261)
|
| 22 |
+

|
| 23 |
+
Finance Coordinator
|
| 24 |
+
### Pradipti Shrestha
|
| 25 |
+

|
| 26 |
+
[](https://www.locus.com.np/about-us)
|
| 27 |
+

|
| 28 |
+
Event Manager
|
| 29 |
+
### Nishanta Subedi
|
| 30 |
+

|
| 31 |
+
[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)
|
| 32 |
+

|
| 33 |
+
Marketing Director
|
| 34 |
+
### Nandani Sah
|
| 35 |
+

|
| 36 |
+
[](https://www.locus.com.np/about-us)
|
| 37 |
+

|
| 38 |
+
Creative Director
|
| 39 |
+
### Yujal Shrestha
|
| 40 |
+

|
| 41 |
+
[](https://www.locus.com.np/about-us)
|
| 42 |
+

|
| 43 |
+
Project Manager
|
| 44 |
+
### Bishal Lamichhane
|
| 45 |
+

|
| 46 |
+
[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)
|
| 47 |
+

|
| 48 |
+
Electrical Coordinator
|
| 49 |
+
### Sudip Adhikari
|
| 50 |
+

|
| 51 |
+
[](https://www.locus.com.np/about-us)
|
| 52 |
+

|
| 53 |
+
Software Coordinator
|
| 54 |
+
### Sadhana Panthi
|
| 55 |
+

|
| 56 |
+
[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)
|
| 57 |
+

|
| 58 |
+
Hardware Coordinator
|
| 59 |
+
### Aashutosh pandey
|
| 60 |
+

|
| 61 |
+
[](https://x.com/A_n_o_o_b)
|
| 62 |
+

|
| 63 |
+
Research And Resource Manager
|
| 64 |
+
### Anup Aryal
|
| 65 |
+

|
| 66 |
+
[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/www.linkedin.com/in/aditi-subedi-694ab72aa)
|
| 67 |
+

|
| 68 |
+
Social Media and PR Manager
|
| 69 |
+
### Aditi Subedi
|
| 70 |
+

|
| 71 |
+
[](https://www.locus.com.np/about-us)
|
| 72 |
+

|
| 73 |
+
Logistics Coordinator
|
| 74 |
+
### Gita Neupane
|
| 75 |
+

|
| 76 |
+
[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)
|
| 77 |
+

|
| 78 |
+
Outreach Manager
|
| 79 |
+
### Kshitiz Parajuli
|
| 80 |
+

|
| 81 |
+
[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)[](https://www.locus.com.np/about-us)
|
| 82 |
+

|
| 83 |
+
Research Executive
|
| 84 |
+
### Divyanshu Misra
|
data/cleaned/blogs.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# LOCUS Blogs
|
| 2 |
+
Explore our collection of insightful articles, tutorials, and updates from the LOCUS community
|
| 3 |
+
[  software-engineeringhackathons Hack-A-Week 2026: Everything You Need to Know Hack-A-Week 2026 RoadmapHack-A-Week 2026 is a week-long innovation-focused hackathon designed to bring together passionate developers, designers, and... LOCUS Jan 5, 2026 ](https://www.locus.com.np/blog/hack-a-week-2026-everything-you-need-to-know)
|
data/cleaned/committee.md
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 404
|
| 2 |
+
Page not found
|
| 3 |
+
The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
|
| 4 |
+
[Go back home](https://www.locus.com.np/)
|
data/cleaned/contact-us.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Contact Us
|
| 2 |
+
Email Us locus@ioe.edu.np [ Call Us +977 9805261687 ](tel:+9779805261687)
|
| 3 |
+
NAME
|
| 4 |
+
EMAIL
|
| 5 |
+
PHONE NUMBER
|
| 6 |
+
PURPOSE
|
| 7 |
+
MESSAGE
|
| 8 |
+
Submit
|
data/cleaned/event_15%20DAYS%20OF%20LEARNING.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now/-](https://nativesplug.com/events)
|
| 4 |
+
# 15 DAYS OF LEARNING
|
| 5 |
+
Prizes: Stickers, T-shirts, and Vouchers
|
| 6 |
+
Date : Poush 29, 2082 to Magh 17, 2082 | Time : All
|
| 7 |
+
Mode : OnlineStatus : Open
|
| 8 |
+
### NativesPlug 15 Day Learning Challenge is a structured online learning initiative designed to encourage consistent skill development through daily course completion.The challenge motivates learners to build discipline, enhance knowledge, and showcase their learning journey through social media engagement.• 15-day, 10-day, and 5-day continuous learning milestones • Daily course completion with individual certificates • Social media posting to reflect learning insights and experiences • Onsite prize distribution during LOCUS grand prize ceremony
|
| 9 |
+
### Why Join ?:
|
| 10 |
+
### • Build a habit of continuous learning over 15 days
|
| 11 |
+
• Earn NativesPlug vouchers and exclusive rewards
|
| 12 |
+
• Receive digital certificates and course completion certificates
|
| 13 |
+
• Get LinkedIn account endorsement for top performers
|
| 14 |
+
• Win merchandise like T-shirts and stickers
|
| 15 |
+
• Increase visibility by sharing learning insights on social media
|
| 16 |
+
|
| 17 |
+
### Info:
|
| 18 |
+
### 1. Event Name: NativesPlug 15 Day Learning Challenge
|
| 19 |
+
2. Start Date: Jan 13 (Poush 29)
|
| 20 |
+
3. End Date: Jan 31 (Magh 17)
|
| 21 |
+
4. Registration Link: https://nativesplug.com/events
|
| 22 |
+
5. Prizes:
|
| 23 |
+
- 15 Days Continuous Completion: Rs. 500 voucher, LinkedIn endorsement, digital certificate, course certificates, T-shirt, stickers
|
| 24 |
+
- 10 Days Continuous Completion: Rs. 150 voucher, course certificates, stickers
|
| 25 |
+
- 5 Days Continuous Completion: Course certificates, stickers
|
| 26 |
+
6. Posting Rules:
|
| 27 |
+
- Must tag NativesPlug on Facebook or LinkedIn
|
| 28 |
+
- Avoid repetitive challenge-related phrases
|
| 29 |
+
- Use reflective and insight-based post formats
|
| 30 |
+
7. Note: T-shirts and stickers must be collected onsite during LOCUS grand prize distribution
|
| 31 |
+
|
| 32 |
+
* Ashim Sapkota : 9846567535
|
| 33 |
+
|
| 34 |
+
* Tilak Thapa : 9849860159
|
| 35 |
+
|
| 36 |
+
LOCUS_EVENTS
|
| 37 |
+
[Events](https://www.locus.com.np/events)
|
| 38 |
+
## Event Sponsors
|
| 39 |
+

|
data/cleaned/event_CODE-JAM.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
Register Free/-
|
| 4 |
+
# CODE-JAM
|
| 5 |
+
Prizepool : Rs 50,000
|
| 6 |
+
Date : TBA to | Time : TBA
|
| 7 |
+
Mode : Online
|
| 8 |
+
### CodeJam, presented by LOGPOINT, is a pre-event of LOCUS-2026, the 22nd National Technological Festival, designed to bring together developers and programmers for a competitive and innovative challenge. It is a platform where students dive into the art of problem-solving, algorithm design, and efficient coding. The event involves a series of proceedings where technique and algorithm are used to evaluate the participant's expertise. Participants will tackle algorithmic challenges covering various domains such as: • Graph theory • Number theory • Dynamic programming • And more, with varying levels of difficulty Why join? • Sharpen your analytical skills and enhance programming proficiency • Experience the thrill of competitive coding • Encourage algorithmic thinking and problem solving • Get a chance to bring your skill to grow and prosper personally • Compete for exciting prizes
|
| 9 |
+
### Rules and Regulations:
|
| 10 |
+
### 1. Competition Levels: The event has two levels for fair competition: Beginners (mainly for 1st and 2nd year students) and Advanced (for 3rd and 4th year students, and graduates are welcome)
|
| 11 |
+
2. Beginners' Task: Solve the problem in the allocated time; time and space complexity will not be taken into account
|
| 12 |
+
3. Advanced Task: Solve the problem in the allocated time constraint; Time and space complexity will be taken into account
|
| 13 |
+
4. Format: The competition will be conducted online using platforms such as VJudge
|
| 14 |
+
5. Scoring: Participants are ranked based on the number of correct solutions and the time taken to submit them
|
| 15 |
+
6. Evaluation: VJudge will automatically evaluate submissions and check for correctness and plagiarism
|
| 16 |
+
7. Penalties: Negative marking will be applied for wrong submissions
|
| 17 |
+
|
| 18 |
+
* Nissan Subedi : 9824015856
|
| 19 |
+
|
| 20 |
+
* Sudip Kazi Basnet : 9841587481
|
| 21 |
+
|
| 22 |
+
LOCUS_EVENTS
|
| 23 |
+
[Events](https://www.locus.com.np/events)
|
| 24 |
+
## Event Sponsors
|
| 25 |
+

|
data/cleaned/event_CYBER%20SHIELD.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now/-](https://forms.gle/cgAc7JVGWUufV7XFA)
|
| 4 |
+
# CYBER SHIELD
|
| 5 |
+
Venue : Embark College
|
| 6 |
+
Date : Poush 24, 2082 to Poush 28, 2082 | Time : 8:00 AM - 10:00 AM | 3:00 PM - 5:00 PM
|
| 7 |
+
Mode : OnlineStatus : Open
|
| 8 |
+
### CyberShield, presented by LOGPOINT, is a pre-event of LOCUS-2026, the 22nd National Technological Festival.It is a newly introduced, 4-day intensive workshop designed as a platform for students to gain practical exposure to cybersecurity, ethical hacking, and defensive security practices.The event aims to introduce university students to the real-world cybersecurity landscape through concept-driven and hands-on learning. Participants will understand how cyber attacks occur, how organizations defend against them, and how security teams operate in practice by covering topics like:• Cybersecurity fundamentals, CIA Triad, threat vs vulnerability vs risk, and security domains • Types of cyber attacks, malware, phishing, social engineering, and the MITRE ATT&CK framework • Network scanning, reconnaissance, attack surface identification, and common network vulnerabilities • OWASP Top 10 web vulnerabilities, basic web exploitation, and secure coding principles.
|
| 9 |
+
### Why Join ?:
|
| 10 |
+
### • Gain hands-on experience with real-world cybersecurity tools and labs
|
| 11 |
+
• Learn how real cyber attacks and defenses work in organizations
|
| 12 |
+
• Develop practical understanding of ethical hacking and defensive security
|
| 13 |
+
• Explore cybersecurity career paths and industry expectations
|
| 14 |
+
• Interact with industry professionals and participate in practical challenges
|
| 15 |
+
|
| 16 |
+
### Info:
|
| 17 |
+
### 1. Organizer: LOCUS 2026, Nepal's largest student-led national tech festival
|
| 18 |
+
2. Duration: 4 days, Poush 24, 25, 27, 28
|
| 19 |
+
3. Venue: Embark College near IOE Pulchowk Campus
|
| 20 |
+
4. Eligibility: Open to students from engineering, CSIT, and applied science backgrounds
|
| 21 |
+
5. Schedule: Sessions will be held in three shifts: Morning (8:00 AM to 10:00 AM) and Evening (3:00 PM to 5:00 PM)
|
| 22 |
+
|
| 23 |
+
* Aashish Karki : 9862021531
|
| 24 |
+
|
| 25 |
+
* Andis Paudel : 9862709753
|
| 26 |
+
|
| 27 |
+
LOCUS_EVENTS
|
| 28 |
+
[Events](https://www.locus.com.np/events)
|
| 29 |
+
## Event Sponsors
|
| 30 |
+

|
data/cleaned/event_DATAVERSE.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
Register 200/-
|
| 4 |
+
# DATAVERSE
|
| 5 |
+
Rs. 12,000+
|
| 6 |
+
Date : Magh 1st, 2082 to Magh 3rd, 2082 | Time : 10:00 AM - 3:00 PM
|
| 7 |
+
Mode : Offline
|
| 8 |
+
### DATAVERSE is a data-centric battle where participants dive into real-world datasets to extract insights, build predictive models, and tell compelling data stories. The competition focuses on: • Data cleaning and preprocessing • Exploratory data analysis • Machine learning model building • Evaluation metrics and optimization • Data visualization and storytelling Why participate? • Work with real datasets • Improve your ML & analytics skills • Showcase your data storytelling abilities • Win exciting prizes and recognition
|
| 9 |
+
### Rules and Regulations:
|
| 10 |
+
### 1. Team size: 1–3 members
|
| 11 |
+
2. Participants must bring their own laptops
|
| 12 |
+
3. External datasets or pretrained models are not allowed
|
| 13 |
+
4. Submissions must include code, report, and final predictions
|
| 14 |
+
5. Plagiarism or copied notebooks will lead to disqualification
|
| 15 |
+
|
| 16 |
+
* Niraj Shahi : 9801234567
|
| 17 |
+
|
| 18 |
+
* Sarina Maharjan : 9845123488
|
| 19 |
+
|
| 20 |
+
LOCUS_EVENTS
|
| 21 |
+
[Events](https://www.locus.com.np/events)
|
| 22 |
+
## Event Sponsors
|
data/cleaned/event_Dronacharya%202026.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now](https://forms.gle/pZgSJnX9heftdAas8)
|
| 4 |
+
# Dronacharya 2026
|
| 5 |
+
Prize Pool: Rs 30,000+
|
| 6 |
+
Date : 2082-10-16 to 2082-10-18 | Time : 10 am onwards
|
| 7 |
+
Mode : offlineStatus : Open
|
| 8 |
+
### Dronacharya 2026 is a competitive drone racing and obstacle navigation contest conducted as part of LOCUS 2026. Teams of up to four members compete using a single drone that meets the specified technical requirements. The contest is designed to test precision flying, time management, and technical skill in a structured race-track environment. Contest Format: • Two rounds: Preliminary Round and Knock-out Round • Each round is 5 minutes long • Teams are ranked based on net time (completion time + penalties) The game field consists of multiple obstacle zones including tunnels, circular and rectangular frames, towers, and poles. Teams must navigate checkpoints in order while minimizing penalties. The winner is decided purely on time, with referee decisions used in case of ties.
|
| 9 |
+
### Rules and Regulations:
|
| 10 |
+
### 1. Teams can have a maximum of 4 members and only one drone per team.
|
| 11 |
+
2. The drone must fit within 600mm x 600mm dimensions and weigh no more than 2.5 kg.
|
| 12 |
+
3. Maximum battery voltage allowed is 16V (4-cell LiPo).
|
| 13 |
+
4. Preliminary round allows obstacle skipping with time penalties; knockout round does not allow skipping.
|
| 14 |
+
5. Any act endangering people, equipment, or violating fair play may result in disqualification.
|
| 15 |
+
6. Referee and organizer decisions are final for all unspecified situations.
|
| 16 |
+
|
| 17 |
+
* Aashutosh Pandey : 9804875975
|
| 18 |
+
|
| 19 |
+
* Divyanshu Mishra : 9847755937
|
| 20 |
+
|
| 21 |
+
LOCUS_EVENTS
|
| 22 |
+
[Events](https://www.locus.com.np/events)
|
| 23 |
+
## Event Sponsors
|
data/cleaned/event_Energy%20Hackathon.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now](https://docs.google.com/forms/d/1Ec1v19OcbV5u9AW_ZVGcNshDWRRqc-RoX_Y1DQ0Irus/edit)
|
| 4 |
+
# Energy Hackathon
|
| 5 |
+
Prizepool : Rs 80,000
|
| 6 |
+
Date : 2082-09-04 to 2082-09-08 | Time : 10 am onwards
|
| 7 |
+
Mode : Offline
|
| 8 |
+
### The Energy Hackathon is a dynamic event focused on creating innovative energy solutions. Participants will engage in a 7-day intensive hackathon featuring mentoring sessions held at the Library Hall, Pulchowk Campus. Compete for the grand prize of Rs 80,000 and gain invaluable experience in collaboration and innovation. Event Highlights: • A week of guided project development and innovation • Networking opportunities with industry experts • Compete for a grand prize of Rs. 80,000 Energy Hackathon provides a unique platform for enthusiasts to tackle real-world energy challenges, collaborate with peers, and showcase their expertise in a competitive setting.
|
| 9 |
+
### Rules and Regulations:
|
| 10 |
+
### 1. Teams can consist of up to 4 members.
|
| 11 |
+
2. Projects must align with the provided themes and adhere to deadlines.
|
| 12 |
+
3. Participants must bring their own laptops and required equipment.
|
| 13 |
+
4. Organizers may disqualify teams for non-compliance with the rules.
|
| 14 |
+
|
| 15 |
+
* Utsav Raj Karki : 9862083508
|
| 16 |
+
|
| 17 |
+
LOCUS_EVENTS
|
| 18 |
+
[Events](https://www.locus.com.np/events)
|
| 19 |
+
## Event Sponsors
|
data/cleaned/event_Flashmob.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now](https://forms.gle/ZesCQYtd76doskU96)
|
| 4 |
+
# Flashmob
|
| 5 |
+
Training in Progress
|
| 6 |
+
Date : 2082-10-01 to 2082-10-06 | Time : 10 am onwards
|
| 7 |
+
Mode : OfflineStatus : Ongoing
|
| 8 |
+
### The LOCUS Flashmob is a vibrant promotional event organized as part of the pre-exhibition outreach for LOCUS 2026. This energetic performance aims to engage the public, create excitement, and spread awareness about Nepal’s premier national-level technological festival. Event Highlights: • Energetic flashmob performances by student volunteers • Public engagement and promotion of the LOCUS 2026 Exhibition • Creative outreach at popular public venues The Flashmob is scheduled to be held on Magh 10 as a marketing and awareness activity for LOCUS 2026. The performance will involve approximately 50 students and will last for 15–20 minutes. The exact venue and time will be finalized and announced soon. This initiative reflects LOCUS’s commitment to creative promotion and meaningful public engagement.
|
| 9 |
+
* Sudip Kazi Basnet : 9841587481
|
| 10 |
+
|
| 11 |
+
LOCUS_EVENTS
|
| 12 |
+
[Events](https://www.locus.com.np/events)
|
| 13 |
+
## Event Sponsors
|
data/cleaned/event_GIRLS%20LOCUS%20CUP.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Free](https://bit.ly/GirlsFutsal2025)
|
| 4 |
+
# GIRLS LOCUS CUP
|
| 5 |
+
Prizepool : Rs 10,000
|
| 6 |
+
Date : 13th Poush, 2082 to 15th Poush, 2082 | Time : Morning Shift: 7:30 AM - 9:30 AM, Evening Shift: 4:00 PM - 6:00 PM and 5:00 PM - 7:00 PM
|
| 7 |
+
Mode : Offline
|
| 8 |
+
### The Girls Futsal Tournament is an engaging sports event promoting teamwork, competition, and physical fitness. Held at Pulchowk Campus, this four-day event features exciting matches designed for female players to showcase their skills and passion for football. Event Highlights: • Morning and evening shifts to accommodate participants • A fun and inclusive environment for players • A chance to connect and compete with other teams The tournament is free for all participants, fostering a spirit of community and active engagement in sports. Players can look forward to a memorable experience on the field, cheered on by enthusiastic supporters.
|
| 9 |
+
### Rules and Regulations:
|
| 10 |
+
### 1. Teams must arrive 15 minutes before their scheduled matches.
|
| 11 |
+
2. Players are responsible for their equipment.
|
| 12 |
+
3. Teams should adhere to fair play and sportsmanship.
|
| 13 |
+
4. The organizing committee reserves the right to make final decisions on disputes.
|
| 14 |
+
5. Matches will be conducted according to standard futsal rules.
|
| 15 |
+
|
| 16 |
+
* Kashish Bataju : 9817172888
|
| 17 |
+
|
| 18 |
+
* Roshni Poudel : 9841181571
|
| 19 |
+
|
| 20 |
+
LOCUS_EVENTS
|
| 21 |
+
[Events](https://www.locus.com.np/events)
|
| 22 |
+
## Event Sponsors
|
| 23 |
+

|
data/cleaned/event_GIRLS-TO-CODE.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
Apply Now
|
| 4 |
+
# GIRLS-TO-CODE
|
| 5 |
+
Date : Poush 26th, 2082 to Poush 27th, 2082 | Time : 10:00 AM - 4:00 PM
|
| 6 |
+
Mode : Offline
|
| 7 |
+
### GIRLS-TO-CODE is an empowering initiative designed to introduce girls to the world of programming. This beginner-friendly program helps participants build confidence and develop foundational tech skills. The curriculum includes: • Programming basics (Python/JavaScript) • Web development fundamentals • Problem-solving through coding exercises • Introduction to UI/UX design • Mentorship sessions with women in tech What participants gain: • A supportive learning environment • Hands-on mini-projects • Guidance from experienced mentors • Peer networking opportunities • Certification upon completion
|
| 8 |
+
### Rules and Regulations:
|
| 9 |
+
### 1. Only female participants are eligible
|
| 10 |
+
2. Basic computer knowledge recommended but not required
|
| 11 |
+
3. Participants must attend at least 80% of sessions
|
| 12 |
+
4. Bring your own laptop
|
| 13 |
+
5. Maintain respectful and inclusive behavior
|
| 14 |
+
|
| 15 |
+
* Anisha Paudel : 9860123456
|
| 16 |
+
|
| 17 |
+
* Ritika Lama : 9812348912
|
| 18 |
+
|
| 19 |
+
LOCUS_EVENTS
|
| 20 |
+
[Events](https://www.locus.com.np/events)
|
| 21 |
+
## Event Sponsors
|
data/cleaned/event_HACK-A-WEEK.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Closed](https://forms.gle/7t9y6HeTqPzUSQQMA)
|
| 4 |
+
# HACK-A-WEEK
|
| 5 |
+
Prizepool : Rs 1,00,000
|
| 6 |
+
Date : Poush 17th, 2082 to Poush 23nd, 2082 | Time : TBA
|
| 7 |
+
Mode : OfflineStatus : Closed
|
| 8 |
+
### Hack-a-week is an innovative and collaborative event where participants team up to brainstorm, design, and develop cutting-edge solutions to real-world challenges. Taking place at Pulchowk Campus, this hackathon is an excellent opportunity to network, innovate, and compete for exciting prizes. Event Highlights: • A week of intensive brainstorming and project development • Showcase your technical skills and creativity • Compete for a grand prize pool of Rs. 1 Lakh Hack-a-week offers a platform for tech enthusiasts to collaborate, experiment, and bring their ideas to life in a vibrant and competitive environment.
|
| 9 |
+
### Rules and Regulations:
|
| 10 |
+
### 1. Team size and participation guidelines will be announced prior to the event.
|
| 11 |
+
2. Teams must adhere to the project submission deadline.
|
| 12 |
+
3. Participants are encouraged to bring their own laptops and equipment.
|
| 13 |
+
4. Organizers reserve the right to disqualify teams for rule violations.
|
| 14 |
+
|
| 15 |
+
* Sadhana Panthi : 9749847424
|
| 16 |
+
|
| 17 |
+
* Bishal Lamichhane : 9864511097
|
| 18 |
+
|
| 19 |
+
LOCUS_EVENTS
|
| 20 |
+
[Events](https://www.locus.com.np/events)
|
| 21 |
+
## Event Sponsors
|
| 22 |
+

|
data/cleaned/event_HARDWARE-FELLOWSHIP.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register 850/-](https://forms.gle/w7wFFwZEkEUEkQKN6)
|
| 4 |
+
# HARDWARE-FELLOWSHIP
|
| 5 |
+
Date : Poush 20, 2082 to Poush 26, 2082 | Time : 7:30 AM – 9:15 AM | 4:00 PM – 5:45 PM
|
| 6 |
+
Mode : OfflineStatus : Ongoing
|
| 7 |
+
### The Hardware Fellowship by LOCUS provides an intensive hands-on experience in electronics and hardware fundamentals. Program Highlights: • Electronics fundamentals and practical applications • Microcontroller programming (Arduino) • Sensor integration and control systems • Autonomous bot development • Project-based learning approach This initiative bridges the gap between theoretical knowledge and practical application, fostering creativity, teamwork, and innovation among students. Participants gain hands-on experience in building circuits, working with microcontrollers, and developing real-world projects. The fellowship creates a collaborative environment where students can learn, experiment, and grow their technical skills under expert guidance.
|
| 8 |
+
### Rules and Regulations:
|
| 9 |
+
### 1. Mandatory attendance for all sessions
|
| 10 |
+
2. Basic electronics knowledge preferred
|
| 11 |
+
3. Personal laptop required
|
| 12 |
+
4. Active participation in project work
|
| 13 |
+
5. Safety protocols must be followed in labs
|
| 14 |
+
6. Team collaboration is encouraged
|
| 15 |
+
|
| 16 |
+
* Aashutosh Pandey : 9804875975
|
| 17 |
+
|
| 18 |
+
* Ashim Sapkota : 9846567535
|
| 19 |
+
|
| 20 |
+
LOCUS_EVENTS
|
| 21 |
+
[Events](https://www.locus.com.np/events)
|
| 22 |
+
## Event Sponsors
|
data/cleaned/event_LOCUS%20Exhibition.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now](https://forms.gle/qEV76DSgrjbHSgCy9)
|
| 4 |
+
# LOCUS Exhibition
|
| 5 |
+
Prizepool : Rs 80,000 +
|
| 6 |
+
Date : 2082-10-16 to 2082-10-18 | Time : 10 am onwards
|
| 7 |
+
Mode : OfflineStatus : Open
|
| 8 |
+
### The LOCUS Project Competition is an annual national-level event where innovators showcase their creative projects. Participants present their ideas in stalls during the three-day LOCUS 2026 exhibition at Pulchowk Campus, held on January 30, 31, and February 1 (Magh 16, 17, and 18). Awards are given to the best projects based on judging criteria, providing recognition for creativity and technical excellence. Event Highlights: • National-level exhibition showcasing innovative projects • Awards for the best projects across multiple categories • Opportunity to bring ideas to life under the theme: 'Transforming Today: Nepal’s Path to a Digital Future' LOCUS Project Competition offers a platform for students and innovators to present their ideas, gain recognition, and contribute to shaping Nepal's digital future.
|
| 9 |
+
* Bishal Lamichhane : 9864511097
|
| 10 |
+
|
| 11 |
+
* Sudip Adhikari : 9867986412
|
| 12 |
+
|
| 13 |
+
LOCUS_EVENTS
|
| 14 |
+
[Events](https://www.locus.com.np/events)
|
| 15 |
+
## Event Sponsors
|
data/cleaned/event_Robo%20Line%20Dash%202026.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now](https://forms.gle/pZgSJnX9heftdAas8)
|
| 4 |
+
# Robo Line Dash 2026
|
| 5 |
+
Prizepool : Rs 20,000 +
|
| 6 |
+
Date : 2082-10-16 to 2082-10-18 | Time : 10 am onwards
|
| 7 |
+
Mode : OfflineStatus : Open
|
| 8 |
+
### Robo Line Dash 2026 is an autonomous robotics competition under LOCUS 2026 where teams design a robot capable of following a black line through a maze and intelligently determining the shortest path. The challenge evaluates algorithm design, sensor integration, precision control, and optimization. Event Highlights: • Autonomous line-following and maze-solving challenge • Two-phase gameplay: Dry Run and Actual Run • Emphasis on shortest-path optimization and speed Robots first explore the maze during the Dry Run and store navigation data. In the Actual Run, they must traverse the maze using the optimal path in the shortest possible time while adhering strictly to safety and arena constraints.
|
| 9 |
+
### Rules and Regulations:
|
| 10 |
+
### 1. Teams may consist of 1 to 4 members; only one member may handle the robot during gameplay.
|
| 11 |
+
2. Robots must fit within 150mm x 150mm x 150mm dimensions and operate autonomously with on-board power not exceeding 16V.
|
| 12 |
+
3. Robots must not damage, mark, or alter the maze; any such action results in immediate disqualification.
|
| 13 |
+
4. The competition consists of a Dry Run (3 minutes) and an Actual Run (2 minutes 30 seconds); no restarts are allowed in the Actual Run.
|
| 14 |
+
5. Laptops, wireless devices, and external communication are prohibited near the arena during runs.
|
| 15 |
+
6. Judges’ and organizers’ decisions are final, and violations of rules may lead to penalties or disqualification.
|
| 16 |
+
|
| 17 |
+
* Bishal Lamichhane : 9864511097
|
| 18 |
+
|
| 19 |
+
LOCUS_EVENTS
|
| 20 |
+
[Events](https://www.locus.com.np/events)
|
| 21 |
+
## Event Sponsors
|
data/cleaned/event_RoboPop%202026.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now](https://forms.gle/pZgSJnX9heftdAas8)
|
| 4 |
+
# RoboPop 2026
|
| 5 |
+
Prizepool : Rs 20,000 +
|
| 6 |
+
Date : 2082-10-16 to 2082-10-18 | Time : 10 am onwards
|
| 7 |
+
Mode : OfflineStatus : Open
|
| 8 |
+
### RoboPop 2026 is an interactive robotics competition organized under LOCUS 2026, where teams compete using robots designed to pop balloons while protecting their own. The event follows a fast-paced, strategic best-of-three format and challenges teams on precision control, robot design, and tactical decision-making. Event Highlights: • Balloon-popping combat-style robotics game • Best-of-three knockout matches with wildcard rounds • Unique scoring system based on balloon color and strategy Each match lasts up to 5 minutes per round, with points awarded or deducted based on balloons popped. Teams must first clear opponent-colored balloons before targeting the opponent’s Queen Balloons, making RoboPop a blend of speed, control, and strategic gameplay.
|
| 9 |
+
### Rules and Regulations:
|
| 10 |
+
### 1. Teams must consist of 2–3 members and designate a captain for communication with referees.
|
| 11 |
+
2. Robots must fit within 350mm x 350mm x 350mm dimensions and weigh no more than 7 kg.
|
| 12 |
+
3. Maximum operating voltage is 24V; only approved battery types are allowed.
|
| 13 |
+
4. Accessories are limited to balloon-popping mechanisms only; blades, fire, lasers, and damaging weapons are prohibited.
|
| 14 |
+
5. Popping balloons during setup time or violating gameplay order results in disqualification.
|
| 15 |
+
6. Organizer and referee decisions are final; safety inspections are mandatory before competition.
|
| 16 |
+
|
| 17 |
+
* Ghanshyam Bhandari : 9864413534
|
| 18 |
+
|
| 19 |
+
LOCUS_EVENTS
|
| 20 |
+
[Events](https://www.locus.com.np/events)
|
| 21 |
+
## Event Sponsors
|
data/cleaned/event_RoboSoccer%202026.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now](https://forms.gle/pZgSJnX9heftdAas8)
|
| 4 |
+
# RoboSoccer 2026
|
| 5 |
+
Prizepool : Rs 40,000 +
|
| 6 |
+
Date : 2082-10-16 to 2082-10-18 | Time : 10 am onwards
|
| 7 |
+
Mode : OfflineStatus : Open
|
| 8 |
+
### RoboSoccer 2026 is a multi-robot competitive event organized under LOCUS 2026, where teams compete using manually controlled robots in a soccer-style arena. The event evaluates robot control, maneuverability, kicking, flipping, and strategic teamwork in a fast-paced match environment. Event Highlights: • 3 vs 3 robot soccer matches • Structured gameplay with regular time, extra time, and penalty shootouts • Emphasis on control, strategy, and fair play The competition is played on a carpeted field designed like a soccer pitch, using a standard-sized ball. Teams must design compact, lightweight robots that comply with strict electrical and mechanical safety standards.
|
| 9 |
+
### Rules and Regulations:
|
| 10 |
+
### 1. A team can have a maximum of 4 members, and each team must deploy at least 3 robots.
|
| 11 |
+
2. Maximum robot dimensions are 30cm x 30cm x 30cm, with a maximum weight of 4kg.
|
| 12 |
+
3. Robots must be manually controlled, electrically powered, and use on-board power supplies not exceeding 12V DC.
|
| 13 |
+
4. No weapons, wired power supplies, or ready-made toy cars are allowed.
|
| 14 |
+
5. A goal is valid only when the ball completely crosses the goal line; pushing the opponent goalkeeper for scoring is a foul.
|
| 15 |
+
6. Decisions of referees and organizers are final, and rule violations may result in disqualification.
|
| 16 |
+
|
| 17 |
+
* Ghanshyam Bhandari : 9864413534
|
| 18 |
+
|
| 19 |
+
LOCUS_EVENTS
|
| 20 |
+
[Events](https://www.locus.com.np/events)
|
| 21 |
+
## Event Sponsors
|
data/cleaned/event_RoboWarz%202026.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now](https://forms.gle/pZgSJnX9heftdAas8)
|
| 4 |
+
# RoboWarz 2026
|
| 5 |
+
Prizepool : Rs 60,000 +
|
| 6 |
+
Date : 2082-10-16 to 2082-10-18 | Time : 10 am onwards
|
| 7 |
+
Mode : OfflineStatus : Open
|
| 8 |
+
### RoboWarz 2026 is a competitive robot combat event organized under LOCUS 2026. Teams design and battle electrically powered robots in a purpose-built arena featuring pits, battlezones, and capture-the-flag mechanics. The competition emphasizes strategy, control, robustness, and safety. Event Highlights: • Intense robot battles in a 4.5m x 4.5m arena • Multiple scoring methods including pits, flips, and capture-the-flag • Group stage followed by knockout rounds Robots must meet strict weight, size, power, and weapon safety requirements. Matches are fast-paced and decided by points, tie-breakers, or opponent immobility, ensuring an exciting and skill-driven competition.
|
| 9 |
+
### Rules and Regulations:
|
| 10 |
+
### 1. Teams must consist of 2 to 4 members with one designated team leader.
|
| 11 |
+
2. Maximum robot weight is 15 kg including batteries; robots must fit within 50cm x 50cm x 50cm before the match.
|
| 12 |
+
3. Robots must be electrically powered with battery voltage not exceeding 24V; IC engines are prohibited.
|
| 13 |
+
4. Weapons may only push, flip, drag, or throw opponents; cutting, smashing, fire, water, and electromagnetic weapons are prohibited.
|
| 14 |
+
5. Each match lasts 3 minutes, with points awarded for pits, flips, and capture-the-flag actions.
|
| 15 |
+
6. Referee decisions are final, and violation of safety or gameplay rules may result in disqualification.
|
| 16 |
+
|
| 17 |
+
* Divyanshu Mishra : 9847755937
|
| 18 |
+
|
| 19 |
+
LOCUS_EVENTS
|
| 20 |
+
[Events](https://www.locus.com.np/events)
|
| 21 |
+
## Event Sponsors
|
data/cleaned/event_Walkathon.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Event Detail
|
| 2 |
+
* * *
|
| 3 |
+
[Register Now](https://forms.gle/dimud2cgpX3CDcik9)
|
| 4 |
+
# Walkathon
|
| 5 |
+
Starting Soon
|
| 6 |
+
Date : 2082-10-10 to 2082-10-15 | Time : 10 am onwards
|
| 7 |
+
Mode : OfflineStatus : Open
|
| 8 |
+
### The LOCUS Walkathon is a one-day awareness event organized prior to the LOCUS Exhibition to promote innovation, technology, and student creativity. This peaceful rally brings together students and tech enthusiasts to spread awareness about the upcoming LOCUS 2026 Exhibition and its vision for Nepal’s technological future. Event Highlights: • Peaceful awareness walk led by students and technology enthusiasts • Promotion of the LOCUS 2026 Exhibition and its core theme • Public engagement across key areas of the city The Walkathon will be held on Magh 10 as part of the pre-exhibition activities of LOCUS 2026. The time schedule and route of the walkathon will be finalized and announced soon. This event reflects LOCUS’s commitment to public outreach, innovation awareness, and responsible student-led initiatives.
|
| 9 |
+
* Nishanta Subedi : 9824015856
|
| 10 |
+
|
| 11 |
+
LOCUS_EVENTS
|
| 12 |
+
[Events](https://www.locus.com.np/events)
|
| 13 |
+
## Event Sponsors
|
data/cleaned/events.md
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# LOCUS Pre Events
|
| 2 |
+
[ Ongoing[More](https://www.locus.com.np/event/HARDWARE-FELLOWSHIP) ](https://www.locus.com.np/event/HARDWARE-FELLOWSHIP)[ Open[More](https://www.locus.com.np/event/CYBER%20SHIELD) ](https://www.locus.com.np/event/CYBER%20SHIELD)[ [More](https://www.locus.com.np/event/GIRLS%20LOCUS%20CUP)](https://www.locus.com.np/event/GIRLS%20LOCUS%20CUP)[ Closed[More](https://www.locus.com.np/event/HACK-A-WEEK) ](https://www.locus.com.np/event/HACK-A-WEEK)[ [More](https://www.locus.com.np/event/CODE-JAM)](https://www.locus.com.np/event/CODE-JAM)[ [More](https://www.locus.com.np/event/GIRLS-TO-CODE)](https://www.locus.com.np/event/GIRLS-TO-CODE)[ Open[More](https://www.locus.com.np/event/15%20DAYS%20OF%20LEARNING) ](https://www.locus.com.np/event/15%20DAYS%20OF%20LEARNING)[ [More](https://www.locus.com.np/event/DATAVERSE)](https://www.locus.com.np/event/DATAVERSE)[ Open[More](https://www.locus.com.np/event/Walkathon) ](https://www.locus.com.np/event/Walkathon)[ Ongoing[More](https://www.locus.com.np/event/Flashmob) ](https://www.locus.com.np/event/Flashmob)[ [More](https://www.locus.com.np/event/Energy%20Hackathon)](https://www.locus.com.np/event/Energy%20Hackathon)
|
| 3 |
+
# LOCUS Main Events
|
| 4 |
+
[ Open[More](https://www.locus.com.np/event/LOCUS%20Exhibition) ](https://www.locus.com.np/event/LOCUS%20Exhibition)[ Open[More](https://www.locus.com.np/event/Dronacharya%202026) ](https://www.locus.com.np/event/Dronacharya%202026)[ Open[More](https://www.locus.com.np/event/RoboWarz%202026) ](https://www.locus.com.np/event/RoboWarz%202026)[ Open[More](https://www.locus.com.np/event/RoboSoccer%202026) ](https://www.locus.com.np/event/RoboSoccer%202026)[ Open[More](https://www.locus.com.np/event/RoboPop%202026) ](https://www.locus.com.np/event/RoboPop%202026)[ Open[More](https://www.locus.com.np/event/Robo%20Line%20Dash%202026) ](https://www.locus.com.np/event/Robo%20Line%20Dash%202026)
|
data/cleaned/index.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Unexpected Application Error!
|
| 2 |
+
### Error creating WebGL context.
|
| 3 |
+
```
|
| 4 |
+
Error: Error creating WebGL context.
|
| 5 |
+
at new Tg (https://www.locus.com.np/assets/Home-CVqrNg7E.js:3849:20386)
|
| 6 |
+
at https://www.locus.com.np/assets/Home-CVqrNg7E.js:3849:70181
|
| 7 |
+
at wl (https://www.locus.com.np/assets/index-Cc6JtzVi.js:41:24422)
|
| 8 |
+
at co (https://www.locus.com.np/assets/index-Cc6JtzVi.js:41:42713)
|
| 9 |
+
at https://www.locus.com.np/assets/index-Cc6JtzVi.js:41:40991
|
| 10 |
+
at xe (https://www.locus.com.np/assets/index-Cc6JtzVi.js:26:1604)
|
| 11 |
+
at MessagePort.de (https://www.locus.com.np/assets/index-Cc6JtzVi.js:26:1979)
|
| 12 |
+
```
|
| 13 |
+
|
| 14 |
+
💿 Hey developer 👋
|
| 15 |
+
You can provide a way better UX than this when your app throws errors by providing your own `ErrorBoundary` or `errorElement` prop on your route.
|
data/cleaned/medium.com_zerone-magazine_tagged_blogging-competition.md
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[Sitemap](https://medium.com/sitemap/sitemap.xml)
|
| 2 |
+
[Open in app](https://play.google.com/store/apps/details?id=com.medium.reader&referrer=utm_source%3DmobileNavBar&source=---publication_layout_nav-----------------------------------------)
|
| 3 |
+
Sign up
|
| 4 |
+
[Sign in](https://medium.com/m/signin?operation=login&redirect=https%3A%2F%2Fmedium.com%2Fzerone-magazine%2Fall&source=login---publication_layout_nav-----------------------global_nav------------------)
|
| 5 |
+
[Medium Logo](https://medium.com/?source=---publication_layout_nav-----------------------------------------)
|
| 6 |
+
[](https://medium.com/m/signin?operation=register&redirect=https%3A%2F%2Fmedium.com%2Fnew-story&source=---publication_layout_nav-----------------------new_post_topnav------------------)
|
| 7 |
+
[Search](https://medium.com/search?source=---publication_layout_nav-----------------------------------------)
|
| 8 |
+
Sign up
|
| 9 |
+
[Sign in](https://medium.com/m/signin?operation=login&redirect=https%3A%2F%2Fmedium.com%2Fzerone-magazine%2Fall&source=login---publication_layout_nav-----------------------global_nav------------------)
|
| 10 |
+

|
| 11 |
+
[](https://medium.com/zerone-magazine?source=---publication_nav-ee40a9d5a987----------------------------------------)
|
| 12 |
+
## [The Zerone](https://medium.com/zerone-magazine?source=---publication_nav-ee40a9d5a987----------------------------------------)
|
| 13 |
+
[Tech](https://medium.com/zerone-magazine/all?topic=technology&source=---publication_nav-ee40a9d5a987-----0-----------------------------------)
|
| 14 |
+
[General](https://medium.com/zerone-magazine/all?topic=general&source=---publication_nav-ee40a9d5a987-----1-----------------------------------)
|
| 15 |
+
[Personal](https://medium.com/zerone-magazine/all?topic=personal&source=---publication_nav-ee40a9d5a987-----2-----------------------------------)
|
| 16 |
+
[Fiction](https://medium.com/zerone-magazine/all?topic=fiction&source=---publication_nav-ee40a9d5a987-----3-----------------------------------)
|
| 17 |
+
[Magazine](https://medium.com/zerone-magazine/all?topic=zerone&source=---publication_nav-ee40a9d5a987-----4-----------------------------------)
|
| 18 |
+
[Competition](https://medium.com/zerone-magazine/all?topic=blogging-competition&source=---publication_nav-ee40a9d5a987-----5-----------------------------------)
|
| 19 |
+
[Tech Competition](https://medium.com/zerone-magazine/all?topic=technical-competition&source=---publication_nav-ee40a9d5a987-----6-----------------------------------)
|
| 20 |
+
[Interviews](https://medium.com/zerone-magazine/all?topic=interview&source=---publication_nav-ee40a9d5a987-----7-----------------------------------)
|
| 21 |
+
## Blogging Competition
|
| 22 |
+
Blogging Competition
|
| 23 |
+
All years
|
| 24 |
+
Latest
|
| 25 |
+
## [Fugazi My memories are quite afraid of myself. They are hiding in some corner where my hands couldn’t reach, or has my hands grown bigger? I put…](https://medium.com/zerone-magazine/fugazi-de090e24e9b4?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)
|
| 26 |
+
[](https://medium.com/@biplobgiri?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)
|
| 27 |
+
[Biplob Giri](https://medium.com/@biplobgiri?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)
|
| 28 |
+
·[Added Dec 26, 2025](https://medium.com/zerone-magazine/fugazi-de090e24e9b4?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)·5 min read
|
| 29 |
+
[](https://medium.com/@biplobgiri?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)
|
| 30 |
+
[Biplob Giri](https://medium.com/@biplobgiri?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)
|
| 31 |
+
·[Added Dec 26, 2025](https://medium.com/zerone-magazine/fugazi-de090e24e9b4?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)·5 min read
|
| 32 |
+
## [The Leisure of Death: No Exams Today! There’s an LED lamp on my desk that emits a ‘hum’ sound; you would only notice it when the world stops. For three nights, that hum had been…](https://medium.com/zerone-magazine/the-leisure-of-death-no-exams-today-5b45577430cb?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)
|
| 33 |
+
[](https://medium.com/@ayir137?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)
|
| 34 |
+
[Riya Jha](https://medium.com/@ayir137?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)
|
| 35 |
+
·[Added Dec 24, 2025](https://medium.com/zerone-magazine/the-leisure-of-death-no-exams-today-5b45577430cb?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)·6 min read
|
| 36 |
+

|
| 37 |
+

|
| 38 |
+
[](https://medium.com/@ayir137?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)
|
| 39 |
+
[Riya Jha](https://medium.com/@ayir137?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)
|
| 40 |
+
·[Added Dec 24, 2025](https://medium.com/zerone-magazine/the-leisure-of-death-no-exams-today-5b45577430cb?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)·6 min read
|
| 41 |
+
## [The Long Ascent Coherence. Validity. Truisms. Such is the nature that always existed and will after too. But we humans, many of us, live in contradictions…](https://medium.com/zerone-magazine/the-long-ascent-030ef52d99b0?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)
|
| 42 |
+
[](https://medium.com/@sudipkazibasnet?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)
|
| 43 |
+
[Sudip Basnet](https://medium.com/@sudipkazibasnet?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)
|
| 44 |
+
·[Added Dec 23, 2025](https://medium.com/zerone-magazine/the-long-ascent-030ef52d99b0?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)·3 min read
|
| 45 |
+

|
| 46 |
+

|
| 47 |
+
[](https://medium.com/@sudipkazibasnet?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)
|
| 48 |
+
[Sudip Basnet](https://medium.com/@sudipkazibasnet?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)
|
| 49 |
+
·[Added Dec 23, 2025](https://medium.com/zerone-magazine/the-long-ascent-030ef52d99b0?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)·3 min read
|
| 50 |
+
## [The Haunting of Liber — de’ Sine Tempore When was the last time you did nothing and didn’t feel guilty about it?](https://medium.com/zerone-magazine/the-haunting-of-liber-de-sine-tempore-47be2de892e0?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)
|
| 51 |
+
[](https://medium.com/@khadkamadhiraj?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)
|
| 52 |
+
[Madhiraj Khadka](https://medium.com/@khadkamadhiraj?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)
|
| 53 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/the-haunting-of-liber-de-sine-tempore-47be2de892e0?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)·3 min read
|
| 54 |
+

|
| 55 |
+

|
| 56 |
+
[](https://medium.com/@khadkamadhiraj?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)
|
| 57 |
+
[Madhiraj Khadka](https://medium.com/@khadkamadhiraj?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)
|
| 58 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/the-haunting-of-liber-de-sine-tempore-47be2de892e0?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)·3 min read
|
| 59 |
+
## [Yup. That’s me. I have seen lives I cannot reach, learned skills I will never master, chased curiosities that vanish the moment I try to hold them. I know…](https://medium.com/zerone-magazine/yup-thats-me-c75514e3d809?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)
|
| 60 |
+
[](https://medium.com/@orld?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)
|
| 61 |
+
[Orld](https://medium.com/@orld?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)
|
| 62 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/yup-thats-me-c75514e3d809?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)·5 min read
|
| 63 |
+

|
| 64 |
+

|
| 65 |
+
[](https://medium.com/@orld?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)
|
| 66 |
+
[Orld](https://medium.com/@orld?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)
|
| 67 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/yup-thats-me-c75514e3d809?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)·5 min read
|
| 68 |
+
## [Floating in the Flood I wake up to my phone before I wake up to myself. Still half- dreaming but I am already scrolling — the news headlines, the weather, a…](https://medium.com/zerone-magazine/floating-in-the-flood-59152da14f98?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)
|
| 69 |
+
[](https://medium.com/@ericaprajapati?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)
|
| 70 |
+
[Erica](https://medium.com/@ericaprajapati?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)
|
| 71 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/floating-in-the-flood-59152da14f98?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)·4 min read
|
| 72 |
+

|
| 73 |
+

|
| 74 |
+
[](https://medium.com/@ericaprajapati?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)
|
| 75 |
+
[Erica](https://medium.com/@ericaprajapati?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)
|
| 76 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/floating-in-the-flood-59152da14f98?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)·4 min read
|
| 77 |
+
## [HOW TRICKING ROCKS INTO THINKING MIGHT HAVE COST US OUR SANITY. The Digital Information Age and it’s consequences have been a disaster to humankind. The days when mobile phones were simply devices we…](https://medium.com/zerone-magazine/how-tricking-rocks-into-thinking-might-have-cost-us-our-sanity-e85cdfa600b9?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)
|
| 78 |
+
[](https://medium.com/@vetard?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)
|
| 79 |
+
[Viraj](https://medium.com/@vetard?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)
|
| 80 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/how-tricking-rocks-into-thinking-might-have-cost-us-our-sanity-e85cdfa600b9?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)·3 min read
|
| 81 |
+

|
| 82 |
+

|
| 83 |
+
[](https://medium.com/@vetard?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)
|
| 84 |
+
[Viraj](https://medium.com/@vetard?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)
|
| 85 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/how-tricking-rocks-into-thinking-might-have-cost-us-our-sanity-e85cdfa600b9?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)·3 min read
|
| 86 |
+
## [The Death of Leisure I close my laptop at 11:47 P.M. Assignment done. My eyes burn from the screen, but before the laptop lid even clicks shut, my hand is…](https://medium.com/zerone-magazine/the-death-of-leisure-4dc333a08779?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)
|
| 87 |
+
[](https://medium.com/@kritikaprajapati?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)
|
| 88 |
+
[Kritika Prajapati](https://medium.com/@kritikaprajapati?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)
|
| 89 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/the-death-of-leisure-4dc333a08779?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)·5 min read
|
| 90 |
+
[](https://medium.com/@kritikaprajapati?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)
|
| 91 |
+
[Kritika Prajapati](https://medium.com/@kritikaprajapati?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)
|
| 92 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/the-death-of-leisure-4dc333a08779?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)·5 min read
|
| 93 |
+
## [Surviving the Age of Information Overload I vividly remember the family trips I used to go on when I was a kid- the journey more clearly than the destinations. My father would…](https://medium.com/zerone-magazine/surviving-the-age-of-information-overload-61da0655cac9?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)
|
| 94 |
+
[](https://medium.com/@anshushrrmaa?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)
|
| 95 |
+
[Anshu Sharma](https://medium.com/@anshushrrmaa?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)
|
| 96 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/surviving-the-age-of-information-overload-61da0655cac9?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)·4 min read
|
| 97 |
+

|
| 98 |
+

|
| 99 |
+
[](https://medium.com/@anshushrrmaa?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)
|
| 100 |
+
[Anshu Sharma](https://medium.com/@anshushrrmaa?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)
|
| 101 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/surviving-the-age-of-information-overload-61da0655cac9?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)·4 min read
|
| 102 |
+
## [Surviving the age of information overload I have been an ant all these years. An example of a hardworking, focused, and consistent being. All I did was follow the scent, pick the…](https://medium.com/zerone-magazine/surviving-the-age-of-information-overload-f01081afed18?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)
|
| 103 |
+
[](https://medium.com/@ajjoshi922?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)
|
| 104 |
+
[Anita Joshi](https://medium.com/@ajjoshi922?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)
|
| 105 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/surviving-the-age-of-information-overload-f01081afed18?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)·12 min read
|
| 106 |
+

|
| 107 |
+

|
| 108 |
+
[](https://medium.com/@ajjoshi922?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)
|
| 109 |
+
[Anita Joshi](https://medium.com/@ajjoshi922?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)
|
| 110 |
+
·[Added Dec 22, 2025](https://medium.com/zerone-magazine/surviving-the-age-of-information-overload-f01081afed18?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)·12 min read
|
| 111 |
+
[Help](https://help.medium.com/hc/en-us?source=--------------------------------------------)
|
| 112 |
+
[Status](https://status.medium.com/?source=--------------------------------------------)
|
| 113 |
+
[About](https://medium.com/about?autoplay=1&source=--------------------------------------------)
|
| 114 |
+
[Careers](https://medium.com/jobs-at-medium/work-at-medium-959d1a85284e?source=--------------------------------------------)
|
| 115 |
+
Press
|
| 116 |
+
[Blog](https://blog.medium.com/?source=--------------------------------------------)
|
| 117 |
+
[Privacy](https://policy.medium.com/medium-privacy-policy-f03bf92035c9?source=--------------------------------------------)
|
| 118 |
+
[Rules](https://policy.medium.com/medium-rules-30e5502c4eb4?source=--------------------------------------------)
|
| 119 |
+
[Terms](https://policy.medium.com/medium-terms-of-service-9db0094a1e0f?source=--------------------------------------------)
|
| 120 |
+
[Text to speech](https://speechify.com/medium?source=--------------------------------------------)
|
data/cleaned/medium.com_zerone-magazine_tagged_technical-competition.md
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[Sitemap](https://medium.com/sitemap/sitemap.xml)
|
| 2 |
+
[Open in app](https://play.google.com/store/apps/details?id=com.medium.reader&referrer=utm_source%3DmobileNavBar&source=---publication_layout_nav-----------------------------------------)
|
| 3 |
+
Sign up
|
| 4 |
+
[Sign in](https://medium.com/m/signin?operation=login&redirect=https%3A%2F%2Fmedium.com%2Fzerone-magazine%2Fall&source=login---publication_layout_nav-----------------------global_nav------------------)
|
| 5 |
+
[Medium Logo](https://medium.com/?source=---publication_layout_nav-----------------------------------------)
|
| 6 |
+
[](https://medium.com/m/signin?operation=register&redirect=https%3A%2F%2Fmedium.com%2Fnew-story&source=---publication_layout_nav-----------------------new_post_topnav------------------)
|
| 7 |
+
[Search](https://medium.com/search?source=---publication_layout_nav-----------------------------------------)
|
| 8 |
+
Sign up
|
| 9 |
+
[Sign in](https://medium.com/m/signin?operation=login&redirect=https%3A%2F%2Fmedium.com%2Fzerone-magazine%2Fall&source=login---publication_layout_nav-----------------------global_nav------------------)
|
| 10 |
+

|
| 11 |
+
[](https://medium.com/zerone-magazine?source=---publication_nav-ee40a9d5a987----------------------------------------)
|
| 12 |
+
## [The Zerone](https://medium.com/zerone-magazine?source=---publication_nav-ee40a9d5a987----------------------------------------)
|
| 13 |
+
[Tech](https://medium.com/zerone-magazine/all?topic=technology&source=---publication_nav-ee40a9d5a987-----0-----------------------------------)
|
| 14 |
+
[General](https://medium.com/zerone-magazine/all?topic=general&source=---publication_nav-ee40a9d5a987-----1-----------------------------------)
|
| 15 |
+
[Personal](https://medium.com/zerone-magazine/all?topic=personal&source=---publication_nav-ee40a9d5a987-----2-----------------------------------)
|
| 16 |
+
[Fiction](https://medium.com/zerone-magazine/all?topic=fiction&source=---publication_nav-ee40a9d5a987-----3-----------------------------------)
|
| 17 |
+
[Magazine](https://medium.com/zerone-magazine/all?topic=zerone&source=---publication_nav-ee40a9d5a987-----4-----------------------------------)
|
| 18 |
+
[Competition](https://medium.com/zerone-magazine/all?topic=blogging-competition&source=---publication_nav-ee40a9d5a987-----5-----------------------------------)
|
| 19 |
+
[Tech Competition](https://medium.com/zerone-magazine/all?topic=technical-competition&source=---publication_nav-ee40a9d5a987-----6-----------------------------------)
|
| 20 |
+
[Interviews](https://medium.com/zerone-magazine/all?topic=interview&source=---publication_nav-ee40a9d5a987-----7-----------------------------------)
|
| 21 |
+
## Technical Competition
|
| 22 |
+
Technical Competition
|
| 23 |
+
All years
|
| 24 |
+
Latest
|
| 25 |
+
## [The Math Formula That Changed How I See the World Well, my favorite part during school was Math. Partially because I had solutions to most of the problems right at my fingertips (literally)…](https://medium.com/zerone-magazine/the-math-formula-that-changed-how-i-see-the-world-fa8eb5338aa6?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)
|
| 26 |
+
[](https://medium.com/@whosudiptiwari?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)
|
| 27 |
+
[Sudip](https://medium.com/@whosudiptiwari?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)
|
| 28 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/the-math-formula-that-changed-how-i-see-the-world-fa8eb5338aa6?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)·7 min read
|
| 29 |
+

|
| 30 |
+

|
| 31 |
+
[](https://medium.com/@whosudiptiwari?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)
|
| 32 |
+
[Sudip](https://medium.com/@whosudiptiwari?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)
|
| 33 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/the-math-formula-that-changed-how-i-see-the-world-fa8eb5338aa6?source=publication_content_feed----ee40a9d5a987-----0-----------------------------------)·7 min read
|
| 34 |
+
## [Demystifying Mal… Picture: From Zero to One A beautiful picture of coconuts! Let’s open the picture file, where I’ll describe to you how a PNG is made.](https://medium.com/zerone-magazine/demystifying-mal-picture-from-zero-to-one-90d17abfab4a?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)
|
| 35 |
+
[](https://medium.com/@076bce080.ishan?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)
|
| 36 |
+
[Ishan Banjara](https://medium.com/@076bce080.ishan?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)
|
| 37 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/demystifying-mal-picture-from-zero-to-one-90d17abfab4a?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)·7 min read
|
| 38 |
+

|
| 39 |
+

|
| 40 |
+
[](https://medium.com/@076bce080.ishan?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)
|
| 41 |
+
[Ishan Banjara](https://medium.com/@076bce080.ishan?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)
|
| 42 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/demystifying-mal-picture-from-zero-to-one-90d17abfab4a?source=publication_content_feed----ee40a9d5a987-----1-----------------------------------)·7 min read
|
| 43 |
+
## [Neural Audio Synthesis and Timbre Transfer: A Step Towards Digitalizing Musical Instruments The Necessity to Cook:](https://medium.com/zerone-magazine/neural-audio-synthesis-and-timbre-transfer-a-step-towards-digitalizing-musical-instruments-30337b65197f?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)
|
| 44 |
+
[](https://medium.com/@reetwiz02?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)
|
| 45 |
+
[Reetwiz](https://medium.com/@reetwiz02?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)
|
| 46 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/neural-audio-synthesis-and-timbre-transfer-a-step-towards-digitalizing-musical-instruments-30337b65197f?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)·9 min read
|
| 47 |
+

|
| 48 |
+

|
| 49 |
+
[](https://medium.com/@reetwiz02?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)
|
| 50 |
+
[Reetwiz](https://medium.com/@reetwiz02?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)
|
| 51 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/neural-audio-synthesis-and-timbre-transfer-a-step-towards-digitalizing-musical-instruments-30337b65197f?source=publication_content_feed----ee40a9d5a987-----2-----------------------------------)·9 min read
|
| 52 |
+
## [Neuromorphic Computing: Teaching Chips to Think Like Humans A Brainy Beginning](https://medium.com/zerone-magazine/neuromorphic-computing-teaching-chips-to-think-like-humans-cef359371622?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)
|
| 53 |
+
[](https://medium.com/@aayushaadhikarii?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)
|
| 54 |
+
[Aayusha Adhikari](https://medium.com/@aayushaadhikarii?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)
|
| 55 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/neuromorphic-computing-teaching-chips-to-think-like-humans-cef359371622?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)·4 min read
|
| 56 |
+

|
| 57 |
+

|
| 58 |
+
[](https://medium.com/@aayushaadhikarii?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)
|
| 59 |
+
[Aayusha Adhikari](https://medium.com/@aayushaadhikarii?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)
|
| 60 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/neuromorphic-computing-teaching-chips-to-think-like-humans-cef359371622?source=publication_content_feed----ee40a9d5a987-----3-----------------------------------)·4 min read
|
| 61 |
+
## [When the System Fights Back: A Journey into Chaos Engineering Let me set the stage. It’s Black Friday, and our e-commerce platform is humming along, soaking in the adrenaline of record-breaking…](https://medium.com/zerone-magazine/when-the-system-fights-back-a-journey-into-chaos-engineering-578321f4cda9?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)
|
| 62 |
+
[](https://medium.com/@krishtimil?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)
|
| 63 |
+
[Krishant Timilsina](https://medium.com/@krishtimil?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)
|
| 64 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/when-the-system-fights-back-a-journey-into-chaos-engineering-578321f4cda9?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)·4 min read
|
| 65 |
+

|
| 66 |
+

|
| 67 |
+
[](https://medium.com/@krishtimil?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)
|
| 68 |
+
[Krishant Timilsina](https://medium.com/@krishtimil?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)
|
| 69 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/when-the-system-fights-back-a-journey-into-chaos-engineering-578321f4cda9?source=publication_content_feed----ee40a9d5a987-----4-----------------------------------)·4 min read
|
| 70 |
+
## [Demystifying RISC-V: The Path to Efficient Computing RISC-V is a computer architecture based on RISC(Reduced Instruction Set Computer) principles, started in 2010 as part of UC Berkeley’s…](https://medium.com/zerone-magazine/demystifying-risc-v-the-path-to-efficient-computing-fec9845fabdc?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)
|
| 71 |
+
[](https://medium.com/@redInkLobster?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)
|
| 72 |
+
[lobster](https://medium.com/@redInkLobster?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)
|
| 73 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/demystifying-risc-v-the-path-to-efficient-computing-fec9845fabdc?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)·4 min read
|
| 74 |
+
[](https://medium.com/@redInkLobster?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)
|
| 75 |
+
[lobster](https://medium.com/@redInkLobster?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)
|
| 76 |
+
·[Added Dec 24, 2024](https://medium.com/zerone-magazine/demystifying-risc-v-the-path-to-efficient-computing-fec9845fabdc?source=publication_content_feed----ee40a9d5a987-----5-----------------------------------)·4 min read
|
| 77 |
+
## [Cybersecurity: A journey of Complexity Turned to Simplicity](https://medium.com/zerone-magazine/cybersecurity-a-journey-of-complexity-turned-to-simplicity-cd8d1077f555?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)
|
| 78 |
+
[](https://medium.com/@bsamru31?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)
|
| 79 |
+
[Samrachana Baral](https://medium.com/@bsamru31?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)
|
| 80 |
+
·[Added Dec 23, 2024](https://medium.com/zerone-magazine/cybersecurity-a-journey-of-complexity-turned-to-simplicity-cd8d1077f555?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)·5 min read
|
| 81 |
+
[](https://medium.com/@bsamru31?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)
|
| 82 |
+
[Samrachana Baral](https://medium.com/@bsamru31?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)
|
| 83 |
+
·[Added Dec 23, 2024](https://medium.com/zerone-magazine/cybersecurity-a-journey-of-complexity-turned-to-simplicity-cd8d1077f555?source=publication_content_feed----ee40a9d5a987-----6-----------------------------------)·5 min read
|
| 84 |
+
## [APIs Made Simple: How Technology Talks to Itself Imagine this: you walk into a restaurant, take a seat, and glance at the menu. The menu lists the dishes available, but you don’t head into…](https://medium.com/zerone-magazine/apis-made-simple-how-technology-talks-to-itself-6a024b604353?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)
|
| 85 |
+
[](https://medium.com/@smriii?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)
|
| 86 |
+
[smriii](https://medium.com/@smriii?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)
|
| 87 |
+
·[Added Dec 22, 2024](https://medium.com/zerone-magazine/apis-made-simple-how-technology-talks-to-itself-6a024b604353?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)·3 min read
|
| 88 |
+

|
| 89 |
+

|
| 90 |
+
[](https://medium.com/@smriii?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)
|
| 91 |
+
[smriii](https://medium.com/@smriii?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)
|
| 92 |
+
·[Added Dec 22, 2024](https://medium.com/zerone-magazine/apis-made-simple-how-technology-talks-to-itself-6a024b604353?source=publication_content_feed----ee40a9d5a987-----7-----------------------------------)·3 min read
|
| 93 |
+
## [Molecular Nanotechnology Nanotech has the potential to leave past technological progress trends to dust.](https://medium.com/zerone-magazine/molecular-nanotechnology-a9752e86fd43?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)
|
| 94 |
+
[](https://medium.com/@laudarimilan1?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)
|
| 95 |
+
[Milan Laudari](https://medium.com/@laudarimilan1?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)
|
| 96 |
+
·[Added Dec 21, 2024](https://medium.com/zerone-magazine/molecular-nanotechnology-a9752e86fd43?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)·5 min read
|
| 97 |
+

|
| 98 |
+

|
| 99 |
+
[](https://medium.com/@laudarimilan1?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)
|
| 100 |
+
[Milan Laudari](https://medium.com/@laudarimilan1?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)
|
| 101 |
+
·[Added Dec 21, 2024](https://medium.com/zerone-magazine/molecular-nanotechnology-a9752e86fd43?source=publication_content_feed----ee40a9d5a987-----8-----------------------------------)·5 min read
|
| 102 |
+
## [Unraveling the Tech Mystery: Your Journey from Zero to One with ASP.NET! Welcome to the exciting world of web development! If you’re just starting out, you might feel like you’ve stumbled into a tech jungle, with…](https://medium.com/zerone-magazine/unraveling-the-tech-mystery-your-journey-from-zero-to-one-with-asp-net-2342e461dd21?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)
|
| 103 |
+
[](https://medium.com/@delubin?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)
|
| 104 |
+
[Subin](https://medium.com/@delubin?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)
|
| 105 |
+
·[Added Dec 21, 2024](https://medium.com/zerone-magazine/unraveling-the-tech-mystery-your-journey-from-zero-to-one-with-asp-net-2342e461dd21?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)·4 min read
|
| 106 |
+
[](https://medium.com/@delubin?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)
|
| 107 |
+
[Subin](https://medium.com/@delubin?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)
|
| 108 |
+
·[Added Dec 21, 2024](https://medium.com/zerone-magazine/unraveling-the-tech-mystery-your-journey-from-zero-to-one-with-asp-net-2342e461dd21?source=publication_content_feed----ee40a9d5a987-----9-----------------------------------)·4 min read
|
| 109 |
+
[Help](https://help.medium.com/hc/en-us?source=--------------------------------------------)
|
| 110 |
+
[Status](https://status.medium.com/?source=--------------------------------------------)
|
| 111 |
+
[About](https://medium.com/about?autoplay=1&source=--------------------------------------------)
|
| 112 |
+
[Careers](https://medium.com/jobs-at-medium/work-at-medium-959d1a85284e?source=--------------------------------------------)
|
| 113 |
+
Press
|
| 114 |
+
[Blog](https://blog.medium.com/?source=--------------------------------------------)
|
| 115 |
+
[Privacy](https://policy.medium.com/medium-privacy-policy-f03bf92035c9?source=--------------------------------------------)
|
| 116 |
+
[Rules](https://policy.medium.com/medium-rules-30e5502c4eb4?source=--------------------------------------------)
|
| 117 |
+
[Terms](https://policy.medium.com/medium-terms-of-service-9db0094a1e0f?source=--------------------------------------------)
|
| 118 |
+
[Text to speech](https://speechify.com/medium?source=--------------------------------------------)
|
data/cleaned/past-locus.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# [Locus 2025](https://preeminent-marzipan-031869.netlify.app/)
|
| 2 |
+
# [Locus 2024](https://locus-frontend-locususer.vercel.app/)
|
| 3 |
+
# [Locus 2023](https://locus-static-site-e227.vercel.app/)
|
data/cleaned/raw_web_content.md
ADDED
|
File without changes
|
data/cleaned/sponsors.md
ADDED
|
@@ -0,0 +1,193 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Locus 2025 Sponsors
|
| 2 |
+
* * *
|
| 3 |
+
## Platinum Sponsor
|
| 4 |
+
[](https://careerlink.ai/)
|
| 5 |
+
### careerlink.ai
|
| 6 |
+
[Place to Build Your Career](https://careerlink.ai/)
|
| 7 |
+
[](https://www.itonics-innovation.com/)
|
| 8 |
+
### Itonics
|
| 9 |
+
[visit sponsor](https://www.itonics-innovation.com/)
|
| 10 |
+
[](https://progressivelabs.tech/)
|
| 11 |
+
### Progressive Labs
|
| 12 |
+
[visit sponsor](https://progressivelabs.tech/)
|
| 13 |
+
[](https://www.kapower.us/)
|
| 14 |
+
### K&A Engineering Consulting
|
| 15 |
+
[visit sponsor](https://www.kapower.us/)
|
| 16 |
+
* * *
|
| 17 |
+
## Merchandise Partner
|
| 18 |
+
[](https://ebpearls.com.au/)
|
| 19 |
+
### EB Pearls
|
| 20 |
+
[visit sponsor](https://ebpearls.com.au/)
|
| 21 |
+
* * *
|
| 22 |
+
## Gold Sponsor
|
| 23 |
+
[](https://www.jamboreeindia.com/centre/nepal)
|
| 24 |
+
### Jamboree
|
| 25 |
+
[visit sponsor](https://www.jamboreeindia.com/centre/nepal)
|
| 26 |
+
[](https://neek-transformer.com/)
|
| 27 |
+
### NEEK
|
| 28 |
+
[visit sponsor](https://neek-transformer.com/)
|
| 29 |
+
* * *
|
| 30 |
+
## General Sponsor
|
| 31 |
+
[](https://dolphindivetech.com/)
|
| 32 |
+
### DolphinDive Technology
|
| 33 |
+
Expedition Partner
|
| 34 |
+
[visit sponsor](https://dolphindivetech.com/)
|
| 35 |
+
[](https://www.securitypalhq.com/)
|
| 36 |
+
### SecurityPal
|
| 37 |
+
CyberSecurity Partner
|
| 38 |
+
[visit sponsor](https://www.securitypalhq.com/)
|
| 39 |
+
[](https://www.ekbana.com/)
|
| 40 |
+
### EKbana
|
| 41 |
+
[visit sponsor](https://www.ekbana.com/)
|
| 42 |
+
* * *
|
| 43 |
+
## Event Sponsor
|
| 44 |
+
[](https://botyards.com/)
|
| 45 |
+
### BotYards
|
| 46 |
+
Robo Soccer
|
| 47 |
+
[visit sponsor](https://botyards.com/)
|
| 48 |
+
[](https://alternative.com.np/)
|
| 49 |
+
### Alternative Technology
|
| 50 |
+
Girls in tech Supporting Partner & Patternverse Title sponsor
|
| 51 |
+
[visit sponsor](https://alternative.com.np/)
|
| 52 |
+
[](https://smartcheli.org.np/)
|
| 53 |
+
### Smart Cheli
|
| 54 |
+
Girls to code Supporting Partner
|
| 55 |
+
[visit sponsor](https://smartcheli.org.np/)
|
| 56 |
+
[](https://www.instagram.com/the_computerclub/)
|
| 57 |
+
### The Computer Club
|
| 58 |
+
Hack-A-Week Tech Partner
|
| 59 |
+
[visit sponsor](https://www.instagram.com/the_computerclub/)
|
| 60 |
+
[](https://nestnepal.com/)
|
| 61 |
+
### Nest Nepal
|
| 62 |
+
Hack-A-Week Associate Sponsor
|
| 63 |
+
[visit sponsor](https://nestnepal.com/)
|
| 64 |
+
[](https://www.itonics-innovation.com/)
|
| 65 |
+
### Itonics
|
| 66 |
+
Hack-A-Week Title Sponsor
|
| 67 |
+
[visit sponsor](https://www.itonics-innovation.com/)
|
| 68 |
+
[](https://www.giz.de/en/worldwide/378.html)
|
| 69 |
+
### GIZ Nepal
|
| 70 |
+
Energy Hackathon 8.0 Title Sponsor
|
| 71 |
+
[visit sponsor](https://www.giz.de/en/worldwide/378.html)
|
| 72 |
+
[](https://www.aepc.gov.np/rerl/public/)
|
| 73 |
+
### RERL
|
| 74 |
+
Energy Hackathon 8.0 Category Sponsor
|
| 75 |
+
[visit sponsor](https://www.aepc.gov.np/rerl/public/)
|
| 76 |
+
[](https://neaec.com.np/en/home)
|
| 77 |
+
### NEA Engineering Consultancy
|
| 78 |
+
Energy Hackathon 8.0 Category Sponsor
|
| 79 |
+
[visit sponsor](https://neaec.com.np/en/home)
|
| 80 |
+
[](https://logictronix.com/)
|
| 81 |
+
### Logictronix
|
| 82 |
+
National FPGA Design Competition
|
| 83 |
+
[visit sponsor](https://logictronix.com/)
|
| 84 |
+
[](https://techaxis.com.np/)
|
| 85 |
+
### TechAxis
|
| 86 |
+
Software Fellowship Title Sponsor
|
| 87 |
+
[visit sponsor](https://techaxis.com.np/)
|
| 88 |
+
[](https://yarsa.tech/)
|
| 89 |
+
### Yarsa Tech
|
| 90 |
+
Hardware Fellowship Title Sponsor
|
| 91 |
+
[visit sponsor](https://yarsa.tech/)
|
| 92 |
+
[](https://techkeynp.com/)
|
| 93 |
+
### Techkey
|
| 94 |
+
Hardware Fellowship Associate Sponsor
|
| 95 |
+
[visit sponsor](https://techkeynp.com/)
|
| 96 |
+
[](https://jobaxle.com/)
|
| 97 |
+
### JobAxle
|
| 98 |
+
Software Fellowship Placement Partner
|
| 99 |
+
[visit sponsor](https://jobaxle.com/)
|
| 100 |
+
[](https://miraiglobal.com.au/)
|
| 101 |
+
### Mirai Global Education and Visa Services Nepal
|
| 102 |
+
Girls Futsal Title Sponsor
|
| 103 |
+
[visit sponsor](https://miraiglobal.com.au/)
|
| 104 |
+
[](https://poshilofood.com/)
|
| 105 |
+
### Poshilo Foods
|
| 106 |
+
Nutrition Partner Locus Cup
|
| 107 |
+
[visit sponsor](https://poshilofood.com/)
|
| 108 |
+
[](https://puzzlemandu.com/)
|
| 109 |
+
### Puzzlemandu
|
| 110 |
+
Locus Cubing Nepal Title Sponsor
|
| 111 |
+
[visit sponsor](https://puzzlemandu.com/)
|
| 112 |
+
* * *
|
| 113 |
+
## Stall Sponsor
|
| 114 |
+
[](https://www.lftechnology.com/)
|
| 115 |
+
### Leapfrog Technology
|
| 116 |
+
[visit sponsor](https://www.lftechnology.com/)
|
| 117 |
+
[](https://logictronix.com/)
|
| 118 |
+
### Logictronix
|
| 119 |
+
[visit sponsor](https://logictronix.com/)
|
| 120 |
+
[](https://basiyo.com/)
|
| 121 |
+
### basiyo
|
| 122 |
+
[visit sponsor](https://basiyo.com/)
|
| 123 |
+
* * *
|
| 124 |
+
## Supporting Partners
|
| 125 |
+
[](https://www.ntc.net.np/)
|
| 126 |
+
### Nepal Telecom
|
| 127 |
+
[visit sponsor](https://www.ntc.net.np/)
|
| 128 |
+
[](https://www.facebook.com/p/Free-Students-Union-Pulchowk-Campus-2079-100092446142474/)
|
| 129 |
+
### Free Students Union
|
| 130 |
+
[visit sponsor](https://www.facebook.com/p/Free-Students-Union-Pulchowk-Campus-2079-100092446142474/)
|
| 131 |
+
* * *
|
| 132 |
+
## LOCUS Partners
|
| 133 |
+
[](https://www.securitypalhq.com/)
|
| 134 |
+
### SecurityPal
|
| 135 |
+
CyberSecurity Partner
|
| 136 |
+
[visit sponsor](https://www.securitypalhq.com/)
|
| 137 |
+
[](https://www.naamii.org.np/)
|
| 138 |
+
### NAAMII
|
| 139 |
+
Research Partner
|
| 140 |
+
[visit sponsor](https://www.naamii.org.np/)
|
| 141 |
+
[](https://techaxis.com.np/)
|
| 142 |
+
### TechAxis
|
| 143 |
+
IT Training Partner
|
| 144 |
+
[visit sponsor](https://techaxis.com.np/)
|
| 145 |
+
[](https://engineersblog.net/)
|
| 146 |
+
### Engineer Vlogs
|
| 147 |
+
Engineering Outreach Partner
|
| 148 |
+
[visit sponsor](https://engineersblog.net/)
|
| 149 |
+
[](https://worldlink.com.np/)
|
| 150 |
+
### Worldlink
|
| 151 |
+
Internet Partner
|
| 152 |
+
[visit sponsor](https://worldlink.com.np/)
|
| 153 |
+
[](https://www.hamropatro.com/)
|
| 154 |
+
### Hamro Patro
|
| 155 |
+
App Partner
|
| 156 |
+
[visit sponsor](https://www.hamropatro.com/)
|
| 157 |
+
[](https://nestnepal.com/)
|
| 158 |
+
### Nest Nepal
|
| 159 |
+
Hosting Partner
|
| 160 |
+
[visit sponsor](https://nestnepal.com/)
|
| 161 |
+
[](https://www.atherenergy.com/)
|
| 162 |
+
### ATHER
|
| 163 |
+
2-Wheeler Partner
|
| 164 |
+
[visit sponsor](https://www.atherenergy.com/)
|
| 165 |
+
[](https://broadwayinfosys.com/)
|
| 166 |
+
### Broadway Infosys
|
| 167 |
+
Education Partner
|
| 168 |
+
[visit sponsor](https://broadwayinfosys.com/)
|
| 169 |
+
* * *
|
| 170 |
+
## Media Partner
|
| 171 |
+
[](https://www.urjakhabar.com/)
|
| 172 |
+
### Urja Khabar
|
| 173 |
+
[visit sponsor](https://www.urjakhabar.com/)
|
| 174 |
+
[](https://ictsamachar.com/)
|
| 175 |
+
### ICT Samachar
|
| 176 |
+
[visit sponsor](https://ictsamachar.com/)
|
| 177 |
+
[](https://ictbyte.com/)
|
| 178 |
+
### ICT Byte
|
| 179 |
+
[visit sponsor](https://ictbyte.com/)
|
| 180 |
+
[](https://ictframe.com/)
|
| 181 |
+
### ICT Frame
|
| 182 |
+
[visit sponsor](https://ictframe.com/)
|
| 183 |
+
* * *
|
| 184 |
+
## Community Partner
|
| 185 |
+
[](https://techbytenepal.com/)
|
| 186 |
+
### NepTech Byte
|
| 187 |
+
[visit sponsor](https://techbytenepal.com/)
|
| 188 |
+
[](https://www.facebook.com/rotaractpds)
|
| 189 |
+
### Rotaract Club
|
| 190 |
+
[visit sponsor](https://www.facebook.com/rotaractpds)
|
| 191 |
+
[](https://www.facebook.com/pulchowk.girls/)
|
| 192 |
+
### IOE Pulchowk Girls
|
| 193 |
+
[visit sponsor](https://www.facebook.com/pulchowk.girls/)
|
data/cleaned/teams.md
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Our Teams
|
| 2 |
+
Meet the passionate individuals driving innovation and excellence
|
| 3 |
+
## LOCUS Open Source Team
|
| 4 |
+

|
| 5 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 6 |
+

|
| 7 |
+
Lead
|
| 8 |
+
### Jeevan Neupane
|
| 9 |
+

|
| 10 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 11 |
+

|
| 12 |
+
Vice Lead
|
| 13 |
+
### Rishikesh Paudel
|
| 14 |
+

|
| 15 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 16 |
+

|
| 17 |
+
Frontend Lead
|
| 18 |
+
### Gyaneshwar Sah
|
| 19 |
+

|
| 20 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 21 |
+

|
| 22 |
+
Backend Lead
|
| 23 |
+
### Prabin Adhikari
|
| 24 |
+

|
| 25 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 26 |
+

|
| 27 |
+
DevOps Lead
|
| 28 |
+
### Darshan Paudyal
|
| 29 |
+

|
| 30 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 31 |
+

|
| 32 |
+
App development Lead
|
| 33 |
+
### Saroj Poudel
|
| 34 |
+

|
| 35 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 36 |
+

|
| 37 |
+
Data Science Lead
|
| 38 |
+
### Ashish Pandey
|
| 39 |
+

|
| 40 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 41 |
+

|
| 42 |
+
Design Lead
|
| 43 |
+
### Bikash Chandra
|
| 44 |
+

|
| 45 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 46 |
+

|
| 47 |
+
Education and Content Lead
|
| 48 |
+
### Pratik Adhikari
|
| 49 |
+

|
| 50 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 51 |
+

|
| 52 |
+
Advisory
|
| 53 |
+
### Sadhana Panthi
|
| 54 |
+

|
| 55 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 56 |
+

|
| 57 |
+
Advisory
|
| 58 |
+
### Bishal Lamichhane
|
| 59 |
+
## Neural AI Hack a Week Organizers
|
| 60 |
+

|
| 61 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 62 |
+

|
| 63 |
+
Organizer
|
| 64 |
+
### Bishal Lamichhane
|
| 65 |
+

|
| 66 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 67 |
+

|
| 68 |
+
Organizer
|
| 69 |
+
### Sadhana Panthi
|
| 70 |
+

|
| 71 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 72 |
+

|
| 73 |
+
Organizer
|
| 74 |
+
### Sandip Katel
|
| 75 |
+

|
| 76 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 77 |
+

|
| 78 |
+
Organizer
|
| 79 |
+
### Saphal Rimal
|
| 80 |
+

|
| 81 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 82 |
+

|
| 83 |
+
Organizer
|
| 84 |
+
### Pragalbha Acharya
|
| 85 |
+

|
| 86 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 87 |
+

|
| 88 |
+
Organizer
|
| 89 |
+
### Ashok Parsad Neupane
|
| 90 |
+

|
| 91 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 92 |
+

|
| 93 |
+
Organizer
|
| 94 |
+
### Jeevan Neupane
|
| 95 |
+
## Creative Teams
|
| 96 |
+
Content Writing TeamDesign Team AlphaDesign Team BetaDesign Team DeltaDesign Team GammaPhotography TeamShort Content Creator TeamVideo Editing Team
|
| 97 |
+
### Content Writing Team
|
| 98 |
+

|
| 99 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 100 |
+

|
| 101 |
+
### Anjal Adhikari
|
| 102 |
+

|
| 103 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 104 |
+

|
| 105 |
+
### Anubhav Jha
|
| 106 |
+

|
| 107 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 108 |
+

|
| 109 |
+
### Niraj Karki
|
| 110 |
+

|
| 111 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 112 |
+

|
| 113 |
+
### Pratap Kunwar
|
| 114 |
+

|
| 115 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 116 |
+

|
| 117 |
+
### Raju Ubarkoti
|
| 118 |
+

|
| 119 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 120 |
+

|
| 121 |
+
### Sachita Aryal
|
| 122 |
+

|
| 123 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 124 |
+

|
| 125 |
+
### Shruti Maharjan
|
| 126 |
+

|
| 127 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 128 |
+

|
| 129 |
+
### Suyash Adhikari
|
| 130 |
+

|
| 131 |
+
[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)[](https://www.locus.com.np/teams)
|
| 132 |
+

|
| 133 |
+
### Yojana Thapa
|
data/cleaned/zerone.md
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# The Zerone 2025
|
| 2 |
+
* * *
|
| 3 |
+

|
| 4 |
+
The Zerone magazine is IOE Pulchowk's annual technical magazine. From in-depth technical explanations and captivating stories to thought-provoking interviews, exclusive LOCUS pre-event coverage, and cutting-edge research papers, The Zerone magazine has something for everyone. With a 14-year legacy, The Zerone has established itself as the central hearth of tech, literature and everything in between. The reason is the meticulous work that our editors and designers put into crafting the magazine. Not to mention, our readers whose love and support for the magazine have always bolstered us to do better.
|
| 5 |
+
# The Zerone 2025 Committee
|
| 6 |
+

|
| 7 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 8 |
+

|
| 9 |
+
Editor-in-Chief
|
| 10 |
+
### Rubika Bashyal
|
| 11 |
+

|
| 12 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 13 |
+

|
| 14 |
+
Managing Editor
|
| 15 |
+
### Arun Chandra Bhusal
|
| 16 |
+

|
| 17 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 18 |
+

|
| 19 |
+
Managing Editor
|
| 20 |
+
### Raj Sujakhu
|
| 21 |
+

|
| 22 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 23 |
+

|
| 24 |
+
Magazine Designer
|
| 25 |
+
### Braj Neupane
|
| 26 |
+

|
| 27 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 28 |
+

|
| 29 |
+
Design Chief
|
| 30 |
+
### Nijiya Maharjan
|
| 31 |
+

|
| 32 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 33 |
+

|
| 34 |
+
Associate Editor
|
| 35 |
+
### Bibek Dhungana
|
| 36 |
+

|
| 37 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 38 |
+

|
| 39 |
+
Tech Lead
|
| 40 |
+
### Sheshadri S. Bandyopadhyay
|
| 41 |
+

|
| 42 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 43 |
+

|
| 44 |
+
Editor
|
| 45 |
+
### Suparna Neupane
|
| 46 |
+

|
| 47 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 48 |
+

|
| 49 |
+
Editor
|
| 50 |
+
### Yojana Thapa
|
| 51 |
+

|
| 52 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 53 |
+

|
| 54 |
+
Event Coverage
|
| 55 |
+
### Prashansa Shrestha
|
| 56 |
+

|
| 57 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 58 |
+

|
| 59 |
+
Social Media
|
| 60 |
+
### Sanskriti Adhikari
|
| 61 |
+

|
| 62 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 63 |
+

|
| 64 |
+
Digital Media Designer
|
| 65 |
+
### Aashraya Neupane
|
| 66 |
+

|
| 67 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 68 |
+

|
| 69 |
+
Interview
|
| 70 |
+
### Hritesh Rai
|
| 71 |
+

|
| 72 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 73 |
+

|
| 74 |
+
Interview
|
| 75 |
+
### Shraddha Pokharel
|
| 76 |
+

|
| 77 |
+
[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)[](https://www.locus.com.np/zerone)
|
| 78 |
+

|
| 79 |
+
Fact Check
|
| 80 |
+
### Bimala Sapkota
|
| 81 |
+
# Zerone Highlights
|
| 82 |
+
[ Closed[More](https://medium.com/zerone-magazine/tagged/blogging-competition) ](https://medium.com/zerone-magazine/tagged/blogging-competition)[ Closed[More](https://medium.com/zerone-magazine/tagged/technical-competition) ](https://medium.com/zerone-magazine/tagged/technical-competition)
|
| 83 |
+
## The Zerone Gallery
|
| 84 |
+

|
| 85 |
+

|
| 86 |
+

|
| 87 |
+

|
| 88 |
+

|
| 89 |
+

|
| 90 |
+

|
| 91 |
+

|
| 92 |
+

|
| 93 |
+
# Previous Issues
|
| 94 |
+
[2025](https://drive.google.com/file/u/2/d/1S99bX6EzDScZ2Is4MLLpNWGO4suq-fwj/view?usp=sharing)
|
| 95 |
+
[2024](https://drive.google.com/file/d/1RRV3RALnP9BzUy1vq5KzS0HeH2XGH6HP/view?usp=sharing)
|
| 96 |
+
[2023](https://drive.google.com/drive/folders/14UPc7jaazIt-E7RBRF6IJ9LmFrwzTRjc)
|
| 97 |
+
[2022](https://drive.google.com/drive/folders/14UPc7jaazIt-E7RBRF6IJ9LmFrwzTRjc)
|
| 98 |
+
[2020](https://drive.google.com/file/d/1pJMHmXZUcOCYBG5xt2Do5OMD9xEB7yD5/view)
|
| 99 |
+
[2019](https://drive.google.com/file/d/1mm78B6Hc3oLw3IrT1R6fMyI9C8di5ga5/view)
|
| 100 |
+
[2018](https://drive.google.com/file/d/1wn-QI5akpAgEA2vs8P9jeJDVxRbfNhPm/view?usp=drive_link)
|
| 101 |
+
[2017](https://drive.google.com/file/d/1X-QENlLrFw0GM8NIlmTP4hsKYESjeRbh/view?usp=drive_link)
|
| 102 |
+
[2016](https://drive.google.com/file/d/1b8MlmHNM_0GeYJhxAajb8YC22euZwyZQ/view?usp=drive_link)
|
data/committee.md
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 404
|
| 2 |
+
Page not found
|
| 3 |
+
The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
|
| 4 |
+
[Go back home](https://www.locus.com.np/)
|
data/contact-us.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[](https://www.locus.com.np/)[Home](https://www.locus.com.np/)[About](https://www.locus.com.np/about-us)[Events3](https://www.locus.com.np/events)[Zerone](https://www.locus.com.np/zerone)[Sponsors](https://www.locus.com.np/sponsors)
|
| 2 |
+
More
|
| 3 |
+
# Contact Us
|
| 4 |
+
Email Us locus@ioe.edu.np [ Call Us +977 9805261687 ](tel:+9779805261687)
|
| 5 |
+
NAME
|
| 6 |
+
EMAIL
|
| 7 |
+
PHONE NUMBER
|
| 8 |
+
PURPOSE
|
| 9 |
+
MESSAGE
|
| 10 |
+
Submit
|
| 11 |
+
[Prospectus](https://drive.google.com/file/d/14UPRPobB6AXR7YmS1570rtIHgWdVpyDY/view)
|
| 12 |
+
### IOE PULCHOWK
|
| 13 |
+
Pulchowk, Lalitpur
|
| 14 |
+
Nepal
|
| 15 |
+

|
| 16 |
+
### CONTACT US
|
| 17 |
+
locus@ioe.edu.np
|
| 18 |
+
#### FOLLOW US
|
| 19 |
+
[](https://www.instagram.com/locus_ioe/)[](https://www.facebook.com/locus.ioe)[](https://www.linkedin.com/company/locusioe/)
|
| 20 |
+
MADE WITH ❤ BY LOST
|
| 21 |
+
©COPYRIGHT 2024, PULCHOWK ENGINEERING CAMPUS
|
data/event_15%20DAYS%20OF%20LEARNING.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[](https://www.locus.com.np/)[Home](https://www.locus.com.np/)[About](https://www.locus.com.np/about-us)[Events3](https://www.locus.com.np/events)[Zerone](https://www.locus.com.np/zerone)[Sponsors](https://www.locus.com.np/sponsors)
|
| 2 |
+
More
|
| 3 |
+
## Event Detail
|
| 4 |
+
* * *
|
| 5 |
+
[Register Now/-](https://nativesplug.com/events)
|
| 6 |
+
# 15 DAYS OF LEARNING
|
| 7 |
+
Prizes: Stickers, T-shirts, and Vouchers
|
| 8 |
+
Date : Poush 29, 2082 to Magh 17, 2082 | Time : All
|
| 9 |
+
Mode : OnlineStatus : Open
|
| 10 |
+
### NativesPlug 15 Day Learning Challenge is a structured online learning initiative designed to encourage consistent skill development through daily course completion.The challenge motivates learners to build discipline, enhance knowledge, and showcase their learning journey through social media engagement.• 15-day, 10-day, and 5-day continuous learning milestones • Daily course completion with individual certificates • Social media posting to reflect learning insights and experiences • Onsite prize distribution during LOCUS grand prize ceremony
|
| 11 |
+
### Why Join ?:
|
| 12 |
+
### • Build a habit of continuous learning over 15 days
|
| 13 |
+
• Earn NativesPlug vouchers and exclusive rewards
|
| 14 |
+
• Receive digital certificates and course completion certificates
|
| 15 |
+
• Get LinkedIn account endorsement for top performers
|
| 16 |
+
• Win merchandise like T-shirts and stickers
|
| 17 |
+
• Increase visibility by sharing learning insights on social media
|
| 18 |
+
|
| 19 |
+
### Info:
|
| 20 |
+
### 1. Event Name: NativesPlug 15 Day Learning Challenge
|
| 21 |
+
2. Start Date: Jan 13 (Poush 29)
|
| 22 |
+
3. End Date: Jan 31 (Magh 17)
|
| 23 |
+
4. Registration Link: https://nativesplug.com/events
|
| 24 |
+
5. Prizes:
|
| 25 |
+
- 15 Days Continuous Completion: Rs. 500 voucher, LinkedIn endorsement, digital certificate, course certificates, T-shirt, stickers
|
| 26 |
+
- 10 Days Continuous Completion: Rs. 150 voucher, course certificates, stickers
|
| 27 |
+
- 5 Days Continuous Completion: Course certificates, stickers
|
| 28 |
+
6. Posting Rules:
|
| 29 |
+
- Must tag NativesPlug on Facebook or LinkedIn
|
| 30 |
+
- Avoid repetitive challenge-related phrases
|
| 31 |
+
- Use reflective and insight-based post formats
|
| 32 |
+
7. Note: T-shirts and stickers must be collected onsite during LOCUS grand prize distribution
|
| 33 |
+
|
| 34 |
+
* Ashim Sapkota : 9846567535
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
* Tilak Thapa : 9849860159
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
LOCUS_EVENTS
|
| 41 |
+
[Events](https://www.locus.com.np/events)
|
| 42 |
+
## Event Sponsors
|
| 43 |
+

|
| 44 |
+
[Prospectus](https://drive.google.com/file/d/14UPRPobB6AXR7YmS1570rtIHgWdVpyDY/view)
|
| 45 |
+
### IOE PULCHOWK
|
| 46 |
+
Pulchowk, Lalitpur
|
| 47 |
+
Nepal
|
| 48 |
+

|
| 49 |
+
### CONTACT US
|
| 50 |
+
locus@ioe.edu.np
|
| 51 |
+
#### FOLLOW US
|
| 52 |
+
[](https://www.instagram.com/locus_ioe/)[](https://www.facebook.com/locus.ioe)[](https://www.linkedin.com/company/locusioe/)
|
| 53 |
+
MADE WITH ❤ BY LOST
|
| 54 |
+
©COPYRIGHT 2024, PULCHOWK ENGINEERING CAMPUS
|
data/event_CODE-JAM.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[](https://www.locus.com.np/)[Home](https://www.locus.com.np/)[About](https://www.locus.com.np/about-us)[Events3](https://www.locus.com.np/events)[Zerone](https://www.locus.com.np/zerone)[Sponsors](https://www.locus.com.np/sponsors)
|
| 2 |
+
More
|
| 3 |
+
## Event Detail
|
| 4 |
+
* * *
|
| 5 |
+
Register Free/-
|
| 6 |
+
# CODE-JAM
|
| 7 |
+
Prizepool : Rs 50,000
|
| 8 |
+
Date : TBA to | Time : TBA
|
| 9 |
+
Mode : Online
|
| 10 |
+
### CodeJam, presented by LOGPOINT, is a pre-event of LOCUS-2026, the 22nd National Technological Festival, designed to bring together developers and programmers for a competitive and innovative challenge. It is a platform where students dive into the art of problem-solving, algorithm design, and efficient coding. The event involves a series of proceedings where technique and algorithm are used to evaluate the participant's expertise. Participants will tackle algorithmic challenges covering various domains such as: • Graph theory • Number theory • Dynamic programming • And more, with varying levels of difficulty Why join? • Sharpen your analytical skills and enhance programming proficiency • Experience the thrill of competitive coding • Encourage algorithmic thinking and problem solving • Get a chance to bring your skill to grow and prosper personally • Compete for exciting prizes
|
| 11 |
+
### Rules and Regulations:
|
| 12 |
+
### 1. Competition Levels: The event has two levels for fair competition: Beginners (mainly for 1st and 2nd year students) and Advanced (for 3rd and 4th year students, and graduates are welcome)
|
| 13 |
+
2. Beginners' Task: Solve the problem in the allocated time; time and space complexity will not be taken into account
|
| 14 |
+
3. Advanced Task: Solve the problem in the allocated time constraint; Time and space complexity will be taken into account
|
| 15 |
+
4. Format: The competition will be conducted online using platforms such as VJudge
|
| 16 |
+
5. Scoring: Participants are ranked based on the number of correct solutions and the time taken to submit them
|
| 17 |
+
6. Evaluation: VJudge will automatically evaluate submissions and check for correctness and plagiarism
|
| 18 |
+
7. Penalties: Negative marking will be applied for wrong submissions
|
| 19 |
+
|
| 20 |
+
* Nissan Subedi : 9824015856
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
* Sudip Kazi Basnet : 9841587481
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
LOCUS_EVENTS
|
| 27 |
+
[Events](https://www.locus.com.np/events)
|
| 28 |
+
## Event Sponsors
|
| 29 |
+

|
| 30 |
+
[Prospectus](https://drive.google.com/file/d/14UPRPobB6AXR7YmS1570rtIHgWdVpyDY/view)
|
| 31 |
+
### IOE PULCHOWK
|
| 32 |
+
Pulchowk, Lalitpur
|
| 33 |
+
Nepal
|
| 34 |
+

|
| 35 |
+
### CONTACT US
|
| 36 |
+
locus@ioe.edu.np
|
| 37 |
+
#### FOLLOW US
|
| 38 |
+
[](https://www.instagram.com/locus_ioe/)[](https://www.facebook.com/locus.ioe)[](https://www.linkedin.com/company/locusioe/)
|
| 39 |
+
MADE WITH ❤ BY LOST
|
| 40 |
+
©COPYRIGHT 2024, PULCHOWK ENGINEERING CAMPUS
|
data/event_CYBER%20SHIELD.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[](https://www.locus.com.np/)[Home](https://www.locus.com.np/)[About](https://www.locus.com.np/about-us)[Events3](https://www.locus.com.np/events)[Zerone](https://www.locus.com.np/zerone)[Sponsors](https://www.locus.com.np/sponsors)
|
| 2 |
+
More
|
| 3 |
+
## Event Detail
|
| 4 |
+
* * *
|
| 5 |
+
[Register Now/-](https://forms.gle/cgAc7JVGWUufV7XFA)
|
| 6 |
+
# CYBER SHIELD
|
| 7 |
+
Venue : Embark College
|
| 8 |
+
Date : Poush 24, 2082 to Poush 28, 2082 | Time : 8:00 AM - 10:00 AM | 3:00 PM - 5:00 PM
|
| 9 |
+
Mode : OnlineStatus : Open
|
| 10 |
+
### CyberShield, presented by LOGPOINT, is a pre-event of LOCUS-2026, the 22nd National Technological Festival.It is a newly introduced, 4-day intensive workshop designed as a platform for students to gain practical exposure to cybersecurity, ethical hacking, and defensive security practices.The event aims to introduce university students to the real-world cybersecurity landscape through concept-driven and hands-on learning. Participants will understand how cyber attacks occur, how organizations defend against them, and how security teams operate in practice by covering topics like:• Cybersecurity fundamentals, CIA Triad, threat vs vulnerability vs risk, and security domains • Types of cyber attacks, malware, phishing, social engineering, and the MITRE ATT&CK framework • Network scanning, reconnaissance, attack surface identification, and common network vulnerabilities • OWASP Top 10 web vulnerabilities, basic web exploitation, and secure coding principles.
|
| 11 |
+
### Why Join ?:
|
| 12 |
+
### • Gain hands-on experience with real-world cybersecurity tools and labs
|
| 13 |
+
• Learn how real cyber attacks and defenses work in organizations
|
| 14 |
+
• Develop practical understanding of ethical hacking and defensive security
|
| 15 |
+
• Explore cybersecurity career paths and industry expectations
|
| 16 |
+
• Interact with industry professionals and participate in practical challenges
|
| 17 |
+
|
| 18 |
+
### Info:
|
| 19 |
+
### 1. Organizer: LOCUS 2026, Nepal's largest student-led national tech festival
|
| 20 |
+
2. Duration: 4 days, Poush 24, 25, 27, 28
|
| 21 |
+
3. Venue: Embark College near IOE Pulchowk Campus
|
| 22 |
+
4. Eligibility: Open to students from engineering, CSIT, and applied science backgrounds
|
| 23 |
+
5. Schedule: Sessions will be held in three shifts: Morning (8:00 AM to 10:00 AM) and Evening (3:00 PM to 5:00 PM)
|
| 24 |
+
|
| 25 |
+
* Aashish Karki : 9862021531
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
* Andis Paudel : 9862709753
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
LOCUS_EVENTS
|
| 32 |
+
[Events](https://www.locus.com.np/events)
|
| 33 |
+
## Event Sponsors
|
| 34 |
+

|
| 35 |
+
[Prospectus](https://drive.google.com/file/d/14UPRPobB6AXR7YmS1570rtIHgWdVpyDY/view)
|
| 36 |
+
### IOE PULCHOWK
|
| 37 |
+
Pulchowk, Lalitpur
|
| 38 |
+
Nepal
|
| 39 |
+

|
| 40 |
+
### CONTACT US
|
| 41 |
+
locus@ioe.edu.np
|
| 42 |
+
#### FOLLOW US
|
| 43 |
+
[](https://www.instagram.com/locus_ioe/)[](https://www.facebook.com/locus.ioe)[](https://www.linkedin.com/company/locusioe/)
|
| 44 |
+
MADE WITH ❤ BY LOST
|
| 45 |
+
©COPYRIGHT 2024, PULCHOWK ENGINEERING CAMPUS
|
data/event_DATAVERSE.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[](https://www.locus.com.np/)[Home](https://www.locus.com.np/)[About](https://www.locus.com.np/about-us)[Events3](https://www.locus.com.np/events)[Zerone](https://www.locus.com.np/zerone)[Sponsors](https://www.locus.com.np/sponsors)
|
| 2 |
+
More
|
| 3 |
+
## Event Detail
|
| 4 |
+
* * *
|
| 5 |
+
Register 200/-
|
| 6 |
+
# DATAVERSE
|
| 7 |
+
Rs. 12,000+
|
| 8 |
+
Date : Magh 1st, 2082 to Magh 3rd, 2082 | Time : 10:00 AM - 3:00 PM
|
| 9 |
+
Mode : Offline
|
| 10 |
+
### DATAVERSE is a data-centric battle where participants dive into real-world datasets to extract insights, build predictive models, and tell compelling data stories. The competition focuses on: • Data cleaning and preprocessing • Exploratory data analysis • Machine learning model building • Evaluation metrics and optimization • Data visualization and storytelling Why participate? • Work with real datasets • Improve your ML & analytics skills • Showcase your data storytelling abilities • Win exciting prizes and recognition
|
| 11 |
+
### Rules and Regulations:
|
| 12 |
+
### 1. Team size: 1–3 members
|
| 13 |
+
2. Participants must bring their own laptops
|
| 14 |
+
3. External datasets or pretrained models are not allowed
|
| 15 |
+
4. Submissions must include code, report, and final predictions
|
| 16 |
+
5. Plagiarism or copied notebooks will lead to disqualification
|
| 17 |
+
|
| 18 |
+
* Niraj Shahi : 9801234567
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
* Sarina Maharjan : 9845123488
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
LOCUS_EVENTS
|
| 25 |
+
[Events](https://www.locus.com.np/events)
|
| 26 |
+
## Event Sponsors
|
| 27 |
+
[Prospectus](https://drive.google.com/file/d/14UPRPobB6AXR7YmS1570rtIHgWdVpyDY/view)
|
| 28 |
+
### IOE PULCHOWK
|
| 29 |
+
Pulchowk, Lalitpur
|
| 30 |
+
Nepal
|
| 31 |
+

|
| 32 |
+
### CONTACT US
|
| 33 |
+
locus@ioe.edu.np
|
| 34 |
+
#### FOLLOW US
|
| 35 |
+
[](https://www.instagram.com/locus_ioe/)[](https://www.facebook.com/locus.ioe)[](https://www.linkedin.com/company/locusioe/)
|
| 36 |
+
MADE WITH ❤ BY LOST
|
| 37 |
+
©COPYRIGHT 2024, PULCHOWK ENGINEERING CAMPUS
|
data/event_Dronacharya%202026.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[](https://www.locus.com.np/)[Home](https://www.locus.com.np/)[About](https://www.locus.com.np/about-us)[Events3](https://www.locus.com.np/events)[Zerone](https://www.locus.com.np/zerone)[Sponsors](https://www.locus.com.np/sponsors)
|
| 2 |
+
More
|
| 3 |
+
## Event Detail
|
| 4 |
+
* * *
|
| 5 |
+
[Register Now](https://forms.gle/pZgSJnX9heftdAas8)
|
| 6 |
+
# Dronacharya 2026
|
| 7 |
+
Prize Pool: Rs 30,000+
|
| 8 |
+
Date : 2082-10-16 to 2082-10-18 | Time : 10 am onwards
|
| 9 |
+
Mode : offlineStatus : Open
|
| 10 |
+
### Dronacharya 2026 is a competitive drone racing and obstacle navigation contest conducted as part of LOCUS 2026. Teams of up to four members compete using a single drone that meets the specified technical requirements. The contest is designed to test precision flying, time management, and technical skill in a structured race-track environment. Contest Format: • Two rounds: Preliminary Round and Knock-out Round • Each round is 5 minutes long • Teams are ranked based on net time (completion time + penalties) The game field consists of multiple obstacle zones including tunnels, circular and rectangular frames, towers, and poles. Teams must navigate checkpoints in order while minimizing penalties. The winner is decided purely on time, with referee decisions used in case of ties.
|
| 11 |
+
### Rules and Regulations:
|
| 12 |
+
### 1. Teams can have a maximum of 4 members and only one drone per team.
|
| 13 |
+
2. The drone must fit within 600mm x 600mm dimensions and weigh no more than 2.5 kg.
|
| 14 |
+
3. Maximum battery voltage allowed is 16V (4-cell LiPo).
|
| 15 |
+
4. Preliminary round allows obstacle skipping with time penalties; knockout round does not allow skipping.
|
| 16 |
+
5. Any act endangering people, equipment, or violating fair play may result in disqualification.
|
| 17 |
+
6. Referee and organizer decisions are final for all unspecified situations.
|
| 18 |
+
|
| 19 |
+
* Aashutosh Pandey : 9804875975
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
* Divyanshu Mishra : 9847755937
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
LOCUS_EVENTS
|
| 26 |
+
[Events](https://www.locus.com.np/events)
|
| 27 |
+
## Event Sponsors
|
| 28 |
+
[Prospectus](https://drive.google.com/file/d/14UPRPobB6AXR7YmS1570rtIHgWdVpyDY/view)
|
| 29 |
+
### IOE PULCHOWK
|
| 30 |
+
Pulchowk, Lalitpur
|
| 31 |
+
Nepal
|
| 32 |
+

|
| 33 |
+
### CONTACT US
|
| 34 |
+
locus@ioe.edu.np
|
| 35 |
+
#### FOLLOW US
|
| 36 |
+
[](https://www.instagram.com/locus_ioe/)[](https://www.facebook.com/locus.ioe)[](https://www.linkedin.com/company/locusioe/)
|
| 37 |
+
MADE WITH ❤ BY LOST
|
| 38 |
+
©COPYRIGHT 2024, PULCHOWK ENGINEERING CAMPUS
|
data/event_Energy%20Hackathon.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[](https://www.locus.com.np/)[Home](https://www.locus.com.np/)[About](https://www.locus.com.np/about-us)[Events3](https://www.locus.com.np/events)[Zerone](https://www.locus.com.np/zerone)[Sponsors](https://www.locus.com.np/sponsors)
|
| 2 |
+
More
|
| 3 |
+
## Event Detail
|
| 4 |
+
* * *
|
| 5 |
+
[Register Now](https://docs.google.com/forms/d/1Ec1v19OcbV5u9AW_ZVGcNshDWRRqc-RoX_Y1DQ0Irus/edit)
|
| 6 |
+
# Energy Hackathon
|
| 7 |
+
Prizepool : Rs 80,000
|
| 8 |
+
Date : 2082-09-04 to 2082-09-08 | Time : 10 am onwards
|
| 9 |
+
Mode : Offline
|
| 10 |
+
### The Energy Hackathon is a dynamic event focused on creating innovative energy solutions. Participants will engage in a 7-day intensive hackathon featuring mentoring sessions held at the Library Hall, Pulchowk Campus. Compete for the grand prize of Rs 80,000 and gain invaluable experience in collaboration and innovation. Event Highlights: • A week of guided project development and innovation • Networking opportunities with industry experts • Compete for a grand prize of Rs. 80,000 Energy Hackathon provides a unique platform for enthusiasts to tackle real-world energy challenges, collaborate with peers, and showcase their expertise in a competitive setting.
|
| 11 |
+
### Rules and Regulations:
|
| 12 |
+
### 1. Teams can consist of up to 4 members.
|
| 13 |
+
2. Projects must align with the provided themes and adhere to deadlines.
|
| 14 |
+
3. Participants must bring their own laptops and required equipment.
|
| 15 |
+
4. Organizers may disqualify teams for non-compliance with the rules.
|
| 16 |
+
|
| 17 |
+
* Utsav Raj Karki : 9862083508
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
LOCUS_EVENTS
|
| 21 |
+
[Events](https://www.locus.com.np/events)
|
| 22 |
+
## Event Sponsors
|
| 23 |
+
[Prospectus](https://drive.google.com/file/d/14UPRPobB6AXR7YmS1570rtIHgWdVpyDY/view)
|
| 24 |
+
### IOE PULCHOWK
|
| 25 |
+
Pulchowk, Lalitpur
|
| 26 |
+
Nepal
|
| 27 |
+

|
| 28 |
+
### CONTACT US
|
| 29 |
+
locus@ioe.edu.np
|
| 30 |
+
#### FOLLOW US
|
| 31 |
+
[](https://www.instagram.com/locus_ioe/)[](https://www.facebook.com/locus.ioe)[](https://www.linkedin.com/company/locusioe/)
|
| 32 |
+
MADE WITH ❤ BY LOST
|
| 33 |
+
©COPYRIGHT 2024, PULCHOWK ENGINEERING CAMPUS
|
data/event_Flashmob.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[](https://www.locus.com.np/)[Home](https://www.locus.com.np/)[About](https://www.locus.com.np/about-us)[Events3](https://www.locus.com.np/events)[Zerone](https://www.locus.com.np/zerone)[Sponsors](https://www.locus.com.np/sponsors)
|
| 2 |
+
More
|
| 3 |
+
## Event Detail
|
| 4 |
+
* * *
|
| 5 |
+
[Register Now](https://forms.gle/ZesCQYtd76doskU96)
|
| 6 |
+
# Flashmob
|
| 7 |
+
Training in Progress
|
| 8 |
+
Date : 2082-10-01 to 2082-10-06 | Time : 10 am onwards
|
| 9 |
+
Mode : OfflineStatus : Ongoing
|
| 10 |
+
### The LOCUS Flashmob is a vibrant promotional event organized as part of the pre-exhibition outreach for LOCUS 2026. This energetic performance aims to engage the public, create excitement, and spread awareness about Nepal’s premier national-level technological festival. Event Highlights: • Energetic flashmob performances by student volunteers • Public engagement and promotion of the LOCUS 2026 Exhibition • Creative outreach at popular public venues The Flashmob is scheduled to be held on Magh 10 as a marketing and awareness activity for LOCUS 2026. The performance will involve approximately 50 students and will last for 15–20 minutes. The exact venue and time will be finalized and announced soon. This initiative reflects LOCUS’s commitment to creative promotion and meaningful public engagement.
|
| 11 |
+
* Sudip Kazi Basnet : 9841587481
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
LOCUS_EVENTS
|
| 15 |
+
[Events](https://www.locus.com.np/events)
|
| 16 |
+
## Event Sponsors
|
| 17 |
+
[Prospectus](https://drive.google.com/file/d/14UPRPobB6AXR7YmS1570rtIHgWdVpyDY/view)
|
| 18 |
+
### IOE PULCHOWK
|
| 19 |
+
Pulchowk, Lalitpur
|
| 20 |
+
Nepal
|
| 21 |
+

|
| 22 |
+
### CONTACT US
|
| 23 |
+
locus@ioe.edu.np
|
| 24 |
+
#### FOLLOW US
|
| 25 |
+
[](https://www.instagram.com/locus_ioe/)[](https://www.facebook.com/locus.ioe)[](https://www.linkedin.com/company/locusioe/)
|
| 26 |
+
MADE WITH ❤ BY LOST
|
| 27 |
+
©COPYRIGHT 2024, PULCHOWK ENGINEERING CAMPUS
|