Joachim Schiele
Joachim Schiele
@bamsammich what is the difference between **Windows PowerShell** and **PowerShell**?
I've tried to use direnv with cmd.exe and powershell.exe in https://github.com/direnv/direnv/issues/1105 but I can't get direnv to set a custom variable from an .envrc in my directory called `tests`. ```...
Sauron uses parse_html and with this input: ```rust let html = r#" test 0 1 foo 2 3 "#; ``` In this code passage: ``` rust pub fn parse_html(html: &str)...
**rphtml** is at fault! It parses `` as `node_type: Tag` and it should be of type `node_type: Text` because of the `` ```rust #[test] fn test_childs() -> HResult { let...
I've tried to replace rphtml with html5ever parser in this branch: https://github.com/qknight/sauron/commits/public-dom-patch/ Turns out this works great, except the parser only supports complete html documents and can't work on fractions...
Setting this automatically would be amazing! And the good news is: ws://localhost:5000 instead of http://localhost:5000/ The log reads: ``` 2023-02-11 00:01:34 2023-02-10 23:01:34.373743|INFO |AppServer | |Connecting to ws://appserver:5000/matrix-appserver/v1/teamspeak/events 2023-02-11 00:01:34...
I've created this solution: ``` #include ... std::string appserver_websocket_url = "ws://appserver:5000/appserver/v1/events" assert(appserver_websocket_url != ""); boost::urls::url_view u(appserver_websocket_url); std::string portString = ""; if (u.has_port() == true) { portString = ":" + std::string(u.port());...
I've added `.xdata` and `.bss` as I originally thought to be wrong and the screenshot might help you. The main.exe in question can be found at https://nixcloud.io/mini-main.zip and it also...
I think I uploaded the original binary to https://nixcloud.io/nix.exe but know it is rather big. Thanks for your explanation. PE modifications are indeed very hard as there are so many...
@nicoburns thanks for the heads-up! Using [parse_fragment](https://docs.rs/html5ever/latest/html5ever/driver/fn.parse_fragment.html) it still would add a `` tag. *bummer* ;-) I've implemented it like this: ```rust pub fn parse_html(html: &str) -> Result { let...