This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
| # MacOS Version 1.2 | |
| # 08/14/2025 | |
| # Requires MPV v0.38.0 or newer | |
| ############################################################################################################################################### | |
| # Player GUI Options | |
| ############################################################################################################################################### |
| #!/usr/bin/env python | |
| import multiprocessing | |
| import random | |
| import time | |
| class Logger: | |
| def __init__(self, num_lines, last_output_per_process, terminal_lock): | |
| self.num_lines = num_lines |
| import datadog.trace.api.DDTags | |
| import io.opentracing.Span | |
| import io.opentracing.Tracer | |
| import io.opentracing.log.Fields | |
| import io.opentracing.tag.Tags | |
| import io.opentracing.util.GlobalTracer | |
| suspend fun <T : Any, O> T.coRunTraced( | |
| methodName: String, | |
| block: suspend T.(Span) -> O, |
| $ ./pluspy -s modules/other/Qsort.tla | |
| Enter input: poiuylkjhmnbvcdsxzafgtrewq | |
| abcdefghijklmnopqrstuvwxyz | |
| ----------------------------- MODULE Qsort ----------------------------- | |
| EXTENDS Naturals, Sequences, FiniteSets, TLC, Input | |
| \* Specification (works reasonably well for sets of cardinality <= 6 | |
| \* Takes a set as argument, produces a sorted tuple | |
| Sort(S) == CHOOSE s \in [ 1..Cardinality(S) -> S]: |
⚠️ WARNING
The ordering of listed projects or documents is random and has no connection to relevance or maturity levels!
| Extension | Description |
|---|---|
pgaudit |
Postgres auditing extension |
I run several K8S cluster on EKS and by default do not setup inbound SSH to the nodes. Sometimes I need to get into each node to check things or run a one-off tool.
Rather than update my terraform, rebuild the launch templates and redeploy brand new nodes, I decided to use kubernetes to access each node directly.
| package main | |
| import ( | |
| "net/http" | |
| "sync" | |
| "time" | |
| "github.com/gin-gonic/gin" | |
| ) |