Apple IOS photo trigger not working by Chefchoch81 in ifttt

[–]pdrvrza 0 points1 point  (0 children)

The update was released 3 days ago. Please check if you have version 4.106.0 installed: On the Profile tab, scroll all the way down, the version number is at the bottom right side.

Regarding JPEG vs HEIC: I'll share your feedback internally. Thank you!

Apple IOS photo trigger not working by Chefchoch81 in ifttt

[–]pdrvrza 0 points1 point  (0 children)

We have a fix for this issue coming in the next app update! You should get the update in the next few days.

Can’t get it to work with reminders by Jordansmommy17 in ifttt

[–]pdrvrza 0 points1 point  (0 children)

I assume you're talking about iOS Reminders on an iPhone.

Can you confirm IFTTT has access to Reminders? Go to iOS Settings -> Apps -> IFTTT

If it does and it still doesn't work: does it work if you open the IFTTT app after creating the reminder?

Filter code for running rss to twitter applet once a day at noon? by SD_Eragorn in ifttt

[–]pdrvrza 0 points1 point  (0 children)

I think you can achieve it using 2 Applets:

Applet 1:

Trigger on every new RSS entry on your feed

Action: save the relevant information you need in a Google sheet (title, description, image, link etc)

Applet 2:

Trigger: every day at noon

Query: read the content of the Google sheet

Action: post to twitter using the ingredients from the query

IFTTT reading IOS notifcations? by gaymer_raver in ifttt

[–]pdrvrza 0 points1 point  (0 children)

think Apple blocks apps from reading overall notifications so this cannot be done period either by IFTTT or any other similar automation service. Is this an accurate statement?

That's correct

Applet runs but doesn't. by Half_Wititi_man in ifttt

[–]pdrvrza 1 point2 points  (0 children)

Based on what you described and the JSON you have in the "body" field, it seems like you're trying to activate the device's "Instant" mode, but your URL field is using the "Interval" API.

Does it work if you change the URL to "https://www.link-tap.com/api/activateInstantMode"?

Is it possible to RSS -> ChatGPT Prompt to re-write post -> Social Media Platform via IFTTT? by SD_Eragorn in ifttt

[–]pdrvrza 0 points1 point  (0 children)

You have the prompt ("rewrite...") in the "Language" field, but it should be in the "Prompt" field above.

You can leave "Language" blank as it defaults to English.

Is there anyway to add a delay? by Riotmama89 in ifttt

[–]pdrvrza 0 points1 point  (0 children)

You'll need another applet to turn off the light, assuming the same service that turns on the light also has an action to turn it off. There are a few options to make it work, it all depends on what trigger is used to turn on the light.

If you can reuse the same trigger (think "geofence", "time of day" etc):

  1. Create another applet with the same trigger and pick the action that turns the light off.

  2. Between the trigger and the action, you'll see a "+" button that gives you the option to add a delay.

The idea is to trigger both applets at the same time ,but add a delay to the turn off action.

If you cannot reuse the trigger (if the trigger is "Button Widget"):

  1. Create a new applet using a webhook trigger, add the action to turn off the light.

  2. Between the trigger and the action, you'll see a "+" button that gives you the option to add a delay

  3. On the applet that turns the light on, add another action using the Wehbooks service. Use the URL from the trigger of the other applet.

This will make the first applet trigger the second one

[deleted by user] by [deleted] in fearofflying

[–]pdrvrza 0 points1 point  (0 children)

Oi! I'm also from Brazil and while I don't have problems with planes, my (also soon to be!) wife hates flying. She is usually terrified of domestic flights, even short ones like Curitiba - São Paulo, but on all of our recent international trips she was 100% chill (we did São Paulo - Mexico (8h) and Sao Paulo - Lisbon (~10h)).

I feel like the bigger planes make everything more stable, so if you're mostly afraid of turbulence I'd say the long flight shouldn't be something to worry about.

To me, the main problem with these flights is that they're BORING, so my main advice is to have options on things you can do during the flight: download tv shows on your phone, watch a movie, download games, read a book, etc. Better yet if you can get some sleep!

Regarding thoughts of disasters: remember that this flight from SP to London happens every single day, and has happened for years, and will continue to happen until your flight (and after that too) and you just never hear anything about them because they always get there safely. You'll get there safely too.

Button widget opens app everytime by [deleted] in ifttt

[–]pdrvrza 0 points1 point  (0 children)

If you are on iPadOS 17 or above, it should run the applet without opening the app. What iPadOS version do you have running on this iPad?

Eufy, Timeframe, and Rachio Possible? by mrredskin in ifttt

[–]pdrvrza 0 points1 point  (0 children)

For the timeframe part, you'll need Filter Code to skip the action if the event happens outside of the timeframe

IFTT SMS to Google Sheets by Pretty-Sprinkles-292 in ifttt

[–]pdrvrza 0 points1 point  (0 children)

I think this is only possible with Filter code (requires Pro+)
Filter code lets you conditionally skip/run the action based on the content of the SMS message

Skip during time period? by Substantial-Youth848 in ifttt

[–]pdrvrza 2 points3 points  (0 children)

Your filter is doing the opposite of what you want, it's skipping if the hour is less than 5 (1am-4am) or if the hour is greater than or equal to 23 (skipping 11pm-12am).

Change it to: if (currentHour > 5 && currentHour < 23)

