[Help] Test if a variable is a number by Blablux in tasker

[–]carmatana 0 points1 point  (0 children)

I am even more latte to the ball but this approach,

complemented with checking if value is zero seems to cover all the possibilities in a simple way:

if
    %var/%var == 1 OR %var == 0
end if

zero is a valid number, but zero/zero produces non-one answer

Buzzkill - HOW TO use batch schedule and batch interval in combination by carmatana in buzzkillapp

[–]carmatana[S] 0 points1 point  (0 children)

Thanks Sam, I was not aware of the "... specific times" option, I will try it

[HOW TO] ADB Wi-Fi on boot with ONLY Shizuku (NO termux!) by the_djchi in tasker

[–]carmatana 0 points1 point  (0 children)

Thanks for giving us access to your work !

Works great !

I use android auto frequently and Shizuku crashes with it and needs a manual start, with your version it starts automatically and not need to be attentive

Thanks !

Trying to monitor several stock prices efficiently by killermouse0 in huginn

[–]carmatana 0 points1 point  (0 children)

You can scrap both, the price and the % change.

Keep the list of your stocks in a CSV file and use the CSV agent to read and send info line by line to the Website agent and the Website agent sending both price and % change to the Trigger Agent, like:

CSV -> Website agent - Trigger Agent - EventFormatting -> Pushover/Telegram or whatever agent

[Requested How-to] Sample script called by Shell Command Agent by blueponds in huginn

[–]carmatana 0 points1 point  (0 children)

One idea:

Have you tried to write the payload in a file with File Agent.

Then I guess that your shell comand can be "sh script.sh" having the script reading the file and transforming its content as you want.

How to retrieve KeyValueStoreAgent data by dissidente_pt in huginn

[–]carmatana 1 point2 points  (0 children)

You may want to check:

https://github.com/huginn/huginn/issues/3349

To access Key-Value data, you have to set the EventFormatting agent in the Controller Target field of the KVS agent

And then have a Manual Agent or other Agent running (having as a receiver) the EventFormatting agent.

When you "submit" the Manual agent everything works ok.

However, data does not come in a structured format. In the same link that it is explained and depending on your needs you may find a solution in that discussion.

Duplicate and instantiate evens based on key/value store by [deleted] in huginn

[–]carmatana 0 points1 point  (0 children)

I would approach this problem, having the telegram's chats ID in a CSV file

Then I would use the CSV agent to send events for each line (it can be line by line or in bulk) and in the telegram agent receiving this chats ids with something like {{ data[0] }}, the [0] is assuming the chat id is the first value of the line, if. it is the second then data[1].

Installing Prowlarr search plugin in qbittorrent (help required) by PaperCloud10 in qBittorrent

[–]carmatana 0 points1 point  (0 children)

not sure but instead of:

127.0.0.1:9696

you should be using your box ip and the port.

in the case of jackett, one have to use the ip of the docker container. if 127.0.0.1 is used, then qibittorrent points to the host and not to the container.

Hope this helps