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
| #!/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') |
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 | |
| /** | |
| * AI-Powered README Generator | |
| * | |
| * @description Generates comprehensive, interactive README documentation using Gemini AI | |
| * @author Mike Odnis | |
| * @license MIT | |
| * | |
| * @usage |
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 | |
| /** | |
| * GitHub Repository Analyzer with Gemini AI | |
| * | |
| * @description Analyzes GitHub repositories using GitIngest and Gemini AI | |
| * @author Mike Odnis | |
| * @license MIT | |
| * | |
| * @usage |
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
| #!/bin/bash | |
| set -euo pipefail | |
| # Enhanced Git Auto-Commit Script | |
| # Automatically commits and pushes changes across multiple repositories with AI-generated messages | |
| # --- Configuration and Defaults --- | |
| readonly SCRIPT_NAME="$(basename "$0")" | |
| readonly SCRIPT_VERSION="2.0.1" |
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 { datadogRum } from '@datadog/browser-rum'; | |
| import type { RumInitConfiguration } from '@datadog/browser-rum-core'; | |
| import app from 'next/app'; | |
| import { cache, memo, useEffect } from 'react'; | |
| /** | |
| * Type declaration extending the global Window interface to include Datadog initialization flag | |
| * @interface Window |
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 { config } from '@/config'; | |
| import { useEffect } from 'react'; | |
| interface AdSenseProps { | |
| adSlot: string; | |
| adFormat?: 'auto' | 'fluid'; | |
| style?: React.CSSProperties; | |
| } |
NewerOlder