arion
arion
CC#
Created by -♤ΛℭΞ RΛMIП on 11/9/2024 in #help
InstagramApiSharp
:CatRave:
13 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 11/9/2024 in #help
InstagramApiSharp
That's a bit off topic but yea. I wanted to subscribe to certain feeds. They send that data to an https endpoint of yours
13 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 11/9/2024 in #help
InstagramApiSharp
Meta also has amazing webhook support
13 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 11/9/2024 in #help
InstagramApiSharp
I don't have any on me rn but a quick search brought me to https://developers.facebook.com/docs/instagram-platform/reference/oauth-authorize/
13 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 11/9/2024 in #help
InstagramApiSharp
I believe Instagram has that
13 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 11/9/2024 in #help
InstagramApiSharp
Most sites don't use direct logins via third parties. They use OAuth
13 replies
CC#
Created by tommy on 11/4/2024 in #help
why do we declare overloaded operators as `static` methods?
20 replies
CC#
Created by tommy on 11/4/2024 in #help
why do we declare overloaded operators as `static` methods?
:Dead: I... can't argue with that lol
20 replies
CC#
Created by tommy on 11/4/2024 in #help
why do we declare overloaded operators as `static` methods?
Tell that to the team who made this functionality for the unsafe keyword already.
20 replies
CC#
Created by tommy on 11/4/2024 in #help
why do we declare overloaded operators as `static` methods?
Rider has a nice thing of pinning the current class to the viewport
20 replies
CC#
Created by tommy on 11/4/2024 in #help
why do we declare overloaded operators as `static` methods?
Unsafe on the class level also disables async for methods in that respective class (until .NET 9)
20 replies
CC#
Created by tommy on 11/4/2024 in #help
why do we declare overloaded operators as `static` methods?
If a class is static, every method will be static. It beats writing static 100x. (Unless thats your thing of course) Same for unsafe. If the entire class is unsafe, each method is unsafe.
20 replies
CC#
Created by tommy on 11/4/2024 in #help
why do we declare overloaded operators as `static` methods?
I'm still waiting for the day we make static non-mandatory if the underlying class is static. (Like the unsafe keyword)
20 replies
CC#
Created by CloudAcidBR on 10/28/2024 in #help
Library not importing?
10 replies
CC#
Created by ValorZard on 10/18/2024 in #help
How to make bindings for a native library using ClangSharp?
The technical explanation is that the handle won't be GCed if its still in the same stack frame that you're invoking the bindings (Example can be seen here) C# strings are stored behind the scenes as UTF16 so we convert to UTF8
50 replies
CC#
Created by ValorZard on 10/18/2024 in #help
How to make bindings for a native library using ClangSharp?
You don't want your string to be disposed when its inside the C/C++ code
50 replies