wasabi

joined 1 year ago
[–] wasabi@feddit.de 3 points 5 months ago
[–] wasabi@feddit.de 2 points 6 months ago

Hemden, die hart gehen.

[–] wasabi@feddit.de 7 points 6 months ago* (last edited 6 months ago)

The real story sounds even weirder. They took his work permit for the sole purpose of stopping any integration that could hinder a later deportation. Wtf. Fachkräftemangel my ass.

[–] wasabi@feddit.de 1 points 6 months ago (1 children)

What's your hoster?

 

I'm using contabo and the VPS I got is advertised as 1 Gigabit. When I do a speedtest or use iperf3 to connect to public servers I get pretty close to 1 Gigabit. But from my residential IP the speed drops down to 100-250 Mbit/s. My home internet connection can handle 500 Mbit just fine.

I'm looking for a new hoster with a better network connection. What real world speeds do you get with your server?

[–] wasabi@feddit.de 2 points 6 months ago

I have found it: fka boursin - coma (original mix)

Finally my mind can rest

4
submitted 6 months ago* (last edited 6 months ago) by wasabi@feddit.de to c/music@beehaw.org
 

I just listened to Tatsuro Yamashita's City Pop classic "SPACY" and at the end of the Track "Umbrella" (at 3:22) I heard a snippet that sounded incredibly familiar. That guitar slide with the harmonics.

Some other track must have sampled it, but I can't put my finger on it. I think that the sample was used at the start of the track and that the track had a mostly ambient vibe. Does anyone know who sampled this?

[–] wasabi@feddit.de 1 points 6 months ago

Rastafari gehören aber nicht wirklich zum Christentum, da es beim Fundament des Glaubens signifikante Unterschiede gibt. Rastafari glauben an den äthiopischen Kaiser Haile Selassie I. als Reinkarnation Gottes. In dem Sinne sind Rastafari genauso christlich wie Christen jüdisch sind. Die Wurzeln mögen gleich sein, aber sie unterscheiden sich in den zentralen Aspekten der Religion so stark, dass sie letztenendes nicht miteinander vereinbar sind.

[–] wasabi@feddit.de 31 points 6 months ago (7 children)

Die AfD gibt sich nur christlich wenn es für die "wir" gegen "die" Abgrenzung nützlich ist.

[–] wasabi@feddit.de 2 points 7 months ago (1 children)

That's the biggest issue of smartwatches IMO. They will all end up in a landfill after approximately 5 years while you'll be able to give that Timex (or your F91W that costs less than a pizza) to your grandkids.

[–] wasabi@feddit.de 0 points 7 months ago (1 children)

Den Anschlussplan habe ich erst später gefunden, da ich nicht wusste welches Ofenmodell das überhaupt ist (war gebraucht). Der Verkäufer hat das Teil aus einem Haus, dass er gekauft hat und jetzt abreißt. Er hat mir ein Foto gegeben, wie der Ofen angeschlossen war, und er war genau so falsch angeschlossen wie ichs dann auch gemacht hab (ohne Brücken). Also entweder haben die Vorbesitzer des Hauses diesen Ofen nie benutzt oder er hat mal so funktioniert. Oder sie hatten immer Glück und ich hab dann ins Klo gegriffen. Keine Ahnung. Eine Sicherung scheint dieses alte Modell nicht zu haben, jedenfalls listet Miele das nicht als Ersatzteil.

Der Fakt dass der Ofen mal so angeschlossen war passt zumindest mit der Aussage des Miele-Service zusammen, der meinte, dass das den Defekt nicht erklären würde, selbst wenn man die 230V voll ausreizt.

 

Frage an Elektriker: Ich habe einen Ofen gebraucht gekauft und nach einmaliger Nutzung ist er defekt. Der Ofen wurde falsch angeschlossen. Es wurden 230V angeschlossen, aber die Brücken haben gefehlt. Eigentlich hätten sie an die grünen Stellen gemusst. Die durchgestrichenen Leitungen sind nicht angeschlossen.

Nun ist der Ofen defekt als wäre kein Strom angeschlossen. Es tut sich absolut gar nichts. Meine Frage: Wenn man den Ofen so anschließt, ist es dann zu erwarten, dass er nach einmaliger Nutzung kaputt geht, oder sollte der Ofen so eigentlich mit geminderter Leistung laufen. Ein Mitarbeiter eines unabhängigen Miele Reparatur-Service meinte zu mir, dass mein Defekt vermutlich nichts mit meinem falschen Anschluss zu tun hat. Ist die Aussage so korrekt? Kann ich davon ausgehen, dass der Defekt nicht meine Schuld war?

