Stan
Stan
CC#
Created by WallStreetJets on 11/5/2023 in #help
❔ convert http into ws? asp.net core web api
yeah signalr takes care of stuff automagically. unless you specifically need websockets, go with that
10 replies
CC#
Created by Kuzo on 10/31/2023 in #help
✅ [Fixed]Class function wont output anything
ehh happens to the best of us
21 replies
CC#
Created by Kuzo on 10/31/2023 in #help
✅ [Fixed]Class function wont output anything
oh, no clue actually, been wondering what that thing does myself xD
21 replies
CC#
Created by Kuzo on 10/31/2023 in #help
✅ [Fixed]Class function wont output anything
eval bot?
21 replies
CC#
Created by Kuzo on 10/31/2023 in #help
✅ [Fixed]Class function wont output anything
so to clarify, in a for loop thrres 3 things 1. initializing your loop counter 2. the condition to that must be true to continue an iteration (maybe you think it's the condition to stop instead) 3. Changing the loop counter
21 replies
CC#
Created by Kuzo on 10/31/2023 in #help
✅ [Fixed]Class function wont output anything
your loop in binwrite is off. you start counting at 7 and say if less than or equal to 0 it should do an iteration, which is never true because we start at 7 which is greater than 0
21 replies
CC#
Created by forkt on 10/29/2023 in #help
❔ implementing openvpn to my c# wpf app
https://stackoverflow.com/questions/61456939/how-can-one-use-the-command-line-to-use-openvpn-on-windows dunno if command line calls its the best approach, but its the best i got.
11 replies
CC#
Created by forkt on 10/29/2023 in #help
❔ implementing openvpn to my c# wpf app
EDIT: nvm, i thought winget shipped with windows, it doesnt
11 replies
CC#
Created by forkt on 10/29/2023 in #help
❔ implementing openvpn to my c# wpf app
yeah doing it yourself full out is not super doable. you could probably use winget to install openvpn client. idk what commands if any are available though so youd have to look into that
11 replies
CC#
Created by Dou on 10/29/2023 in #help
Docker container works fine in manual invocation but not when started via VS2022's start button
anything in docker-compose.override.yaml that might break it?
5 replies
CC#
Created by AceChewy on 10/29/2023 in #help
❔ Career Path
Thats not a question i can answer myself since i took kind of a weird path. But frankly, go as deep as you're comfortable with and let it take as long as it takes.
7 replies
CC#
Created by sebt on 10/29/2023 in #help
❔ In need of a way to process inputs to produce outputs, other than using hardcoded if statements
but its certainly good to add in your toolkit down the line
479 replies
CC#
Created by sebt on 10/29/2023 in #help
❔ In need of a way to process inputs to produce outputs, other than using hardcoded if statements
yeah thats fine, its a lot of compressed stuff and when you're new its hard enough to read code at all so
479 replies
CC#
Created by sebt on 10/29/2023 in #help
❔ In need of a way to process inputs to produce outputs, other than using hardcoded if statements
awesome
479 replies
CC#
Created by sebt on 10/29/2023 in #help
❔ In need of a way to process inputs to produce outputs, other than using hardcoded if statements
makes sense kinda?
479 replies
CC#
Created by sebt on 10/29/2023 in #help
❔ In need of a way to process inputs to produce outputs, other than using hardcoded if statements
under the hood, .All and .Contains returns a bool to the caller (which is the linq query wrapping it)
479 replies
CC#
Created by sebt on 10/29/2023 in #help
❔ In need of a way to process inputs to produce outputs, other than using hardcoded if statements
finally we have p => input.Contains(p) which again takes the parameter provided by All() which was iterating p.Params and we check if input contains the specific param
479 replies
CC#
Created by sebt on 10/29/2023 in #help
❔ In need of a way to process inputs to produce outputs, other than using hardcoded if statements
and it does our little innerMatchCount thing internally
479 replies
CC#
Created by sebt on 10/29/2023 in #help
❔ In need of a way to process inputs to produce outputs, other than using hardcoded if statements
its just kind of a shortcut
479 replies
CC#
Created by sebt on 10/29/2023 in #help
❔ In need of a way to process inputs to produce outputs, other than using hardcoded if statements
yeah exactly
479 replies