Jester
Jester
CC#
Created by YoItsTrev on 8/6/2024 in #help
✅ C# noob needs help retrying WebClient .DownloadString
also dont use a new httpclient for each request. you can keep doing requests with the same one which will work better
83 replies
CC#
Created by Alonuis on 7/25/2024 in #help
can anyone help? i need to print out the 3 most repeated numbers in the array
i love groupby, very confusing but powerfull
43 replies
CC#
Created by Alonuis on 7/25/2024 in #help
can anyone help? i need to print out the 3 most repeated numbers in the array
you got close to mine
43 replies
CC#
Created by Alonuis on 7/25/2024 in #help
can anyone help? i need to print out the 3 most repeated numbers in the array
skill issue
43 replies
CC#
Created by Alonuis on 7/25/2024 in #help
can anyone help? i need to print out the 3 most repeated numbers in the array
i dont recommend this solution but LINQ is fun. output: [ 5, 3, 1]
(new int[] { 1, 1, 2, 3, 3, 3, 4, 5, 5, 5, 5, })
.GroupBy(i => i)
.OrderByDescending(g => g.Count())
.Select(g => g.Key)
.Take(3)
.ToArray()
(new int[] { 1, 1, 2, 3, 3, 3, 4, 5, 5, 5, 5, })
.GroupBy(i => i)
.OrderByDescending(g => g.Count())
.Select(g => g.Key)
.Take(3)
.ToArray()
43 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
:Thumbs:
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
maybe a lowlevelhook if that input even gets sent trough that
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
yeah
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
but might not be useful
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
you might be able to read some bytes like what i did there
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
:rozoa_shrug:
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
different than raw input: i got input from a simple wacom tablet by reading it as a file but i had to figure out what the bytes mean myself
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
hmm yeah idk
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
it should have other hid devices too but maybe game controllers are special
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
i know about the win32 raw input api and that one sends messages to your window message loop. you can also make it het global messages, not only in your window. i feel like you have tried wappers of it here but idk why those dont seem to work that way?
32 replies
CC#
Created by Pandetthe on 3/3/2024 in #help
✅ Wndproc is not receiving any messages when window is not focused
@Pandetthe
22 replies
CC#
Created by Pandetthe on 3/3/2024 in #help
✅ Wndproc is not receiving any messages when window is not focused
bcuz people ask for this frequently, i have made an example project https://github.com/QubitTooLate/Keylogging
22 replies
CC#
Created by Pandetthe on 3/3/2024 in #help
✅ Wndproc is not receiving any messages when window is not focused
only the focused window gets window input messages. but if you want to get window input messages even if ur not the focused window. you can use lowlevel hooks or rawinput
22 replies
CC#
Created by blackSheep on 3/6/2024 in #help
Resizing the Console window - Console Application
@blackSheep
22 replies