Skip to content

Instantly share code, notes, and snippets.

View Eng3l's full-sized avatar
🤘
Ready to rock

Angel Sánchez Eng3l

🤘
Ready to rock
View GitHub Profile
@nitaku
nitaku / README.md
Last active April 23, 2024 09:25
Leaflet with ESRI satellite tiles

An example that shows an ESRI's satellite layer with Leaflet.js. A lot of different tile services are compatible with Leaflet: click here for a list with live previews.

@CarlEkerot
CarlEkerot / FileClient.java
Created May 14, 2012 10:43
Simple java file transfer
package client;
import java.io.DataOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.Socket;
public class FileClient {
private Socket s;