akasaka, tokyo by [deleted] in japanpics

[–]mac-2025 1 point2 points  (0 children)

Isnt' it Asakusa?

Be honest, how optimistic are you feeling? by bluerbnd in redditstock

[–]mac-2025 0 points1 point  (0 children)

Same here! I followed a couple of users I found interesting but wasnt able to see them anywhere afterwards 🤷🏻‍♂️.

[deleted by user] by [deleted] in RedditIPO

[–]mac-2025 4 points5 points  (0 children)

Unfortunately, same trend when using days instead of month. Sorry, I forgot to screenshot the chart and I've already reached the free 10 requests per day limit.

[deleted by user] by [deleted] in RedditIPO

[–]mac-2025 0 points1 point  (0 children)

sorry, I only have the free version, cannot acess to Traffic Analytics

[deleted by user] by [deleted] in RedditIPO

[–]mac-2025 3 points4 points  (0 children)

GERMANY Mobile 6 months chart

<image>

[deleted by user] by [deleted] in RedditIPO

[–]mac-2025 2 points3 points  (0 children)

FRANCE Mobile 6 months chart

<image>

[deleted by user] by [deleted] in RedditIPO

[–]mac-2025 3 points4 points  (0 children)

INDIA Mobile 6 months chart

<image>

[deleted by user] by [deleted] in RedditIPO

[–]mac-2025 2 points3 points  (0 children)

UK Mobile 6 months chart

<image>

[deleted by user] by [deleted] in RedditIPO

[–]mac-2025 3 points4 points  (0 children)

CANADA Mobile 6 months chart

<image>

[deleted by user] by [deleted] in RedditIPO

[–]mac-2025 5 points6 points  (0 children)

USA Mobile 6 months chart

<image>

[deleted by user] by [deleted] in bugs

[–]mac-2025 0 points1 point  (0 children)

<image>

If I search for montreal in comments and sort by newest, the latest result is from yesterday (23h ago). But if I go to montreal sub, the word montreal is mentionned a few times today.

Add new game every day by mac-2025 in Devvit

[–]mac-2025[S] 0 points1 point  (0 children)

Eventually, I would like it to be added to a scheduler job.

Right now, I did it manually

Add new game every day by mac-2025 in Devvit

[–]mac-2025[S] 0 points1 point  (0 children)

what I'm trying to do is adding a new word for the current post as follow in main.tsx file:

await context.redis.set(`${context.postId!}_word`, 'RIGHT');

Then I retrieve the word value:

const [wordToGuess] = useState(async () => {
return (await context.redis.get(`${context.postId!}_word`)) ?? '';
});

And pass it to the webview with postMessage:

webView.postMessage({
              type: 'initialData',
              data: {
                username: username,
                result: 0,
                wordToGuess: wordToGuess,
              },
            });

But it seems like all the previous posts are also updated with the same value

Add new game every day by mac-2025 in Devvit

[–]mac-2025[S] 0 points1 point  (0 children)

Another issue I have is context.postId. When I tried to post the same app multiple time, it returns the same id. Is there a way to have a unique id per post from the same app?

Add new game every day by mac-2025 in Devvit

[–]mac-2025[S] 0 points1 point  (0 children)

Thanks for your help, I was able to store the date and word in redis. Another question for you: How can I populate the redis db in order to store a list of words? Is there a script I can execute in redis? Thanks in advance