Skip to content

Instantly share code, notes, and snippets.

View kkraus14's full-sized avatar

Keith Kraus kkraus14

View GitHub Profile
@kkraus14
kkraus14 / metadata
Last active August 20, 2025 02:20
Numba-CUDA CLA
{
"category": {
"title": "Please select one of the options below and sign as indicated. By signing, You accept and agree to the terms of this Contribution License Agreement for Your present and future Submissions to NVIDIA.",
"type": {
"enum": [
"I have sole ownership of intellectual property rights to my Submissions and I am not making Submissions in the course of work for my employer.",
"I am making Submissions in the course of work for my employer (or my employer has intellectual property rights in my Submissions by contract or applicable law). I have permission from my employer to make Submissions and enter into this Agreement on behalf of my employer. By signing, the defined term \\"You\\" includes me and my employer. If selecting this option please enter the Company Name and Title below."
]
},
"required": true

Keybase proof

I hereby claim:

  • I am kkraus14 on github.
  • I am kkraus14 (https://keybase.io/kkraus14) on keybase.
  • I have a public key whose fingerprint is 5441 FBD7 B2A5 DD3C BE24 7D35 F27C DD83 D9E0 9FE9

To claim this, I am signing this object:

@kkraus14
kkraus14 / enum_test.hpp
Created January 6, 2020 16:04
Cython Scoped Enum Example
namespace foo {
enum class bar : int {
spam,
cheese,
parrot
};
}