TIBCO Technical Architect: Establish and lead the TIBCO projects technically. Lead large-scale integration efforts involving the entire TIBCO product suite giving direction to systems integration partners, client and PSG resources. These projects should include the full integration lifecycle from POC to production. Take ownership and responsibility to deliver a complete solution. Participate on requirements gathering, lead architecture discussions, complete documentation of the solution architecture and the demo scenarios to enable consultants to implement projects on TIBCO technology. Work as an Architect on TIBCO SOA or MDM or BPM or BO (BE/GI) based application
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://archive.org/download/nycTaxiTripData2013 |
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
youtube-dl --extract-audio --audio-quality 0 https://www.youtube.com/watch\?v\=VbxgYlcNxE8 |
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
2017-06-28 13:04:15 INFO starting gh-ost 1.0.36 | |
2017-06-28 13:04:15 INFO Migrating `ghost`.`ghost_test` | |
2017-06-28 13:04:15 INFO connection validated on localhost:3306 | |
2017-06-28 13:04:15 INFO User has ALL privileges | |
2017-06-28 13:04:15 INFO binary logs validated on localhost:3306 | |
2017-06-28 13:04:15 INFO Restarting replication on localhost:3306 to make sure binlog settings apply to replication thread | |
2017-06-28 13:04:15 DEBUG Replication restarted | |
2017-06-28 13:04:15 INFO Inspector initiated on prod-db-us-58.mashery.com:3306, version 5.5.40-log | |
2017-06-28 13:04:15 INFO Table found. Engine=InnoDB | |
2017-06-28 13:04:15 DEBUG Estimated number of rows via STATUS: 171229248 |
gist - compare cpuwait vs queue length
https://www.datadoghq.com/blog/aws-ebs-provisioned-iops-getting-optimal-performance/
ebs stats to collect
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
Test |
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
Java Questions | |
https://github.com/MaximAbramchuck/awesome-interview-questions#java | |
Whats new in Java 8 | |
https://leanpub.com/whatsnewinjava8/read |
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
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
import java.util.Random; | |
import java.util.concurrent.Executors; | |
import java.util.concurrent.ScheduledExecutorService; | |
import java.util.concurrent.TimeUnit; | |
/** |
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
echo "==============================" | |
echo " td-agent Installation Script " | |
echo "==============================" | |
echo "This script requires superuser access to install rpm packages." | |
echo "You will be prompted for your password by sudo." | |
# clear any previous sudo permission | |
sudo -k | |
# run inside sudo |
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
import sys | |
import subprocess | |
import logging | |
import shlex | |
from logging.handlers import RotatingFileHandler | |
def log_handler(log_file): | |
log_handler = RotatingFileHandler(filename=log_file,maxBytes=200000, | |
backupCount=5) |