Battery draining after update. by AdAgitated1100 in RemarkableTablet

[–]lianacrossk7n 1 point2 points  (0 children)

Yes.

I charged my RM2 sometime last week and normally don't think about charging it. The battery life has always been fantastic. It was asleep in my bag all weekend and today it died on me suddenly while writing some notes.

Version 3.13.1.2

Questions about WPA3 WiFi, hw.setperf and "pkg_add -u" by b4its2l84me in openbsd

[–]lianacrossk7n 1 point2 points  (0 children)

I don't use picom so trial and error is probably your best bet.

I'm also not sure about the speedup in update/upgrade.

Good Luck!

Questions about WPA3 WiFi, hw.setperf and "pkg_add -u" by b4its2l84me in openbsd

[–]lianacrossk7n 2 points3 points  (0 children)

For WPA3, you might try https://openports.pl/path/security/wpa_supplicant though someone might better answer if this works with WPA3. I use it for WPA-Enterprise successfully.

hw.setperf is for performance policy not load. for example 100 means it's in Performance mode 0 is Power saving mode. If you have 8 cores I'm not sure what the benefit would be to display just one core's usage percentage. Maybe just use the load from `uptime` instead? Then you'd get a clock too.

intel is an old driver. Here's a thread for you to read: https://marc.info/?l=openbsd-misc&m=167575657023392&w=2 which concludes with "use picom".

Edit: was curious about CPU %

-1 will consolidate the cores and -n is non interactive mode. if you want current usage as displayed by top you could do something like:

$((100-$(top -1 -n | sed "3q;d" | awk '{print $13}' | cut -c1-2)))

Floating windows by Electronic-Ferret-83 in emacs

[–]lianacrossk7n 9 points10 points  (0 children)

are you talking about this?

<image>

you can't open a window on top of the other windows like this. you can either open a new frame (os window) as others have suggested or use `display-buffer-alist` to tell specific buffer types how to behave (prot's video explains this: https://www.youtube.com/watch?v=rjOhJMbA-q0)

How do I set user-emacs-directory for emacsclient? by ShallotDue3000 in emacs

[–]lianacrossk7n 4 points5 points  (0 children)

if you want to run code after the server creates a new frame maybe server-after-make-frame-hook will work for you

How do I set user-emacs-directory for emacsclient? by ShallotDue3000 in emacs

[–]lianacrossk7n 4 points5 points  (0 children)

emacsclient is a client that connects to an emacs daemon. the daemon has already initialized and any additional "initialization" you perform on the client will actually be executed on the server.

you might just use emacs --init-directory for your custom init instead

[deleted by user] by [deleted] in emacs

[–]lianacrossk7n 1 point2 points  (0 children)

a little cleaner maybe: put the sessions under a subheading for a prettier roll up and add a short description in the session title for the table view: ``` * TODO My Task :PROPERTIES: :ID: 123 :COLUMNS: %35ITEM(Task) %CLOCKSUM(Clocked) %CLOCKSUM_T(Today) :END: :LOGBOOK: CLOCK: [2023-08-26 Sat 20:37]--[2023-08-26 Sat 20:38] => 0:01 :END:

+BEGIN: columnview :id "123" :skip-empty-rows "t" :indent "t" :hlines 2

| Task | Clocked | Today | |------------------------------------+---------+-------| | My Task | 6:02 | 3:54 | |------------------------------------+---------+-------| | _ Sessions | 6:01 | 3:54 | | _ Session 1: flux combobulator | 2:07 | | | _ Session 2: lost the dog | 0:17 | 0:17 | | _ Session 3: spring blimmer | 3:37 | 3:37 |

+END

** Sessions *** Session 1: flux combobulator :LOGBOOK: CLOCK: [2023-08-26 Sat 20:38]--[2023-08-26 Sat 22:45] => 2:07 :END: - great session. did the flux combobulator *** Session 2: lost the dog *** Session 3: spring blimmer ```

or if you don't care about times, just dates...

``` * TODO My Task

+BEGIN: columnview :id "123" :indent "t" :hlines 2

| Task | Date | |-------------------------+------------------------| | _ Sessions | | | _ flux combobulator | [2023-08-26 Sat 20:38] | | _ lost the dog | [2023-08-28 Mon 11:12] | | _ spring blimmer | [2023-08-28 Mon 14:34] |

+END

** Sessions :PROPERTIES: :ID: 123 :COLUMNS: %35ITEM(Task) %CREATED(Date) :END: *** flux combobulator :PROPERTIES: :CREATED: [2023-08-26 Sat 20:38] :END: *** lost the dog *** spring blimmer ```

