Skip to content

Instantly share code, notes, and snippets.

@jahertor
jahertor / entitlements.mac.inherit.plist
Last active March 26, 2020 08:22
Entitlements for electron-builder. Put it on build/ folder
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.inherit</key>
<true/>
</dict>
</plist>
@jahertor
jahertor / FormValidator.java
Created October 7, 2015 07:54
Form Validator for Android (JAVA)
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* USAGE:
*
* A) For custom patterns, this allow you to add in a static way whatever you want:
* - FormValidator.validate("i'm a field", "^.{0,}$");
*
* B) Init with default patterns: