Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
598e6a4
Initial commit
SOORAJTS2001 Aug 7, 2025
863e148
Template Setup
SOORAJTS2001 Aug 7, 2025
43a4a5a
feat: Introduce web sockets as the communication mode, since it is fa…
SOORAJTS2001 Aug 15, 2025
bb5cca8
fix: Avoided hardcoding browser height and width and now sending only…
SOORAJTS2001 Aug 15, 2025
6674152
interim commit
SOORAJTS2001 Aug 15, 2025
e28ba51
fix: Update poetry dependency also add emoji
SOORAJTS2001 Aug 15, 2025
28fd727
feat: Add mode activation for Rage, Wander and Shadow from extension …
SOORAJTS2001 Aug 16, 2025
3af0821
Merge pull request #3 from SOORAJTS2001/feat/mode-activation
SOORAJTS2001 Aug 16, 2025
d84657b
feat: Add easter-eggs on the sites loading
SOORAJTS2001 Aug 17, 2025
3622fba
feat: Add extension icon and description
SOORAJTS2001 Aug 17, 2025
fd77734
fix: Change static directory name
SOORAJTS2001 Aug 18, 2025
311aa66
Merge pull request #4 from SOORAJTS2001/feat/easter-eggs
SOORAJTS2001 Aug 18, 2025
839924d
feat: Add Makefile and remove the font on mobile page
SOORAJTS2001 Aug 18, 2025
195f371
Merge pull request #5 from SOORAJTS2001/feat/easter-eggs
SOORAJTS2001 Aug 18, 2025
372805e
updated-makefile
SaketKunjathur Aug 18, 2025
1f940f1
Fix: Add comments and docstrings
SOORAJTS2001 Aug 18, 2025
c7d1f20
fix: remove unwanted noqa's
SOORAJTS2001 Aug 18, 2025
a1bb14b
fix: update pyproject.toml
SOORAJTS2001 Aug 18, 2025
d3bcd3b
fix: update setup powershell script
SOORAJTS2001 Aug 18, 2025
4532595
add-makefile
SaketKunjathur Aug 18, 2025
11db0fd
update-makefile-again
SaketKunjathur Aug 18, 2025
f962903
Merge pull request #8 from SOORAJTS2001/features
SOORAJTS2001 Aug 18, 2025
28aa958
interim commit
SOORAJTS2001 Aug 18, 2025
9e67ba8
Merge branch 'refs/heads/main' into fix/linting-and-formatting
SOORAJTS2001 Aug 18, 2025
f6bb50e
Merge pull request #7 from SOORAJTS2001/fix/linting-and-formatting
SOORAJTS2001 Aug 18, 2025
2f59f26
Feat: Add documentation as README.md
SOORAJTS2001 Aug 21, 2025
707882c
Feat: Add images and gif for mobile page and extension
SOORAJTS2001 Aug 21, 2025
05af317
Feat: Change the gif and How to use heading
SOORAJTS2001 Aug 21, 2025
71ccb87
Feat: Add working and Usage
SOORAJTS2001 Aug 22, 2025
79b66ed
Merge branch 'refs/heads/main' into feat/add-documentation
SOORAJTS2001 Aug 22, 2025
c7097db
Feat: Add Mode activation Gif's
SOORAJTS2001 Aug 22, 2025
b9c73b8
Feat: Add error docs
SOORAJTS2001 Aug 22, 2025
37207b0
Merge pull request #9 from SOORAJTS2001/feat/add-documentation
SOORAJTS2001 Aug 22, 2025
01eb748
Feat: Add explanation
SOORAJTS2001 Aug 22, 2025
ec2e916
Feat: Add explanation
SOORAJTS2001 Aug 22, 2025
59071c7
Merge pull request #10 from SOORAJTS2001/feat/add-documentation
SOORAJTS2001 Aug 22, 2025
024340c
Feat: Add why wrong tool for the job doc
SOORAJTS2001 Aug 22, 2025
553f62e
Merge pull request #11 from SOORAJTS2001/feat/add-documentation
SOORAJTS2001 Aug 22, 2025
0754d17
Delete: Unwanted space
SOORAJTS2001 Aug 22, 2025
bc38117
Delete: Unwanted space
SOORAJTS2001 Aug 22, 2025
3a820a0
Merge pull request #12 from SOORAJTS2001/feat/add-documentation
SOORAJTS2001 Aug 22, 2025
5293f94
Add 'daring-daffodils/' from commit '3a820a07f7be61a962eb6ad91fe91cb0…
janine9vn Sep 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions daring-daffodils/.github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# GitHub Action workflow enforcing our code style.

name: Lint

# Trigger the workflow on both push (to the main repository, on the main branch)
# and pull requests (against the main repository, but from any repo, from any branch).
on:
push:
branches:
- main
pull_request:

# Brand new concurrency setting! This ensures that not more than one run can be triggered for the same commit.
# It is useful for pull requests coming from the main repository since both triggers will match.
concurrency: lint-${{ github.sha }}

jobs:
lint:
runs-on: ubuntu-latest

env:
# The Python version your project uses. Feel free to change this if required.
PYTHON_VERSION: "3.12"

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Run pre-commit hooks
uses: pre-commit/[email protected]
31 changes: 31 additions & 0 deletions daring-daffodils/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Files generated by the interpreter
__pycache__/
*.py[cod]

# Environment specific
.venv
venv
.env
env

# Unittest reports
.coverage*

# Logs
*.log

# PyEnv version selector
.python-version

# Built objects
*.so
dist/
build/

# IDEs
# PyCharm
.idea/
# VSCode
.vscode/
# MacOS
.DS_Store
18 changes: 18 additions & 0 deletions daring-daffodils/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Pre-commit configuration.
# See https://github.com/python-discord/code-jam-template/tree/main#pre-commit-run-linting-before-committing

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.2
hooks:
- id: ruff-check
- id: ruff-format
7 changes: 7 additions & 0 deletions daring-daffodils/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright 2021 Python Discord

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
45 changes: 45 additions & 0 deletions daring-daffodils/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# --- CONFIG ---
VENV = .venv
PYTHON = python3
ifeq ($(OS),Windows_NT)
ENVPYTHON := $(VENV)/Scripts/python
POETRY := $(VENV)/Scripts/poetry
PIP := $(VENV)/Scripts/pip
else
ENVPYTHON := $(VENV)/bin/python
POETRY := $(VENV)/bin/poetry
PIP := $(VENV)/bin/pip
endif

PYTHON3_OK := $(shell type -P python3)
ifeq ('$(PYTHON3_OK)','')
PYTHON = python
endif

# --- TARGETS ---

.PHONY: all setup run clean

all: run

# Ensure venv exists
$(VENV):
@echo "👉 Creating virtual environment..."
@$(PYTHON) -m venv $(VENV)

# Install Poetry inside venv if missing
$(POETRY): $(VENV)
@echo "👉 Ensuring Poetry is installed..."
@$(PIP) install poetry

setup: $(POETRY)
@echo "👉 Installing dependencies..."
@$(POETRY) install --no-root

run: setup
@echo "👉 Running uvicorn server..."
@$(ENVPYTHON) app.py

clean:
@echo "🧹 Cleaning up..."
@rm -rf $(VENV)
Loading