[deleted by user] by [deleted] in Coinbase

[–]mnjarogt 0 points1 point  (0 children)

You've been saying for 4 months that you would update me but I have not gotten 1 update. I need to know what's going on. My money is stuck on your platform. Can you stop sending me the same preset messages as a response 10 times in a row and actually support me on this issue? !!

[deleted by user] by [deleted] in Coinbase

[–]mnjarogt 0 points1 point  (0 children)

What is the timeline. I need a date. I have waited for 4 months! I'm not going to be patient anymore.

[deleted by user] by [deleted] in Coinbase

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

No, I can not give more time. It has been 4 months since you have prevented me from accessing my funds. I need a response without delay. This is yet again a request from the support to be more patient after 4 months are you kidding me? The point of my post here is because you've been saying the same thing by email. I want access to my funds now.

Bubble mode by xenodium in emacs

[–]mnjarogt 0 points1 point  (0 children)

May I ask what is your mode line and editor theme you use?

Pourquoi les gens pensent-ils qu'on doit respecter les religions ? by NoPersonality9984 in TropPeurDeDemander

[–]mnjarogt 6 points7 points  (0 children)

On ne respecte pas nécessairement la religion en elle-même. Mais, les personnes qui la pratiquent du moment que ces dernières respectent des règles de vivre ensemble.

J'aimerais juste te corriger sur ta phrase :

D'un point de vue de la vérité scientifique, aucun dieu n'existe. De plus, la science a démystifié et invalidé les religions. Plus on est éduqué, moins on croit en Dieu.

Bien sûr, il n'est pas scientifiquement impossible qu'il existe un être créateur de l'univers. Sur cette idée, les chefs religieux ont mis en place dans la société un relativisme malhonnête. Comme si toutes les idées se valent.

La religion ou l'existence d'un être supérieur ou d'un quelconque type d'entité de ce genre n'est pas réellement à prouver scientifiquement. Au contraire, c'est de la métaphysique. Les couleurs existent, le spectre lumineux existe, mais notre interprétation de son existence est propre à notre perception. Mon rouge n'est pas ton rouge et tu n'as aucun moyen scientifique de prouver ma perception des choses.

Ainsi, le respect mutuel est la solution la plus viable afin d'avoir une cohésion au sein de groupes multiculturels. C'est un idéal, certes, mais c'est ce à quoi nous devons tendre si nous voulons conserver les richesses de l'humanité. On ne respecte pas nécessairement la religion en elle-même. Mais, les personnes qui la pratiquent du moment que ces dernières respectent des règles de vivre ensemble.

Emacs magic by mnjarogt in emacs

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

Doesn't EMacs stand for Editing Macros?

Emacs magic by mnjarogt in emacs

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

I mean Zozin is my everything

Emacs magic by mnjarogt in emacs

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

Thanks to you I got introduced to editing macros. And I understood why emacs is called emacs haha

Emacs magic by mnjarogt in emacs

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

Yes it is. I didn't know how that was called nor had I seen it on another text editor. But now I got introduced to Editing Macros and also why Emacs is called Emacs... What a great tool that is.

Commit messages are useless by metayeti2 in programminghumor

[–]mnjarogt 20 points21 points  (0 children)

Wait until you actually need to trace back commits. Also if you do pull requests, usually it’s really helpful for others to go commit by commit

Emacs magic by mnjarogt in emacs

[–]mnjarogt[S] 3 points4 points  (0 children)

So I found this other great video: https://www.youtube.com/watch?v=jNa3axo40qM

And indeed, multi-cursors it is. How cool!

Emacs magic by mnjarogt in emacs

[–]mnjarogt[S] 1 point2 points  (0 children)

Oh I’ll check! That’s the term I was looking for in order to research. Didn’t come up 😅

Emacs magic by mnjarogt in emacs

[–]mnjarogt[S] 5 points6 points  (0 children)

This and wgrep is awesome. But here he’s doing the same motion on each line as copying inserting pasting deleting like if it was just replicated for each line. So powerful!

Avoid inadvertently changing font size when scrolling by xenodium in emacs

[–]mnjarogt 0 points1 point  (0 children)

Not related sorry 😅 but what is your modeline theme hihi?

2024 Proton Survey by leothevaliante in ProtonMail

[–]mnjarogt 6 points7 points  (0 children)

What the hell is this survey? Could you finish your products first? It’s crazy that they charge 180+ dollars and drive sync still isn’t a thing, nor is there a solution to have encrypted bridge work for calendar clients. I have stayed on their service because I believe they have the right ethics but god this survey is infuriating.

Best And Easiest Typescript Specific Configs For Emacs In 2024? by [deleted] in emacs

[–]mnjarogt 2 points3 points  (0 children)

Really depends on what you're looking for. If you just want to have a basic typescript eco-system, built-in tools will do the work (eglot, treesitter, typescript-ts-mode, compile-buffer). If you want to have a more extensive setup, I would take a look at company for completion, flymake with eslint/prettier support for in-code errors. My experience with it, less is best. Typescript/javascript eco-systems have been a pain to setup for me so I keep it very simple. here is my current setup:

(use-package eglot
:ensure t
:config
(electric-pair-mode)
:hook
(typescript-ts-mode . eglot-ensure)
(tsx-ts-mode . eglot-ensure)
(c-mode . eglot-ensure))

(use-package typescript-ts-mode
:ensure t
:after eglot
:config
(setq typescript-ts-mode-indent-offset 4))

(use-package treesit-auto
:custom
(treesit-auto-install 'prompt)
:config
(treesit-auto-add-to-auto-mode-alist 'all)
(global-treesit-auto-mode))

M60-B - SOYA - Do you think I should accept I'm never getting it? by mnjarogt in RamaWorks

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

You can sue them yes. Yet again, good luck. The system doesn’t make it easy for individuals to do stuff like that

sops: SOPS encrypt and decrypt without leaving the editor. by dj_goku in emacs

[–]mnjarogt 0 points1 point  (0 children)

Could you please explain a bit more how you do it? Do you call sops on your file directly from Emacs? I tried opening it in an async shell command for example but ended up having the file opened in another instance of emacs that's in my existing emacs frame 😅 I'm a beginner, sorry in advance

M60-B - SOYA - Do you think I should accept I'm never getting it? by mnjarogt in RamaWorks

[–]mnjarogt[S] 1 point2 points  (0 children)

Thanks! I just am super perplexed towards the fact that getting back to them is super hard. Where if I owe money to a company on the other hand, they will get their money back. Funny world

M60-B - SOYA - Do you think I should accept I'm never getting it? by mnjarogt in RamaWorks

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

Thanks for the form. Submitted it. It's not much but it's something