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
export JPDA_ADDRESS=8000 && \ | |
export JPDA_TRANSPORT=dt_socket && \ | |
export JPDA_SUSPEND=y && \ | |
./catalina.sh jpda start && tail -f ../logs/catalina.out |
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
keytool -importkeystore -srckeystore KEYSTORE.pfx -srcstoretype pkcs12 -keystore cacerts -srcalias "blah" -destalias "blah" |
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
<div style="clear: both;"></div><br/> | |
<div class="control-group" id="enabledNotificationGroup"> | |
<label class="control-label" for="enabledNotification">Enable Email Notification:</label> | |
<div class="controls"> | |
<input type="checkbox" class="form-control input-xxlarge" th:field="*{enabledNotification}" id="enabledNotification" v-model="isEnabled" v-on:click="eraseValue" /> | |
<span class="help-inline"> | |
<span th:each="err : ${#fields.errors('enabledNotification')}" th:text="${err}"></span> | |
</span> | |
</div> | |
</div> |
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
ALTER TABLE NP_SUSP_TRANS_REP ADD ("REASONS_REMIT_BREACH_N" CLOB NULL) LOB | |
( | |
"REASONS_REMIT_BREACH_N" | |
) | |
STORE AS | |
( | |
TABLESPACE "notif_dat" RETENTION ENABLE STORAGE IN ROW NOCACHE | |
); | |
UPDATE NP_SUSP_TRANS_REP SET "REASONS_REMIT_BREACH_N" = "REASONS_REMIT_BREACH"; | |
-- ALTER TABLE "ARIS_STG".trs_fund_storage_unavail MODIFY ("unavailabilityDescrN" NOT NULL); |
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
ALERT TOPIC | |
docker exec -it kafka bash | |
kafka-console-consumer --zookeeper zookeeper:2181 --topic rule-11835 --from-beginning | |
EMT TOPIC | |
docker exec -it kafka bash | |
kafka-console-consumer --zookeeper zookeeper:2181 --topic rule-46826 --from-beginning |
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
<select ng-options="option.name for option in $ctrl.teams track by option.id" ng-model="user.team"></select> |
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
sudo dpkg-reconfigure keyboard-configuration |
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
Properties prop = new Properties(); | |
InputStream input = null; | |
try { | |
String filename = "config.properties"; | |
input = this.getClass().getClassLoader().getResourceAsStream(filename); | |
if (input == null) { | |
System.out.println("Sorry, unable to find " + filename); | |
throw new java.lang.UnsupportedOperationException("Some errors occurred, please try again later."); |
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
cd apache-tomcat\bin | |
set JPDA_SUSPEND=y | |
catalina.bat jpda run |
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
extension NSDate | |
{ | |
convenience | |
init(dateString:String) { | |
let dateStringFormatter = NSDateFormatter() | |
dateStringFormatter.dateFormat = "yyyy-MM-dd" | |
dateStringFormatter.locale = NSLocale(localeIdentifier: "en_US_POSIX") | |
let d = dateStringFormatter.dateFromString(dateString) | |
self.init(timeInterval:0, sinceDate:d) | |
} |
NewerOlder