catlover

@catlover@sh.itjust.works

This profile is from a federated server and may be incomplete. Browse more on the original instance.

catlover,

If someone wants to try out rushing Khanda on LC, they don’t have to go to unranked with this

Maybe I’m taking ranked too seriously, but ranked is supposed to be a “serious” environment, I highly doubt that trying out random stuff, that just popped out of a random players head is ok, then whats the point of unranked? Random strategies are known to be extremely volatile, and can easily ruin the game for their teammates (and possibly the opponents too). These players deliberately get weird stuff, or play extremely unusual heroes for their positions in ranked, and they are for sure doing something wrong. Its like going in a 3 lane highway with a go-kart, I’m pretty sure that this is disrespecting other players, most likely ruins their games, and is griefing

Even afk jungling is a poor play, but it can be valid, and running into the enemies alone and dying are also mostly just stubborn mis-plays. God knows I very often go in somewhere and die uselessly.

I don’t want to go into details, but I’m pretty sure that in that specific case afk jungling was the last valid play, and the run-into-enemies guy was not just at the wrong place, he literally just walked into enemy multiple times

Your problem is your mindset. You can’t make other people play better.

I’m pretty sure that it makes a toll on me. But if you are right, and most of the things that I experience is not griefing, then I have control over like 5% of my games? And the rest is a fortune game, where the point is to get the least amount of “griefers” in your team? Because if yes, then I’m sure am extremely unlucky, because it seems like I’m the only one taking ranked seriously, and the whole community (=players who play pubs) is not respecting players who want to take the game a bit more seriously

Its insanely hard to just bear the fact that others deliberately play bad, especially when you are loosing so badly, that there is no point to stay in game. And believe me there is absolutely no comeback potential in those games, because of the mindset of those players

catlover,

he Wraith King just pulls himself a little bit more together or we’d have a proper mid

Those are the exact players I’m mad at, and this is exactly why I say that there were no comeback potential in my games. It’s not only hard to execute, but requires teamplay and a complete change of mind of the already griefing players, which won’t happen

catlover,

Yeah you are right, and thanks for offering to join you playing despite how toxic and mad I seem, and you are right that I should be more patient to wait for people a bit more.

But also I feel like with the selected team members ranking up would be much more easy, and a bit unfair, and I would like to improve in a “fair” way. Its just my stupid way of thinking, I like these kind of challenges, but lately I feel I have absolutely no control over my games

catlover,

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,

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

https://sh.itjust.works/pictrs/image/23a32c41-c0cc-4a19-b2ce-523aaf733f7f.png

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


<span style="color:#323232;">local lualine_theme = require("highlight").lualine_theme
</span><span style="color:#323232;">require("lualine").setup({
</span><span style="color:#323232;">	options = {
</span><span style="color:#323232;">		icons_enabled = true,
</span><span style="color:#323232;">		theme = lualine_theme,
</span><span style="color:#323232;">		component_separators = { left = "", right = "" },
</span><span style="color:#323232;">		section_separators = { left = "", right = "" },
</span><span style="color:#323232;">		disabled_filetypes = {
</span><span style="color:#323232;">			statusline = {},
</span><span style="color:#323232;">			winbar = {},
</span><span style="color:#323232;">		},
</span><span style="color:#323232;">		ignore_focus = {},
</span><span style="color:#323232;">		globalstatus = true,
</span><span style="color:#323232;">		refresh = {
</span><span style="color:#323232;">			statusline = 1000,
</span><span style="color:#323232;">			tabline = 1000,
</span><span style="color:#323232;">			winbar = 1000,
</span><span style="color:#323232;">		},
</span><span style="color:#323232;">	},
</span><span style="color:#323232;">	sections = {
</span><span style="color:#323232;">		lualine_a = { "branch" },
</span><span style="color:#323232;">		lualine_b = { empty_section },
</span><span style="color:#323232;">		lualine_c = {},
</span><span style="color:#323232;">		lualine_x = {},
</span><span style="color:#323232;">		lualine_y = { { "diagnostics", sections = { "error", "warn" } } },
</span><span style="color:#323232;">		lualine_z = { "location" },
</span><span style="color:#323232;">	},
</span><span style="color:#323232;">	inactive_sections = {},
</span><span style="color:#323232;">	tabline = {},
</span><span style="color:#323232;">	winbar = {},
</span><span style="color:#323232;">	inactive_winbar = {},
</span><span style="color:#323232;">	extensions = { "fugitive", "nvim-tree" },
</span><span style="color:#323232;">})
</span><span style="color:#323232;">
</span><span style="color:#323232;">local theme = {
</span><span style="color:#323232;">	fill = "TabLineFill",
</span><span style="color:#323232;">	-- Also you can do this: fill = { fg='#f2e9de', bg='#907aa9', style='italic' }
</span><span style="color:#323232;">	head = "TabLine",
</span><span style="color:#323232;">	current = "TabLineSel",
</span><span style="color:#323232;">	tab = "TabLine",
</span><span style="color:#323232;">	win = "TabLine",
</span><span style="color:#323232;">	tail = "TabLine",
</span><span style="color:#323232;">}
</span><span style="color:#323232;">
</span><span style="color:#323232;">vim.o.showtabline = 2
</span><span style="color:#323232;">local tabby_theme = require("highlight").tabby_theme
</span><span style="color:#323232;">require("tabby.tabline").set(function(line)
</span><span style="color:#323232;">	return {
</span><span style="color:#323232;">		line.tabs().foreach(function(tab)
</span><span style="color:#323232;">			local hl = tab.is_current() and tabby_theme.current or tabby_theme.tab
</span><span style="color:#323232;">
</span><span style="color:#323232;">			return {
</span><span style="color:#323232;">				line.sep("", hl, tabby_theme.fill),
</span><span style="color:#323232;">				tab.number(),
</span><span style="color:#323232;">				tab.name(),
</span><span style="color:#323232;">				line.sep("", hl, tabby_theme.fill),
</span><span style="color:#323232;">				hl = hl,
</span><span style="color:#323232;">				margin = " ",
</span><span style="color:#323232;">			}
</span><span style="color:#323232;">		end),
</span><span style="color:#323232;">		line.spacer(),
</span><span style="color:#323232;">		line.wins_in_tab(line.api.get_current_tab()).foreach(function(win)
</span><span style="color:#323232;">			local hl = win.is_current() and tabby_theme.current or tabby_theme.tab
</span><span style="color:#323232;">
</span><span style="color:#323232;">			return {
</span><span style="color:#323232;">				line.sep("", hl, tabby_theme.fill),
</span><span style="color:#323232;">				win.buf_name(),
</span><span style="color:#323232;">				line.sep("", hl, tabby_theme.fill),
</span><span style="color:#323232;">				hl = hl,
</span><span style="color:#323232;">				margin = " ",
</span><span style="color:#323232;">			}
</span><span style="color:#323232;">		end),
</span><span style="color:#323232;">		hl = tabby_theme.fill,
</span><span style="color:#323232;">	}
</span><span style="color:#323232;">end)
</span>
catlover,

