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
| # 2020-11-9: Solved in recent Ubuntu updates, not needed anymore, only for historical purposes available. | |
| # | |
| # Script to disable USB-C PD controller with nuc10 | |
| # See: https://community.intel.com/t5/Intel-NUCs/NUC10i3-IRQ-problem/td-p/669863?profile.language=it | |
| # https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1883511 | |
| processActive=$(pgrep -l irq/65-i2c-INT3 | wc -l) | |
| if [ "$processActive" -gt "0" ]; then | |
| echo "stopping USB-C PD controller" |
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
| PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
| PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | |
| prefix ncit: <http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#> | |
| prefix snomedct: <http://purl.bioontology.org/ontology/SNOMEDCT/> | |
| prefix roo: <http://www.cancerdata.org/roo/> | |
| INSERT { | |
| GRAPH <http://inferred-manually.local/> { | |
| ?patient roo:survival_5_years ?survival_5y. | |
| } |
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
| #!/usr/bin/env bash | |
| set -eu | |
| # Prints local Docker images built on or after 2026-01-01 to stdout | |
| # Only includes images whose repository starts with "harbor2" | |
| # Output format: tab-separated | |
| # Columns: image_name tag digest date_built | |
| cutoff="2026-01-01T00:00:00Z" |
OlderNewer