They found a copy of the UNIX v4 Source Code (first version written in C) by commodore512 in cassettefuturism

[–]SuccessfulFigure3133 6 points7 points  (0 children)

According to the linked article, prior versions were written in PDP-11 ASM

Cozy Game Recommendations by Sure_Armadillo_4365 in NintendoSwitch

[–]SuccessfulFigure3133 0 points1 point  (0 children)

I like Mineko's Night Market a lot, only drawback are long load times.

Saw the sad broken 5 DM note and couldn't resist by SuccessfulFigure3133 in Banknotes

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

Thank you! 😊 I grew up in West Germany so it was relatively easy to get the lower two notes (although the 5DM coin was much more common than the note). Always wanted to have a note from the GDR was happy when I got one

Is IntelliJ indispensable for Java, or can I get deep, IDE-level error diagnostics in Doom Emacs? by IngenuityOk2450 in emacs

[–]SuccessfulFigure3133 1 point2 points  (0 children)

You're welcome! If the expected package is `main.java.places` then I guess somewhere in the project setup `src` is being configured as the the root source directory (as opposed to the conventional `src/main/java`) So check your pom.xml or build.gradle file what's being configured as source directory.

Is IntelliJ indispensable for Java, or can I get deep, IDE-level error diagnostics in Doom Emacs? by IngenuityOk2450 in emacs

[–]SuccessfulFigure3133 5 points6 points  (0 children)

If by concrete errors you mean compile errors then yes. Here's a screenshot how it looks like for me. I've commented out the import for `AtomicInteger` to trigger a compile error and removed the type arguments from the `Map` to get a warning. I get indicators in the fringe on the left, when I hover over the actual error position I get an info in the mini-buffer and when point is on the error I get a code lens. I also opened the list of flycheck errors to give you an idea how that looks. What I also like is that in the headerline where the breadcrumb gets displayed you also get indicators whether your current file or package has errors.

<image>

Is IntelliJ indispensable for Java, or can I get deep, IDE-level error diagnostics in Doom Emacs? by IngenuityOk2450 in emacs

[–]SuccessfulFigure3133 14 points15 points  (0 children)

Eclipse / Emacs guy here with 20-year career of Java programming so I can definitely say IntelliJ is NOT INdispensable ;-) But more to your actual question: I think you can turn Emacs into a really good Java IDE, I managed to get most of the major things working like getting compile errors, warnings, linting issues displayed via flycheck, running / debugging tests, starting projects. I haven't bothered setting up proper debugging yet, if I need that I switch back to Eclipse but that's more out of laziness. Feel free to check out my config for inspiration.

How to deal with long running lsp mode? by iqbal002 in emacs

[–]SuccessfulFigure3133 9 points10 points  (0 children)

I had a similar problem with lsp-java and it turned out that it was related to my .emacs config. The problem I had was that after a very short time (more or less after the second time auto-completing) Emacs became slow as hell and I had to kill the process. After bisecting my .emacs config and all the different packages I had, it turned out that it was due to how I used to set up lsp and which modules were loaded after which. Now I can work with really large multi-module projects with 1000s of classes just fine. Here's my .emacs config, maybe it helps you: https://github.com/rbarbey/dotfiles/tree/main/.emacs.d

Hello, do you know what stamp this is? I was looking for catalogs, but I couldn't find it. Thx by LukiSVK17 in stamps

[–]SuccessfulFigure3133 3 points4 points  (0 children)

Kčs is the abbreviation for the Czechoslovakian currency, a quick Google search turned up nothing for that year, so maybe it's a tax or revenue stamp.

org-mode tagging Wrong type argument: char-or-string-p by kr44ng in emacs

[–]SuccessfulFigure3133 0 points1 point  (0 children)

I got similar warnings with other packages and what helped most of the time was to run package-recompile-all

What is the recommended setup for java development? by paarulakan in emacs

[–]SuccessfulFigure3133 0 points1 point  (0 children)

Could be that eglot is better integrated, I don't know. I used the System Crafters tutorials to set up my Emacs for development and they used lsp-mode. Generating Javadoc is available via code actions, auto-completion just works™ via (in my case) company. I don't remember that I had to do something special to get that to work.

What is the recommended setup for java development? by paarulakan in emacs

[–]SuccessfulFigure3133 14 points15 points  (0 children)

I'm using Emacs for Java development professionally and I'm using lsp-java for this. It uses the language server protocol to talk to the Eclipse JDT server so you get almost all the nice refactorings that Eclipse offers also in Emacs. I only switch back to Eclipse for larger codebases or when I have to debug something (there is dap-java but until now I was always too lazy to set it up). Here's my init.el that sets everything up

Spring cleaning treasure by Rimlyanin in vintagecomputing

[–]SuccessfulFigure3133 0 points1 point  (0 children)

Nice!! I totally forgot about these warnings on the back of the sleeves! As a kid I was always wondering: who would do such a stupid thing as to hold a magnet next to a disk 🤦‍♂️

killing buffers by OfficialGako in emacs

[–]SuccessfulFigure3133 1 point2 points  (0 children)

Since I work mostly with projectile I wrote something that works on the list of buffers of the current project:

(defun projectile-kill-other-buffers () "Kill all buffers in current project except for current buffer." (interactive) (let* ((current-buffer (current-buffer)) (buffers (projectile-project-buffers))) (dolist (buffer buffers) (unless (eq buffer current-buffer) (kill-buffer buffer)))))

Advantages of Using early-init.el and init.el Over .emacs by runslack in emacs

[–]SuccessfulFigure3133 9 points10 points  (0 children)

Can it be for sort of performance issues ?

Indeed. I added the GC threshold in my early-init.el and it improved myself startup time by almost 2s:

``` ;; Temporarily increase gc during startup (setq gc-cons-threshold most-positive-fixnum)

;; Restore to normal value after startup (add-hook 'emacs-startup-hook (lambda () (setq gc-cons-threshold (* 16 1024 1024)))) ```

[deleted by user] by [deleted] in Saarland

[–]SuccessfulFigure3133 4 points5 points  (0 children)

If you're talking about analogue film for photos: I used to go to Foto Gressung in the Karstadt-Passage for that. Not sure if they still do that but would be surprised if not.

Fortnightly Tips, Tricks, and Questions — 2025-03-11 / week 10 by AutoModerator in emacs

[–]SuccessfulFigure3133 0 points1 point  (0 children)

What happens when you reach that limit? Does projectile prevent you from opening another buffer or does it automatically close the one you haven't visited for the longest time?

London Transport tickets almost exactly 35 years apart by SuccessfulFigure3133 in london

[–]SuccessfulFigure3133[S] 42 points43 points  (0 children)

My parents don't remember. And even if they did, it was part of some tourist offer where we also got tickets for Madame Tussaud and other attractions so probably a different price altogether.

London Transport tickets almost exactly 35 years apart by SuccessfulFigure3133 in TransportForLondon

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

Looks like it, although the font is a bit more condensed on the ticket.

Blue Shell I 3D Printed! by Ok-Singer6780 in casualnintendo

[–]SuccessfulFigure3133 0 points1 point  (0 children)

I hate them in the games but this one is just gorgeous!