test**
View udon-types.txt
IEnumerableT | |
SystemArray | |
SystemBase64FormattingOptions | |
SystemBoolean | |
SystemBooleanArray | |
SystemBooleanRef | |
SystemByte | |
SystemByteArray | |
SystemByteRef | |
SystemChar |
View output.txt
This file has been truncated, but you can view the full file.
SystemBoolean.op_Equality :: StaticFunc ([|"SystemBoolean"; "SystemBoolean"|],Some "SystemBoolean"), orig = SystemBoolean.__op_Equality__SystemBoolean_SystemBoolean__SystemBoolean | |
SystemBoolean.op_Inequality :: StaticFunc ([|"SystemBoolean"; "SystemBoolean"|],Some "SystemBoolean"), orig = SystemBoolean.__op_Inequality__SystemBoolean_SystemBoolean__SystemBoolean | |
SystemBoolean.op_LogicalAnd :: StaticFunc ([|"SystemBoolean"; "SystemBoolean"|],Some "SystemBoolean"), orig = SystemBoolean.__op_LogicalAnd__SystemBoolean_SystemBoolean__SystemBoolean | |
SystemBoolean.op_LogicalOr :: StaticFunc ([|"SystemBoolean"; "SystemBoolean"|],Some "SystemBoolean"), orig = SystemBoolean.__op_LogicalOr__SystemBoolean_SystemBoolean__SystemBoolean | |
SystemBoolean.op_LogicalXor :: StaticFunc ([|"SystemBoolean"; "SystemBoolean"|],Some "SystemBoolean"), orig = SystemBoolean.__op_LogicalXor__SystemBoolean_SystemBoolean__SystemBoolean |
View unknown.txt
VRCSDKBaseInputManager.get: Unknown, arity = 1, orig = VRCSDKBaseInputManager.__get__IsUsingHandController__SystemFuncSystemBoolean | |
VRCSDKBaseInputManager.set: Unknown, arity = 1, orig = VRCSDKBaseInputManager.__set__IsUsingHandController__SystemFuncSystemBoolean | |
VRCSDKBaseInputManager.get: Unknown, arity = 1, orig = VRCSDKBaseInputManager.__get__GetLastUsedInputMethod__SystemFuncVRCSDKBaseVRCInputMethod | |
VRCSDKBaseInputManager.set: Unknown, arity = 1, orig = VRCSDKBaseInputManager.__set__GetLastUsedInputMethod__SystemFuncVRCSDKBaseVRCInputMethod | |
VRCSDKBaseNetworking.get: Unknown, arity = 1, orig = VRCSDKBaseNetworking.__get__IsNetworkSettled__SystemFuncSystemBoolean | |
VRCSDKBaseNetworking.set: Unknown, arity = 1, orig = VRCSDKBaseNetworking.__set__IsNetworkSettled__SystemFuncSystemBoolean | |
VRCSDKBaseNetworking.get: Unknown, arity = 1, orig = VRCSDKBaseNetworking.__get__IsMaster__SystemFuncSystemBoolean | |
VRCSDKBaseNetworking.set: Unknown, arity = 1, orig = VRCSDKBaseNetworking.__set__IsMaster__SystemFuncSystemBool |
View root_finding.fs
let bisect f l r = | |
let rec bisect l r i = | |
seq { | |
let xl, xr = f l, f r | |
let sl, sr = int (sign xl), int (sign xr) | |
if sl <> sr then | |
printfn "[%i] f(%f) = %f, f(%f) = %f" i l xl r xr | |
yield (l, r) | |
let c = (l + r) / 2.0 | |
let x = f c |
View 2019-10-04.tidal
setcps ((192 / 60) / 4) | |
hush | |
kick = | |
sound "909" | |
# up (-2) | |
# shape 0.8 | |
# lpf 5000 | |
# cut 0 |
View revoked
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQINBFuQHpoBEADEij8FAaLKrIUgN2ijJdbzMeHMI0f6Y35/BdQHMqkytVn/sFNf | |
L+HpccHv53ESJrTjprz00mBns1AbenF6GTsJ2Mi2+tPSgJcfPqPXOxSNDKeqt7YJ | |
P/248wQN9jt8+l4o3eOWcPgD1pebAivmPzxEdjmZt0qFtsqiYKQ7J/DEZf6vcpYa | |
/OiZS4geWwsXsWt856/r9CJzz4EJCNPhzektlnasRPz1+UVchrY5MRfiJ5ef6J1e | |
1cjAx4XJ7ISHfjKfwbHBzf6kBfXuWXDhCw9WIR22703WaWN+Lw6VQpBwWa1rG0Ep | |
LPB2ogCU9h38079HZxHcGJ0XU8VYDxqQzFnwCJRUpnBtQLF9YETCqoEwcEtRM+rG | |
4T3kS52o/KPnhfThHBg5qVUzHRD2Mi+P5a9HCz7OUwOPv8YsUp4ZNsKGvefbmzED | |
WN/JWpScK/6LIjSpVU8rFH/keDVkFD2M+p2UN6AvGOTuumoJH5i98OWZe4o3Kplm |
View CarouselViewExtension.fs
(* | |
The MIT License | |
CarouselViewExtension - Fabulous wrapper for alexrainman/CarouselView | |
Copyright(c) 2019 cannorin, Peano System Inc. | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
View LongPressedEffect
ref: https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/effects/ | |
getting started: | |
1. put LongPressedEffect.fs in the netstandard/shared project | |
2. put LongPressedEffect.{iOS,Android}.fs in the corresponding platform project | |
3. use the `create` callback to add an effect to Fabulous components (cf. Usage.fs) | |
license: MIT |
View SpanUtils.fs
(* | |
The MIT License | |
SpanUtils.fs - Useful extensions for Span | |
Copyright(c) 2019 cannorin | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
NewerOlder