排序
How to Remove Dashes in UUID
How to Remove Dashes in UUID,UUIDs are just 128 bit pieces of data, that is displayed as (128/4) = 32 hexadecimal digits, like this : UUID v1 : c1b33c74-0006-11eb-9894-c83dd482e3ef...
Python Iter class (with proper dot notation)
Python Iter class (with proper dot notation),I realized python has worse generators syntax than javascript/rust/haskell: instead of something like my_iterator.filter(cond).map(conv...