This file contains 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
find ./jsp -exec touch {} \; |
This file contains 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 codecs | |
sql = "" | |
sql += "merge into tn_year_cust t1 using (select '{year}' year,'{custId}' cust_Id from dual) t2" | |
sql += " on (t1.year = t2.year and t1.cust_id= t2.cust_id)" | |
sql += " WHEN MATCHED THEN" | |
sql += " UPDATE SET" | |
sql += " SITE_TARGET_YN = '{siteTargetYn}'" | |
sql += " ,SITE_TARGET_DT = '{siteTargetDt}'" | |
sql += " ,SITE_COMPLETE_YN = '{siteCompleteYn}'" |
This file contains 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
def generateSequence(end=100,head='MG',fill=17): | |
for index in range(1,end): | |
print(head + (index + '').zfill(fill)): |
This file contains 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
<style type="text/css"> | |
/** | |
* ie 10 - 11 hack | |
*/ | |
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
.verify_wrap2 { | |
position: relative; | |
right: -10px; | |
display: inline-block; | |
width: 460px; |
This file contains 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
/** | |
* ie 10 - 11 hack | |
*/ | |
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
.verify_wrap2 { | |
position: relative; | |
right: -10px; | |
display: inline-block; | |
width: 460px; | |
float: right; |
This file contains 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.io.{FileOutputStream, FileInputStream} | |
import scala.io.StdIn | |
/** | |
* Created by YoungJoo on 2015-09-11. | |
*/ | |
object DrearyDesign extends App { | |
val path = "D:\\dev\\intellySpace\\ScalaStudy\\" | |
// Console.setIn(new FileInputStream(path + "testFile")) |
NewerOlder