Rob Janssen

Results 150 comments of Rob Janssen

I don't understand; you still have a random part [in your suggestion](https://github.com/ahawker/ulid/issues/306#issuecomment-451850395)? I also don't see why highload systems would have any problems with a ULID as-is? I don't see...

> Yes, there is a true random part in my suggestion. It provides global key uniqueness. It's necessary for I understand perfectly well what the random part _is for_, but...

@sergeyprokhorenko I'm no Python expert but that implementation a) doesn't (have to?) take multithreading into account b) appears to generate a maximum of 32767 ULID's per millisecond and then just...

> It's correct too. But I think "32767 ULID's per millisecond" is quite enough for the real world databases ULID's aren't *specifically* for databases. They may be used in other...

🤔 It would be pretty trivial to write a `MicrosecondRng` (which accepts an `IUlidRng` for the random part) for [my implementation](https://github.com/RobThree/NUlid) that 'overwrites' the leftmost 10 bits generated by the...

> It would be pretty trivial Well... that was a bit of an understatement. Turns out, when decoding a ULID this microseconds part will be considered 'random data' and not...

I'm experiencing the same problem: ``` Starting OmniSharp server at 9/21/2022, 2:28:48 AM Target: /Users/rob/Code/SomeProject/SomeSolution.sln OmniSharp server started with .NET 6.0.201 . Path: /Users/rob/.vscode/extensions/ms-dotnettools.csharp-1.25.0-darwin-arm64/.omnisharp/1.39.0-net6.0/OmniSharp.dll PID: 83254 Unhandled exception. System.BadImageFormatException: Could...

Came here to report the same thing: ``` FILE: /smarty/sysplugins/smarty_internal_smartytemplatecompiler.php ------------------------------------------------------------------------------------ FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE ------------------------------------------------------------------------------------ 111 | WARNING | INI directive 'mbstring.func_overload' is deprecated...

I have a similar issue. I have a table of measurements with only boolean values (in essence; at what time a sensor change state from `on` to `off` or vice...

Another problem: ![image](https://user-images.githubusercontent.com/607888/47754947-c9982380-dc9c-11e8-8de6-d9644380d440.png) Let's call the top bar A and the one below B. This is the data: Date Sensor State 2018-10-30 23:33:42 B OFF 2018-10-30 23:33:26 A OFF 2018-10-30...