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
| Hi, William, | |
| I love calendar trivia so I was happy to stumble across your post on dates that should not exist. Sadly, ncal may be the “most correct”, but it is not correct, as it misses Sweden’s early-1700s calendar weirdness: | |
| $ ncal -s SE 2 1753 | |
| February 1753 | |
| Su 7 14 | |
| Mo 1 8 15 | |
| Tu 2 9 16 | |
| We 3 10 17 | |
| Th 4 11 |
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
| // Command reprotest is a standalone reproducer for the empty `{}` OSV event | |
| // regression. It depends only on the serialization libraries (yaml.v2, goccy, | |
| // protojson, osvschema) so it builds without the rest of the vulnfeeds module. | |
| // | |
| // Run with: go run ./reprotest | |
| package main | |
| import ( | |
| "fmt" | |
| "strings" |
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
| { | |
| "name": "no-push-advisory-branches", | |
| "target": "branch", | |
| "enforcement": "active", | |
| "conditions": { | |
| "repository_name": { | |
| "include": [ | |
| "ruff", | |
| "ty", | |
| "uv" |
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 | |
| top500=($(curl --silent 'https://hugovk.github.io/top-pypi-packages/top-pypi-packages.json' | jq -r '.rows[0:500] | .[].project')) | |
| for project in "${top500[@]}"; do | |
| url="https://pypi.org/project/${project}/" | |
| maintainers=($(curl --silent "${url}" | htmlq -t '.sidebar-section__user-gravatar-text' | sort | uniq)) | |
| for maintainer in "${maintainers[@]}"; do | |
| echo "${maintainer}" | |
| done |
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
| Current runner version: '2.321.0' | |
| Operating System | |
| Ubuntu | |
| 22.04.5 | |
| LTS | |
| Runner Image | |
| Image: ubuntu-22.04 | |
| Version: 20241201.1.0 | |
| Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20241201.1/images/ubuntu/Ubuntu2204-Readme.md | |
| Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20241201.1 |
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
| diff --git b/src/rust/cryptography-x509-validation/src/lib.rs a/src/rust/cryptography-x509-validation/src/lib.rs | |
| index 778ad4962..0f6ba7d6c 100644 | |
| --- b/src/rust/cryptography-x509-validation/src/lib.rs | |
| +++ a/src/rust/cryptography-x509-validation/src/lib.rs | |
| @@ -163,8 +163,23 @@ impl<'a> AccumulatedNameConstraints<'a> { | |
| pub struct Intermediates<'a>(HashSet<Certificate<'a>>); | |
| impl<'a> Intermediates<'a> { | |
| - fn new(intermediates: impl IntoIterator<Item = Certificate<'a>>) -> Self { | |
| - Self(intermediates.into_iter().collect()) |
This file has been truncated, but you can view the full file.
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
| { | |
| "specs": { | |
| "chia-rs": { | |
| "kind": "package", | |
| "package": { | |
| "chia_rs-0.1.0-cp37-abi3-macosx_10_7_x86_64.whl": [ | |
| { | |
| "name": "chia_rs.abi3.so", | |
| "result": { | |
| "is_abi3": 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
| sip | |
| base2048 | |
| pybundletool | |
| opencv-contrib-python-rolling | |
| pyrage | |
| pillow-heif | |
| rjmespath | |
| placeholder | |
| pyobjc-framework-cryptotokenkit | |
| editdistance-s |
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
| from blight.action import ASAction | |
| class SayHello(ASAction): | |
| def before_run(self, tool): | |
| print(f"running {tool.wrapped_tool()} from {tool.cwd} on {tool.inputs}") | |
| def after_run(self, tool): | |
| print(f"finished running {tool.wrapped_tool()} on {tool.inputs}") |
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
| auto *md = indir_data->messageDigest; | |
| auto nid = OBJ_obj2nid(md->digestAlgorithm->algorithm); | |
| auto digest = std::vector<std::uint8_t>(md->digest->data, md->digest->data + md->digest->length); |
NewerOlder