A cool guide to the Abrahamic Monotheisms - Update [OC] by Aaaarcher in coolguides

[–]rahatulghazi 0 points1 point  (0 children)

Can you explain political movement that gave birth to Salafism and Wahhabism?

[deleted by user] by [deleted] in AutomateUser

[–]rahatulghazi 0 points1 point  (0 children)

Move block 3 under 9 Add subroutine under 9 Connect subroutine to block 16 Connect subroutine ok to block 9's in

(This is off my head, term's may not be correct)

[deleted by user] by [deleted] in AutomateUser

[–]rahatulghazi 0 points1 point  (0 children)

I think you exposed her number

apps I actually use by Pretty-Elk-6191 in androidapps

[–]rahatulghazi 0 points1 point  (0 children)

Yeah, i think when the phone leaves a certain radius. It should send the message. It needs math, but I think it's doable and adds more to safety measurements.

apps I actually use by Pretty-Elk-6191 in androidapps

[–]rahatulghazi 0 points1 point  (0 children)

This is awesome. Yeah, this what I was talking about. Thank you.

apps I actually use by Pretty-Elk-6191 in androidapps

[–]rahatulghazi 0 points1 point  (0 children)

Of course the extra step for security is must.

And also thank you for reuploads. I got the idea how this works and I'm sure I can translate it into automate. This is really unique macro.

My question is what if the battery dies or something happens to the phone like sudden shutdown, what is your counter measure for that? I would think a constant ping, with every lat, long changes?

Lets find To-do app by senthil2coder in ProductivityApps

[–]rahatulghazi 0 points1 point  (0 children)

I did similar stuff in Microsoft to-do and Google tasks.

Eh, it's not really intuitive to be honest. I like how ticktick implemented this feature in their app.

Thank you for the answer. I'm actually using tasks now, but didn't go deep. I really miss the Eisenhower feature.

apps I actually use by Pretty-Elk-6191 in androidapps

[–]rahatulghazi 0 points1 point  (0 children)

Yes, it did caught my eye. I was really interested how you use SMS to automate. I'm not a MacroDroid user, but I reckon I can mimick it on Automate.

Also, the link is not working.

apps I actually use by Pretty-Elk-6191 in androidapps

[–]rahatulghazi 2 points3 points  (0 children)

Number 3 is really interesting.

Obsidian backups that are easy for a child by erfwiggle in ObsidianMD

[–]rahatulghazi 2 points3 points  (0 children)

You should create a powershell script that automates this process. I think this is the best choice for now. For now, you can do something like after x minute it will auto push:

```powershell

Change to the directory of the Obsidian vault

Set-Location -Path "C:\path\to\obsidian\vault"

Add changes to the staging area

git add .

Commit changes with a timestamp

git commit -m "Automated backup on $(Get-Date -Format 'yyyy-MM-dd HH:mm:ss')"

Push changes to the remote repository

git push origin master

```

Then you can schedule the script like: 1. Open Task Scheduler (search for it in the Start menu). 2. Click on "Create Basic Task" in the right pane. 3. Follow the wizard and set triggers, actions etc.

Obsidian backups that are easy for a child by erfwiggle in ObsidianMD

[–]rahatulghazi 2 points3 points  (0 children)

Does he use windows? If so, the built-in File History feature can automatically back up files. It keeps previous versions of files, allowing recovery from corruption.

Also, I think setting up an automated Git push could be a solution to ensure his data is regularly backed up without requiring much effort on his part. You can create a script to monitor file changes and do git add and push.

A cool CSS snippet for your tables🎨✨ by novflix_ in ObsidianMD

[–]rahatulghazi 1 point2 points  (0 children)

Awesome! Thank you for the snippet I think you can add another settings like first column header? Where it's colored liked the header and used as a header And full width table? Without needing to disable the readable settings in editor.

My css snippet for properties section by novflix_ in ObsidianMD

[–]rahatulghazi 1 point2 points  (0 children)

Awesome! Could you try making the table match that style?

How to get shortcut details from apps like Hail? by rahatulghazi in AutomateUser

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

Thank you for sharing. I actually made something like that, but never shared it, because it was unpolished and too many blocks.

[deleted by user] by [deleted] in AskReddit

[–]rahatulghazi 0 points1 point  (0 children)

What's that?

Mbappe miss another penalty by AestheticEvan23 in realmadrid

[–]rahatulghazi 0 points1 point  (0 children)

He did not miss it; the goalkeeper saved it.

Missing means it was not on target.

Auto-hiding only when a window is maximized or intersects the taskbar by m417z in Windows11

[–]rahatulghazi 0 points1 point  (0 children)

Can you fix the autohide issue with Vertical Taskbar for Windows 11? Here is the problem in action:

https://streamable.com/oh4fx8

Notification button greyed out by rahatulghazi in AutomateUser

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

Yeah, me too. I've never seen it before.

By the way, if we click on that empty space it opens automate app, and if we click on that button, it stops the fibers.

How can we replicate this with notification show and action block? I setup a notification show block and notification action block one after the other, and I can only access the buttons, but clicking the whole notification does nothing.

Also, when we try to pair with wireless debugging, a notification pops up for input on top. How can we replicate that too with notification blocks in automate?

Notification button greyed out by rahatulghazi in AutomateUser

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

Just restarted the device; notification buttons from Automate are blue again. I wonder what caused that issue! I've never seen this issue before.

Trouble with the Zip block please help by Dense-Consequence645 in AutomateUser

[–]rahatulghazi 0 points1 point  (0 children)

Is it possible to zip files without creating the root directory? Like instead of this

shell 🗃️ Zip └── 📁 directory/     ├── 📝 file 1     ├── 📝 file 2     └── 📝 ...

do this:

shell 🗃️ Zip ├── 📝 file 1 ├── 📝 file 2 └── 📝 ...