Really stupid things that people have said about Modded MC(Off topicness makes moderators tired)

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Is this a good idea?

  • Yes

    Votes: 66 18.2%
  • No

    Votes: 18 5.0%
  • if people don't get out of control

    Votes: 68 18.8%
  • POTATOES

    Votes: 210 58.0%

  • Total voters
    362
Status
Not open for further replies.
2hBEkLN.png
You better not fake signatures :p
But I like your signature, so I can require you to write it for me. If you do not give me your signature, you are a self-entitled fuck. (retrieved from Reddit, 2014)
 
It will not hinder the user if they have no internet connection.
@CoolSquid

How do you test for an internet connection to avoid the massive timeout lag? All I can think of is this:

Code:
  private static boolean testInternetConnection() {
     try {
       Process process = Runtime.getRuntime().exec("ping -c 1 www.google.com");
       int returnVal = process.waitFor();
       return returnVal == 0;
     }
     catch (IOException e) {
       e.printStackTrace();
       return false;
     }
     catch (InterruptedException e) {
       e.printStackTrace();
       return false;
     }
   }

And that exec() call is not one I want to try, given how it is one hell of a security hole.


(retrieved from Reddit, 2014)
Link please?
 
@CoolSquid

How do you test for an internet connection to avoid the massive timeout lag? All I can think of is this:

Code:
  private static boolean testInternetConnection() {
     try {
       Process process = Runtime.getRuntime().exec("ping -c 1 www.google.com");
       int returnVal = process.waitFor();
       return returnVal == 0;
     }
     catch (IOException e) {
       e.printStackTrace();
       return false;
     }
     catch (InterruptedException e) {
       e.printStackTrace();
       return false;
     }
   }

And that exec() call is not one I want to try, given how it is one hell of a security hole.
connection.setConnectTimeout(5000);
The code may be found here.
Link please?
All proof is removed by a moderator.
 
  • Like
Reactions: 1SDAN
And that exec() call is not one I want to try, given how it is one hell of a security hole.
And it probably breaks outside of Windows.

You can open a connection from within Java code and set the timeout to some low value. And I think it's not even gonna wait for the timeout if no connection is there.
 
Think this will further impel people to update (the ones who simply ignore the chat message)?
Basically, if one or more mods is outdated, it creates a little marquee at the top of the page which scrolls through the outdated mods, showing the current (here "Source Code") and newest (public) versions.
Like the chat log, it can be disabled with a command, which keeps it disabled until I update again (meaning you fell back another version relative to latest).
cUX8iLN.png

vxvDNCw.png
 
There was a guy posting a antisemitic and racist post supporting reposts in the stop mod reposts thread. I have screenshots, but it's too inappropriate to show.
 
  • Like
Reactions: 1SDAN
Lol. That looks like a really sad attempt at trying to discredit people. It makes the poster look really stupid.
 
  • Like
Reactions: 1SDAN
Despite claims to the contrary, they are not always throwaways. CoolSquid blocked out the data on this account, but most of the accounts that harass me have existed for months or years.
I guess those people are not as much of obvious trolls than that guy in the picture.
 
Despite claims to the contrary, they are not always throwaways. CoolSquid blocked out the data on this account, but most of the accounts that harass me have existed for months or years.
The account was 4 months old. Only 5 posts though.
 
The problem is that everyone can create a smurf account and use it anonymously until it gets banned.
 
Status
Not open for further replies.