- WCMや沢屋交流会などのエッジーな集まりはあるけど、間口の広い初心者が参加しやすい集まりがない
- 山岳会に入っていない人や単独行者の人たちでノウハウを共有する場があると嬉しい
- 人と一緒に山行していても、ノウハウなどを聞く機会が少ない
- Facebookなどで交流会などは見かけるが、飲み会ばかりなのでちゃんと勉強になる集まりが欲しい
- オフの場で三者山様みたいな集まりがあると嬉しい
- TwitterやFacebookなんかで見る山行報告を生で聞きたい
- 人の便利なtipsやノウハウを共有したい
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
void main () { | |
DateTime startDayShift = DateTime(2023, 7, 5, 8, 20); // 7月5日の8:20開始 | |
DateTime endDayShift = DateTime(2023, 7, 5, 18, 20); // 7月5日の18:20終了 | |
DateTime startNightShift = DateTime(2023, 7, 5, 20, 35); // 7月5日の20:35開始 | |
DateTime endNightShift = DateTime(2023, 7, 6, 5, 35); // 7月6日の5:35終了 | |
print("日勤"); | |
Duration totalDayShiftDuration = calculateTotalDuration(startDayShift, endDayShift, excludedRanges); | |
int totalDayShiftDurationInMinutes = totalDayShiftDuration.inMinutes; | |
print('昼勤計算結果 => $totalDayShiftDurationInMinutes 分'); |
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
# ==================== prefix =================== | |
# feat: 新しい機能 | |
# fix: バグの修正 | |
# docs: ドキュメントのみの変更 | |
# style: 空白、フォーマット、セミコロン追加など | |
# refactor: 仕様に影響がないコード改善(リファクタ) | |
# perf: パフォーマンス向上関連 | |
# test: テスト関連 | |
# chore: ビルド、補助ツール、ライブラリ関連 |
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
<!DOCTYPE html> | |
<html lang='ja'> | |
<head> | |
<meta charset='utf-8' /> | |
<title>leaflet example 01 OpenSterrtMap</title> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-M2wvCLH6DSRazYeZRIm1JnYyh22purTM+FDB5CsyxtQJYeKq83arPe5wgbNmcFXGqiSH2XR8dT/fJISVA1r/zQ==" crossorigin=""/> | |
<!-- Make sure you put this AFTER Leaflet's CSS --> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-lInM/apFSqyy1o6s89K4iQUKg6ppXEgsVxT35HbzUupEVRh2Eu9Wdl4tHj7dZO0s1uvplcYGmt3498TtHq+log==" crossorigin=""></script> | |
<style> | |
body { |
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
drop function if exists kana2KANA; | |
delimiter // | |
create function kana2KANA (data text) returns text deterministic | |
begin | |
declare kana1_len int(2); | |
declare kana2_len int(2); | |
declare kana1_h varchar(61) default 'アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヲンッャュョァィゥェォー。「」、・'; |
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 urllib | |
import requests | |
import json | |
class Bing(object): | |
def __init__(self, key): | |
self.api_key = key | |
def web_search(self, query, k, keys=["Url"], skip=0): |
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
#!/usr/bin/env ruby | |
ENV['RAILS_ENV'] ||= 'test' | |
require File.expand_path('../../config/environment', __FILE__) | |
require 'test_queue' | |
require 'test_queue/runner/rspec' | |
class RSpecTestQueueRunner < TestQueue::Runner::RSpec | |
def after_fork(num) |
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 sys | |
import logging | |
from flask import Flask | |
app = Flask(__name__) | |
app.logger.addHandler(logging.StreamHandler(sys.stdout)) | |
app.logger.setLevel(logging.ERROR) |
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
syntax enable | |
set number | |
set ruler | |
set list | |
set listchars=tab:>-,trail:-,nbsp:%,extends:>,precedes:< | |
set incsearch | |
set hlsearch | |
set nowrap | |
set showmatch |
NewerOlder