Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @id iitc-plugin-CSV@pad
// @name IITC plugin: Ingress KML Exporter
// @category Keys
// @version 1.0.20150105.02
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://gist.github.com/pad92/ef6a90312ba4be7e9103/raw/ac0d4668258ca722d105c2ef590bfa7d33f6b1aa/iitc-plugin-ingressKML-exporter.user.js
// @downloadURL https://gist.github.com/pad92/ef6a90312ba4be7e9103/raw/ac0d4668258ca722d105c2ef590bfa7d33f6b1aa/iitc-plugin-ingressKML-exporter.user.js
// @description Exports portals currently in view for use with Google Map ( KML Format ).
// @include https://www.ingress.com/intel*
@DominiqueComte
DominiqueComte / exportDDL.sql
Last active August 22, 2024 03:18 — forked from krisrice/exportDDL.sql
export an Oracle schema DDL with SQLcl
script
var CopyOption = Java.type("java.nio.file.StandardCopyOption");
var fs = java.nio.file.FileSystems.getDefault();
var f = java.nio.file.Files;
// put all files here >>>
var ddlPath = fs.getPath('ddl');
if ( ! f.exists(ddlPath)) {