cyclohexane

joined 3 years ago
MODERATOR OF
[–] cyclohexane@lemmy.ml 2 points 11 months ago (5 children)
  1. Way to derail the conversation about Syria with a country way that has little to do with it. (yes even if OP said middle east)
  2. Even with Yemen, the United States started. The yemeni rebels fought against an oppressive government, and the United States had to intervene in the interest of Saudi for many years before the yemenis ever responded. So your example does not disprove the claim.
[–] cyclohexane@lemmy.ml 0 points 11 months ago

Highly doubt that Syrian army were interested in opening a front with the strongest military in the world, when they're getting pounded by Al-Qaeda on the other side of the country.

[–] cyclohexane@lemmy.ml 4 points 11 months ago (1 children)

Weird question, but what does GnuCash do that you wouldn't get easily from excel? I haven't used any of these apps and wondering what I'm missing out on.

[–] cyclohexane@lemmy.ml -1 points 11 months ago

Who cares? I don't like biden at all but this shouldn't make news just because Republicans are fixated on biden. Hunter biden didn't commit anything of value. Yeah sure, those in power can get away with things. Nothing new here.

[–] cyclohexane@lemmy.ml 3 points 11 months ago

Only real ones will remember

[–] cyclohexane@lemmy.ml 0 points 11 months ago

They didn't reduce the entire war to that, and Syrian history says Israel is heavily involved in Syrian affairs and for many years bombs syria at least once a month, sometimes several times week.

[–] cyclohexane@lemmy.ml -5 points 11 months ago

Russia has a better track record than any other major power in this regard. The above article is misleading, Russia is still actively assisting the Syrian army and is actually increasing the capacity in response to the Aleppo attack.

[–] cyclohexane@lemmy.ml 4 points 11 months ago

He just met with Iranian FM in Syria. If he did leave to Russia, he came back after.

[–] cyclohexane@lemmy.ml 15 points 11 months ago (2 children)

Not world news. It's an internal matter of the US.

[–] cyclohexane@lemmy.ml 7 points 11 months ago

Kurdistan will unfortunately get obliterated by Turkey now.

[–] cyclohexane@lemmy.ml 2 points 11 months ago

They have the entire city now, which never previously happened at the peak of the war

[–] cyclohexane@lemmy.ml 2 points 11 months ago

Russia only occupies the small region of its naval base. Iran does not really occupy any part, although they do seem to have great influence on the government.

 

The lack of activity makes me wonder if there's a more active one, maybe on lemmy. world or somewhere else?

 

Hi all,

I've managed to get the GOG of horizon zero dawn starting up. But my DualShock 4 controller is not recognized by the game. Now the controller works as a mouse (with the pad), so I know it's at least connected.

What can I do to fix this? I am running it through bottles flatpak. I am using gentoo Linux if that matters.

 

I assume it doesn't, but thought I'd ask.

I really like the principles behind both gentoo and flatpak, but right now I can only do the gentoo way or the flatpak way (and I've opted for gentoo's for now).

What I'd love to have from flatpak:

  • container like sandboxing and isolation
  • customizable sandboxing and permissions

What I'd love to have from gentoo:

  • powerful build system building packages from source
  • global declarative management of compilation options
  • easy patches
  • easy to add packages that aren't in repos
  • support for many architectures or setups
 

From my understanding, at least one other necessary component is dxvk, and that wine is not enough.

If I dont use lutris or some other manager, how can I game on linux? do I have to configure dxvk? do I need soemthing else too? vulkan?

Is there a guide that explains it?

 

Hi all,

I use a wayland Gentoo system, but I want to run Lutris for gaming. I would like to do this with at least some degree of filesystem isolation, as Lutris seems to install dependencies on its own and it pollutes the system in ways I cannot track.

What is the best way to do this? is it possible to do in a chroot? or mount namespaces? will it give me a lot of trouble?

It seems that merely installing things in a chroot and running it is not enough.

 

