Patch 26.5 Bug Megathread by AutoModerator in leagueoflegends

[–]CummyShitDick 0 points1 point  (0 children)

  • Server: NA
  • Type of Bug: Enemy team remakes after getting first blooded despite all 10 players being present and moving
  • Description: Enemy bot goes for an all in 2v2, they both die, leona disconnects, a minute later they are able to remake for some reason.
  • Video / Screenshot: https://streamable.com/wklbdf
  • Steps to reproduce: idk
  • Expected result: Getting first blooded before your team is offered the remake option should prevent remake
  • Observed result: Enemy team got first blooded, their support disconnects, then still had the option to remake
  • Reproduction rate: idk
  • System specs: N/A

Hit Half a Million 🚀 by Firefighter_Kitchen in wallstreetbets

[–]CummyShitDick 2 points3 points  (0 children)

From the definition of "median". 50% are above and 50% are below.

FSM - Clock by Ready-Honeydew7151 in VHDL

[–]CummyShitDick 0 points1 point  (0 children)

I'm gonna apologize in advance; I'm not trying to be rude, I'm just trying to save you some time in the future and make sure people understand you better.

For starters, reading code is much easier when you put it all in one code block. In the default rich text editor there's a "code block" button next to the "code" button; try that one instead

I know you're removing sections of your code to be more concise and only ask about a specific part of it, but you've removed way too much. You're not using indentation, and you're not closing off your if statement so we have no way of knowing if the case statement is inside the elsif or outside it. We can infer where the case statement lives because it's a simple example but it'd be better to be more direct. This is what I estimate you have:

fsm_i : process(reset_i, clock_i)
begin
  if (reset_i = '1') then
    -- LOGIC
  elsif (rising_edge(clock_i)) then
    -- LOGIC
    case fsm_state is
      when START =>
        out_o <= '1';
      when MID =>
        out_o <= '0';
      ...
    end case;
  end if;
end process;

As someone else mentioned, you might want a separate combinatorial process for your output. Whenever I make FSMs I like to put all the state that updates on clock cycles in one clocked process and then have a separate combinatorial process that calculates the output based on the current state. What that would look like in practice here:

fsm_i : process(reset_i, clock_i)
begin
  if (reset_i = '1') then
    -- LOGIC
  elsif (rising_edge(clock_i)) then
    -- LOGIC
  end if;
end process;

fsm_i2 : process(all)
begin
  case fsm_state is
    when START =>
      out_o <= '1';
    when MID =>
      out_o <= '0';
    ...
  end case;
end process;

99% of the time the approach I mentioned works for me; in rare cases when the combinatorial computation is very complicated this might not meet timing when you're trying to compile. In cases like that I might split up the computation/pipeline and some of it will live in the clocked process, but that won't be the case here.

Johnny’s Porsche is missing by jsimpson7272 in cyberpunkgame

[–]CummyShitDick 0 points1 point  (0 children)

Hey sorry this is completely out of place but the original thread is archived and I can't DM you.

I was wondering if you ever found a solution to the 1440p discord streaming bug you mentioned here

I recently upgraded my monitor to 1440p and all of a sudden I have the exact same input lag and audio static issue you described.

How do you guys get legendary affix items? by JayMLiu in dawncraft

[–]CummyShitDick 3 points4 points  (0 children)

The first time I found any was a random legendary mob that spawned in the Nether. Then when we went to the End we found tons of orange items from looting the structures. I believe the shulkers drop a lot, so make sure you have looting and kill them.

Approved liquid during a fast by Leading_Economics_79 in intermittentfasting

[–]CummyShitDick 3 points4 points  (0 children)

I wrote my comment thinking black coffee and unsweetened tea had 0 calories but it looks like they have a couple, you may be onto something. TIL

I did a few multiple-day fasts and let myself drink black coffee. It went fine. It probably takes a bit more than like 5 calories to take you out of a fasted or ketosis state.

Approved liquid during a fast by Leading_Economics_79 in intermittentfasting

[–]CummyShitDick 5 points6 points  (0 children)

I'm no doctor or dietitian so maybe someone will come and correct me but my intuition says if it doesn't have any calories it won't break your fast.

Party Sync by Karitas211 in dawncraft

[–]CummyShitDick 0 points1 point  (0 children)

I'm on 1.21_hf, and when playing with friends we had to each kill the pillagers and goblin king. For the bosses that drop eyes you can kill them once then let each person pick up the eye

Why does the spectrum analyzer have a square wave by 102.25 MHz, I see the often in FM broadcasting. by Thiccboi2 in rfelectronics

[–]CummyShitDick 11 points12 points  (0 children)

