$ terraform init
Initializing the backend...
Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "docker" (terraform-providers/docker) 2.7.1...
The following providers do not have any version constraints in configuration,
source
ブランチには hugo のコンテンツを置き、それらを Github Actions でブログに変換して、生成したものは master
ブランチに push する。
- GitHub Actions では GitHub Pages action · Actions · GitHub Marketplace を使用
.github/workflows/gh-pages.yml
は、GitHub Pages action · Actions · GitHub Marketplace を参考にした- TODO: わざわざ
master
ブランチを作らなくていいかも - Hugo Book | Hugo Themes を使用するために hugo
extended
を使用
Slick の素振り
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
#include <stdio.h> | |
#include <sql.h> | |
#include <sqlext.h> | |
int main() { | |
SQLHENV henv; | |
SQLRETURN r; | |
SQLCHAR dsn_name[256]; |
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
https://github.com/JoshClose/CsvHelper/issues/977 | |
https://stackoverflow.com/questions/42133413/csvhelper-set-default-custom-typeconverter | |
https://teratail.com/questions/97817 |
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
#!/usr/bin/env ruby | |
require 'fileutils' | |
require "time" | |
require "openssl" | |
if ARGV.length < 2 | |
$stderr.puts "Error" | |
exit 1 | |
end |
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
#!/usr/bin/env ruby | |
require 'fileutils' | |
require "time" | |
require "openssl" | |
if ARGV.length < 2 | |
$stderr.puts "Error" | |
exit 1 | |
end |
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
source 'https://rubygems.org' | |
gem "faraday" | |
gem "faraday_middleware" | |
gem "thor" |