#author("2021-02-02T07:03:32+00:00","","")
#author("2021-04-26T07:57:22+00:00","","")
#norelated
#memo(\begin{table}[htb]\n\caption{サーバー環境}\n\label{tbl:サーバー環境}\n  \begin{tabular}{ll}\n製品 & HP ProLiant DL360p Gen8\\\nCPU & 6コア Intel E5-2630 2.3GHz×2\\\nRAID & P420i Smart Array\\\nHDD & 1TB SFF SAS 7.2krpm×4\\\nメモリー & 64GB DDR3\\\nNIC & 1GbEポート×4\n  \end{tabular}\n\end{table}\n\n\begin{table}[htb]\n\caption{最終的なサーバー環境}\n\label{tbl:最終的なサーバー環境}\n  \begin{tabular}{ll}\n    サーバーOS & CentOS Linux release 7.9.2009\\\n    Webサーバ & Apache/2.4.46\\\n    サーバーサイド言語 & PHP,Python 3.8.5\\\n    クライアントサイド言語 & JavaScript,HTML5,CSS3\\\n    動作確認のウェブブラウザ & Google Chrome 88.0.4324.104\n  \end{tabular}\n\end{table})
#memo(The applicability of genetic algorithms in an inversion of surface-wave phase velocities to inferan S-wave velocity profile was examined. S-wave velocities and thicknesses are coded to binarystrings  and an individual model is generated by connecting all strings for a subsurface structuremodel. The fitness is defined by squared summation of differences between observed and calcu-lated phase velocities. In addition to three basic genetic processes of selection  crossover  andmutation  the algorithrm was improved by the introduction of elite selection rule and dynamicmutation in which the mutation probability varied according to the variety of individuals jn ageneration. We applied the method to the inversions of synthetic phase velocities and phasevelocities from an actual array observation of long-period microtremors. These results indicatethat the GA is highly applicable in phase velocity inversion.\n\begin{table}[htb]\n\caption{サーバー環境}\n\label{tbl:サーバー環境}\n  \begin{tabular}{ll}\n製品 & HP ProLiant DL360p Gen8\\\nCPU & 6コア Intel E5-2630 2.3GHz×2\\\nRAID & P420i Smart Array\\\nHDD & 1TB SFF SAS 7.2krpm×4\\\nメモリー & 64GB DDR3\\\nNIC & 1GbEポート×4\n  \end{tabular}\n\end{table}\n\n\begin{table}[htb]\n\caption{最終的なサーバー環境}\n\label{tbl:最終的なサーバー環境}\n  \begin{tabular}{ll}\n    サーバーOS & CentOS Linux release 7.9.2009\\\n    Webサーバ & Apache/2.4.46\\\n    サーバーサイド言語 & PHP,Python 3.8.5\\\n    クライアントサイド言語 & JavaScript,HTML5,CSS3\\\n    動作確認のウェブブラウザ & Google Chrome 88.0.4324.104\n  \end{tabular}\n\end{table})

https://jorublog.site/python-voice-analysis/

texでの論文の書き方 qiita~
https://qiita.com/birdwatcher/items/5ec42b35d84d3ee2ffbb

CentOS7のカーネルとLinuxバージョンアップ~
https://www.linuxmaster.jp/linux_skill/2018/06/centos.html

firebase認証~
https://tenderfeel.xsrv.jp/javascript/3606/#i

https://qiita.com/TakeshiNickOsanai/items/7eed1ca8b9e482d392bc

Apacheまとめ~
https://qiita.com/leomaro7/items/ef6db835bd44864f7957

セキュリティ構築~
https://www.sec-portal.info/technical_information/centos7_install_memo/

EPELリポジトリ(yumやaptやpipと同じものでそれのlinuxサードパーティ用)の導入~
https://qiita.com/yamada-hakase/items/fdf9c276b9cae51b3633

apacheアプデ~
https://centosinstall.com/centos/centos7/apache#Apache

