Skip to content

Instantly share code, notes, and snippets.

Maintainers:
alexanderkjeldaas: ceph, ceph-client, libceph, ceph, ceph-dev, libceph, ceph-client, ceph-dev
johanot: ceph, ceph-client, libceph, ceph, ceph-dev, libceph, ceph-client, ceph-dev
krav: ceph, ceph-client, libceph, ceph, ceph-dev, libceph, ceph-client, ceph-dev
adevress: ceph, ceph-client, libceph, ceph, ceph-dev, libceph, ceph-client, ceph-dev
aarch64-linux qemu_full
x86_64-linux ceph-csi
x86_64-linux sambaFull
aarch64-linux ceph-csi
aarch64-linux ceph
aarch64-linux ceph-client
aarch64-darwin qemu_full
x86_64-linux libceph
x86_64-linux ceph
x86_64-linux ceph-dev
@choco-bot
choco-bot / Install.txt
Created April 18, 2024 09:33
pushbullet-chrome v336.0.20170115 - Failed - Package Tests Results
2024-04-18 08:56:51,396 5088 [DEBUG] - XmlConfiguration is now operational
2024-04-18 08:57:13,693 5088 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2024-04-18 08:57:14,288 5088 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco'
2024-04-18 08:57:14,655 5088 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2024-04-18 08:57:14,837 5088 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco'
2024-04-18 08:57:15,024 5088 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco'
2024-04-18 08:57:15,164 5088 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco'
2024-04-18 08:57:15,477 5088 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2024-04-18 08:57:15,828 5088 [DEBUG] - Adding new typ
@jimdigriz
jimdigriz / HOWTO AWS SSM Filetransfer.md
Last active April 18, 2024 09:38
AWS SSM File Transfers

Notes on how to transfer files to airgapped systems.

ECS

aws --profile $PROFILE ecs run-task --cluster $CLUSTER --task-definition $TASKDEF:$TASKDEF_VERSION --launch-type FARGATE --network-configuration awsvpcConfiguration='{subnets=[subnet-123,subnet-456,subnet-789],securityGroups=[sg-1234],assignPublicIp=ENABLED}' --enable-execute-command 

socat EXEC:'sx --ymodem -b -k /path/to/file/one /path/to/file/two ...',pipes EXEC:"aws --profile $PROFILE ecs execute-command --cluster $CLUSTER --container $CONTAINER --interactive --task $TASK --command \'/usr/bin/rx --ymodem -b\'",nofork

Findings

@choco-bot
choco-bot / FilesSnapshot.xml
Created April 18, 2024 09:32
speakeasy v1.257.2 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<files>
<file path="C:\ProgramData\chocolatey\lib\speakeasy\speakeasy.nupkg" checksum="355A180CDA81F44EB8C0D46D86EA666E" />
<file path="C:\ProgramData\chocolatey\lib\speakeasy\speakeasy.nuspec" checksum="FE9B28C29B574A01545D86E94AE597AB" />
<file path="C:\ProgramData\chocolatey\lib\speakeasy\speakeasy_windows_amd64.zip.txt" checksum="734FCC3276F6F155E4D93BA214B6E8AB" />
<file path="C:\ProgramData\chocolatey\lib\speakeasy\tools\chocolateyinstall.ps1" checksum="488EE03182D5FD2C0B6993F0E30EE095" />
<file path="C:\ProgramData\chocolatey\lib\speakeasy\tools\LICENSE" checksum="3359111D4FBC657CF1A3F3475298383A" />
<file path="C:\ProgramData\chocolatey\lib\speakeasy\tools\README.md" checksum="578F7E2F3597961BCB5DAA39D06720B6" />
<file path="C:\ProgramData\chocolatey\lib\speakeasy\tools\speakeasy.exe" checksum="BAF4E1257F834EEE2D
{
"certified": false,
"deleted": false,
"docker_image_digest": "sha256:27e60c241e277870d5a69542badc8322946917e5b8b9b8331b313a844a09afa0",
"docker_image_id": "sha256:a83abe7c6a385411f52fc3b0ab8807c84ac74ad0d15b6470ce13cc8177d896a4",
"image_id": "sha256:27e60c241e277870d5a69542badc8322946917e5b8b9b8331b313a844a09afa0",
"parsed_data": {
"architecture": "amd64",
"created": "2024-04-18 09:05:32.680408707 +0000 UTC",
"image_id": "sha256:27e60c241e277870d5a69542badc8322946917e5b8b9b8331b313a844a09afa0",
Maintainers:
l0b0: nexus-mods-app, nexus-mods-app
x86_64-linux nexus-mods-app
aarch64-linux nexus-mods-app
SELECT
PARSE_DATE('%Y%m%d',
event_date) AS date,
stream_id,
-- note, stream_id is available for web streams as well
app_info.id AS app_id,
app_info.version AS app_version,
platform AS app_platform,
device.mobile_brand_name AS device_brand,
device.mobile_model_name AS device_model,
@sarancartrabbit
sarancartrabbit / Woo Discount Rules: Exclude discount for the backorder product
Created April 18, 2024 09:31
Woo Discount Rules: Exclude discount for the backorder product
add_filter('advanced_woo_discount_rules_filter_passed', function ($filter_passed, $rule, $product, $sale_badge, $product_table, $conditionFailed) {
if(is_object($product) && method_exists($product, 'is_on_backorder')){
if($product->is_on_backorder()){
return false;
}
}
return $filter_passed;
}, 10, 6);