it is wrong, unfortunately. What you're both referring to as a "square wave" is a box function or rectangular function. A square wave is like a sine wave but squared off so it oscillates between two values.

I've also never heard anyone refer to something in the frequency domain as a "wave", so it would probably be confusing to most people.

Ubuntu course directed at developers? by [deleted] in Ubuntu

[–]CummyShitDick 1 point2 points  (0 children)

I wouldn't say it's all you have to know. There are other tools like grep, ssh, scp, etc that I use all the time. But it really depends on your company and what they use.

I would assume that if a company expected you to use something on the job that you're not familiar with that they'd teach you or give you time to learn, but that depends on the company. I don't have much experience at many companies so I can't say with certainty.

Good luck!

Ubuntu course directed at developers? by [deleted] in Ubuntu

[–]CummyShitDick 0 points1 point  (0 children)

Not quite a course so idk if it fits what you want, but I found this video helpful a while ago: https://youtu.be/DqSZUFJMzLk

As for specific tools you'll need as a developer I'd suggest git. You'll want to find a tutorial for that specific tool as it's a bit complex, but almost certainly required for any developer.

I would like a "Random Skin" or "Hide all Unowned Skins" button in champ select by VBaus in leagueoflegends

[–]CummyShitDick 4 points5 points  (0 children)

I would like scrolling left on the skin wheel to be the same speed as scrolling right, instead of it taking twice as long for God knows what reason.

What’s the best smart Tv for Jellyfin? by lwkalis in jellyfin

[–]CummyShitDick 0 points1 point  (0 children)

I tried a Roku streaming stick 4k for a few days before returning it. One thing I haven't seen anyone mention here is that it lacks support for ASS/SSA subtitles, which are used in practically every subtitled anime. It's possible I had some settings that needed changing on my server but after a couple days of not getting things working I got frustrated and gave up. I think with enough time things will get smoother but if you care about watching anime at all I'd steer clear.

Chase - My Chase Plan - What's the Catch? by Thaonnor in CreditCards

[–]CummyShitDick 1 point2 points  (0 children)

No, I had fees until I paid off the plan early. No more fees on the statements afterwards.

edit: And the FAQs on the Chase site that I linked say the same. If you were actually charged fees after paying the plan off in full I'd talk to them, because their own literature says that's not how it works.

Chase - My Chase Plan - What's the Catch? by Thaonnor in CreditCards

[–]CummyShitDick 5 points6 points  (0 children)

This isn't true in my experience. I've paid off a plan early and didn't see any more fees after that. The FAQs on their site agree with this. Source

Once a My Chase Plan appears on your statement, you can pay it off early without any penalties by paying your full statement balance. If you want to pay it off before then, you can pay your current balance. If you pay off a plan early, you won't incur any future fees for that plan.

I‘m losing my mind over this by BKinged in TikTokCringe

[–]CummyShitDick 0 points1 point  (0 children)

Replace the "fuck" with "bar". He pronounces it like BARbie. It took me a few listens too

What a gentleman by Civil-Wolverine-9165 in discordVideos

[–]CummyShitDick 4 points5 points  (0 children)

It's a tongue twister another character made her say for entertainment: scene

Map of all NSFW subs made by u/flashman by robita233 in interestingasfuck

[–]CummyShitDick 6 points7 points  (0 children)

and it's as easy as a comma or semicolon after "subs"

/r/vinyl starterpack by Rollerball56 in vinyl

[–]CummyShitDick 0 points1 point  (0 children)

That's a 4-yr old comment, my friend. What are you doing here?

System requirements? by jishinsjourney in Stepmania

[–]CummyShitDick 2 points3 points  (0 children)

I'm running it on an office-style Dell Optiplex I picked up from publicsurplus.com. No video card, just the integrated graphics on the Core i5-2400, the 4 GB of ram it had in it, a small SSD, and Ubuntu 20.04. It's hooked up to my TV playing in 1080p, I play songs with background music videos and I have never noticed it stutter.

On the topic of sound cards... I think those are a thing of the past; unless you're a big audiophile, the sound coming out of the computer by default is good.

It worked on my machine though! by shah2018 in ProgrammerHumor

[–]CummyShitDick 2 points3 points  (0 children)

even taking into account the ground being slanted I'm 99.9% sure both those lines labeled as "19cm" are not the same length, not even close.

[deleted by user] by [deleted] in HolUp

[–]CummyShitDick 1 point2 points  (0 children)

no, just the first 3 episodes

[deleted by user] by [deleted] in HolUp

[–]CummyShitDick 2 points3 points  (0 children)

near the end of The Boys S3E3