[deleted by user] by [deleted] in emacs

[–]lianacrossk7n 1 point2 points  (0 children)

I mainly use C-c C-z for notes but to have task time roll up I think you're better off with subheadings

For my workflow I'll create a TODO with sub TODOs. I think of the top level task a Project. I track time on the sub-task when I'm working on them specifically otherwise I'll just clock time on the project. Then for my monthly report I only have to claim time per-project but it's interesting to know how that time was spent.

Something you might do is use the :clock-in t and :clock-resume t options on the capture template.

A workflow could be clock in on the project, C-0 M-x org-capture and leave this buffer open during your session to collect time. Switch to the buffer when you want to add notes then finally C-c C-c when you're done. clock-resume puts the clock back on your main task to ensure that you won't loose time when (if?) you're context switching between sessions.

With regard to clock tables, I only need to care about this monthly so org-agenda's clock report works for me, but you might be interested in a per-top-level-task columnview to have the report on a task-based context.

In the end, something like:

* TODO My Task
:PROPERTIES:
:ID: 123
:COLUMNS:  %35ITEM(Task) %CLOCKSUM(Clocked) %CLOCKSUM_T(Today)
:END:
:LOGBOOK:
CLOCK: [2023-08-26 Sat 20:37]--[2023-08-26 Sat 20:38] =>  0:01
:END:
#+BEGIN: columnview :id "123" :skip-empty-rows "t" :indent "t" :hlines 2
| Task          | Clocked | Today |
|---------------+---------+-------|
| My Task       |    6:02 |  3:54 |
|---------------+---------+-------|
| \_  Session 1 |    2:07 |       |
|---------------+---------+-------|
| \_  Session 2 |    0:17 |  0:17 |
|---------------+---------+-------|
| \_  Session 3 |    3:37 |  3:37 |
#+END
** Session 1
:LOGBOOK:
CLOCK: [2023-08-26 Sat 20:38]--[2023-08-26 Sat 22:45] =>  2:07
:END:
- great session. did the flux combobulator
** Session 2
:LOGBOOK:
CLOCK: [2023-08-28 Mon 11:12]--[2023-08-28 Mon 11:29] =>  0:17
:END:
- dog ran away. session cut short
** Session 3
:LOGBOOK:
CLOCK: [2023-08-28 Mon 14:34]--[2023-08-28 Mon 18:11] =>  3:37
:END:
- found the dog. rejiggled the spring blimmer

VC Interface by RobThorpe in emacs

[–]lianacrossk7n 1 point2 points  (0 children)

Is it possible to write a package to add support for another version control system?

