catlover

joined 2 years ago
27
Sticky spots on pan (infosec.pub)
submitted 2 months ago* (last edited 2 months ago) by catlover@sh.itjust.works to c/castiron@lemmy.world
 

Hi! I'm an amateur and must have used my pan incorrectly, and would like to ask some directions to fix my specific case.

Once after cooking with it I washed it with hot water, dried it, and put it on the oven to make sure its completely dry. I added some oil too. Unfortunatelly I forgot about it, and came back when it was already smoking, and having that huge spot on the right side of the image. The pan wasn't completely on a flat surface, so most of the oil flowed on the right side. Also a lump of oil(?) formed at the bottom of the spot, which I could remove with hot water, and non-metal scrubber.

I tried searching online for a solution, but I'm not 100% sure what this exact case is, and which solution to try.

How could I fix my pan? Thans in advance!

185
submitted 4 months ago* (last edited 4 months ago) by catlover@sh.itjust.works to c/cat@lemmy.world
 

I have a nearly 4 year old neutered female cat. I have been thinking about adopting another cat, but I fear they won't get along. Current cat is not really social, rarely likes being touched, instead requires attention: playtime, being near (but far enough), etc.

What are your experiences with second cats? Are there age / gender combinations which are the safest?

Edit: thanks for all the replies! Forgot to mention that she is an indoor cat.

[–] catlover@sh.itjust.works 3 points 9 months ago

I wrote my own music player using qt

 

My mornong glory's leaves on my balcony has some problems. I'm not sure what could be the issue, some other plants show similar symthoms (celery's leaves for example)

Can I ask for help from someone more experienced? I don't know what I'm doing wrong.

I live in central EU, my balcony can get really hot, like 30-35 celsius. It gets direct sunlight from around 1-2 afternoon to 6-7. I water my plants daily, because of the heat, the soil dires quickly

Backside of the leaves:

18
submitted 11 months ago* (last edited 11 months ago) by catlover@sh.itjust.works to c/balconygardening@slrpnk.net
 

Noticed that some bees climb in at the bottom of my planters and dig themselves in. They go in and out multiple times a day, sometimes seem to carry some cut leaves. It seems like its the same bee, never seen more than one at the same spot, but multiple planters have these bees and holes.

What are they doing? Could they mean harm to my plants? Should I worry about my cat trying to catch them, and they stinging?

I also change the soil and the plant every year. Will I ruin their homes this way?

[–] catlover@sh.itjust.works 7 points 1 year ago

i bought the smallest one in reasonable price, but its still big

[–] catlover@sh.itjust.works 1 points 1 year ago

After hours of trying out different plugins the closest I could find is the lualine & tabby combination:

About to test it during work, at first look it looks like it has everything I need, only shows current buffers in tab, and in correct order

local lualine_theme = require("highlight").lualine_theme
require("lualine").setup({
	options = {
		icons_enabled = true,
		theme = lualine_theme,
		component_separators = { left = "", right = "" },
		section_separators = { left = "", right = "" },
		disabled_filetypes = {
			statusline = {},
			winbar = {},
		},
		ignore_focus = {},
		globalstatus = true,
		refresh = {
			statusline = 1000,
			tabline = 1000,
			winbar = 1000,
		},
	},
	sections = {
		lualine_a = { "branch" },
		lualine_b = { empty_section },
		lualine_c = {},
		lualine_x = {},
		lualine_y = { { "diagnostics", sections = { "error", "warn" } } },
		lualine_z = { "location" },
	},
	inactive_sections = {},
	tabline = {},
	winbar = {},
	inactive_winbar = {},
	extensions = { "fugitive", "nvim-tree" },
})

local theme = {
	fill = "TabLineFill",
	-- Also you can do this: fill = { fg='#f2e9de', bg='#907aa9', style='italic' }
	head = "TabLine",
	current = "TabLineSel",
	tab = "TabLine",
	win = "TabLine",
	tail = "TabLine",
}

vim.o.showtabline = 2
local tabby_theme = require("highlight").tabby_theme
require("tabby.tabline").set(function(line)
	return {
		line.tabs().foreach(function(tab)
			local hl = tab.is_current() and tabby_theme.current or tabby_theme.tab

			return {
				line.sep("", hl, tabby_theme.fill),
				tab.number(),
				tab.name(),
				line.sep("", hl, tabby_theme.fill),
				hl = hl,
				margin = " ",
			}
		end),
		line.spacer(),
		line.wins_in_tab(line.api.get_current_tab()).foreach(function(win)
			local hl = win.is_current() and tabby_theme.current or tabby_theme.tab

			return {
				line.sep("", hl, tabby_theme.fill),
				win.buf_name(),
				line.sep("", hl, tabby_theme.fill),
				hl = hl,
				margin = " ",
			}
		end),
		hl = tabby_theme.fill,
	}
end)
 

Hi! I recently decided to switch from airline, but can't find a status / tab line plugin that works just like I want it to. Lualine is the closest I could get, but the following features from tabline is really missing from me.

I couldn't get the buffer component to only show those buffers that are open on the current tab, and in the visual order that my splits are. Also I can't get it to hide hidden buffers, after opening and closing a few terminals it gets polluted with a tons of unnecessary tabs

The closest I could get is with "tiagovla/scope.nvim", but that does not make it respect the order of my splits, messes with sessions and doesn't solve the problem with the hidden buffers

Is there a tabline extension that is simple and fast, and can do what I described? Thanks in advance

 

The button is faded out for me: https://download.battle.net/en-us/desktop

But as soon as I change my user agent suddenly it works 🤔 However starting it with wine gives an error that it can't connect to the server. No more blizzard games I guess


With a previously installed client I was able to buy and download Diablo II: Ressurected, but after starting it it immediately stated that my setup was to outdated to run this game. I highly doubt that, since I have more than the minimum requirements.

I found out that you have to fool the game to make it start: https://forums.lutris.net/t/solved-diablo-ii-resurrected-fails-to-start-with-failed-to-initialize-graphics-device-error/13878/3

Problem was with ingame GPU and driver version detection

The lutris battle.net installer however did not work, and I didn't have the mood to debug it.

Not so surprising, but they don't support linux: https://us.forums.blizzard.com/en/d2r/t/failed-to-initialize-graphics-device/5896/67

Note: Linux, bootcamp, or running the game in a virtual OS is not supported

 
[–] catlover@sh.itjust.works 2 points 2 years ago

looks awesome. i friggin love those text terminal shadows. mc style

[–] catlover@sh.itjust.works 4 points 2 years ago (2 children)

maybe that dude with the mass random communities name

 

Version 5.6.22

[–] catlover@sh.itjust.works 3 points 2 years ago (2 children)

I'm sorry if this seems like an attack, the whole point I'm trying to make is that jerboa might not be as ready as we think for being a lemmy client. Open source projects are extremely hard, an mostly never rewarding, and I totally understand that. I hope that those who have the skill and time will make it better, but right now it can contain flaws that make basic features unusable, and who knows what actually runs in the background

[–] catlover@sh.itjust.works 2 points 2 years ago (1 children)

You are right, I should have tested it on an older version of jerboa. I hope that the developers or other users can prove me wrong

[–] catlover@sh.itjust.works 2 points 2 years ago (1 children)

I can totally understand the lack of people working on the project. As skeptic I am, I must say that you have total right to not believe me, but I'm an open source developer too with an own project, with literally no time at all since years. But what I'm trying to say: if the devs have no time to review PR-s, and features, please just don't merge them at all. Please tell me that I'm wrong, but this seems like PR-s getting merged without proper reviews. This is far more worse than not merging any PR-s

 

https://github.com/dessalines/jerboa/issues/891

If you downvote any post in jerboa 0.0.35 you actually upvote it. Seems like anything gets merged? If this goes on like this, there could be a lot of trouble

view more: next ›