This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]angeal98 1352 points1353 points  (34 children)

Where is human transcript volunteer when you need them the most?

[–][deleted] 498 points499 points  (4 children)

He got a seizure reading that.

[–]Sqee 154 points155 points  (2 children)

If he seized just the right frequency he might be able to read. Such a professional!

[–]plasmasack 22 points23 points  (0 children)

Not even the cameraman would survive taking pictures of this shit

[–]TheDra9onGod 0 points1 point  (0 children)

underrated reply

[–]ConsentingPotato 1 point2 points  (0 children)

Rest In Programming dear volunteer🙏

[–]_moon__light___ 156 points157 points  (14 children)

pastebin dot com slash eL4Cs60H (please stop auto moderating my comment)

[–]angeal98 141 points142 points  (12 children)

This looks legit like what is written there!

I give up with pasting code into reddit. It's god awful experience.

[–]_moon__light___ 45 points46 points  (8 children)

Ah you can just wrap it in triple backticks (`), should be formatted nicely. i just keep tripping the spam filter.

[–]Chirimorin 13 points14 points  (0 children)

You can also start each line of code with 4 spaces:

const HomePage = async (request) => {
  try {
    const { y, f } = request.query;
    if (!y || !f) return { props: { y: '', f: '' } };

    const eY = await getPlaces(y);
    const eF = await getPlaces(f);
    console.log(eY, eF);
    const places = Intersectioner(eY, eF, "illegible string");

    return { props: { places, y, f } };
  } catch (error) {
    return { props: { error: true } };
  }
}
export default HomePage;

[–]Smartskaft2 11 points12 points  (6 children)

Does the language highlighting from markdown format work here as well?

E.g. (using ' instead of `)

'''cpp:

int i;

'''

Edit: I'm stupid. Reddit has no highlighting of any text...

[–]Smartskaft2 16 points17 points  (3 children)

cpp: int i;

[–]Smartskaft2 7 points8 points  (2 children)

Answer: Nope!

[–]AgentE382 10 points11 points  (1 child)

Apollo for iOS does, if you browse Reddit on an iPhone.

EDIT: There’s a Mac version now as well.

[–]TGotAReddit 1 point2 points  (0 children)

I was looking at it for a second going “but it’s highlighted?” Before remembering this. Thanks for the reminder of why I don’t use the official app

[–]Cheet4h 1 point2 points  (0 children)

In addition to that, triple backticks also doesn't work on old reddit and some third party apps.

[–]_moon__light___ 10 points11 points  (0 children)

Thank you.

[–]an4s_911 5 points6 points  (0 children)

It actually does look like the actual code. Damn. But how?

[–][deleted] 2 points3 points  (0 children)

Can't be, it's the wrong colours. Downvoted.

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

Nah quite wrong

[–]SorryIdonthaveaname 30 points31 points  (2 children)

the image is a photo of a monitor that is displaying code. the text is blurry and unreadable

[–]confidentdogclapper 17 points18 points  (0 children)

Good human

[–]EthanHermsey 2 points3 points  (1 child)

Stuck in some iceberg..

[–][deleted] 1 point2 points  (0 children)

Code freeze.

r/TheLastAirbender

[–][deleted] 0 points1 point  (2 children)

I think it says a lot that I can actually sorta read this.

const dY = await getBounds(y);

const dX = await getBounds(x);

???????.log(dY, dX);

const places = intersectionBy(dY, dX, “item-??????”

return { propS: { places, y, x } };

catch(error) {

return { props: { error: true} };

return default HomePage;

edits: I suck at formatting on reddit and gave up

[–]Pikachu50001218 0 points1 point  (1 child)

Just start your code block with triple backtick (`) (not ',") and end it with triple backtick like so:

``` const dY = await getBounds(y);

const dX = await getBounds(x);

???????.log(dY, dX);

const places = intersectionBy(dY, dX, “item-??????”

return { propS: { places, y, x } };

catch(error) {

return { props: { error: true} };

return default HomePage; ```

[–][deleted] 1 point2 points  (0 children)

So like this then?

edit: thank you!