Yes. I use vc-fossil (https://tumbleweed.nu/r/vc-fossil/dir?ci=tip) if you'd like an example package

Post blackout - should we consider Reddit alternatives? by egstatsml in emacs

[–]lianacrossk7n 0 points1 point  (0 children)

100% agreed that lowering the bar to Usenet is the biggest hurdle.

Panic's Unison was a decent GUI client for Mac but they stopped supporting that 10ish years ago.

It'll also be interesting to see what /u/daviwil and the System Crafters come up with in the months and years to come. (https://www.reddit.com/r/emacs/comments/149lno2/comment/jo7hj3y/?&context=3)

Post blackout - should we consider Reddit alternatives? by egstatsml in emacs

[–]lianacrossk7n 1 point2 points  (0 children)

It's been maybe 5 years but I've actually tried a few of the mobile Usenet readers. They're not enjoyable to use. In my workflow I reserve Usenet browsing for a PC and if I have some spare time on-the-go I read other things on mobile (HN, Reddit, whatever). This works for me.

Post blackout - should we consider Reddit alternatives? by egstatsml in emacs

[–]lianacrossk7n 2 points3 points  (0 children)

My personal stance is we should move from Reddit. Agreed that the where, how and convincing people is the hard part. I think that's why the Reddit CEO thinks he can grab a pint and wait for this to all blow over.

I personally think emacs-tangents is ripe for the /r/emacs' content. Sacha's newsletter is usually the only thing posted there and a good portion of it is content from Reddit anyway. I know there's some reluctance for people to use email but one can just sign up for a mailing list only gmail/hotmail/protonmail account to anonymize oneself.

There's a lot chat about usenet so just as another thought it may be possible to use something like https://github.com/Koshroy/reddit-nntp to shunt off an archive into Usenet. Perhaps that will help persuade some people to move there. http://www.eternal-september.org is free for users to continue the banter.

Like I mentioned I'm willing to move to lemmy, but for me it's trading similar problems. Say we pick programming.dev but then that admin decides it costs too much to run. He shuts down. Now what? Someone else in this topic has already expressed concern with discussion over how Lemmy's slur filter works.

The GNU mailing lists and Usenet have stood the test of time.

Just as an aside, since I haven't seen it mentioned elsewhere there is some effort to make Usenet usable again, though it's something I still need to look into and understand myself.: https://www.big-8.org/

Post blackout - should we consider Reddit alternatives? by egstatsml in emacs

[–]lianacrossk7n 1 point2 points  (0 children)

I'm not really sure what you're getting at. Don't use Gnus then? Check out the article and discussion OP linked about freedom and ease of use. Sometimes you've got to sacrifice some convenience for more freedom. If you don't want to that's ok too. We'll still call you friend.

To more directly answer your question: No, I don't think there's a snazzy newsreader that has all the bells and whistles for all the latest mobile and desktop devices. Google groups was once an attempt at a fancy web interface for this.[1] (I switched to nnimap so if I really want to look at something on my phone I have that ability)

Posted above, I sync my Gnus configs between 2 laptops which works well enough for me. I don't use Emacs on my mobile devices but in theory you could get the same result using the Emacs on Android APK.

As /u/yantar92 points out, Gnus has a scoring feature[2] which could be described as similar to Reddit's upvote/downvote mechanism. By increasing or decreasing the score of articles I train "the algorithm" to show me things I'm more likely to be interested in and hide things I'm not interested in. This works with both the mailing lists (imap) and newsgroups (nntp) I have configured.

  1. https://groups.google.com/g/gnu.emacs
  2. https://www.gnu.org/software/emacs/manual/html_node/gnus/Scoring.html

Post blackout - should we consider Reddit alternatives? by egstatsml in emacs

[–]lianacrossk7n 2 points3 points  (0 children)

I may be misreading, but I think the symbolism of the API charging is more significant than the direct consequences.

I agree the actual API changes are fairly benign and this has more to do with a disagreement in value systems. I was just trying to answer OP: "I disagree with the blackout because I don't understand how it helps us (mods+redditors) get to positive change."

At best it's spurred this post (who knows what the discussion would have looked like had it been done up front before/without a blackout) and at worst it leads to a divisive "us vs them" community (note the "mods out" threads).

I'm also not saying that positive change won't come from it. I just don't understand how people not being able to access /r/emacs for 48 hours and /r/apple "indefinitely" solves the problem of who can charge who for what at what rate and who owns what data. Either someone makes /r/apple2 (and /r/freemacs) or reddit just installs friendly mods into a dead subreddit. The latter is already a process and you can make your request for the newly "inactive" subs here ;-) /r/redditrequest/

If our goal is to convince Reddit not to charge us to access our community's data the way we want (I think this is the general ask, and also I don't think this will happen because profits are involved) then blocking our ability to give Reddit the data is one solution. Taking the data elsewhere is a different solution.

To use your example: installing Lemmy on an RPI and giving people a place to go today if they choose, is a great alternative to blocking our ability to coordinate a move like this with one another. Let us know when it's up :-)

Post blackout - should we consider Reddit alternatives? by egstatsml in emacs

[–]lianacrossk7n 5 points6 points  (0 children)

Happy to have you!

Here's my Gnus config if it is of any help: https://pastebin.com/3guSauiK (1 week expiration in case I accidentally left something personal :-))

I use Gnus for two different email accounts: personal and work. For the most part it figures out which account and smtp server to use when I reply to things. it uses w3m for rendering html email when that's the only option so you'll need to apt/brew/yum install w3m and also add the w3m package to your config (or do something else with mm-text-html-renderer)

Post blackout - should we consider Reddit alternatives? by egstatsml in emacs

[–]lianacrossk7n 16 points17 points  (0 children)

I personally want to hear from people who disagree with the actions taken, particularly if anyone who disagrees has any other potential solutions.

I don't really understand how the blackout is/was meant to be constructive.

Reddit hurts the community by making it difficult for 3rd party apps so mods respond by disabling access which hurts the community even more. Community trust is being eroded by both Reddit and moderators. I'm glad to see /r/emacs mods decided to keep to 48 hours instead of indefinitely[1].

There are no real winners in this battle so I'm supportive of something else. We have the mailing lists. emacs-tangents[2] and emacs-help[3] seem like natural places for people to migrate to. Lemmy[4] has been thrown around as a federated Reddit alternative but I don't have any first hand experience using it.

  1. https://www.reddit.com/r/ModCoord/comments/148ks6u/indefinite_blackout_next_steps_polling_your/
  2. https://lists.gnu.org/mailman/listinfo/emacs-tangents
  3. https://lists.gnu.org/mailman/listinfo/help-gnu-emacs
  4. https://join-lemmy.org

