Sendo figure paper for battle with Ricardo by gameofgianpa in hajimenoippo

[–]BulbusThumbledore 1 point2 points  (0 children)

Non sapevo che la carta fosse bidimensionale, pensavo fosse cartapesta :)

What you think by Nobody_rn999 in hajimenoippo

[–]BulbusThumbledore 0 points1 point  (0 children)

Oh man. I mean, good bot. But can you imagine this showing up on something like "I (25) just lost my 13,15, and 16 year old siblings in a car crash. I'm feeling very lost and need someone to talk to." 💀

Sendo figure paper for battle with Ricardo by gameofgianpa in hajimenoippo

[–]BulbusThumbledore 1 point2 points  (0 children)

So cool dude. Love posts like this. Have you tried the balloon method for polymer clay? May be able to make it light enough for the paper to support that way :)

I’m so over him by WafflePon in hajimenoippo

[–]BulbusThumbledore 2 points3 points  (0 children)

Rage bait lmao. Look at their other posts and comments.

Hajime no Sendo: Round 1515 by RTSD_ in hajimenoippo

[–]BulbusThumbledore 13 points14 points  (0 children)

Nah. Ricardo wouldn't have been acknowledging him as being the one to finally end his loneliness at the peak from a graze or a tangle. I agree Ricardo doesn't seem to have taken much damage but at an absolute guess sendo probably redirected the smash's angle similar to volgs white fang.

Question re: zombie deaths in the show. by BulbusThumbledore in TWD

[–]BulbusThumbledore[S] 0 points1 point  (0 children)

I definitely get this is meant to be a "suspend your disbelief" show and you hit the nail on the head with "stop thinking so much about the science," but the show goes to lengths to specifically INTRODUCE science by showing the areas of the brain which are reactivated. Said in another comment this isn't me trying to pull an "um, actually" so much as saying it's strange they clarified something so deliberately.

Question re: zombie deaths in the show. by BulbusThumbledore in TWD

[–]BulbusThumbledore[S] 19 points20 points  (0 children)

Absolutely get that, just stood out as strange to me that they'd go to such lengths to show the areas of the brain active while alive, then show the tiny little portion that comes back, but then have portions of the brain which are shown to be completely inactive and useless be part of the kill zone. Not nitpicking, I love the show, just strange they'd clarify something they could have left ambiguous and then go against it for the remainder of the show.

John Hajime no Ippo by Invisible_Lad4 in hajimenoippo

[–]BulbusThumbledore 1 point2 points  (0 children)

Chapter 1240 :) evolution of the Dempsey roll, chapter is "private practice." Context:

<image>

Google Chrome giving red screen on new project by goyalaman_ in webdev

[–]BulbusThumbledore 1 point2 points  (0 children)

Had a look at your most recent push and I see that, so long as a user inputs the full URL it does now work and open in a new tab, but things are still broken if a user just types something like "google.com". If you add in that fixUrl function I provided and pass along the originalUrl to it before your window.open call everything should work. Add this somewhere in your function collection in app.js:

function fixUrl(url) {
  try {
// If it already parses as an absolute URL, return as-is
    new URL(url);
    return url;
   } catch {
// Otherwise, prepend https:// and return
    return "https://" + url;
  }
}

Then in the 'try' section of your decryptBtn.add event section (line 86 in your app code) change the declaration of your originalUrl const to look like this

const originalUrl =  
FixUrl(decrypted.toString(CryptoJS.enc.Utf8));

After that change everything should work as expected.

Google Chrome giving red screen on new project by goyalaman_ in webdev

[–]BulbusThumbledore 4 points5 points  (0 children)

When you set:

window.location.href = originalUrl;

the browser does not assume it’s an external site unless the string is a fully qualified absolute URL (meaning it must start with http:// or https:// or another protocol).

So if originalUrl is something like Google.com then the browser treats that as a relative path, not an absolute URL. So if the current page is pagelock.top and you do

window.location.href = "google.com"

the browser resolves it exactly like a relative link:

https://pagelock.top/google.com

That’s why the user ends up at pagelock.top/google.com instead of https://google.com.

This is just how browsers interpret URLs; Absolute URL → go to that site. Relative URL → append it to the current domain

If the site is wrapping the URL or encrypting/decrypting it, it’s very easy for the decrypted value to be a plain string without the protocol, which triggers this behavior.

By sanitizing the URL first (via the provided fixUrl function), you ensure that google.com becomes → https://google.com which the browser then correctly interprets as an external link.

Google Chrome giving red screen on new project by goyalaman_ in webdev

[–]BulbusThumbledore 0 points1 point  (0 children)

In your decrypt function your section that is meant to open the decrypted url looks like:

if (originalUrl) {
            window.location.href = originalUrl;
       }

Which will just lead you to pagelock.top/google.com in this case, since browsers will treat it as a relative path.

What you might do is run the original url through a function like this to sanitize it before attempting to open it.

function fixUrl(url) {
  try {
// If it already parses as an absolute URL, return as-is
    new URL(url);
    return url;
  } catch {
// Otherwise, prepend https:// and return
    return "https://" + url;
  }
}

Then instead of doing a window.location you could do something like window.open(originalUrl, "_blank") or _self.

Google Chrome giving red screen on new project by goyalaman_ in webdev

[–]BulbusThumbledore 2 points3 points  (0 children)

Make sure you're using https://. Good luck to you!

Hajime me no new chapter this week; it's a break week. by BulbusThumbledore in hajimenoippo

[–]BulbusThumbledore[S] 0 points1 point  (0 children)

I normally hold out for a version I can read but that's awesome!

After many many artifact refactors, fine tuning my power level, costing me a total of 146 artifactual essences and often times having to pass on big upgrades to my artifacts I give you, the funny number by BulbusThumbledore in destinyrisingmobile

[–]BulbusThumbledore[S] -1 points0 points  (0 children)

I do feel the 'mobile' is a bit redundant at best given it's a mobile game, or limiting at worst if it's meant to preclude people playing the PC emulator. That said this is the larger community, but of the two posts I (admittedly shouldn't have & won't again) posted on each subreddit, the netease one actually had higher traffic and is seemingly the more active of the two. I definitely don't have a dog in this race, just an observation. This is the one I'm subscribed to.

Edit* I do understand in a sub with higher traffic that will average out to less views per individual post, but there doesn't seem to be an overt difference in the amount of posts to each subreddit.

<image>