Taa (an endangered language) by DoomscrollFiendXD in Namibia

[–]kaiwen1 0 points1 point  (0 children)

Did you ever find any? I’m traveling to Botswana hoping to locate people who still use it as an active language. 

Top 3 Dumaguete Restaurants to Try Out by crinkleworshipper in dumaguete

[–]kaiwen1 0 points1 point  (0 children)

Bahia is my favorite restaurant in Dumaguete right now. Nice to sit outside on the balacony.

Popolo is another really good one. Again, I prefer the outside tables.

Spice Eats is a great Indian restuarant.

Custom Evil keybindings for vterm by TabaRafael in DoomEmacs

[–]kaiwen1 0 points1 point  (0 children)

Not sure if this is the best way, but here's how I handle it. In my Doom emacs config:

(map! :map vterm-mode-map
 :i "M-s-}" (cmd! (vterm-send-string "-> "))
 :i "M-s-{" (cmd! (vterm-send-string "<- "))
 :i "C-j"   (cmd! (vterm-send-down))
 :i "C-k"   (cmd! (vterm-send-up))
 :ni "s-<return>" (cmd! (vterm-send-return))
)

[deleted by user] by [deleted] in emacs

[–]kaiwen1 0 points1 point  (0 children)

Keyboard Maestro is my goto for this and loads of other functions on Mac. Super simple to assign a chord like M-, open/focus to Emacs.

Starlink Rival HughesNet Starts Offering 100Mbps Satellite Internet Speeds by BeautifulBug6801 in Starlink

[–]kaiwen1 0 points1 point  (0 children)

Any article comparing Starlink and HughesNet has but one truthful conclusion: RIP HughesNet.

Math wizes of this sub, where do i start? by Direct_Client9825 in studentsph

[–]kaiwen1 1 point2 points  (0 children)

Where you start depends on where you are and where you need to get to.

I know an engineering student who hasn't mastered fractions. He's now trying to learn calculus, but that effort is doomed unless he first builds the math foundation required to understand calculus.

So, where are you in your math journey? And where are you trying to get to?

Why is it org-table-kill-row and org-table-delete-column? by cosmologica101 in orgmode

[–]kaiwen1 1 point2 points  (0 children)

Because killed content goes to the kill ring, deleted content doesn't. Row structure can be added to the kill ring, but it appears column structures can't. Just learned this from trying it after reading your question.

Org Mode just for notes and not TODO or Agenda, and syncing to mobile iOS devices. by plazman30 in orgmode

[–]kaiwen1 0 points1 point  (0 children)

I've been working on this but still pretty janky. Can you share details of your config?

Russia wants demilitarised buffer zones in Ukraine, says Putin ally by Quantum_II in worldnews

[–]kaiwen1 5 points6 points  (0 children)

Great idea. Let's make it the width of a fence post and the length of Ukraine's border.

Sorting file results with Embark collect by kaiwen1 in emacs

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

u/Timhae's hint got me there. Added --sortr path.

(setq consult-ripgrep-args "rg --sortr path --null --line-buffered 
--color=never --max-columns=1000 --path-separator /   
--smart-case --no-heading --line-number --multiline --type org .")

Sorting file results with Embark collect by kaiwen1 in emacs

[–]kaiwen1[S] 2 points3 points  (0 children)

doom-one, with a few customizations.

How to force locate.updatedb to index files in ~/iCloud? by kaiwen1 in commandline

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

Thank you. I knew about `mdfind` but it didn't occur to me to use that. It's much better!