This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ flatpak run com.valvesoftware.Steam | |
INFO:root:https://github.com/flathub/com.valvesoftware.Steam/wiki | |
INFO:root:Will set XDG dirs prefix to /home/skenlon | |
INFO:root:Overriding TZ to Pacific/Auckland | |
Running Steam on org.freedesktop.platform 20.08.8 64-bit | |
STEAM_RUNTIME is enabled automatically | |
Pins up-to-date! | |
Steam client's requirements are satisfied | |
WARNING: Using default/fallback debugger launch | |
/home/skenlon/.local/share/Steam/ubuntu12_32/steam |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
import java.net.*; | |
import java.util.*; | |
public abstract class IRCMessageLoop implements Runnable { | |
Socket server; | |
OutputStream out; | |
String theChannel; | |
IRCMessageLoop(String serverName, int port) { |