[–] wasabi@feddit.de 3 points 8 months ago (2 children)

Lmao, chinese tea ceremony includes like 500 steps.

[–] wasabi@feddit.de 1 points 8 months ago* (last edited 8 months ago)

Honestly the most complete source of high res music is private trackers like redacted. You can download all the stuff from qobuz and bandcamp, every CD rip you can think of in bit perfect quality of and even very good vinyl rips. You basically can download any version ever released from any album.

[–] wasabi@feddit.de 1 points 8 months ago

Yes, that's a good alternative for Collection[str] but not so much for Iterable[str] as you lose the lazyness of Generators.

 

I often find myself defining function args with list[SomeClass] type and think "do I really care that it's a list? No, tuple or Generator is fine, too". I then tend to use Iterable[SomeClass] or Collection[SomeClass]. But when it comes to str, I really don't like that solution, because if you have this function:

def foo(bar: Collection[str]) -> None:
    pass

Then calling foo("hello") is fine, too, because "hello" is a collection of strings with length 1, which would not be fine if I just used list[str] in the first place. What would you do in a situation like this?

 

I'm currently using a VPS from contabo and am curious if I would get better performance CPU and disk I/O wise because of the dedicated resources. The bigger VPS from contabo seem to be in a similar ballpark to the cheapest options available in the hetzner server auction when it comes to corecount, ram and disk size and price.

 

I'm new to the container world. Does it have any security benefits when I run my applications as a non-root user in a docker container? And how about Podman? There I'll run the container as an unprivileged user anyway. Would changing the user in the container achieve anything?

 

It was sold to me as a 2011 gushu sheng puerh. Would be grateful for any further information. It's around 80g without the box and heavily compressed. I haven't unwrapped it yet.

IMG_20231031_212938_522

IMG_20231031_212943_126

 
 

I'm talking about stuff like this: [file.unlink() for file in files] instead of the more verbose but maybe easier to grasp for python noobs:

for file in files:
    file.unlink()

Maybe with a bit more context:

def _cleanup(self) -> None:                                                                                                                                                                                                             
    dirs, files = partition(lambda f: f.is_file(), self._tmp_dir.rglob("*"))                                                                                                                                                            
    [file.unlink() for file in files]                                                                                                                                                                                                   
    [dir.rmdir() for dir in dirs]                                                                                                                                                                                                       
    self._tmp_dir.rmdir()
 

Sometimes when I am using goto definition I get errors like this one

E5108: Error executing lua: ...t_nvimeitLsr/usr/share/nvim/runtime/lua/vim/lsp/util.lua:1964: Invalid window id: 1000
stack traceback:
	[C]: in function 'nvim_win_get_buf'
	...t_nvimeitLsr/usr/share/nvim/runtime/lua/vim/lsp/util.lua:1964: in function 'make_position_params'
	...nvim/lazy/telescope.nvim/lua/telescope/builtin/__lsp.lua:147: in function 'v'
	...nvim/lazy/telescope.nvim/lua/telescope/builtin/__lsp.lua:391: in function 'v'
	.../nvim/lazy/telescope.nvim/lua/telescope/builtin/init.lua:541: in function 'lsp_definitions'
	/home/user/.config/nvim/lua/user/plugins/ide/lspconfig.lua:80: in function 

What could be the cause of an error like this? Whenever this happens I have to restart nvim.

the config in lspconfig.lua:79 looks like this:

        opts.desc = "LSP: Jump to definition of symbol"
        keymap.set("n", "gd", function()
          telescope.lsp_definitions(ivy)
        end, opts)

Any ideas?

 

I have seen some people prefer to create a list of strings by using thing = list[str]() instead of thing: list[str] = []. I think it looks kinda weird, but maybe that's just because I have never seen that syntax before. Does that have any downsides?

It is also possible to use this for dicts: thing = dict[str, SomeClass](). Looks equally weird to me. Is that widely used? Would you use it? Would you point it out in a code review?

 

Looking for recommendations in the ambient genre.

My favorites are (in no particular order):

  • Brian Eno - Mixing Colours
  • C418 - Minecraft Volume Alpha
  • Jon Hopkins - Music for Psychedelic Therapy
  • The KLF - Chill Out
  • Experialist - Excessive Refinement
  • Biosphere - Substrata

What are your favorite ambient albums?

view more: next ›