Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Findings #57

Open
nhooyr opened this issue Sep 23, 2020 · 5 comments
Open

Findings #57

nhooyr opened this issue Sep 23, 2020 · 5 comments

Comments

@nhooyr
Copy link
Owner

nhooyr commented Sep 23, 2020

Tracking random discoveries and justifications.

@nhooyr
Copy link
Owner Author

nhooyr commented Sep 23, 2020

tpope/vim-sleuth#17

Why I don't use sleuth as some of my Makefile's use both tabs and spaces to indent depending on whether it's a make expression or recipe.

@nhooyr
Copy link
Owner Author

nhooyr commented Sep 24, 2020

Moving off Reminders.app and Notes.app.

The fact that they don't let you export things is unbelievable. Not to mention how buggy they are.

Only good for minor things, not for organizing my entire life. I'm gonna just use folders + markdown for that in a private gh repo.

UX is also terrible in general, esp reminders, always expands all my folders randomly sometimes... And notes.app side view list gets bloated soo quickly. I just want real folders.

@nhooyr
Copy link
Owner Author

nhooyr commented Sep 24, 2020

#!/usr/bin/osascript
const app = Application("Reminders")
app.includeStandardAdditions = true

for (let i = 0; i < app.reminders.length; i++) {
  const r = app.reminders[i]
  const o = {
    name: r.name(),
    container: r.container.name(),
    creationDate: r.creationDate(),
    modificationDate: r.modificationDate(),
    body: r.body(),
    completed: r.completed(),
    completionDate: r.completionDate(),
    dueDate: r.dueDate(),
    alldayDueDate: r.alldayDueDate(),
    remindMeDate: r.remindMeDate(),
  }
  console.log(JSON.stringify(o))
}

to export reminders dump and then I used some app on the app store to export my notes.

@nhooyr
Copy link
Owner Author

nhooyr commented Sep 24, 2020

@nhooyr
Copy link
Owner Author

nhooyr commented Sep 27, 2020

Why are there no docs comparing apache accumulo to hbase???

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant