You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I have to do a rather lot of clicking to be explicit about the conversions I want. Maybe we could save a few clicks by doing all conversions instead manually-registered one-offs, so user can just select (read, choose to interpret) desired output from set of results.
Currently steps are:
Enter value.
Select input type (Hex <-> String/Number/Date)
Select output type (eg. String/Number/Date).
Do something with output (read, copy, whatever)
Describe the solution you'd like
I'm wondering if the interface can be simplified to convert between all formats simultaneously at least for hex input, leaving the user's only job being:
Enter value.
Read output(s).
So when converting from Hex, all possible result types (String, Number, Date) are shown.
Next level might be to use regexs to infer value type, and be able to remove having to manually swap between Hex // Other input data types, and to show only plausible/non-"erroring" return values given an arbitrary input (hide NaN results, etc).
Eg.
Value: ____________
⬇️
Value: 0xd3________
➡️
From Hex ( 0xd3 )
-> Number = 211
-> String = �
-> Date = Wed Dec 31 1969 18:03:31 GMT-0600 (Central Standard Time)
From String ( 0xd3 )
-> Hex = 0x30786433
From Number ( 0xd3 )
-> Hex = 0x0
From Date ( 0xd3 )
-> Hex = NaN
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I have to do a rather lot of clicking to be explicit about the conversions I want. Maybe we could save a few clicks by doing all conversions instead manually-registered one-offs, so user can just select (read, choose to interpret) desired output from set of results.
Currently steps are:
Describe the solution you'd like
I'm wondering if the interface can be simplified to convert between all formats simultaneously at least for hex input, leaving the user's only job being:
So when converting from Hex, all possible result types (String, Number, Date) are shown.
Next level might be to use regexs to infer value type, and be able to remove having to manually swap between Hex // Other input data types, and to show only plausible/non-"erroring" return values given an arbitrary input (hide
NaN
results, etc).Eg.
Value: ____________
⬇️
Value: 0xd3________
➡️
From Hex ( 0xd3 )
From String ( 0xd3 )
From Number ( 0xd3 )
From Date ( 0xd3 )
The text was updated successfully, but these errors were encountered: