catlover

joined 1 year ago
[–] catlover@sh.itjust.works 3 points 1 month 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 3 months ago* (last edited 3 months ago) by catlover@sh.itjust.works to c/balconygardening
 

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?

 
1
submitted 9 months ago* (last edited 9 months ago) by catlover@sh.itjust.works to c/dota2@lemmy.ml
 

Here is my match history for the last few games:

  • 7552918956 l primal beast running alone and running into enemy alone, globally muted during game
  • 7552902567 l pos 5 pudge abandon
  • 7552860133 l mid necro rushes dagon ONLY, gets it at 9 mins with 4 deaths. result: 19-0 enchantress opponent on mid
  • 7552767327 l long game, pos 5 grim plays very poorly, worthless items, then abandons
  • 7550071221 w played as wd, lost of mistakes, played him like 5 times, team won
  • 7549980733 w played as lion, same as above
  • 7548787204 w 68 min game, pretty normal and close compared to that
  • 7548731357 l 7-16 (lvl7 @10 mins vs lvl10 lc) mid np tping behind towers and feeding, vs 536 stack duel victory lc
  • 7548485224 l pos 1 pl barely more nw than a support, dying uselessly a lot, lc afk deffensively farming triangle
  • 7548416320 l everyone fed meepo, offlaner didnt know how to play his hero
  • 7548356120 l cw pos 1, i wasn't good either but he felt insanely useless and died a lot
  • 7548301173 l pos 1 dude was straight out afk from the start

I had more or less (rather less) success before, but in the games I lost I there is always one lc mid rushing khanda, or someone who plays their hero for the first time (believe me, I can go on)

I get someone who griefs nearly every single game, and it makes impossible to have fun during games. Worst part is that I have to play the game till the end even if there is 0 chance of any play. What am I doing wrong? In the past there were multiple occurrences of having a really good winstreak, where my team won pretty hard, and I took a good part of it. Even if it was a loss, it was something to learn from, and I could blame myself for the mistakes I knew I made, and it was somewhat close. Then I got griefers for the next matches till I lost all of my advancements.

I seriously doubt that after having such a good winrates at 1.7k mmr I reach 2k, and the skill difference is that much that I have absolutely 0 chance to win, and suddenly everyone in my team plays insanely bad, or griefs. I get a ton of uncalibrated players who usually play awful in my team

I know that I'm possibly not better then everyone, but it always feels like I'm the only one in the team that knows how to play, and nearly always feel like that I was the best in my team. I know this sounds bad, but prove me otherwise, because at this point I have no idea what to do to stop this.

MatchID    Date                    Periodic  Excessive Reports  Excessive Abandons  Match Count  Positive Matches  Reported Matches  Abandoned Matches  Reports  Reporting Parties  Comms Reports  Comms Reporting Parties  Commends  Behavior Score
7548356120 2024-01-21 16:02:44 GMT Yes       No                 No                  15           14                1                 0                  2        2                  0              0                        20        11875 
7537612880 2024-01-14 16:34:57 GMT Yes       No                 No                  15           15                0                 0                  0        0                  0              0                        27        12000 
7531262752 2024-01-10 18:18:10 GMT Yes       No                 No                  15           15                0                 0                  0        0                  0              0                        24        12000

My all-time lowest behavior score was 11767 (since the increase to 12k), my comms score is the same

[–] catlover@sh.itjust.works 5 points 9 months ago (1 children)

is cheaters in lol this bad? are there more cheaters compared to for ex.: dota? and if yes, why? does the lol game implementation allow it?

[–] catlover@sh.itjust.works 4 points 9 months 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)
[–] catlover@sh.itjust.works 23 points 9 months ago* (last edited 9 months ago) (3 children)

git commit -m 'initial commit'

git commit --amend

git commit --amend

git commit --amend

git commit --amend

....

git commit --amend

 

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

 

[–] catlover@sh.itjust.works 20 points 10 months ago

while true; do npm ci; done

[–] catlover@sh.itjust.works 4 points 11 months ago* (last edited 11 months ago)

what is all that stuff

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

large trees can be dangerous, but yeah could have at least planted some more around it

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

me neither for 90 % of thr comics i see here

[–] catlover@sh.itjust.works 27 points 1 year ago (5 children)

also the second generation of plants are mostly way worse than the first (which produced the fruit that you buy)

 
 

Mine is kinda boring with a bit of chickens:

hero is last hero

 

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

 

Rif has a feature where you can filter out posts which links to a specific domain (regex like syntax).

For example you can block all posts which redirect to youtube.com or youtu.be.

Couldn't find such feature right now, but would love to see this.

I hate clicking on youtube posts, I don't watch content with sound, and it also opens the youtube android app with ads and everything.

This could be extended to a feature to filter out posts from specific instances till its not implemented in the backend.

These could be done on the frontend like after the client recieved the posts to display it filters them by domain / instance by user defined rules

 

I always favored rooting my phone, used to have a redmi 4x with magisk and lineage os. It was time for a new phone, and got a xiaomi note 10S.

On the 4x I noticed that play store did not list revolut and other banking apps, and the bank Im using said I can't use the app on rooted phone, so I decided not to root my 10S.

However I still think about unlocking and rooting it, but I'm afraid of my banking apps no longer working.

I still would like to use my phone like I did before: NFC payments (google pay), banking apps, play store for said apps, google maps.

Is it possible to create a setup like this? Should I even try?

view more: next ›