repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/agents/obsidian-ops-team/Scripts/fix_quoted_tags.py
null
null
null
null
null
null
Python
2026-05-04T02:25:59.145814
#!/usr/bin/env python3 """ Fix quoted tags in frontmatter by converting single-quoted tags to unquoted format. """ import os import re import yaml from pathlib import Path def fix_quoted_tags(vault_path): """Fix single-quoted tags in all markdown files.""" vault_path = Path(vault_path) files_updated = 0 ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/agents/obsidian-ops-team/Scripts/parse_keyword_connections.py
null
null
null
null
null
null
Python
2026-05-04T02:25:59.155746
#!/usr/bin/env python3 """Parse keyword connections from Link Suggestions Report.""" import re import sys from pathlib import Path def parse_keyword_connections(report_path): """Parse keyword connections from the report and find meaningful ones.""" with open(report_path, 'r', encoding='utf-8') as f: ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/agents/obsidian-ops-team/Scripts/daily_notes_connector.py
null
null
null
null
null
null
Python
2026-05-04T02:25:59.157136
#!/usr/bin/env python3 """ Daily Notes Connectivity Agent Analyzes daily notes and creates meaningful connections between them and other vault content. """ import os import re import yaml from datetime import datetime, timedelta from pathlib import Path from collections import defaultdict import json class DailyNotes...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/agents/obsidian-ops-team/Scripts/enhance_tag_standardizer.py
null
null
null
null
null
null
Python
2026-05-04T02:25:59.176917
#!/usr/bin/env python3 """ Enhanced Tag Standardizer for hierarchical tag structure. Consolidates similar tags and applies hierarchical organization. """ import os import re import yaml from pathlib import Path from collections import defaultdict, Counter class EnhancedTagStandardizer: def __init__(self, vault_pa...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
.claude/hooks/telegram-pr-webhook.py
null
null
null
null
null
null
Python
2026-05-04T02:25:59.206399
#!/usr/bin/env python3 """ Telegram PR Webhook Hook Sends a Telegram notification when a new PR is created via `gh pr create`. Includes the PR URL and the Vercel preview URL. Required environment variables: TELEGRAM_BOT_TOKEN - Bot token from @BotFather TELEGRAM_CHAT_ID - Chat ID for notifications Optional en...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/hooks/automation/change-logger.py
null
null
null
null
null
null
Python
2026-05-04T02:26:00.060189
#!/usr/bin/env python3 """ Change Logger Hook Logs every file mutation (Edit, Write, Bash) to a CSV file for demo prep and session review. Output: .claude/critical_log_changes.csv """ import csv import json import os import sys from datetime import datetime # Read-only commands that should not be logged READONLY_COMM...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/hooks/security/dangerous-command-blocker.py
null
null
null
null
null
null
Python
2026-05-04T02:26:00.061891
#!/usr/bin/env python3 """ Dangerous Command Blocker Hook Multi-level security system for blocking dangerous shell commands """ import json import sys import re # Load command from stdin data = json.load(sys.stdin) cmd = data.get('tool_input', {}).get('command', '') # === LEVEL 1: CATASTROPHIC COMMANDS (ALWAYS BLOCK...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/hooks/git/conventional-commits.py
null
null
null
null
null
null
Python
2026-05-04T02:26:00.064591
#!/usr/bin/env python3 import json import sys import re try: input_data = json.load(sys.stdin) except json.JSONDecodeError as e: print(f"Error: Invalid JSON input: {e}", file=sys.stderr) sys.exit(1) tool_name = input_data.get("tool_name", "") tool_input = input_data.get("tool_input", {}) command = tool_in...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/hooks/git/prevent-direct-push.py
null
null
null
null
null
null
Python
2026-05-04T02:26:00.066316
#!/usr/bin/env python3 import json import sys import subprocess try: input_data = json.load(sys.stdin) except json.JSONDecodeError as e: print(f"Error: Invalid JSON input: {e}", file=sys.stderr) sys.exit(1) tool_name = input_data.get("tool_name", "") tool_input = input_data.get("tool_input", {}) command =...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/hooks/git/validate-branch-name.py
null
null
null
null
null
null
Python
2026-05-04T02:26:00.067524
#!/usr/bin/env python3 import json import sys import re try: input_data = json.load(sys.stdin) except json.JSONDecodeError as e: print(f"Error: Invalid JSON input: {e}", file=sys.stderr) sys.exit(1) tool_name = input_data.get("tool_name", "") tool_input = input_data.get("tool_input", {}) command = tool_in...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/hooks/automation/telegram-pr-webhook.py
null
null
null
null
null
null
Python
2026-05-04T02:26:00.069002
#!/usr/bin/env python3 """ Telegram PR Webhook Hook Sends a Telegram notification when a new PR is created via `gh pr create`. Includes the PR URL and the Vercel preview URL. Required environment variables: TELEGRAM_BOT_TOKEN - Bot token from @BotFather TELEGRAM_CHAT_ID - Chat ID for notifications Optional en...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/hooks/security/secret-scanner.py
null
null
null
null
null
null
Python
2026-05-04T02:26:00.070420
#!/usr/bin/env python3 """ Secret Scanner Hook Detects hardcoded secrets before git commits """ import json import sys import re import subprocess import os # Secret detection patterns with descriptions SECRET_PATTERNS = [ # AWS Keys (r'AKIA[0-9A-Z]{16}', 'AWS Access Key ID', 'high'), (r'(?i)aws[_\-\s]*se...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/hooks/monitoring/context-timeline.py
null
null
null
null
null
null
Python
2026-05-04T02:26:00.073218
#!/usr/bin/env python3 """ context-timeline: Claude Code session visualizer. Modes (called by Claude Code hooks via stdin JSON): --server-start SessionStart hook — launch daemon + open browser --event <NAME> PreToolUse / PostToolUse / Stop hook — notify server --shutdown Kill daemon manu...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/agents/obsidian-ops-team/Scripts/tag_standardizer.py
null
null
null
null
null
null
Python
2026-05-04T02:26:00.103389
#!/usr/bin/env python3 """ Tag Standardizer for Obsidian Vault Normalizes and standardizes tags across all notes. """ import os import re import yaml from pathlib import Path from collections import defaultdict, Counter import argparse class TagStandardizer: def __init__(self, vault_path): self.vault_path...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/10.py
null
null
null
null
null
null
Python
2026-05-04T02:26:01.524057
def is_palindrome(string: str) -> bool: """ Test if given string is a palindrome """ return string == string[::-1] def make_palindrome(string: str) -> str: """ Find the shortest palindrome that begins with a supplied string. Algorithm idea is simple: - Find the longest postfix of supplied string t...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/settings/statusline/context-monitor.py
null
null
null
null
null
null
Python
2026-05-04T02:26:01.525183
#!/usr/bin/env python3 """ Claude Code Context Monitor Real-time context usage monitoring with visual indicators and session analytics """ import json import sys import os import re import subprocess def get_git_status(): """Get git branch and change count for statusline.""" try: # Check if inside a ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/100.py
null
null
null
null
null
null
Python
2026-05-04T02:26:01.526340
def make_a_pile(n): """ Given a positive integer n, you have to make a pile of n levels of stones. The first level has n stones. The number of stones in the next level is: - the next odd number if n is odd. - the next even number if n is even. Return the number of stones in each leve...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/settings/statusline/deadline-countdown.py
null
null
null
null
null
null
Python
2026-05-04T02:26:01.527470
#!/usr/bin/env python3 """ Deadline Countdown Statusline Shows git branch, changed files count, and countdown to deadline. Color-coded urgency: green >2h, yellow 1-2h, red <1h, blinking <30min. Configure with DEADLINE_TIME (HH:MM, default 15:30) env var. """ import json import os import subprocess import sys from date...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/0.py
null
null
null
null
null
null
Python
2026-05-04T02:26:01.529769
from typing import List def has_close_elements(numbers: List[float], threshold: float) -> bool: """ Check if in given list of numbers, are any two numbers closer to each other than given threshold. >>> has_close_elements([1.0, 2.0, 3.0], 0.5) False >>> has_close_elements([1.0, 2.8, 3.0, 4.0, 5.0, ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/1.py
null
null
null
null
null
null
Python
2026-05-04T02:26:01.530865
from typing import List def separate_paren_groups(paren_string: str) -> List[str]: """ Input to this function is a string containing multiple groups of nested parentheses. Your goal is to separate those group into separate strings and return the list of those. Separate groups are balanced (each open brace...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/sandbox/e2b/e2b-monitor.py
null
null
null
null
null
null
Python
2026-05-04T02:26:02.615340
#!/usr/bin/env python3.11 """ E2B Sandbox Real-time Monitor Provides real-time monitoring and debugging of E2B sandbox operations """ import os import sys import time import json from datetime import datetime def log_with_timestamp(message, level="INFO"): timestamp = datetime.now().strftime("%H:%M:%S") print(...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/sandbox/e2b/e2b-launcher.py
null
null
null
null
null
null
Python
2026-05-04T02:26:02.645627
#!/usr/bin/env python3.11 """ E2B Claude Code Sandbox Launcher Executes Claude Code prompts in isolated E2B cloud sandbox """ import os import sys import json import datetime import re import threading import time # Debug: Print Python path information print(f"Python executable: {sys.executable}") print(f"Python vers...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/101.py
null
null
null
null
null
null
Python
2026-05-04T02:26:02.685823
def words_string(s): """ You will be given a string of words separated by commas or spaces. Your task is to split the string into words and return an array of the words. For example: words_string("Hi, my name is John") == ["Hi", "my", "name", "is", "John"] words_string("One, two, three, fou...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/102.py
null
null
null
null
null
null
Python
2026-05-04T02:26:02.798646
def choose_num(x, y): """This function takes two positive numbers x and y and returns the biggest even integer number that is in the range [x, y] inclusive. If there's no such number, then the function should return -1. For example: choose_num(12, 15) = 14 choose_num(13, 12) = -1 """ i...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/106.py
null
null
null
null
null
null
Python
2026-05-04T02:26:02.855302
def f(n): """ Implement the function f that takes n as a parameter, and returns a list of size n, such that the value of the element at index i is the factorial of i if i is even or the sum of numbers from 1 to i otherwise. i starts from 1. the factorial of i is the multiplication of the numbers fro...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/105.py
null
null
null
null
null
null
Python
2026-05-04T02:26:02.868161
def by_length(arr): """ Given an array of integers, sort the integers that are between 1 and 9 inclusive, reverse the resulting array, and then replace each digit by its corresponding name from "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine". For example: arr = [2, 1, 1...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/103.py
null
null
null
null
null
null
Python
2026-05-04T02:26:02.869690
def rounded_avg(n, m): """You are given two positive integers n and m, and your task is to compute the average of the integers from n through m (including n and m). Round the answer to the nearest integer and convert that to binary. If n is greater than m, return -1. Example: rounded_avg(1, 5) ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/108.py
null
null
null
null
null
null
Python
2026-05-04T02:26:02.871024
def count_nums(arr): """ Write a function count_nums which takes an array of integers and returns the number of elements which has a sum of digits > 0. If a number is negative, then its first signed digit will be negative: e.g. -123 has signed digits -1, 2, and 3. >>> count_nums([]) == 0 >>>...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/104.py
null
null
null
null
null
null
Python
2026-05-04T02:26:02.882345
def unique_digits(x): """Given a list of positive integers x. return a sorted list of all elements that hasn't any even digit. Note: Returned list should be sorted in increasing order. For example: >>> unique_digits([15, 33, 1422, 1]) [1, 15, 33] >>> unique_digits([152, 323, 1422, 10]...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/107.py
null
null
null
null
null
null
Python
2026-05-04T02:26:02.883566
def even_odd_palindrome(n): """ Given a positive integer n, return a tuple that has the number of even and odd integer palindromes that fall within the range(1, n), inclusive. Example 1: Input: 3 Output: (1, 2) Explanation: Integer palindrome are 1, 2, 3. one of them is...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/109.py
null
null
null
null
null
null
Python
2026-05-04T02:26:03.192179
def move_one_ball(arr): """We have an array 'arr' of N integers arr[1], arr[2], ..., arr[N].The numbers in the array will be randomly ordered. Your task is to determine if it is possible to get an array sorted in non-decreasing order by performing the following operation on the given array: You...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/11.py
null
null
null
null
null
null
Python
2026-05-04T02:26:03.582098
from typing import List def string_xor(a: str, b: str) -> str: """ Input are two strings a and b consisting only of 1s and 0s. Perform binary XOR on these inputs and return result also as a string. >>> string_xor('010', '110') '100' """ result = [] for char_a, char_b in zip(a, b): ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/110.py
null
null
null
null
null
null
Python
2026-05-04T02:26:03.582999
def exchange(lst1, lst2): """In this problem, you will implement a function that takes two lists of numbers, and determines whether it is possible to perform an exchange of elements between them to make lst1 a list of only even numbers. There is no limit on the number of exchanged elements between lst1 ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/116.py
null
null
null
null
null
null
Python
2026-05-04T02:26:03.919275
def sort_array(arr): """ In this Kata, you have to sort an array of non-negative integers according to number of ones in their binary representation in ascending order. For similar number of ones, sort based on decimal value. It must be implemented like this: >>> sort_array([1, 5, 2, 3, 4]) == ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/112.py
null
null
null
null
null
null
Python
2026-05-04T02:26:03.923828
def reverse_delete(s,c): """Task We are given two strings s and c, you have to deleted all the characters in s that are equal to any character in c then check if the result string is palindrome. A string is called palindrome if it reads the same backward as forward. You should return a tuple contain...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/115.py
null
null
null
null
null
null
Python
2026-05-04T02:26:03.925425
def max_fill(grid, capacity): import math """ You are given a rectangular grid of wells. Each row represents a single well, and each 1 in a row represents a single unit of water. Each well has a corresponding bucket that can be used to extract water from it, and all buckets have the same capaci...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/113.py
null
null
null
null
null
null
Python
2026-05-04T02:26:03.926155
def odd_count(lst): """Given a list of strings, where each string consists of only digits, return a list. Each element i of the output should be "the number of odd elements in the string i of the input." where all the i's should be replaced by the number of odd digits in the i'th string of the input. ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/114.py
null
null
null
null
null
null
Python
2026-05-04T02:26:04.222552
def minSubArraySum(nums): """ Given an array of integers nums, find the minimum sum of any non-empty sub-array of nums. Example minSubArraySum([2, 3, 4, 1, 2, 4]) == 1 minSubArraySum([-1, -2, -3]) == -6 """ min_sum = nums[0] current_sum = nums[0] for i in range(1, len(nums))...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/111.py
null
null
null
null
null
null
Python
2026-05-04T02:26:04.382192
def histogram(test): """Given a string representing a space separated lowercase letters, return a dictionary of the letter with the most repetition and containing the corresponding count. If several letters have the same occurrence, return all of them. Example: histogram('a b c') == {'a': 1, 'b...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/118.py
null
null
null
null
null
null
Python
2026-05-04T02:26:04.482152
def get_closest_vowel(word): """You are given a word. Your task is to find the closest vowel that stands between two consonants from the right side of the word (case sensitive). Vowels in the beginning and ending doesn't count. Return empty string if you didn't find any vowel met the above conditi...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/12.py
null
null
null
null
null
null
Python
2026-05-04T02:26:04.555554
from typing import List, Optional def longest(strings: List[str]) -> Optional[str]: """ Out of list of strings, return the longest one. Return the first one in case of multiple strings of the same length. Return None in case the input list is empty. >>> longest([]) >>> longest(['a', 'b', 'c']) 'a...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/119.py
null
null
null
null
null
null
Python
2026-05-04T02:26:04.594801
def match_parens(lst): ''' You are given a list of two strings, both strings consist of open parentheses '(' or close parentheses ')' only. Your job is to check if it is possible to concatenate the two strings in some order, that the resulting string will be good. A string S is considered to be ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/120.py
null
null
null
null
null
null
Python
2026-05-04T02:26:04.668486
def maximum(arr, k): """ Given an array arr of integers and a positive integer k, return a sorted list of length k with the maximum k numbers in arr. Example 1: Input: arr = [-3, -4, 5], k = 3 Output: [-4, -3, 5] Example 2: Input: arr = [4, -4, 4], k = 2 Output: ...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/121.py
null
null
null
null
null
null
Python
2026-05-04T02:26:04.669333
def solution(lst): """Given a non-empty list of integers, return the sum of all of the odd elements that are in even positions. Examples solution([5, 8, 7, 1]) ==> 12 solution([3, 3, 3, 3, 3]) ==> 9 solution([30, 13, 24, 321]) ==>0 """ return sum(x for i, x in enumerate(lst) if i % 2 =...
davila7/claude-code-templates
https://github.com/davila7/claude-code-templates
null
null
null
null
26,659
null
null
mit
null
null
null
null
null
null
null
cli-tool/components/skills/ai-research/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/117.py
null
null
null
null
null
null
Python
2026-05-04T02:26:05.722033
def select_words(s, n): """Given a string s and a natural number n, you have been tasked to implement a function that returns a list of all words from string s that contain exactly n consonants, in order these words appear in the string s. If the string s is empty then the function should return an em...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
includes/debug/cairo-lookup-linux.py
null
null
null
null
null
null
Python
2026-05-04T02:26:09.772761
import inspect import os import shutil import subprocess from ctypes import util class CustomPopen(subprocess.Popen): def __init__(self, *args, **kwargs): print(f"Subprocess command:\n {' '.join(args[0])}") super().__init__(*args, **kwargs) def communicate(self, *args, **kwargs): ou...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/overrides/hooks/translations.py
null
null
null
null
null
null
Python
2026-05-04T02:26:09.773981
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/extensions/emoji.py
null
null
null
null
null
null
Python
2026-05-04T02:26:09.775888
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/overrides/hooks/shortcodes.py
null
null
null
null
null
null
Python
2026-05-04T02:26:09.776893
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
includes/debug/cairo-lookup-windows.py
null
null
null
null
null
null
Python
2026-05-04T02:26:09.943896
import os library_names = ("cairo-2", "cairo", "libcairo-2") filenames = ("libcairo.so.2", "libcairo.2.dylib", "libcairo-2.dll") first_found = "" names = [] for name in library_names: if name.lower().endswith(".dll"): names += [name] else: names += [name, name + ".dll"] for name in names: ...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/extensions/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:09.945867
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
includes/debug/cairo-lookup-macos.py
null
null
null
null
null
null
Python
2026-05-04T02:26:09.946912
import os from ctypes.macholib import dyld from itertools import chain library_names = ("cairo-2", "cairo", "libcairo-2") filenames = ("libcairo.so.2", "libcairo.2.dylib", "libcairo-2.dll") first_found = "" names = [] for name in library_names: names += [ "lib%s.dylib" % name, "%s.dylib" % name, ...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:09.948226
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:09.970462
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/blog/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:10.785908
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/blog/structure/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:10.872640
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/blog/structure/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:10.897250
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/extensions/preview.py
null
null
null
null
null
null
Python
2026-05-04T02:26:10.987283
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/blog/structure/options.py
null
null
null
null
null
null
Python
2026-05-04T02:26:11.411505
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/blog/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:11.457794
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/group/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:11.468213
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/group/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:11.492884
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/blog/author.py
null
null
null
null
null
null
Python
2026-05-04T02:26:11.516187
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/group/plugin.py
null
null
null
null
null
null
Python
2026-05-04T02:26:11.553424
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/blog/plugin.py
null
null
null
null
null
null
Python
2026-05-04T02:26:12.414779
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/meta/plugin.py
null
null
null
null
null
null
Python
2026-05-04T02:26:13.072288
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/info/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:13.096202
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/info/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:13.174419
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/info/patterns.py
null
null
null
null
null
null
Python
2026-05-04T02:26:13.202890
def get_exclusion_patterns(): """ Regex patterns, which will be compared against directory and file names case-sensitively. https://docs.python.org/3/library/re.html#re.search is the matching function and scans the whole string to find any pattern match. Used with the https://pypi.org/project/regex/...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/info/plugin.py
null
null
null
null
null
null
Python
2026-05-04T02:26:13.390585
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/offline/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:13.663776
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/offline/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:13.693403
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/optimize/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:13.775555
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/offline/plugin.py
null
null
null
null
null
null
Python
2026-05-04T02:26:13.793387
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/optimize/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:14.018443
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/optimize/plugin.py
null
null
null
null
null
null
Python
2026-05-04T02:26:14.243060
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/privacy/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:14.323626
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/privacy/parser.py
null
null
null
null
null
null
Python
2026-05-04T02:26:14.389195
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/privacy/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:14.389743
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/privacy/plugin.py
null
null
null
null
null
null
Python
2026-05-04T02:26:14.631065
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/projects/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:14.825199
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/projects/builder/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:14.926072
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/projects/builder/log.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.005151
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/projects/builder/watcher/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.022619
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/projects/builder/watcher/handler.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.238049
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/projects/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.434472
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/blog/readtime/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.526443
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/projects/plugin.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.527055
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/blog/structure/markdown.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.546854
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/projects/structure/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.624166
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/search/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.627787
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/blog/readtime/parser.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.675838
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/search/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:15.862258
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/meta/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:17.330625
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
squidfunk/mkdocs-material
https://github.com/squidfunk/mkdocs-material
null
null
null
null
26,656
null
null
mit
null
null
null
null
null
null
null
material/plugins/meta/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:17.406218
# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # 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, c...
littlecodersh/ItChat
https://github.com/littlecodersh/ItChat
null
null
null
null
26,493
null
null
mit
null
null
null
null
null
null
null
itchat/config.py
null
null
null
null
null
null
Python
2026-05-04T02:26:19.825960
import os, platform VERSION = '1.3.10' BASE_URL = 'https://login.weixin.qq.com' OS = platform.system() # Windows, Linux, Darwin DIR = os.getcwd() DEFAULT_QR = 'QR.png' TIMEOUT = (10, 60) USER_AGENT = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537...
littlecodersh/ItChat
https://github.com/littlecodersh/ItChat
null
null
null
null
26,493
null
null
mit
null
null
null
null
null
null
null
itchat/components/contact.py
null
null
null
null
null
null
Python
2026-05-04T02:26:19.827696
import time, re, io import json, copy import logging from .. import config, utils from ..returnvalues import ReturnValue from ..storage import contact_change from ..utils import update_info_dict logger = logging.getLogger('itchat') def load_contact(core): core.update_chatroom = update_cha...
littlecodersh/ItChat
https://github.com/littlecodersh/ItChat
null
null
null
null
26,493
null
null
mit
null
null
null
null
null
null
null
itchat/components/register.py
null
null
null
null
null
null
Python
2026-05-04T02:26:19.828225
import logging, traceback, sys, threading try: import Queue except ImportError: import queue as Queue from ..log import set_logging from ..utils import test_connect from ..storage import templates logger = logging.getLogger('itchat') def load_register(core): core.auto_login = auto_logi...
littlecodersh/ItChat
https://github.com/littlecodersh/ItChat
null
null
null
null
26,493
null
null
mit
null
null
null
null
null
null
null
itchat/content.py
null
null
null
null
null
null
Python
2026-05-04T02:26:19.830176
TEXT = 'Text' MAP = 'Map' CARD = 'Card' NOTE = 'Note' SHARING = 'Sharing' PICTURE = 'Picture' RECORDING = VOICE = 'Recording' ATTACHMENT = 'Attachment' VIDEO = 'Video' FRIENDS = 'Friends' SYSTEM = 'System' INCOME_MSG = [TEXT, MAP, CARD, NOTE, SHARING, PICTURE, ...
littlecodersh/ItChat
https://github.com/littlecodersh/ItChat
null
null
null
null
26,493
null
null
mit
null
null
null
null
null
null
null
itchat/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:26:19.832981
from . import content from .core import Core from .config import VERSION from .log import set_logging __version__ = VERSION instanceList = [] def new_instance(): newInstance = Core() instanceList.append(newInstance) return newInstance originInstance = new_instance() # I really want to u...