weirdyang
weirdyang
I’ve been implementing it like this ``` @charset "utf-8"; @import "~bulma/bulma.sass"; @media (prefers-color-scheme: dark) { @import "./styles/dark-styles.scss"; } ``` Where I override the base styles in the dark styles file,...
https://github.com/twintproject/twint/issues/1266#issuecomment-913054960
Hi, where can I find the documentation for streamv2, sample and filtered? I can only find the filteredstream docs for v1; https://linvi.github.io/tweetinvi/dist/streams-v1.1/filtered-stream.html ``` _stream = Client.StreamsV2.CreateFilteredStream(); var pars = new...
Hi @tomazi776 and @SamuelJames101 I based my code off of this comment: https://github.com/linvi/tweetinvi/issues/1070#issuecomment-704780561 I have uploaded my incomplete but working implementation here: https://github.com/weirdyang/tweet-stream/blob/main/tweet-stream-lib/Configuration/TweetConfiguration.cs rules in appsettings should be in this...
I'm having an assume with using the geocoder with markers. ``` map!: mapboxgl.Map; addGeocoder() { const geocoder = new MapboxGeocoder({ accessToken: mapboxToken, mapboxgl: this.map, marker: true }); this.map.addControl(geocoder, "top-right"); }...
Experiencing the same thing in vs2019
Hi I figured it out. To get it to work. 1. Open code graph 2. Set language to c# 3. Click on analyse 4. Alt f and the node appears...
Hi, I've managed to get it to work with a .net5.0 blazor client; https://github.com/weirdyang/openiddict-mongodb-identity
Did anyone manage to resolve this? I tried increasing QueuePollInterval to 35seconds and still getting this issue.
For my case, it was because I called app.UseHangfireServer(), when I've already added services.AddHangfireServer(); in the configure method above. Removing that line solved this issue for me.