This file contains hidden or 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
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge" /> | |
<!-- Office JavaScript API --> | |
<script type="text/javascript" src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js"></script> | |
<script defer src="polyfill.js"></script><script defer src="https://gist.githubusercontent.com/sizer/3aefcf6539fc8f551c02f88451944fd1/raw/8704a9c8eb32a9aa595dd5f7f3e398a9bea8c634/m365_copilot_excel_commands.js"></script></head> |
This file contains hidden or 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
/******/ (function() { // webpackBootstrap | |
/******/ var __webpack_modules__ = ({ | |
/***/ "./node_modules/ansi-html-community/index.js": | |
/*!***************************************************!*\ | |
!*** ./node_modules/ansi-html-community/index.js ***! | |
\***************************************************/ | |
/***/ (function(module) { | |
"use strict"; |
This file contains hidden or 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
#!/bin/bash | |
echo 'push_release_branch start...' | |
CURRENT_VERSION="" | |
NEXT_VERSION="" | |
function notifySlack () { | |
# ignore "bash: !: event not found" | |
# see https://qiita.com/anqooqie/items/785f46a8cc5f10ba7abb |
This file contains hidden or 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
require 'rom-repository' | |
rom = ROM.container(:sql, 'sqlite::memory') do |config| | |
config.default.create_table(:users) do | |
primary_key :id | |
column :name, String, null: false | |
column :email, String, null: false | |
end | |
config.default.create_table(:tasks) do |
This file contains hidden or 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
SELECT companies.* FROM companies; |
- This version:
- Latest published version:
- Latest editor's draft:
- https://w3c.github.io/websub/
This file contains hidden or 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
"dein.vimの設定"{{{ | |
if &compatible | |
set nocompatible | |
endif | |
" plugin directory for dein | |
let s:dein_dir = expand('~/.cache/dein') | |
" actually dein | |
let s:dein_repo_dir = s:dein_dir . '/repos/github.com/Shougo/dein.vim' | |
This file contains hidden or 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
@Grapes([ | |
@Grab(group='postgresql', module='postgresql', version='9.0-801.jdbc4'), | |
@Grab(group='com.ibm.icu', module='icu4j', version='56.1'), | |
@GrabConfig(systemClassLoader=true, initContextClassLoader=true) | |
]) | |
import com.ibm.icu.text.Transliterator | |
//------------- script -----------------// | |
println "-----start-----" + new Date() |
NewerOlder