httpからhttpsへ~
https://shell-mag.com/22nd_ubuntuserver/

webサーバー1つで二つ以上のサイト(virtualhost)~
https://qiita.com/monaky/items/b5f589e59ee002a1d355~
https://weblabo.oscasierra.net/apache24-centos7-virtualhost/

#memo(https://www.it-swarm-ja.tech/ja/javascript/base64%E3%81%A7%E3%82%A8%E3%83%B3%E3%82%B3%E3%83%BC%E3%83%89%E3%81%95%E3%82%8C%E3%81%9F%E3%82%A4%E3%83%A1%E3%83%BC%E3%82%B8%E3%82%92%E3%83%80%E3%82%A6%E3%83%B3%E3%83%AD%E3%83%BC%E3%83%89%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/1070167969/\n#!/home/zeta/.pyenv/shims/python\n# -*- coding: utf-8 -*-\n\nimport pandas as pd\nimport numpy as np\nimport sys\nimport json\nimport cgi\nimport os\nfrom scipy.cluster.hierarchy import dendrogram, linkage, fcluster\nimport matplotlib\nimport base64\nimport datetime\n\nprint("Content-type: application/json")\nprint("\n\n")\n\ndata = sys.stdin.read()\ndf = pd.read_json(data)\n#df = pd.DataFrame(np.random.rand(16*21).reshape(21,16))\n#df = pd.read_csv('blocklyinputandoutputtwo.csv',header=None)\ndf_two = df.T\ndf_label = df_two[2].tolist()\n#print(df_label)\n#df_tenti = df_two.set_index(2)\n#df_tenti = df_tenti.drop(df_tenti.columns[[0,1,2]], axis=1)\n#print(df_tenti)\ndf_tenti = df_two.drop(df_two.columns[[0,1,2,3]], axis=1)\n#print(df_tenti)\nZ = linkage(df_tenti,method="ward",metric="euclidean")\n\n#print(Z)\n\ntoday = datetime.datetime.now()\n\n\ndendrogram(Z, labels=df_label)\npath = "/usr/lib/cgi-bin/" + str(today) + ".png"\nmatplotlib.pyplot.savefig(path)\nwith open(path, 'br') as f1:\n    b64_img = base64.b64encode(f1.read())\n    #print(str(b64_img))\nos.remove(path)\n#wine_json = json.dumps(df.values.tolist())\n#print(wine_json)\nprint(json.JSONEncoder().encode(b64_img.decode()))\n#asasaa={"a":str(b64_img)}\n#print(str(b64_img))\n#print(json.JSONEncoder().encode(asasaa))\n#result = {"回帰係数":1,"切片":2,"決定係数":3}\n\n#print(json.JSONEncoder().encode(result))\nprint('\n'))
#memo(function downloadPNG(content, filename) {\n  // create a temporary "a" element.\n  const a = document.createElement("a");\n  document.body.appendChild(a);\n  a.style = "display:none";\n  content = content.map((content) => content.join(',')).join('\r\n');\n  const blob = new Blob([content], { type: "image/PNG" });\n  const url = window.URL.createObjectURL(blob);\n  a.href = url;\n  a.download = filename;\n  a.click();\n  window.URL.revokeObjectURL(url); // release the used object.\n  a.parentNode.removeChild(a); // delete the temporary "a" element\n}\nBlockly.JavaScript['file_out2'] = function (block) {\n  var value_file = Blockly.JavaScript.valueToCode(block, 'file2', Blockly.JavaScript.ORDER_ATOMIC);\n  // TODO: Assemble JavaScript into code variable.\n  var testArr = value_file;\n  //var code = 'console.log(typeof(' + testArr  + '));console.log(' + testArr  + ');';\n  //var code = 'console.log(typeof(' + testArr  + '));';\n  var code = 'var a = 0;\n'+ testArr + ';downloadPNG(base64Decode(a),"dend.PNG");';\n  //var code = 'var a = 0;\n'+ testArr + ';console.log(typeof(a))';\n  //var code = 'var a = 0;\n' + testArr + ';(new CSV(a)).save(\'autoputto.csv\');';\n  //var code = 'console.log('+testArr+');\n';\n  return code;\n};)

