I hereby claim:
- I am rhysparry on github.
- I am rhysparry (https://keybase.io/rhysparry) on keybase.
- I have a public key whose fingerprint is 7A9B A00C D982 624C F726 5956 BD00 CD1E BC49 7CFD
To claim this, I am signing this object:
| services: | |
| otel_collector: | |
| image: otel/opentelemetry-collector-contrib:0.111.0 | |
| volumes: | |
| - "./otel-collector-config.yml:/etc/otelcol/otel-collector-config.yml" | |
| command: | |
| - "--config" | |
| - /etc/otelcol/otel-collector-config.yml | |
| ports: | |
| - "8889:8889" |
| " Disable things we don't need | |
| noremap <left> <nop> | |
| noremap <right> <nop> | |
| noremap <up> <nop> | |
| noremap <down> <nop> | |
| inoremap <left> <nop> | |
| inoremap <right> <nop> | |
| inoremap <up> <nop> | |
| inoremap <down> <nop> |
I hereby claim:
To claim this, I am signing this object:
| namespace ConsolePaste | |
| { | |
| using System; | |
| using System.Linq; | |
| using System.Threading; | |
| using System.Windows.Forms; | |
| public class Paste | |
| { | |
| [STAThread] |
| function Get-TotalPrivateBytes($Name) | |
| { | |
| Get-Process $Name | Measure-Object -Sum -Maximum -Minimum -Average PrivateMemorySize64 | |
| } |
| function Get-MoreMemoryThanVisualStudio() | |
| { | |
| $d = (Get-Process devenv | Measure-Object -Sum PrivateMemorySize64); | |
| Get-Process | Where-Object {$_.PrivateMemorySize64 -gt $d.Sum} | |
| } |