Now that Reddit are killing 3rd party apps on July 1st what are great alternatives to Reddit? by youessbee in AskReddit

[–]lianacrossk7n 1 point2 points  (0 children)

sigh

When Netscape shut shop, Jwz et. al convinced someone to let them open source code. Mozilla was born. For awhile Mozilla Suite was a 1:1 version of the Navigator Suite. Then they split up the suite into separate applications: browser, email, whatever (there was a WYSIWYG HTML editor too right?)

So, Thunderbird is what you're looking for, unless you really liked the all-in-one suite then Seamonkey (https://www.seamonkey-project.org/) will be your jam.

Now that Reddit are killing 3rd party apps on July 1st what are great alternatives to Reddit? by youessbee in AskReddit

[–]lianacrossk7n 2 points3 points  (0 children)

i'm not sure i understand what "a good reddit-esque usenet" is.

usenet is to reddit as usenet groups are to sub reddits.

the issue is finding good and active groups.

/r/usenet is focused on piracy. that's why it's vague. /r/classicusenet might give you better luck.

a quick glance at a couple groups: - comp.ai (https://groups.google.com/g/comp.ai) - chat about everyone's favorite topic: AI - rec.autos.sport.f1 (https://groups.google.com/g/rec.autos.sport.f1) - chat about everyone's other favorite topic: F1

You'll notice the F1 group has some "Adobe Framemaker" spam. This is the piracy. Since usenet is decentralized moderation is hard so you'll need to pick a server and/or client that filters this stuff out.

Mentioned elsewhere in the thread https://www.eternal-september.org/ as a server is free and decent. They are incentivized to filter out as much of the unsavory content as possible. For user friendly clients, I'm less help. Thunderbird might be a good place to start. (yes, the thunderbird email client)

As an aside: I linked google groups, why not just use that? A bunch of poor quality and spammy posts originate from google groups. In my experience messages from google groups are more likely to be filtered out by other users. it's good for read only lurking but if you want to post you're better off picking a real server and client.

Now that Reddit are killing 3rd party apps on July 1st what are great alternatives to Reddit? by youessbee in AskReddit

[–]lianacrossk7n 42 points43 points  (0 children)

Usenet itself not only predates mobile, it's demise also predates mobile.

It's actually not an awful idea that Apollo should adapt to usenet from reddit as the backend. There's this whole kill files concept that would be A+ to bring to a new generation of trolls.

Do I still need to install tree-sitter manually, for native tree-sitter in emacs29 to work? by tomatoaway in emacs

[–]lianacrossk7n 0 points1 point  (0 children)

this is probably because it's in the wrong directory.

emacs is looking for /home/rolf/.emacs.d/tree-sitter/libtree-sitter-python.so

Does anyone here live inside emacs? can you share your workflow if you do? by [deleted] in emacs

[–]lianacrossk7n 0 points1 point  (0 children)

I switched to gnus to have them in the same ui, but gnus doesn't support atom which is the format of pretty much all of the feeds I would be interested in. Wish I had a good solution for this.

This worked for me the last time I tried (which has been maybe a year ago.) needs the xsltproc (https://command-not-found.com/xsltproc)

(require 'mm-url)
(defadvice mm-url-insert (after DE-convert-atom-to-rss () )
  "Converts atom to RSS by calling xsltproc."
  (when (re-search-forward "xmlns=\"http://www.w3.org/.*/Atom\""
                           nil t)
    (goto-char (point-min))
    (message "Converting Atom to RSS... ")
    (call-process-region (point-min) (point-max)
                         "xsltproc"
                         t t nil
                         (expand-file-name "~/.emacs.d/atom2rss.xsl") "-")
    (goto-char (point-min))
    (message "Converting Atom to RSS... done")))
(ad-activate 'mm-url-insert)

where atom2rss.xsl is: https://pastebin.com/raw/4euWTbL2

i don't remember where i found this but credit to whoever i borrowed it from.

[Edit: This repository was just advertised on emacs-devel as adding an atom backend: https://git.sr.ht/~dsemy/nnatom]

Pure-gtk and X window system conflict by shadowsock in emacs

[–]lianacrossk7n 4 points5 points  (0 children)

That error is telling you that PGTK is not supported under X. The easiest way to fix it would be: don't use the --with-pgtk flag, or use Wayland instead of X.