適当に感想を書くので、ググって行ってどうぞ。 多分全部日帰りで使えるところです。
名前 | 感想 | 行った回数 | 行った時期 | オススメ感 |
---|---|---|---|---|
第一滝本館 | 登別の地獄谷が窓から全部見られる。温泉の種類も多く、露天風呂からは季節によっては紅葉とかも見られそうだった。少し割高なものの、1日中居られそうな気がするくらい充実していると思う。 | 1 | 晩夏/昼 | 95点 |
|名前|感想|行った回数|行った時期|オススメ感|
const config = require("dotenv").config().parsed; | |
for (const k in config) { | |
process.env[k] = config[k]; | |
} | |
// npm install @slack/bolt@feat-workflow-steps | |
const { App } = require("@slack/bolt"); | |
const app = new App({ | |
signingSecret: process.env.SLACK_SIGNING_SECRET, | |
token: process.env.SLACK_BOT_TOKEN, |
#!/usr/bin/env python | |
# coding: utf-8 | |
from PIL import Image, ImageOps | |
import numpy | |
import serial | |
class SM1_21: | |
def __init__(self, port='/dev/ttys0', baud=115200): |
#include <stdio.h> | |
#include <math.h> | |
int main(int argc, char **argv) { | |
int n = 1111111; | |
printf("%d", n); | |
int b = 10; | |
int buffer = n % 10; n /= 10; |
app = angular.module 'MyApplication' | |
app.filter 'noHTML', -> | |
(text) -> text.replace(/</g, '<').replace(/>/g, '>').replace(/&/, '&') if text? | |
app.filter 'newlines', ($sce) -> | |
(text) -> $sce.trustAsHtml(if text? then text.replace(/\n/g, '<br />') else '') | |
app.controller 'testCtrl', ($scope) -> | |
$scope.iroha = 'いろはにほへと ちりぬるを\nわかよたれそ つねならむ\nうゐのおくやま けふこえて\nあさきゆめみし ゑひもせす' |
/** | |
* This module is a variant which supports document.write. If you need document.write use this instead | |
* Author: Deepak Subramanian @subudeepak(https://github.com/subudeepak) | |
* Distributed under MIT License | |
*/ | |
/*global angular */ | |
(function (ng) { | |
'use strict'; | |
app.directive('script', function() { | |
return { |
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
# generate server.xml with the following command: | |
# openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
# run as follows: | |
# python simple-https-server.py | |
# then in your browser, visit: | |
# https://localhost:4443 | |
import BaseHTTPServer, SimpleHTTPServer | |
import ssl |