KotaroSONODA.JP
https://lh3.googleusercontent.com/a-/AAuE7mDD4PHjrZCOE5XG1HK5YeBOM35ydlJPdeXHJBOP8Xw#.png
薗田 光太郎 (SONODA, Kotaro), Ph.D.(Information Sciences), Assistant Professor
Research Topics - Acoustcal Data Sciences
Lectures
B2 T1: プログラミング演習 II / Programming 2
B1 T2: プログラミング概論 / Introduction to Programing
B1-4 T1-2: 創成プロジェクト
Accesses
教員室: 工学部・大学院工学研究科1号館2F 教員室3
Publications
Books
As a member of committee
https://youtu.be/fdA0kIji530?t=552
// UserScripts
code:script.js
import '/api/code/daiiz/omakase-links/script.js'
// TeX記法を数式に
scrapbox.PopupMenu.addButton({
title: 'Tex',
onClick: text => text.split(/\n/).map(line => [$ ${line}]).join('\n')
});
// chrome extension: scrap-scripts の有効化
$('body').attr('data-daiiz-rel-bubble', 'off'); // 関連ページを吹き出し表示する
$('body').attr('data-daiiz-text-bubble', 'on'); // リンク先ページのテキストを表示する
$('body').attr('data-daiiz-icon-button', 'on'); // アイコンをボタンにする
$('body').attr('data-daiiz-paste-url-title', 'ctrl'); // URL titleの形でペーストする (function (history) {
// 表示する履歴の数
const maxHistory = 5;
if ($('#history-box').length) { return; }
const $header = $(".quick-launch");
$header.append($(`<div class='flex-box'>
<div class='flex-item'>
<div class='left-box' id='history-box' />
</div></div>`));
const $historyHolder = $("#history-box");
function pathToPageTitle(path) {
return decodeURIComponent(path.split("/")2); }
let pushState = history.pushState;
history.pushState = function (state) {
try {
// on history change
var pageTitle = pathToPageTitle(state.path);
if (pageTitle) {
let $newHistory = $(<span>→ <a href='${state.path}'>${pageTitle}</a></span>);
$newHistory.on("click", () => { $newHistory.remove(); });
$historyHolder.append($newHistory);
if ($historyHolder.children().length > maxHistory) {
$historyHolder.children().first().remove();
}
}
} catch (x) {
console.error(x);
}
return pushState.apply(history, arguments);
};
})(window.history);