How to add build System.
Tools -> Build -> New Build System...
write down this text
{
"cmd": ["C:\\Users\\JC\\AppData\\Local\\Programs\\Python\\Python36\\python.exe", "-u", "$file"],
| /** | |
| * smf Date 형식 MM-dd-yyyy HH:mm:ss | |
| * db Date 형식 yyyyMMddHHmmss | |
| * @param smfDateString | |
| * @return | |
| */ | |
| public String dateFormatChangeSmfToDb(String smfDateString) { | |
| //String smfDateString = "07-31-2017 11:56:05"; | |
| SimpleDateFormat smfFormat = new SimpleDateFormat("MM-dd-yyyy HH:mm:ss"); | |
| SimpleDateFormat dbFormat = new SimpleDateFormat("yyyyMMddHHmmss"); |
| SELECT LOWER(SUBSTR(COLUMN_NAME,0,1)) || SUBSTR(REPLACE(INITCAP(COLUMN_NAME),'_',''),2) | |
| FROM ALL_TAB_COLS | |
| WHERE TABLE_NAME = 'ADC_DL_MODEL' | |
| ; | |
| --from : HELLO_WORLD | |
| --to : helloWorld |
| SELECT COLUMN_NAME | |
| ,'<result property="' | |
| ||LOWER(SUBSTR(COLUMN_NAME, 0, 1)) | |
| || SUBSTR(REPLACE(INITCAP(COLUMN_NAME), '_', ''), 2) | |
| ||'" column="' | |
| ||COLUMN_NAME | |
| ||'"/>' AS MYBATIS_RESULTMAP | |
| ,LOWER(SUBSTR(COLUMN_NAME, 0, 1)) | |
| || SUBSTR(REPLACE(INITCAP(COLUMN_NAME), '_', ''), 2) AS UNDERSCORE_TO_CAMELCASE | |
| ,'#{' |
How to add build System.
Tools -> Build -> New Build System...
write down this text
{
"cmd": ["C:\\Users\\JC\\AppData\\Local\\Programs\\Python\\Python36\\python.exe", "-u", "$file"],
| class Observable: | |
| def __init__(self): | |
| self.__observers = [] | |
| def register_observer(self, observer): | |
| self.__observers.append(observer) | |
| def notify_observers(self, *args, **kwargs): | |
| for observer in self.__observers: | |
| observer.notify(self, *args, **kwargs) |
| /* | |
| The CeilingFanPullChain class is now a wrapper that delegates to its m_current_state reference. | |
| Each clause from the "before" case statement is now captured in a State derived class. | |
| For this simple domain, the State pattern is probably over-kill. | |
| */ | |
| interface State { | |
| abstract void pull(CeilingFanPullChainAfter wrapper); | |
| } |
| DROP PUBLIC DATABASE LINK LIVE; | |
| CREATE PUBLIC DATABASE LINK LIVE | |
| CONNECT TO YOUR_USER_ID | |
| IDENTIFIED BY YOUR_PASSWORD | |
| USING | |
| '(DESCRIPTION = | |
| (ADDRESS_LIST = | |
| (ADDRESS = (PROTOCOL = TCP) | |
| (HOST = YOUR_HOST_ID) |
netstat -ban
This will provide a list of connections made with the process id of each process.
Go to Task Manager, and select View/Select Columns and enable PID (Process Identifier).
Look for the PID of iexplore.exe in the list returned by netstat -ban This will reveal the proxy ip and port.