Most music videos, especially modern ones, are pretty boring.

 

I mean, sure, that's probably heavily influenced by the need for bundling for the frontend.

But it isn't done blindly. Bundlers reduce the overall size of the code, either due to minification or tree-shaking (removing unused modules). It also removes the filesystem overhead of resolving and opening other modules.

Would bundling be useful in other interpreted languages?

I suppose you may count JVM's compilation to bytecode as being very similar.

 

What projects are out there seeking to innovate in the terminal and command line space, and improve or revolutionize the terminal environment?

  • NuShell is one such example, a shell that uses structured data in its pipelines. Many other experimental shells out there innovating in different spaces.
  • An even more daring example is DomTerm. It's a terminal emulator with more rich rendering. Supports rich text, images, etc while maintaining xterm compatibility.

Please do not shy from answering projects that are very experimental, early stage, break a lot of backwards compatibility or radically change the current way of doing things.

 

Most applications provide you configuration files that are data / text based. Whether it is toml, JSON, yaml or some other format, you are usually defining values for pre-determined keys and that's all.

This makes sense for many applications, but involved applications have explored configurations that make use of scripting. For example, vim uses VimScript, neovim uses Lua, but vscode uses json (as far as I remember), and Helix (vim inspired editor) argues editor configurations must be data, not scripting, and uses toml.

many tiling window managers use various programming languages (Qtile uses python, xmonad uses Haskell, Awesome uses Lua) while others stick to data configuration (i3).

Do you think that scriptable configuration is over-engineered and brings weaknesses, or is it warranted and grants the user power in these big applications? What are the benefits of scriptable configurations?

 

So apparently there are two editors inspired by vim, but built from the ground up (as opposed to neovim, a vim fork that seeks to improve on top of vim).

I've heard of Helix several times prior, but it never quite attracted me. Seemed like vim, but different key bindings and much worse plugin system. It also has different visual and normal modes than vim, but it didn't quite click with me. I do like it's multi-cursor ability though.

Then it turns out that Helix was also inspired by not just vim, but also kakoune. Kakoune also has different keybindings, and different modes, but its different modes make sense to me. It fuses visual and normal mode into one. Your normal mode is for both navigation and selection.

Kakoune promotes the idea that you should visually see the text you're operating on before running the command. You know how in vim, "dd" deletes a line, "dw" deletes a word, and "d$" deletes to the end of the line? In vim, you don't see what you're deleting before its gone (which is fine and works for many). In kakoune, the selection happens first before the action. So you select the word or the line, and then you delete.

But what I found to be Kakoune's killer feature was its shell integration. Kakoune seemlessly integrates into the unix shell, allowing you to offload many tasks to it. For example, instead of it having a built-in sort command, you use the unix sort command to sort your lines.

I'm surprised kakoune isn't more popular. Yes, it is still in a much earlier phase than vim, and the ecosystem is far less mature, but I am surprised to see Helix gaining more traction.

I'm still very new to kakoune and exploring it. But I like it a lot so far.

 

Hi all,

I am looking for recommendations on resources to learn Linux networking. I am primarily hoping for text resources such as books, guides, blog series, articles, etc. I have trouble focusing on videos.

I am mainly targeting linux networking topics, such as how the linux networking stack works, and things like iptables, network namespaces, network interfaces, sockets, NAT, firewalls, internal IP-addressing, subnetting, routing, proxying, internal DNS, and anything that I may not know exists but is related to these concepts and linux networking in general.

Any recommendations?

 

Yes, I know so much of Alpine's lightweightness comes from not using glibc.

But still, the other options I see are far from being slimmed down. Debian, Ubuntu server, CentOS... They all could use some cuts.

What's the most slimmed down non-desktop distro that still has a glibc base? I honestly don't care if it has its own package manager (build tool handles this for me). Just wanna use it in containers for running server apps.

view more: ‹ prev next ›