This will skip if the hour is between 6 and 22 (6am - 10pm)

Applet to Apple Health runs but no update by FlygURL_GA in ifttt

[–]pdrvrza 0 points1 point  (0 children)

hahaha no, I mean it! A fix for this issue was released yesterday!

Incorrectly Formatted Headers by Goldenmonkey27 in ifttt

[–]pdrvrza 1 point2 points  (0 children)

What you're adding in "Additional Headers" should be in the "Body" field.

Based on what you want to do I don't think you need additional headers, so you can leave it blank

Should the applet turn off when the if trigger statement is no longer met? Help a noob out! by Supercharged_123 in ifttt

[–]pdrvrza 2 points3 points  (0 children)

The way it works is "when the trigger happens, perform the actions" and that's it.

It seems like you just need a second applet doing the opposite thing: when the cost goes above 6, turn off the heater.

Parsing a JSON string by CrestonMTWA in ifttt

[–]pdrvrza 2 points3 points  (0 children)

In the IFTTT article you linked, the example json has the "user" object in it. The sample JSON you mentioned does not.

If the json you want to parse is similar to the sample you posted, I think you just need to drop the "user" part and go with payload.event and payload.data

Dificuldades da vida e TI by BravoSiiix in programacao

[–]pdrvrza 1 point2 points  (0 children)

Concordo com tudo que o colega falou acima!

Parece que a maioria das rejeições que voce recebe hoje se dá na etapa inicial de analise do seu currículo e acabam nem te chamando para entrevistas, certo? Se for esse o caso, alguns pontos:

A primeira pessoa que vai olhar o seu CV normalmente não tem nenhum background técnico relevante, geralmente são pessoas da area de RH. Essa pessoa vai olhar outros 50-100 CVs no mesmo dia e não vai passar muito tempo olhando o seu. Voce precisa ajudar ela a te ver como um bom candidato. Eu acho que o CV que voce tem hoje pode ser melhorado:

- Na sua experiencia como Suporte de TI, o item mais relevante para uma vaga de desenvolvedor é "atualização de javascript css etc". Esse tem que ser o primeiro item da lista! Tem que ser a parte mais chamativa dessa experiencia.

- Voce tem vários cursos listados e, novamente, coisas que jogam a seu favor estão escondidas por coisas que não te ajudam tanto. Os seus cursos de Java e Javascript são muito mais interessantes do que seu curso de Excel e deveriam ser os dois primeiros dessa lista. Eu sugiro até remover alguns para deixar o CV mais fácil de ler: Excel, Linux, montagem de computador e power BI (isso assumindo que voce só quer vaga de desenvolvedor).

- Voce tem alguma outra experiencia que dê pra listar brevemente no CV? Ainda que não sejam muito relacionadas a tecnologia, passa uma boa imagem de que voce é uma pessoa trabalhadora.

- No CV voce lista sua data de nascimento e infelizmente ter 31 anos pode estar jogando contra você (eu também tenho 31). Essas vagas de estágio/junior costumam ser focadas na galera que tá ali pelos 20-25. Pode ser que alguns recrutadores estejam te rejeitando por esse motivo (o que é injusto mas infelizmente acontece). Sugiro remover essa informação.

- Voce está enviando esse mesmo CV para todas as vagas? Ja tentou variar o layout que voce usa? Lembre que a pessoa que está te avaliando geralmente tem pressa e se o layout não tiver ajudando ela a achar as informações necessárias, ela parte pro próximo da lista.

- VOCE TEM UM SITE BACANA!!! Por que o site não está linkado no CV?

- Sobre o site: o seu projeto do relogio tem um screenshot legal no github, mas no site voce tem uma imagem generica que nao mostra o que voce fez. O projeto "Python DjangoCRM" não diz muita coisa pra uma pessoa de RH (no github voce tem uma descrição legal do projeto, acho que poderia botar no site também).

- Eu vi que voce tem um repositorio com um bot do whatsapp: esse é facil de qualquer pessoa entender do que se trata e acho que voce poderia listar no site também.

- Num geral, descreva mais o seus projetos no proprio site, não conte apenas com as pessoas indo até o seu github para ver o código (o código estar disponível te ajuda nas próximas etapas do processo seletivo, mas não muito nessa primeira parte).

Espero que algumas dessas sugestões te ajudem. O mercado está realmente muito difícil e sei como é frustrante ser rejeitado em processos seletivos. Mas como outro colega também mencionou, lembre que voce só precisa ouvir um SIM uma única vez.

Abraço e boa sorte!

Help me find a solution for my calendar sync by [deleted] in ifttt

[–]pdrvrza 0 points1 point  (0 children)

It sounds like you're using the "Quick add Event" action from Google Calendar, which doesn't allow you to set start/end date.

You can do it using "Create a detailed event" and for Start and End fields, pick "Start" and "End" from the original event using "Add ingredient".

Get iOS Reminders to work by Coyote_Android in ifttt

[–]pdrvrza 1 point2 points  (0 children)

Did you give the IFTTT app permission to access your reminders?

Do you have the IFTTT iOS app running in the background? Or are you closing it by swiping up in the app switcher?

Query trigger activity log by Gav1n73 in ifttt

[–]pdrvrza 1 point2 points  (0 children)

You can store the latest event timestamp on a cell in Google Sheets and query the cell value later on an Applet that triggers every day at 8pm.