| name | fix-pr |
|---|---|
| description | Review and address GitHub PR comments. Use when working on PR feedback, fixing review comments, or responding to reviewer concerns. Handles both human and AI bot reviews. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Package join-from-webcam contains an example of joining an ion instance and | |
| // publishing a stream directly from a webcam device | |
| package main | |
| import ( | |
| "context" | |
| "encoding/json" | |
| "fmt" | |
| "log" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| did:3:kjzl6cwe1jw14acmxg1wwq9bmy49lod9jsqs4at0e6tv3fnpy5mq8lhcercmkp4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Self-service Minio container | |
| # Automatically creates the $MINIO_BUCKET bucket and configures it for public downloads | |
| FROM minio/mc AS mc | |
| FROM minio/minio | |
| RUN echo $'#!/usr/bin/env sh \n\ | |
| cat /bin/start-minio.sh \n\ | |
| AWAIT_STARTUP="sleep 5" \n\ | |
| CONFIGURE_ROOT="mc config host add local http://minio:9000 $MINIO_ROOT_USER $MINIO_ROOT_PASSWORD" \n\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM consol/ubuntu-xfce-vnc | |
| USER 0 | |
| RUN apt-get update -yq | |
| RUN wget -O /tmp/google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
| RUN dpkg -i /tmp/google-chrome.deb || true | |
| RUN apt-get install -fyq | |
| USER 1000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from datetime import datetime, timedelta, timezone | |
| from django.db import models | |
| class AsyncTaskStatus(models.TextChoices): | |
| PENDING = "pending" | |
| IN_PROGRESS = "in_progress" | |
| COMPLETED = "completed" | |
| FAILED = "failed" |
OlderNewer