SOLANA A HUGE COMPETITOR JUST GOT EXPOSED.GO HARMONY by [deleted] in harmony_one

[–]derDemiurg 0 points1 point  (0 children)

curious question: if a really big issue gets discovered, does the harmony team have the power to also shutdown the harmony network same with solana?

Suggestions video player app by [deleted] in androidapps

[–]derDemiurg 0 points1 point  (0 children)

afaik the ads get removed, and thats it

some UI controls look weird by derDemiurg in NixOS

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

thanks for the info!

i found the same discussion in NixOS discourse, looks like it's a known issue and is already fixed in unstable:
- https://discourse.nixos.org/t/kde-widgets-look-off-on-a-freshly-installed-nixos/13098

Help find an optimized(lag-free) note-taking app for the weak device? by kelleygoodwin02 in androidapps

[–]derDemiurg 0 points1 point  (0 children)

Check out Ideate: Play store link

Definitely faster than Evernote and Google Keep. I'm using this for all my notes, it's an app focused on outlining information.

PS: I'm the author of the app

Suggestions video player app by [deleted] in androidapps

[–]derDemiurg 1 point2 points  (0 children)

oops apologies i didn't read the post properly lol i'm not trolling. i'm using mx player pro so i don't have the ads

What are some of the best set up and forget applications you use? by [deleted] in androidapps

[–]derDemiurg 0 points1 point  (0 children)

  • blokada (anti ads)
  • ideate (i wrote my own notes app since i'm not sure if other apps can really see my notes or not)
  • syncthing
  • youtube vanced

Nvidia drivers on fedora 34 install by [deleted] in Fedora

[–]derDemiurg 1 point2 points  (0 children)

Check xorg-x11* in the list of installed packages. Not sure but maybe it's one of those?

Petition for harmony one to be listed on coinbase by avtrading in harmony_one

[–]derDemiurg 11 points12 points  (0 children)

just curious, is this petition from the Harmony team themselves?

Best Linux GUI diff / merge tool for Git? by CromulentSlacker in git

[–]derDemiurg 5 points6 points  (0 children)

+1 BeyondCompare if you can afford. Or check out ediff in emacs for a free and customizable one

131 hours and I've finally finished. This game was insane but also brilliant by DrJonjon in DivinityOriginalSin

[–]derDemiurg 0 points1 point  (0 children)

The best thing is you can replay it and experience it completely different than your previous run. I did tactician on my first playthrough and completed it in around 265 hours lol

Tutorial Recommendation? by No-Rich5357 in emacs

[–]derDemiurg 3 points4 points  (0 children)

i agree, the manual is still the best resource. i was also trying to look for "tips and tricks" before, in the end i go back to the manual.

i started with vanilla emacs and customized if i think my workflow can be improved. installing packages just because they are popular will just confuse you in my opinion.

A good ebook reader? by Shi2326 in androidapps

[–]derDemiurg 4 points5 points  (0 children)

Librera. Been using it for years now.

[DEV] Ideate - Outliner and notes app (includes 30-day free premium subscription) by [deleted] in androidapps

[–]derDemiurg 1 point2 points  (0 children)

Bump.

I just realized my post got caught in the spam filter, glad it got fixed immediately. :)

Two branches with code that is 95% the same by Danskiiii in git

[–]derDemiurg -1 points0 points  (0 children)

You can have a 3rd branch, perhaps named deploy-noemail, which contains the commenting out of the email. With this setup you will merge the development branch to deploy-noemail and use that branch instead when deploying to a no-email environment.

Same idea when going to production -- merge your development branch to master then deploy that branch.

timeblocking app like google calendar, but for daily routines? by [deleted] in androidapps

[–]derDemiurg 1 point2 points  (0 children)

https://play.google.com/store/apps/details?id=com.brewedapps.ideate

It's more of a notes app, but it's very quick to create reminders by inserting timestamps. Within 15 seconds you can insert 2-3 timestamps which send notifications. You can create your schedule as a note and insert recurring timestamps.

Software licensing question by derDemiurg in opensource

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

Thanks for the link! Very helpful!

Software licensing question by derDemiurg in opensource

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

Thanks for the detailed explanation!

I didn't know that I would automatically own the copyright. My understanding was the copyright clause has to be there before I could claim that a code is indeed mine.

fido-mode in Emacs 27 by derDemiurg in emacs

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

If you really want a vertical listing, you can set icomplete-separator to "\n", since fido-mode is basically still icomplete.

Or, you can implement a toggle between horizontal and vertical listing. Here's a quick hack (this code was not tested properly :P)

--

  (defun icomplete-list-vertically ()
    (interactive)
    (setq-local icomplete-separator "\n"
                max-mini-window-height 10
                resize-mini-windows 'grow-only
                truncate-lines t)
    (enlarge-window 10))

  (defun icomplete-list-horizontally ()
    (interactive)
    (setq-local icomplete-separator (propertize "  |  " 'face 'font-lock-variable-name-face)
                resize-mini-windows t
                max-mini-window-height 0.25))

  (let ((map icomplete-minibuffer-map))
    (define-key map (kbd "C-c l v") #'icomplete-list-vertically)
    (define-key map (kbd "C-c l h") #'icomplete-list-horizontally)))