This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description The plugin returns the JSON of the combobox the jQuery EasyUI | |
* @author Carlos Anders | |
* @link http://www.andershost.com.br | |
*/ | |
(function ($) { | |
$.extend($.fn.combobox.methods, { | |
/** | |
* The method returns the data in the JSON object of the | |
* selected item in the combobox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | |
<script src="http://code.jquery.com/jquery.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.16/vue.js"></script> | |
<title>JS Bin</title> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Project specific excludes | |
# | |
tomcat | |
# | |
# Default excludes | |
# link: https://github.com/github/gitignore | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
indent_style = space |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Encrypt the repository | |
# Remove/modify this line if the repository is meant to be open-source | |
*.* filter=git-crypt diff=git-crypt | |
.gitattributes !filter !diff | |
# These files are text and should be normalized (Convert crlf => lf) | |
*.php text | |
*.css text | |
*.js text | |
*.htm text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#https://gist.github.com/pksunkara/988716 | |
[user] | |
name = Anders | |
email = [email protected] | |
[core] | |
#editor = subl.exe | |
editor = 'C:/Microsoft VS Code/Code.exe' -w | |
[http] | |
sslverify = false | |
[mergetool] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# remove java9 mac | |
# fonte: https://www.java.com/pt_BR/download/help/mac_uninstall_java.xml | |
sudo rm -fr /Library/Java/JavaVirtualMachines/jdk-9.jdk/ | |
sudo rm -fr /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin | |
sudo rm -fr /Library/PreferencePanes/JavaControlPanel.prefPane | |
sudo rm -fr /Library/LaunchAgents/com.oracle.java.Java-Updater.plist | |
sudo rm -fr /Library/LaunchDaemons/com.oracle.java.Helper-Tool.plist | |
sudo rm -fr /Library/Preferences/com.oracle.java.Helper-Tool.plist | |
sudo rm -fr ~/Library/Application\ Support/Java |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
catch (Exception e) { | |
// e.printStackTrace(); | |
throw e; | |
// throw new Exception(e); | |
} | |
... | |
copyWorker.setOnFailed(evt -> { | |
System.out.println("Task failed!"); | |
if (copyWorker.getException() instanceof IndexOutOfBoundsException) { |
OlderNewer