SP | ジャンル | サークル | ペンネーム | 概要 | URL |
---|---|---|---|---|---|
1日目東C22a | 男性向 | 村井村 | 村井村 | みらあおの既刊あり。成人向 | おしながき |
1日目東ネ40a | FC(少女・青年) | わらび | ケイト | (情報なし) | |
1日目東ネ40b | FC(少女・青年) | 麦畑 | 高橋むぎ | みらあおコメディ漫画(新刊) | サンプル |
1日目東ネ41a | FC(少女・青年) | ほしいもの直売所 | えいほしいも | ナナチカ漫画(新刊) | サンプル |
1日目東ネ41b | FC(少女・青年) | エスクリエイトシステムズ | かずちんさん | イラスト本(新刊)、森野真理ミニアクスタ | おしながき |
1日目東ネ42a | FC(少女・青年) | まぎりさくら | さっちも | 地質研究会目線の本(新刊) | |
1日目東ネ42b | FC(少女・青年) | りっこう農園 | おかかどん | イノ先輩漫画(新刊) | おしながき |
1日目東ノ02b | FC(少女・青年) | モロハノブレイド | せかひた | よろずイラスト本(新刊) | おしながき |
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
Sub MakeProgressBar() | |
Const r As String = "00" '色・RGB値のR | |
Const g As String = "99" '色・RGB値のG | |
Const b As String = "00" '色・RGB値のB | |
Const pbH As Long = 10 '高さ | |
Const pbBG As Single = 0.6 '背景の透過性 | |
Dim i As Long | |
Dim s As Shape |
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
node_modules/ | |
md/ |
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
var properties = PropertiesService.getScriptProperties(); | |
// Scrapbox settings | |
var sid = properties.getProperty('SCRAPBOX_SID'); | |
var projectName = properties.getProperty('SCRAPBOX_PROJECT'); | |
// Slack settings | |
var webHookUrl = properties.getProperty('SLACK_WEBHOOK_URL'); | |
// JSON data settings | |
var jsonName = 'scrapbox-titles.json'; | |
function doPost(e) { |
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 cmath | |
import numpy as np | |
import scipy.stats as stats | |
def mean(angles, deg=True): | |
'''Circular mean of angle data(default to degree) | |
''' | |
a = np.deg2rad(angles) if deg else np.array(angles) | |
angles_complex = np.frompyfunc(cmath.exp, 1, 1)(a * 1j) | |
mean = cmath.phase(angles_complex.sum()) % (2 * np.pi) |
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
scrapbox.PopupMenu.addButton({ | |
title : 'Embed Tweet', | |
onClick : text => { | |
const convertContent = (content, indent) => { | |
const replaced = content | |
.replace(/<a href="(https?:.*?)">(.*?)<\/a>/g, '[$1 $2]') | |
.replace(/<br>/g, `\n${indent}`); | |
const elem = document.createElement('div'); | |
elem.innerHTML = replaced; | |
return indent + elem.innerText; |
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
{ | |
"name": "obniz-js-test", | |
"components": [ | |
{ | |
"name": "/Main", | |
"graph": { | |
"connections": [ | |
{ | |
"fromId": "2fac9a62-40b9-03a1-6a8a-e06562dc9f73", | |
"fromProperty": "isAddedToDOM", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.