GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Notices by ZeStig (zstg@fedia.social)

  1. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Sunday, 01-Jun-2025 20:37:18 JST ZeStig ZeStig
    in reply to
    • Brodie Robertson

    @BrodieOnLinux whatcha do mate 😁

    In conversation about a day ago from fedia.social permalink
  2. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Sunday, 01-Jun-2025 14:54:56 JST ZeStig ZeStig
    in reply to
    • Brodie Robertson
    • Magitian

    @BrodieOnLinux some flatpaks don't seem to launch on Niri - possibly because of portal issues? Maybe it's because of XWayland support issues (XWayland notwithstanding)

    Maybe @magitian might have an idea - I don't use Flatpaks.

    In conversation about a day ago from fedia.social permalink
  3. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Sunday, 18-May-2025 12:40:39 JST ZeStig ZeStig
    in reply to
    • Brodie Robertson

    @BrodieOnLinux it's not gtk4

    In conversation about 15 days ago from fedia.social permalink
  4. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Monday, 12-May-2025 11:17:24 JST ZeStig ZeStig
    in reply to
    • Brodie Robertson

    @BrodieOnLinux they took copyleft so far that they're killing competition now

    In conversation about 21 days ago from fedia.social permalink
  5. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Thursday, 03-Apr-2025 01:13:37 JST ZeStig ZeStig
    in reply to
    • It's FOSS

    @itsfoss #Gentoo and #NixOS are both hybrid distros. I love the fact that I can arbitrarily override the #Emacs package. Every time there's an update to the Emacs package in the (unstable) channel, my Emacs package gets rebuilt.

    Gentoo's bindist is excellent, but it isn't as populated as Nixpkgs is.

    I do hate how complex the Nix language is. It takes quite some getting used to. Perhaps if my hardware supported it I would have gone with Guix instead (I'm a little familiar with Guile and the #Lisp languages thanks to #Emacs #Elisp)

    In conversation about 2 months ago from fedia.social permalink
  6. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Wednesday, 12-Feb-2025 18:00:30 JST ZeStig ZeStig
    in reply to
    • Christine Lemmer-Webber

    @cwebber github.com/guildhall/guile-haunt
    This?

    In conversation about 4 months ago from fedia.social permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: opengraph.githubassets.com
      GitHub - guildhall/guile-haunt: A static site generator written in Guile Scheme.
      A static site generator written in Guile Scheme. Contribute to guildhall/guile-haunt development by creating an account on GitHub.
  7. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Saturday, 01-Feb-2025 19:37:06 JST ZeStig ZeStig

    Why is it impossible to change your #IceSheimp username? Is it possible on #Mastodon?

    #fediverse #askfedi

    In conversation about 4 months ago from fedia.social permalink
  8. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Wednesday, 15-Jan-2025 02:31:33 JST ZeStig ZeStig

    What does the #fediverse community recommend self-hosting on a #RaspberryPi 4, the 4GB variant with 32 gigs of storage?
    #self-hosting #selfhost #selfhosting #linux

    EDIT: I thought maybe a search engine, Gitea, GotoSocial etc? I'm not looking for solutions like NextCloud or HomeAssistant - either due to storage concerns or because I don't need 'em.

    EDIT2: Have I großly underestimated the Pi? Here the replies tell me they run 6-7 services on the Pi... Why did I think otherwise 😄

    In conversation about 5 months ago from fedia.social permalink
  9. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Saturday, 11-Jan-2025 00:56:38 JST ZeStig ZeStig
    in reply to
    • Alfred M. Szmidt

    @amszmidt Thank you! I've edited my original post to include the URL to the file.

    In conversation about 5 months ago from fedia.social permalink
  10. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Friday, 10-Jan-2025 17:23:17 JST ZeStig ZeStig

    Hey #Emacs users, I require some inputs on optimizing my Emacs configuration. It takes too long to startup and I'd like some inputs. If I post my configuration, would anyone be willing to help me out?

    In conversation about 5 months ago from fedia.social permalink
  11. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Friday, 03-Jan-2025 00:48:32 JST ZeStig ZeStig
    • David Wilson
    • Christine Lemmer-Webber

    Started learning #guilescheme today. @cwebber and @daviwil's resources are quite helpful.

    In conversation about 5 months ago from fedia.social permalink
  12. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Thursday, 26-Dec-2024 18:03:06 JST ZeStig ZeStig
    in reply to
    • Alfred M. Szmidt

    it turns out I had to fiddle around with Evil settings. Check fedia.social/notes/a28now0iwfqx1jsu

    In conversation about 5 months ago from fedia.social permalink
  13. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Thursday, 26-Dec-2024 17:09:03 JST ZeStig ZeStig

    I'm using general.el and evil-mode in #Emacs. I'm trying to write a basic man pager.
    (defun open-man-page (program) "Open the man page for the specified PROGRAM in the terminal." (progn ;; Close any existing man page buffers (with the pattern *Man *). (dolist (buf (buffer-list)) (when (string-match-p "^\\*Man " (buffer-name buf)) ;; Match any *Man * buffer (kill-buffer buf))) ;; Open the man page without interactive prompts (man program))) (defun quit-man-page () "Quit the *Man * buffer if it exists." (interactive) (let ((man-buffer (cl-find-if (lambda (buf) (string-match-p "^\\*Man " (buffer-name buf))) ;; Match any *Man buffer (buffer-list)))) ;; Check all buffers (if man-buffer (progn ;; (kill-buffer man-buffer) ;; Kill the *Man * buffer (Man-kill) (execute-kbd-macro (kbd "C-x C-c"))) (message "No man page buffer found")))) (add-hook 'Man-mode-hook #'center-document-mode)
    This is what I have so far. I want to bind q to close the pager (i.e execute quit-man-page). No matter how I try to bind it, q is set to quit-window.

    Any ideas? How do i get this working?

    In conversation about 5 months ago from fedia.social permalink
  14. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Wednesday, 25-Dec-2024 17:25:46 JST ZeStig ZeStig
    • David Wilson

    "Oh my, the Elisp tutorial's too much to read"Steals from SystemCrafters YouTubeThanks for the documentation @daviwil ;)

    In conversation about 5 months ago from fedia.social permalink
  15. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Wednesday, 04-Dec-2024 03:31:43 JST ZeStig ZeStig
    • David Wilson

    youtu.be/SCPoF1PTZpI
    @daviwil why not Org-reveal with RevealJS? Have you tried it? Why do you use Org-Tree-slide? I'm curious.

    In conversation about 6 months ago from fedia.social permalink

    Attachments

    1. The Secrets of My Emacs Presentation Style
      from System Crafters
      In this video, I'll show you how I've configured a package called 'org-present' to achieve the presentation style you see in many of my videos! We'll cover ...
  16. Embed this notice
    ZeStig (zstg@fedia.social)'s status on Monday, 18-Nov-2024 03:47:29 JST ZeStig ZeStig
    in reply to
    • Pop Justy :popos:

    @pop_justy as convenient as systemd is, it just sucks.

    In conversation about 7 months ago from fedia.social permalink

User actions

    ZeStig

    ZeStig

    Python, Rust aficionado. Free software Fanatic#archlinux #arch #i-use-arch-btw #arch-btw#nixos#windowssucks

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          297281
          Member since
          17 Nov 2024
          Notices
          16
          Daily average
          0

          Feeds

          • Atom
          • Help
          • About
          • FAQ
          • TOS
          • Privacy
          • Source
          • Version
          • Contact

          GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.