The Basics を自分理解用のために意訳。
- Webアプリケーションの基礎知識
- リクエスト/レスポンスサイクル
- HTML
- CSS
- JavaScript
| ImmutableList<String> list = IntInterval.fromTo(1, 31) | |
| .collect(new IntToObjectFunction<String>() { | |
| public String valueOf(int i) { | |
| return String.format("%02d", i); | |
| } | |
| }); |
The Basics を自分理解用のために意訳。
CQ Development - Guidelines and Best Practices を自分理解用のために意訳。
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <!-- Latest compiled and minified CSS --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> | |
| <!-- Optional theme --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous"> | |
| <!-- Latest compiled and minified JavaScript --> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> |
| host='localhost' | |
| port='7001' | |
| user='weblogic' | |
| passwd='weblogic' | |
| server='AdminServer' | |
| POOLTHREADRUNTIME='ThreadPoolRuntime/ThreadPoolRuntime' | |
| JVMRUNTIME='../../JVMRuntime/'+server | |
| <?xml version="1.0"?> | |
| <catalog> | |
| <book id="bk101"> | |
| <author>Gambardella, Matthew</author> | |
| <title>XML Developer's Guide</title> | |
| <genre>Computer</genre> | |
| <price>44.95</price> | |
| <publish_date>2000-10-01</publish_date> | |
| <description>An in-depth look at creating applications | |
| with XML.</description> |
| jrcmd `ps -ef | grep weblogic.Server | grep AdminServer | awk '{print $2}'` print_memusage | grep classes |
| /usr/java/jdk1.7.0_72/bin/jstack 12625 > threaddump_12625.txt | |
| ps auxww | grep ${MAIN_CLASS} | grep ${HOST} | grep ${DOMAIN} | grep -v grep | nawk '{print $2}' |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="build/react.js"></script> | |
| <script src="build/JSXTransformer.js"></script> | |
| </head> | |
| <body> | |
| <div id="app-container"></div> | |
| <script type="text/jsx"> | |
| var App = React.createClass({ |