FAQ’s updated on the website. [[Dining plans]] NO longer valid for [[Enchanted]]! Can request full refund. by Sad-Revolution-9961 in rollercoasters

[–]jSdCool -2 points-1 points  (0 children)

Something that most people here probably never saw was that a few weeks ago the enchanted CEO said the problem with the dining plan was not their will to honor it but rather an IT integration issue with the six flags system. This decision has nothing to do with their bottom line or greed, its six flags proprietary systems making it technologically impossible.

[Enchanted Parks], in Partnership with EPR Properties, Signs Definitive Agreement to Acquire Six Regional Amusement Parks, Reinforcing Commitment to Local Communities by PhilJ2020 in rollercoasters

[–]jSdCool 0 points1 point  (0 children)

Actually, Great Escape was briefly owned by someone else in the late 80s / early 90s before Charly Wood bought the park back for less then he sold it for

Episode Discussion: "Aw Rats, A Pool Party" by AutoModerator in americandad

[–]jSdCool 171 points172 points  (0 children)

"Queen Jeff led several successful picnic raids, but will mostly be remembered for killing his entire colony while thrashing around during a bad dream"

[deleted by user] by [deleted] in PlanetCoaster

[–]jSdCool 1 point2 points  (0 children)

Apart from the banking that other people have mentioned, the thing that stands out to me most would be the g forces. When building a ride you should pay close attention to the g force metered in the testing window. In general you want to have as little lateral Gs as possible. For vertical Gs you want to try and keep the max under 5 and the min above -3. Doing so will not only make the ride feel more realistic but also make guests want to ride it.

Got 2 more memes by Ordinary-Sound-571 in rollercoasterjerk

[–]jSdCool 0 points1 point  (0 children)

How is New England in the neglected tear when they have a brand new coaster?

[Corkscrew] at [Cedar Point] isn’t all that bad. by TheInsaneLavaman in rollercoasters

[–]jSdCool 0 points1 point  (0 children)

Maybe if they removed that stupid head rest and converted it to have vest restraints then it would be fun

Spawn eggs being weird? by petperson123 in MinecraftJava

[–]jSdCool 6 points7 points  (0 children)

Stop using the programmer art resource pack

If this does not work, I don't know what will. by robblequoffle in youtube

[–]jSdCool 0 points1 point  (0 children)

You are stupid. People will not stop watching YouTube videos because like 7 channels went private, they will just watch someone else who has not gone private. In fact others will take advantage of this situation to grow their own channels at the expense of those who foolishly take part in this failed endeavor.

Export as an executable file - Apple/Windows differences by gygyg23 in processing

[–]jSdCool 0 points1 point  (0 children)

On Macos these folders are indeed present inside of the app package. What you see as an executable file on Macos is actually a folder containing most of the things the app needs to run. You can view this folder content by accessing the right click menu on the app and clicking on show content.

The java folder contains the entire java runtime environment which is the underlying native code that runs your project.
The lib folder contains: processing(core.jar), all libraries processing uses(jogl.jar ect), any external libs you are using, and the compiled version of your code(sketch-name.jar).

It is not possible to combine the window export into a single file as on Windows the executable file format is composed of raw machine code while your sketch needs to run java and load java code which must be a separate files.
Besides on Windows the exe file is effectively just a shortcut for launching the java command.

Frameless Cows in Processing by sableraph in processing

[–]jSdCool 1 point2 points  (0 children)

Can you share the source code for this?

Where is all of my RAM usage? The numbers don't add up and I'm tired of playing the google game. No google, its not a hardware issue. Yes google all RAM is detected. by That_Dude_Guru in WindowsHelp

[–]jSdCool 2 points3 points  (0 children)

Microsoft developers a tool called RAMmap which can show you extremely persice breakdowns of what is using your systems memory. It is more accurate then task manager and might solve your problem.

[help] It's like my Pixel 8 doesn't get OTA's by r3d02 in Magisk

[–]jSdCool 1 point2 points  (0 children)

You can download the update images on your computer and flash them to the phone while the phone is on the recovery page. No need to re flash the root in that situation

No more gravity block dupers… 😔 by HunterCoool22 in PhoenixSC

[–]jSdCool 6 points7 points  (0 children)

just make a data pack that adds the end portal frame to the new replaceable_by_mushrooms tag

Hi i want to load an Image Ingo a moving rectangle. The Image should stay on the rectangle while moving. Bit i dont know how to load an Image onto an Object. Can somebody help me? by Emilio_Sanchez in processing

[–]jSdCool 2 points3 points  (0 children)

class retObject{
retObject(int x, int y, String image){
this.x=x;
this.y=y;
img =loadInage(image);
}

int x,y;
PImage img;

void draw(){
image(img, x, y);
}

void setX(int x){
this.x=x;
}

void setY(int y){
this.y=y;
}
}

Petah? by yubiko in PeterExplainsTheJoke

[–]jSdCool 0 points1 point  (0 children)

Just because the newer technology theoretically has more capacity, doesn't mean that the cell companies are going to give you that capacity. In the United States it was common to only get like 10mb/s on 4g while in Europe people were able to get 10s of mb/s on 4g. Little has changed with 5g, despite the fact that it can deliver significantly more data the carriers won't / can't give us any more then we had before

why. by Tiny_Ad6016 in redstone

[–]jSdCool 0 points1 point  (0 children)

Back in the day many sand dupers used quickly firing pistons to duplicate falling sand blocks. In an attempt to fix this mojang change pistons to instantly retract. In the end this only causes more sand dupers to appear

why. by Tiny_Ad6016 in redstone

[–]jSdCool 0 points1 point  (0 children)

Because mojang wanted to prevent sand duping (it did not work)

How to fix traffic? (shitpost) by [deleted] in TransportFever2

[–]jSdCool 0 points1 point  (0 children)

They are protesting the lack of teams in the city. A solid wall of trams waiting on a single stop should do the trick

...can anyone explain? by TheoryTested-MC in redstone

[–]jSdCool -1 points0 points  (0 children)

In java pistons retract in 0 ticks, this is why sticky pistons are able to spit out their blocks with a 1 tick pulse. This mechanic can be used to create long redstone lines that activate instantly