$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.4 LTS
Release: 16.04
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
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
#include <stdio.h> | |
#include <sql.h> | |
#include <sqlext.h> | |
int main() { | |
SQLHENV henv; | |
SQLRETURN r; | |
SQLCHAR dsn_name[256]; |
Slick の素振り
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
を使用
$ 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,
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
#if ODBCVER >= 0x0000 | |
SQLHENV EnvironmentHandle | |
SQLAllocConnect() | |
SQLAllocEnv() | |
SQLDataSources() | |
SQLError() | |
SQLFreeEnv() | |
SQLTransact() | |
SQLHDBC ConnectionHandle |