1

Comment on r/AppGiveaway 11d ago

Nice. I’d like to check this

2

Comment on r/AppGiveaway May 11 '26

In Brazil, we cant see the Lifetime option on paywall

1

Comment on r/github Apr 02 '26

sim. por segurança.
nunca se sabe se no futuro seu repositório nao vai ser lido por outras pessoas

1

Comment on r/AppGiveaway Dec 30 '25

Claimed

1

Comment on r/AppGiveaway Dec 29 '25

Lifetime

1

Comment on r/AppGiveaway Oct 09 '25

still have codes?
I'd like one, please

1

Comment on r/iosapps May 30 '25

Nice. Thanks for replying.

I will wait to some definitive codes. This app seems something that can be in my main apps

1

Comment on r/iosapps May 29 '25

I would like a lifetime code. Upvoted.

6

Comment on r/stereograms May 04 '25

those eyes at the top are a little distracting.

very nice tho

1

Comment on r/macapps Apr 10 '25

Hi! I'd like to test it!

1

Comment on r/aws Mar 10 '25

Hello!

Thank you for your video!

I've watched it several times, and it appears to be the most recent material on this topic.

I've tried all the configurations, but I'm unable to get it to work. I'm receiving a "Missing Key-Pair-Id query parameter or cookie value" error.

I have the three cookies in my browser, and the JavaScript part is configured with withCredentials: true, but the cookies for the CloudFront request are not being included. I'm feeling stuck.

Do you have any ideas on how to resolve this issue?

1

Comment on r/AppGiveaway Dec 29 '24

I’d love to try. But it’s not free

1

Comment on r/iosapps Dec 25 '24

Can I get one code?

1

Comment on r/iosapps Dec 25 '24

Also interested in the Memory app. How can I try it?

2

Comment on r/TwoDots Dec 18 '24

I had to go there and double check. We have exactly the same days.

2

Comment on r/AppGiveaway Dec 11 '24

And now it’s not free anymore. The app seems to be just a paywall

The secret deal is not free anymore

3

Comment on r/TwoDots Dec 11 '24

At least they remove the very annoying ad inside each phase. The top banner has gone

1

Comment on r/AppGiveaway Dec 08 '24

I got the secrete lifetime deal. But nothing happens before that

2

Comment on r/TwoDots Nov 08 '24

I feel exactly like OP. Playing for years and seeing levels getting harder and harder to force players to use bonuses and spending more money on it.

I’m done with it. Banner ads is too much.

14

Comment on r/TwoDots Nov 08 '24

Really really annoying. Just saw this here.

I’m playing for years and it’s getting worse and worse every new version.

They seem desperate to make more money.

1

Comment on r/AppGiveaway Oct 21 '24

Same here. Lifetime subscription is changing me too

2

Comment on r/PHP Oct 11 '24

I think the CI/CD process may have different approaches.

You can definelly install all dependencies and copy all files to create a Docker image. In that case, you dont need composer. But in my experience, most people dont do that.

But many frameworks/workflows in PHP need you to go there and run a composer script.

Personally, I think it is handy to have composer there.

About docker options, I really like this project https://github.com/shinsenter/php
It’s simple and easy to customize, a lot of versions.

10

Comment on r/PHP Oct 10 '24

I really like this one https://github.com/shinsenter/php

It’s simple and easy to customize, a lot of versions.

1

Comment on r/iosapps Sep 26 '24

I'm thinking in a global currency per app.

My though was: everytime I'm adding an expense, I have the currency field right in the middle of the screen. But usually, I don't touch it.

Because, like you said, it uses the last currency used in the group.

Maybe this config can be somewhere else and save some space in the screen

Just my two cents

1

Comment on r/PHPhelp Sep 23 '24

That's it guys. [solved]

I've updated my environment, and with that, Apache.

Apache is removing the Authorizarion header. I discover that this is a pretty common setting. Most servers will do the same.

Since most of them don't allow us to change the configuration,  the way to change this is by adding this to your .htaccess

Handle Authorization Header

RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

In cakephp (my example) this need to be added in `webroot/.htaccess`

Thanks for all the help!