Skip to content

Instantly share code, notes, and snippets.

View jumar's full-sized avatar

jumar jumar

  • Montreal, Canada
View GitHub Profile
@jumar
jumar / gist:9200840
Last active September 29, 2025 20:15
Send magic wol packet java
import java.io.*;
import java.net.*;
public class WakeOnLan {
public static final int PORT = 9;
public static void main(String[] args) {
if (args.length != 2) {
@jumar
jumar / gist:6381012
Created August 29, 2013 17:31
Strip file name from its extension. This expression will remove the last dot followed by one or more characters.
String fileNameWithOutExt = "test.xml".replaceFirst("[.][^.]+$", "");