Alexander Frey

Results 5 issues of Alexander Frey

`navigate("/authentication?test=true",false,{a:false},false);` only `?a=false` will be appended

When using a BIP38 encrypted Private Key I get an: `EncodingError: Unrecognised password protected key format. Flagbyte incorrect.` Error Minimal example: ``` from bitcoinlib.keys import Address,Key public_address = "1CTHRG6Te7dvbb5RQ6JuDv6tNdMH6Fahic" private_key...

feature_request

[here](https://learn.svelte.dev/tutorial/preload) at the bottom section about programatically preloading Pages it would be nice to mention that the url has to be URI/URL encoded. I think the behaviour in svelte differs...

Im using the websocket like this ```js const {sendMessage, lastMessage, readyState} = useWebSocket(WEBSOCKET_URL, { heartbeat: { message: 'ping', returnMessage: 'pong', timeout: 2000, interval: 1000, }, onClose:()=>{ console.log("WebSocket connection closed") },...

Hey like the title Typescript is not working with `rest` props and spread operator. Example: ```tsx export function ColorPicker({...rest}) { return ; } ``` If u use this component typescript...