- Docker & docker-compose
- Brew
brew install colima
| ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff |
| { | |
| "basics": { | |
| "name": "Oscar Martin", | |
| "picture": "https://avatars2.githubusercontent.com/u/631180?v=4", | |
| "label": "@meridium ", | |
| "headline": "Webdev\r\nReact, C# and TypeScript\r\nI also dabble in perfection", | |
| "summary": null, | |
| "website": "www.fronix.se", | |
| "blog": null, | |
| "yearsOfExperience": null, |
| ███████╗██████╗ ██████╗ ███╗ ██╗██╗██╗ ██╗ ███████╗███████╗ | |
| ██╔════╝██╔══██╗██╔═══██╗████╗ ██║██║╚██╗██╔╝ ██╔════╝██╔════╝ | |
| █████╗ ██████╔╝██║ ██║██╔██╗ ██║██║ ╚███╔╝ ███████╗█████╗ | |
| ██╔══╝ ██╔══██╗██║ ██║██║╚██╗██║██║ ██╔██╗ ╚════██║██╔══╝ | |
| ██║ ██║ ██║╚██████╔╝██║ ╚████║██║██╔╝ ██╗██╗███████║███████╗ | |
| ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ |
| { | |
| /** OUTDATED **/ | |
| //based on https://gist.github.com/ojame/93560d99149124ea2f89b9d78cbcadd1 | |
| // RadarrAPI: Go to Radarr and click 'settings' => 'general'. | |
| // TautulliAPI: Go to Tautulli and click 'Settings' => 'Web Interface' | |
| // Open the JavaScript Console in Google Chrome (View => Developer => Javascript Console) | |
| // Past the following in. Hit enter and away you go. | |
| // Alternatively you can use Sources->Snippets in Chrome | |
| //Update 2020-04-08: |
| #!/bin/sh | |
| HOST=http://local.radarr | |
| API_KEY= | |
| # Add your min date here | |
| # All movies added before this date gets deleted | |
| date=$(date "+%s" -d "2020-04-01") | |
| ids=$(curl --silent $HOST/api/v3/movie -X GET -H "X-Api-Key: $API_KEY" \ | | |
| jq '[.[] | select ((.monitored == false) and (.added | fromdateiso8601 < '"$date"')) | .id']) |
| mode: ContinuousDelivery | |
| increment: Inherit | |
| major-version-bump-message: '\+ver:\s?(breaking|major)' | |
| minor-version-bump-message: '\+ver:\s?(feature|minor)' | |
| patch-version-bump-message: '\+ver:\s?(fix|patch)' | |
| no-bump-message: '\+ver:\s?(none|skip)' | |
| tag-prefix: '[vV]' | |
| assembly-versioning-scheme: MajorMinorPatch | |
| assembly-file-versioning-scheme: MajorMinorPatchTag | |
| assembly-informational-format: '{InformationalVersion}' |
| services: | |
| mssql: | |
| image: mcr.microsoft.com/mssql/server | |
| ports: | |
| - '1433:1433' | |
| environment: | |
| SA_PASSWORD: 'SoM3C0mLiC4t3dP4szWoRd' | |
| ACCEPT_EULA: 'Y' | |
| MSSQL_PID: 'Express' | |
| volumes: |
| # Clean up old releases on the server | |
| # This script will check a specified folder for all release versions (i.e. R1, R2, R3, etc.) and delete all except the last X releases. | |
| # Can be used together with Azure DevOps releases, each rlease is named RX which this script takes care of | |
| # Modify $regex = '^.*?\(R(?<release>\d+)\).*' if you want to look for your own foldertype | |
| # Usage | |
| # release-cleanup.ps1 -releasesPath /path/to/release -releasesToKeep 3 | |
| # Options |
| import { unstable_useControlled as useControlled } from '@mui/utils'; | |
| import type { | |
| UsePaginationItem, | |
| UsePaginationProps, | |
| UsePaginationResult | |
| } from './usePaginationTypes'; | |
| /** | |
| * VERIFIED USING | |
| * - react-instantsearch-hooks-web@6.44.0 |