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
| #!/usr/bin/env python3 | |
| """GitHub Actions org-wide triage and similarity aggregator. | |
| Scans every non-archived repository in a GitHub organization for non-passing | |
| workflow runs, clusters them by root-cause similarity, and emits a Markdown | |
| triage report (plus optional raw JSON for downstream analysis). | |
| Usage: | |
| ./triage_org_actions.py --org WomB0ComB0 | |
| ./triage_org_actions.py --org WomB0ComB0 --since 14 --workers 8 --json-out runs.json |
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
| #!/usr/bin/env node | |
| // -*- typescript -*- | |
| import * as FetchHttpClient from "@effect/platform/FetchHttpClient"; | |
| import { GoogleGenAI } from "@google/genai"; | |
| import { Effect, Schema } from "effect"; | |
| import * as fs from "node:fs"; | |
| import * as os from "node:os"; | |
| import * as path from "node:path"; |
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
| #!/usr/bin/env bun | |
| /** | |
| * grepo — Unified GitHub Repository CLI Tool | |
| * | |
| * @description AI-powered GitHub repository management using Gemini | |
| * @author Mike Odnis | |
| * @license MIT | |
| */ |
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 __future__ import annotations | |
| import os | |
| import uuid | |
| from datetime import datetime | |
| from typing import TYPE_CHECKING, Any, TypedDict | |
| try: | |
| from pinecone import Pinecone, ServerlessSpec | |
| PINECONE_AVAILABLE = True |
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
| /** | |
| * Copyright (c) 2025 Mike Odnis | |
| * | |
| * 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: | |
| * |
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
| import { existsSync } from "node:fs"; | |
| import { mkdir, readFile, writeFile } from "node:fs/promises"; | |
| import { stdin as input, stdout as output } from "node:process"; | |
| import readline from "node:readline/promises"; | |
| /** | |
| * Represents a job listing parsed from GitHub repositories. | |
| * Contains all relevant information about a job posting including company, role, and application details. | |
| */ | |
| interface JobListing { |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Defaults | |
| NAME="" | |
| GROUP_ID="com.example" | |
| ARTIFACT_ID="" | |
| PACKAGE="" | |
| VERSION="0.0.1-SNAPSHOT" | |
| DESCRIPTION="" |
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
| ("use client"); | |
| import { FetchHttpClient } from "@effect/platform"; | |
| import type { QueryKey } from "@tanstack/react-query"; | |
| import { | |
| useQueryClient, | |
| useSuspenseQuery, | |
| type UseSuspenseQueryOptions, | |
| } from "@tanstack/react-query"; | |
| import { Effect, pipe, Schema } from "effect"; |
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
| "use strict"; | |
| import { HttpClient, HttpClientRequest } from "@effect/platform"; | |
| import { Schema, ParseResult } from "effect"; | |
| import { Duration, Effect, pipe, Schedule } from "effect"; | |
| declare const EMPTY = ""; | |
| /** | |
| * @module effect-fetcher |
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
| import tweepy | |
| import requests | |
| from datetime import datetime, timedelta | |
| import time | |
| import os | |
| # ===== CONFIGURATION ===== | |
| # X (Twitter) API credentials - get from https://developer.twitter.com/ | |
| TWITTER_API_KEY = os.getenv('TWITTER_API_KEY', 'your_api_key_here') | |
| TWITTER_API_SECRET = os.getenv('TWITTER_API_SECRET', 'your_api_secret_here') |
NewerOlder