Add patterns to pattern variable as needed
patterns=("*.bak" "*.jpg" "*.upg" "*.mp4" "*.tar" "*.upg" "*.tar.gz" "*.mp4" "*.jpeg" "*.png" "*.svg" "*.txt" "*.md")
Run
chmod +x ./rrenamer
./rrenamer ./<target_dir>
param ( | |
[string]$Owner, | |
[string]$Repo, | |
[string]$WorkflowFileName, # Changed parameter for specific workflow file name | |
[switch]$Delete = $false, # Set to $true to perform deletion of all except the latest | |
[switch]$DeleteAll = $false # New flag: set to $true to perform deletion of ALL runs, including the latest | |
) | |
# Check if GitHub CLI (gh) is installed | |
if (-not (Get-Command gh -ErrorAction SilentlyContinue)) { |
# Your drag coefficient tables for G1 and G7 at different velocities | |
g1_drag = { | |
1000: 0.450, | |
1500: 0.410, | |
2000: 0.375, | |
2500: 0.350, | |
3000: 0.330, | |
} | |
g7_drag = { |
from pydantic import BaseModel, validator, root_validator, confloat | |
from typing_extensions import Generic, TypeVar, Annotated, ForwardRef, get_type_hints, get_args, get_origin, Optional, Union, Literal | |
T = TypeVar('T') | |
from py_ballisticcalc import * | |
def isunion(annotation): | |
origin = get_origin(annotation) | |
if origin is Union: |
<!DOCTYPE html> | |
<!-- Generated by Cython 3.0.11 --> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Cython: trajectory_calc.pyx</title> | |
<style type="text/css"> | |
body.cython { font-family: courier; font-size: 12; } |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Streaming Example</title> | |
<style> | |
#loading { | |
position: fixed; | |
width: 100%; |
build
gcc -shared -o binsearch.so curve.c
gcc -shared -o binsearch.dll curve.c
title = "308win sierra match king 168gr" | |
[pybc.preferred_units] | |
angular = 'Degree' | |
distance = 'Yard' | |
velocity = 'FPS' | |
pressure = 'InHg' | |
temperature = 'Fahrenheit' | |
diameter = 'Inch' |