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/sh | |
| [ $# -eq 0 ] && >&2 echo "❌ No files provided as arguments" && exit 1 | |
| NOSPACES_FILE_REGEXP="^([0-9]{4})([0-9]{2})([0-9]{2})(.*)$" | |
| PARENTHESES_FILE_REGEXP="^\(([0-9]{4})\.([0-9]{2})\.([0-9]{2})\)(.*)$" | |
| for filename in "$@"; | |
| do | |
| new_filename="$filename" | |
| printf "\"$filename\"" | |
| # No spaces |
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 { | |
| FactoryProvider, | |
| InjectionToken, | |
| Optional, | |
| SkipSelf, | |
| Type, | |
| } from '@angular/core' | |
| /** | |
| * Helps to make a `forRoot` guard to ensure a module is not imported |
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
| HTTP/2 200 | |
| date: Sun, 05 May 2024 15:39:06 GMT | |
| content-type: text/html; charset=utf-8 | |
| cache-control: public, max-age=0, must-revalidate | |
| report-to: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=ZNcUyO8%2FNm1megeD0GbqGongpd3IiRZ7OizUiPtTDwjeFbtsiQmY%2F0xbwB%2F87Vpm1IK6Oje3JneArNv6fSQad3wC37ZwuqNjIunCyd4nh9p2YX0pLnBTXiM8TafWlw%2Fz"}],"group":"cf-nel","max_age":604800} | |
| nel: {"success_fraction":0,"report_to":"cf-nel","max_age":604800} | |
| vary: Accept-Encoding | |
| cf-cache-status: DYNAMIC | |
| strict-transport-security: max-age=15552000; preload | |
| expect-ct: max-age=86400, enforce |
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
| # Local | |
| LOG_LEVEL=debug pnpm dlx renovate \ | |
| --platform local \ | |
| --print-config true | |
| # GitHub hosted | |
| REPO="user/repo" | |
| LOG_LEVEL=debug pnpm dlx renovate \ | |
| --dry-run extract \ | |
| --print-config 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
| luarocks install --tree=$(brew --prefix)/lib/lua/5.1 luasocket |
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
| [Unit] | |
| Description= UDPGroForwarding | |
| Wants=network-online.target | |
| After=network-online.target | |
| [Service] | |
| Type=oneshot | |
| ExecStart=/sbin/ethtool -K eth0 rx-udp-gro-forwarding on rx-gro-list off | |
| [Install] |
OlderNewer