scott_c
scott_c
CC#
Created by SR_saint on 9/26/2024 in #help
✅ Senior .NET Developer Needed
!ban @SR_saint Only here to recruit
26 replies
CC#
Created by SR_saint on 9/26/2024 in #help
✅ Senior .NET Developer Needed
@SR_saint It seems like you're not here for anything that follows our server's rules, so I'm going to help you along by removing you
26 replies
CC#
Created by hurikan on 10/26/2023 in #help
❔ Task (difficulty: easy)
If the automod keeps blocking your post because you're using a slur, don't try to evade the automod
183 replies
CC#
Created by morry329# on 7/29/2023 in #help
✅ Why does my list get zeroed?
It looks like your solution just checks for substrings that match "abc" exactly without rearranging the letters
5 replies
CC#
Created by morry329# on 7/29/2023 in #help
✅ Why does my list get zeroed?
The question is about searching for anagrams, and I'm not sure your solution takes that into account. (For example, looking at the sample answer above, you need to take every 3-character substring of cbaebabacd and check whether that substring can be rearranged into abc)
5 replies
CC#
Created by morry329# on 7/29/2023 in #help
✅ Why does my list get zeroed?
I don't think it's that the list doesn't store anything, it's that you never add anything to the list in the first place
5 replies
CC#
Created by swind on 1/17/2023 in #help
I want to extract data from discord for my application, how can I do it?
!ban @swind making a discord spam bot
12 replies
CC#
Created by REAPER on 11/3/2022 in #help
Slash command choices [Answered]
5 replies
CC#
Created by big OOF on 10/5/2022 in #help
Yield return
(which internally does basically the same thing as in your first message)
6 replies
CC#
Created by big OOF on 10/5/2022 in #help
Yield return
If you wanted to return the entire collection using a regular return instead of yield return, you'd probably do something like return courses.Select(entity => EntityToModel.CreateCourseFromEntity(entity));
6 replies
CC#
Created by big OOF on 10/5/2022 in #help
Yield return
yield return is used to lazily return a collection, whereas regular return would just return the first item from that collection in that above code sample (if you kept everything else in the code the same)
6 replies