Skip to content

Instantly share code, notes, and snippets.

View lazarodev's full-sized avatar
🎯
Focusing

Fernando lazarodev

🎯
Focusing
View GitHub Profile
@brygom
brygom / gtdeptos.sql
Created February 14, 2019 03:06
Guatemala departamentos y municipios
/**
* Poblado de datos
*/
SET FOREIGN_KEY_CHECKS = 0;
SET AUTOCOMMIT = 0;
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
START TRANSACTION;
INSERT INTO geo_departamentos VALUES (null, 'Alta Verapaz');
@bdbergeron
bdbergeron / JsonRpcRequest.java
Created August 14, 2014 21:02
JSON-RPC and Volley
import com.android.volley.Response;
import com.android.volley.toolbox.JsonRequest;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.UUID;
public abstract class JsonRpcRequest<T> extends JsonRequest<T> {
private static final String JSONRPC_PARAM_ID = "id";