You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tutorial for automatically syncing an Obsidian vault with Git on an Android device
How to sync Obsidian with Git on Android
Limitations
If Termux is closed in the background by Android, the cron service will stop updating your repository and you must open Termux again. Refer to instructions for your device model to disable the killing of certain background applications.
This may negatively affect your devices battery life. I'm not entirely sure yet.
How to Embed an exe Inside Another exe as a Resource and Then Launch It
Edit 11 years later: I did not write this. Not sure the original source, but thanks to the original author.
How to Embed an exe Inside Another exe as a Resource and Then Launch It
While working on a utility project today, I stumbled upon wanting to embed an executable inside another executable. Sounds fun doesn’t it? And what is even more fun is to be able to launch the embedded exe!
Basically, here’s how it works. You embed Foo.exe inside Bar.exe. And by embed I mean, add Foo.exe as a resource in Bar.exe and then, from Bar.exe’s code, you can launch Foo.exe using CreateProcess().
So before answering the "Why?" lets answer the "How?"