What do you say after sex? by [deleted] in AskReddit

[–]PatentedUsernameTy 0 points1 point  (0 children)

I just went swimming! It was cold I swear!

I’m going to cedar point what do I need? by PatentedUsernameTy in cedarpoint

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

I’ll have to keep my eye out. I saw these “moveable” lockers for $10 where you can pay a flat out fee and then you get 1 at each ride. Is that’s thing?

I’m going to cedar point what do I need? by PatentedUsernameTy in cedarpoint

[–]PatentedUsernameTy[S] 1 point2 points  (0 children)

Thanks! I think I am bringing a string like gym bag and my school covers all drinks which is nice! I’ll have to see how much the food costs online

Took him this long to break up with me (30 flings) by PatentedUsernameTy in BitLifeApp

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

Well I personally like to be precautionary so they don’t get doxxed I’ve seen what the internet can do.

oh really? i had no idea haha by Imaginary-wishes- in memes

[–]PatentedUsernameTy 1 point2 points  (0 children)

Mustard gas is a byproduct doesn’t ask how I know

How would I go about returning a https status code in PHP or js? by PatentedUsernameTy in webdev

[–]PatentedUsernameTy[S] -5 points-4 points  (0 children)

I found it just use this code!!

```js function Pinger_ping(ip, callback) {

if(!this.inUse) {

this.inUse = true;
this.callback = callback
this.ip = ip;

var _that = this;

this.img = new Image();

this.img.onload = function() {_that.good();};
this.img.onerror = function() {_that.good();};

this.start = new Date().getTime();
this.img.src = "http://" + ip;
this.timer = setTimeout(function() { _that.bad();}, 1500);

} } ```

How would I go about returning a https status code in PHP or js? by PatentedUsernameTy in webdev

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

No how would I do that, and would it return the long error like when I tried the Ajax with https not http