git commit -m ‘initial commit’

git commit --amend

git commit --amend

git commit --amend

git commit --amend

git commit --amend

catlover,

All right, fair enough, added a bit more explanation. I’m really bad at determining what others don’t know, so I’m terrible at writing documentation and readme-s. For me everything is obvious, but only because I wrote it, and I’m really bad at figuring out what isn’t obvious for others 😅

catlover, (edited )

I tried to explain most of the things you asked in the second readme update, and also added some minor details in a third update:

gitlab.com/catlover_stuff/dotastats-cli#main-anal…

  1. “Meaning of the numbers: The tens: 1: herald, 2: guardian, 3: crusader, … The ones: 0: 1 star, 2: 2 star, 4: 3 star, 6: 4 star 8: 5 star So for ex.: 36: crusader 4 star” (“The graph could be a bit inaccurate (showing 35.82 here)”)
  2. “The outcome of your lane in the first 10 minutes” … “W: win, L: loss, S: stomp” … “T means tie”
  3. “Which hero you played in the game, the first 3 letters of the hero. Should be read from top to bottom per column”
  4. PARTY: If you played in a party it will print a P, otherwise empty” … “AWARD: Stratz award for your ingame performance. T: top core/support, M: MVP, empty: none”
  5. “Here 25: x 50: x and 100: x means that ‘x’ is calculated using the last 25/50/100 games.”

Edit: thanks for the feedback and pointing out the not so obvious parts, this way its clearer for anyone in the future (I hope :D)

catlover,

an unavoidable dialog pops up to open your gift

catlover,

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

catlover,

heh, youtube could do some fake accounts and spam them with help requests

catlover,

me neither for 90 % of thr comics i see here

catlover,

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

catlover,

last time (~ half year ago) they thaught me this they said chest compression is more than enough. there should be enough oxygen in the lungs and blood till professional help arrives, and as you said most of the time airway is blocked in these situations

also most people are extremely unconfortable to blow air through someones nose/mouth, so it incrreases the number of people that are willing to help

at least sa far as i know

catlover,

do you know anyone who creates content like this but for pos 4/5?

i like BSJ-s style, frequency of contents and stream, and a lot more, and i know thaf most of the things he speaks about are relevant to everyone, but still feel like he speaks from his point of view, which is mostly pos 1-2-3

catlover,

Nice thanks :)

catlover,

Also interesting that the game was so close. Maybe it depend more on things like picks and execution. Or its just the case for this game, sample size is really small :D

  • All
  • Subscribed
  • Moderated
  • Favorites
  • Leos
  • mdbf
  • magazineikmin
  • Youngstown
  • everett
  • rosin
  • slotface
  • thenastyranch
  • ngwrru68w68
  • PowerRangers
  • kavyap
  • cisconetworking
  • tsrsr
  • DreamBathrooms
  • anitta
  • tacticalgear
  • khanakhh
  • Durango
  • ethstaker
  • vwfavf
  • InstantRegret
  • modclub
  • tester
  • cubers
  • GTA5RPClips
  • osvaldo12
  • normalnudes
  • provamag3
  • All magazines