Skip to content

Instantly share code, notes, and snippets.

View RicardoGeek's full-sized avatar
💭
Im coding (no matter when you read this)

Ricardo Enrique RicardoGeek

💭
Im coding (no matter when you read this)
View GitHub Profile
@RicardoGeek
RicardoGeek / XmlUtils.java
Last active October 21, 2020 08:37
XmlUtils
package com.ricardogeek.soap.security;
import org.apache.xmlbeans.XmlException;
import org.apache.xmlbeans.XmlObject;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
@RicardoGeek
RicardoGeek / heic2jpg.sh
Created March 4, 2019 19:36
Transfor heic to jpg
// STEP 1: Download the latest tifig https://github.com/monostream/tifig/releases
// STEP 2: send the binary to /usr/bin
// STEP 3: sudo chmod a+x /usr/bin/tifig
//STEP 4:
for file in *.heic; do echo $file | xargs tifig -v -p $file ${file%.heic}.jpg; done