- Obsidian ➡️ Logseq
- Notion ➡️ AppFlowy or Anytype
- Trello ➡️ Focalboard
- VS Code ➡️ VSCodium
- Outlook/Mail ➡️ Thunderbird
- Slack ➡️ Mattermost or Matrix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { execSync } = require('child_process'); | |
const readline = require('readline'); | |
function executeCommand(command) { | |
try { | |
const result = execSync(command, { encoding: 'utf-8' }); | |
return result.trim(); | |
} catch (error) { | |
console.error(`Error executing command: ${command}`); | |
process.exit(1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Get today's date in YYYY-MM-DD format | |
TODAY=$(date +%Y-%m-%d) | |
# Get yesterday's date in YYYY-MM-DD format | |
YESTERDAY=$(date -v-1d +%Y-%m-%d) | |
# Check if .latestpull file exists, if not create it and set the initial value to $YESTERDAY | |
if [ ! -f .latestpull ]; then |
OlderNewer