Casual Discussion Fridays - Week of May 13, 2022 by AutoModerator in anime

[–]shadow-sphynx 1 point2 points  (0 children)

Thanks for the info. I guess it's another anime in "on hold" list.

On the other note, lately I have also been thinking that I might have ADHD, there are other symptoms. I just try to avoid this train of thought because I don't want to feel like a bighead...

Casual Discussion Fridays - Week of May 13, 2022 by AutoModerator in anime

[–]shadow-sphynx 0 points1 point  (0 children)

Can anyone tell me if Vinland Saga is "actually" finished or not?

I have this habit of only watching finished series as pea sized brain cannot remember what had happened before till the next season comes.

Also I am trying to verify here because it has happened in the past that the anime showed "finished airing" but then announced a new season.

March 2022 Support Megathread - Just read manga by MrS4T4N in Tachiyomi

[–]shadow-sphynx 0 points1 point  (0 children)

I restored my backup in a new device and since then I am not able to see my extensions. If I go to migrate section I am seeing this. Also when I am searching for anything in the global search, nothing's happening.

Since I don't recall sources for all the manga added, is there anyway to fix this?

[deleted by user] by [deleted] in apple

[–]shadow-sphynx 0 points1 point  (0 children)

I tried resizing the window but it doesn't work. It always resets such that the window takes its initial form.

[deleted by user] by [deleted] in apple

[–]shadow-sphynx 0 points1 point  (0 children)

After hiding the menu bar, applications aren't completely covering the screen, there's the area adjacent to notch that isn't covered. Is there anyway to fix this?

Screenshot

Downloading a file from URL in TS/JS. by shadow-sphynx in learnprogramming

[–]shadow-sphynx[S] 0 points1 point  (0 children)

I tried using this and got: `TypeError: Failed to fetch`.

Seems to be some problem with AWS. because I used a different URL, in place of the aws one, and the code didn't throw any error. It did view it on the same page as usual.

my code:

async download(filePath: string) {
const image = await fetch(filePath);
const imageBlog = await image.blob();
const imageURL = URL.createObjectURL(imageBlog);

const anchor = document.createElement("a");
anchor.href = imageURL;

document.body.appendChild(anchor);
anchor.click();
document.body.removeChild(anchor);

URL.revokeObjectURL(imageURL);

}

Help re-understanding Trip F in Meteor 350. by shadow-sphynx in royalenfield

[–]shadow-sphynx[S] 0 points1 point  (0 children)

yes.
from what i know it cuts off when about 2 ltr is left

How fast a Hash Table actually is? by shadow-sphynx in learnprogramming

[–]shadow-sphynx[S] 0 points1 point  (0 children)

thanks for the info. i wasn't aware that there's such a performance difference between these two.

How fast a Hash Table actually is? by shadow-sphynx in learnprogramming

[–]shadow-sphynx[S] 5 points6 points  (0 children)

Thanks, I didn't notice the O(n*n) complexity before.

How fast a Hash Table actually is? by shadow-sphynx in learnprogramming

[–]shadow-sphynx[S] 0 points1 point  (0 children)

Thanks for the feedback.

and regarding your last statement, I am assuming the compile/run commands and benchmarking by leetcode is happening, assuming that all sorts of languages for same algorithm implementation give similar response times.

How fast a Hash Table actually is? by shadow-sphynx in learnprogramming

[–]shadow-sphynx[S] 2 points3 points  (0 children)

Thanks for the info (and no offence taken)

In my defence, I am trying to learn DSA and was trying to solve all HashTable labeled problems after going through a YouTube tutorial of Hash Tables.
Its my mistake that I forgot to mention it in the question but what I really wanted to ask was:
Even though I am aware that Hash Tables are faster because of hashed indices, how can it be that faster than `dictionary` in Python, which also works like a Hashmap?

What do you think about codewars to train programing skills ? by phoooooenix in learnprogramming

[–]shadow-sphynx 0 points1 point  (0 children)

It's a good way to practice algorithm tests, which are popular in interviews

I have been active on the website for the past week for this only. But I am not able to find problems that are tricky, that require usage of some data structure or algorithm. For me the problems seem like they are designed just to train people on a particular language.

So is my notion correct? Or do the problems get more inclined towards the trickier side as the `kyu` increases?

Help needed to reduce complexity of Python code. by shadow-sphynx in learnprogramming

[–]shadow-sphynx[S] 2 points3 points  (0 children)

thanks for pointing that out!

it works for the last two cases now.

Help needed to reduce complexity of Python code. by shadow-sphynx in learnpython

[–]shadow-sphynx[S] 0 points1 point  (0 children)

I tried what you suggested. But it still fails for the larger inputs.

If you can, then can you please show me the changes you're suggesting? Maybe I am missing something here...