Julian Ceipek

Results 15 issues of Julian Ceipek

https://github.com/jtobey/javascript-bignum/blob/master/lib/leemonBigInt.js#L903 I've been trying to implement Pollard's Rho algorithm as part of a demonstration of ElGamal. While testing it, I determined that the GCD function sometimes doesn't return the expected...

I recently read _InterState: A Language and Environment for Expressing Interface Behavior_, and I'm really excited about the potential for this programming paradigm. There were a few things I didn't...

The problem was mainly in the line ``` NSViewController *result = [NSViewController alloc] initWithNibName:nibName bundle:nil]; ``` I changed it to ``` NSViewController *result = [[NSClassFromString(controllerName) alloc] initWithNibName:nibName bundle:nil]; ``` However,...

Given the file: ``` ; listing A bits 16 mov ax, [0] ``` `nasm` produces `A1 00 00` `sim86` decodes that to: ``` ; listing A disassembly bits 16 mov...

**Describe the bug** Given: ```python @api.get("/items/{item_id}") def read_item(request, item_id: Annotated[str, Field(examples=["an example"], title="Some Title", description="A description")]): return {"item_id": item_id} ``` I expect "Some Title" and "A description" show up in...