Sadly, Github Gist doesn't support subdirectories. Here's the structure :
test_flame/
├── assets/
│ ├── images/
│ │ └── tiles.png
│ └── tiles/
│ ├── level.tmx
│ └── tiles.tsx
This application is intended for the private use of its developer. Any unauthorized users who connect to this service should have no expectation of privacy or protection of their data. |
Sadly, Github Gist doesn't support subdirectories. Here's the structure :
test_flame/
├── assets/
│ ├── images/
│ │ └── tiles.png
│ └── tiles/
│ ├── level.tmx
│ └── tiles.tsx
public class Neiox extends JFrame { | |
private static final long serialVersionUID = 1L; | |
public static final String TITLE = "%d nombre(s) présent(s)"; | |
public static final int MIN = 0; | |
public static final int MAX = 9999; | |
private List<String> data; | |
public Neiox() throws IOException, URISyntaxException { |
package fr.skyost.bitbucket; | |
import java.io.BufferedReader; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.nio.charset.StandardCharsets; | |
import java.util.regex.Pattern; |
package fr.skyost.rating; | |
import org.bukkit.Bukkit; | |
import org.bukkit.event.EventHandler; | |
import org.bukkit.event.Listener; | |
import org.bukkit.event.player.PlayerJoinEvent; | |
import org.bukkit.plugin.java.JavaPlugin; | |
public class AskRating extends JavaPlugin implements Listener { | |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<configuration> | |
<name>Salle test</name> | |
<computers> | |
<computer> | |
<name>PC 1</name> | |
<ip>192.168.0.1</ip> | |
<port>4444</port> | |
</computer> | |
<computer> |
package fr.isn.bqq.killeleve; | |
import sun.jvmstat.monitor.MonitoredHost; | |
import sun.jvmstat.monitor.MonitoredVm; | |
import sun.jvmstat.monitor.MonitoredVmUtil; | |
import sun.jvmstat.monitor.VmIdentifier; | |
public class KillEleve { | |
public static final void main(final String[] args) { |
package fr.hdelaunay.webcam; | |
import javax.imageio.ImageIO; | |
import javax.swing.JFileChooser; | |
import javax.swing.JFrame; | |
import com.github.sarxos.webcam.Webcam; | |
import com.github.sarxos.webcam.WebcamPanel; | |
import com.github.sarxos.webcam.ds.ipcam.IpCamAuth; | |
import com.github.sarxos.webcam.ds.ipcam.IpCamDeviceRegistry; |
package xyz.algogo; | |
import java.util.Scanner; | |
/** | |
* <h1>Infinite Loop</h1> | |
* <p>This is a beta feature : there are still remaining some bugs ! | |
* <br><b>PS :</b> Sorry for indentation !</p> | |
* | |
* @author Skyost. |
/** | |
* An update checker based on Github. | |
* <br>The file "version.update" must contain a valid version. | |
* | |
* @author Skyost. | |
* @see <a href="https://gist.github.com/Skyost/e3389e6f40642785fccc">The gist's link</a> or the <a href="http://paste.skyost.eu/skyost-5554ebf124a9c">paste's link</a>. | |
*/ | |
public class GithubUpdater extends Thread { | |