https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4927234/~
https://www.jstage.jst.go.jp/article/qes/4/3/4_3/_article/-char/ja~
https://www.jstage.jst.go.jp/result/global/-char/ja?languageKind=ja&item1=8&word1=%E7%94%B0%E5%8F%A3+%E7%8E%84%E4%B8%80&yearfrom=&cond1=2&translate=0&yearto=&bglobalSearch=false&fromPage=/search/global/_search/-char/ja~
https://www.heisei-u.ac.jp/ba/fukui/pdf/analysis34.pdf~
https://repository.kulib.kyoto-u.ac.jp/dspace/bitstream/2433/106108/1/0285-2.pdf~
http://train.gomi.info/oatable/~
~

CENTER:COLOR(#ff0000){赤}=授業 COLOR(#00a7ff){水色}=研究室内行事

|>|>|>|>|>|CENTER:COLOR(white):BGCOLOR(blue):|c
||&size(13){月曜日};|&size(13){火曜日};|&size(13){水曜日};|&size(13){木曜日};|&size(13){金曜日};|
|BGCOLOR(#5c5c5c):COLOR(white):|>|>|>|>|COLOR(white):BGCOLOR(white):CENTER:60|c
|BGCOLOR(#999999):COLOR(white):|>|>|>|>|COLOR(white):BGCOLOR(white):CENTER:60|c
|CENTER:&size(20){1-2};|||||BGCOLOR(#00a7ff):COLOR(white):研究会|
|CENTER:&size(20){3-4};|||||~|
|CENTER:&size(20){5-6};||||||
|CENTER:&size(20){7-8};||||||
|CENTER:&size(20){9-10};||||||
|CENTER:&size(20){11-14};|BGCOLOR(#00a7ff):COLOR(white):予備日|||||

-[[トップページ>FrontPage]]
-[[研究会 横井]]
-[[卒業研究の内容 横井]]
-[[専門ゼミ>横井さんのロビー/専門ゼミ]]
-[[卒修論ゼミ>横井さんのロビー/卒修論ゼミ]]
-[[参考文献>横井さんのロビー/参考文献]]
-[[備忘録>横井さんのロビー/備忘録]]
-[[スマホの加速度をPCで取得する方法(node.js使用)>スマホの加速度をPCで取得する方法(node.js使用)]]
-[[zabbix server on MAC OS X]]
-[[為替,API,python,自動取引(ランダム)とその時のログ]]
-[[基礎ゼミ>横井さんのロビー/基礎ゼミ]]
-[[MT4のばっくてすと>https://www.mql5.com/ja/articles/1486]]
-[[リアルタイムmatplotlib]]
-[[スライド作成時の注意点>横井さんのロビー/備忘録#a26af773]]
-[[レジュメ作成時の注意点>横井さんのロビー/備忘録#v3d351e0]]
-[[MT4とc言語による自動取引]]
-[[MT5とpythonによる自動取引]]
-[[raspberrypiによる温湿度取得>横井さんのロビー/専門ゼミ]]
-[[pythonとAPIによる自動取引]]
-[[研究会の書記のテンプレート]]
-[[中間発表ポスター>横井さんのロビー/中間発表ポスター]]
-[[中間発表フォーマット>横井さんのロビー/中間発表フォーマット]]
-[[分散ネットワーク>横井さんのロビー/分散ネットワーク]]
-[[卒論>横井さんのロビー/卒論]]
-[[discordによる遠隔グループ通話with画像共有>横井さんのロビー/discord]]
-[[研究室システム>横井さんのロビー/研究室システム]]
-[[WindowsとLinuxデュアルブート>横井さんのロビー/デュアルブート]]
-[[Beamerに動画を埋め込む方法>Flash Playerダウンロードページ]]
-[[GPGPU>横井さんのロビー/GPGPU]]
-[[wikitest>横井さんのロビー/wikitest]]
-[[emoji>https://lister.tokyo/emoji/unicode_emoji_list.php]]
-[[研究室サーバー構築手順>横井/研究室サーバー構築手順]]


実験1に必要なファイル~
#ref(sensa.py)
#ref(opencv.sh)
#ref(plot.py)
#ref(server.py)
#ref(facedetect.py)
#ref(sample.ino)

     /           \_       ト、             ______ノ~
    ヽ  折  こ  そ    /´  {乂___{::`ー‐- ..,,_ /{  ,、r‐, 、_ ヽ~
.     ノ     れ  れ  し  ./ ト.,_〉:::::\::`丶、::{::l、 rヘV./,ヘ 「「l   .頑   炭  頑~
       て  か .て  {、__乂/:::::::`ヽ、:}:::_,.。s≦_「 jニ} /   張  治  張~
         い  ら .今   ヽ:::::::,.、-‐─-:、::_,.。s≦ニニニ>''ハヽノ `ヽ   れ   郎  れ~
     )   て  も  日   /::_,.、-:::::::_、rf〔ニニ二≫”":::` ーf=冖'' ¨ }   !!~
.        も   !!  も   '::::::::::_xf〔ニニニ≫''"7;;;;:ヽ::7 ├-‐==:i/~
    `ヽ   !!      __(ァ_xf〔二二二_ー` u  7;;;し}/ _,{'/////--~
      }  _     /  _xf〔二二ニニ_ー` \_,, ,  {;/;;j{r'//,Ⅵ//////}~
      l/   `ヽ /  -二ニニニ_ー`从 rf繊ぇ"u; 繊ア从'///,V//////} /⌒ヽ   /⌒~
               〃   二二ニニ㌻>、_) ι     _,  ,小('///〈////////∧  .ノ   \__~
.             ∥ 二二二㌻ ./イ冂\  fニ ー= / 寸ム'/,ア}'////` ー一 ´~
           j{二二ニ㌻ / ̄ ̄ r个s。.`== ' イハ __寸}´ /- 、/,}~
.           j{ニニ㌻ /       /:i:i:`¨¨⌒7ー ''"  `Yi:i\  V~
.         /l l{二㌻  j{ー- ..,,,__/:i:i:i:i:i:i:i:i:i/      /:i:i:___}/  俺  よ  俺~
.         / ヽ!ア    j{:i:i:i:i:i:i:i:/¨ =‐- ..,,__      /:i:i:i:i\    .は  く   は~
     `¨´     `¨¨~¨´({i:i:i:i:i:i:i:/     /:i:i:i:i:i:i:i:i:i:i:ア¨ '' ‐-ァ}    で  や  今~
    ヽ  絶  挫  俺  {{:i:i:i:i:i:i:{  /   ,i:i:i:i:i:i:i:i:i:i/    //    .き   っ  ま~
     } .対  け  が  l.}‐-= :;{__/__   j:i:i:i:i:i:i:i:i:/       /      る  て  .で~
    ノ  に  .る     ヽ    く:i:i:i:i:¨:7‐-= :i;;_/___     7¨¨7ヽ   奴   き~
       無  .こ        \   ヽ:i:i:i/    /:i:i:i:i:i:i:i:i:ァ冖7  }  .だ   た~
    \ い   と      /__   /:i:i:{    /:i:i:i:i:i:i:i:i:i/   /  /   !!   !!~
      } !!  は      |マi:i:i:i:i:i7 ーr- ...,,,_{:i:i:i:i:i:i:i:i:i/__/  /              __~
     ノ          __{ .〉i:i:i:i:i{  /:i:i:i:i:i:i/ ̄ ¨¨ 7 0/ヽ  ´⌒ヽ    __   /~
    ⌒ヽ        /  {:i:i:i:i:/ /:i:i:i:i:i:/    //>'//       \/´    ヽ/~

トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS