- 一・魔術師
- 二・女教皇
- 三・女帝
- 四・皇帝
- 五・聖職者
- 六・恋人
- 七・戦車
- 八・カ
- 九・隠者
- 十・運命の輪
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
| package main | |
| import ( | |
| "fmt" | |
| "golang.org/x/sys/windows" | |
| ) | |
| func main() { | |
| filename := []uint16{0xD800, 0x00} |
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
| package main | |
| import ( | |
| "fmt" | |
| "runtime" | |
| "github.com/go-ole/go-ole" | |
| "github.com/go-ole/go-ole/oleutil" | |
| "golang.org/x/sys/windows" | |
| ) |
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
| //go:generate go run golang.org/x/sys/windows/mkwinsyscall -output zmain_windows.go main.go | |
| //sys GetConsoleProcessList(processList []uint32) (processCount uint32, err error) | |
| //sys SetConsoleTitle(consoleTitle string) (err error) = SetConsoleTitleW | |
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "os" |
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
| define('sample.vue', [], '<template></template>'); | |
| httpVueLoader._httpRequest = httpVueLoader.httpRequest; | |
| httpVueLoader.httpRequest = function (url) { | |
| if (!require.defined(url)) { | |
| return httpVueLoader._httpRequest.apply(this, arguments); | |
| } | |
| new Promise(function (resolve, reject) { | |
| require([ url ], function (template) { |
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
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>タイトルです</title> | |
| </head> | |
| <body> | |
| <form name="head"></form> | |
| <form name="title"></form> | |
| <form name="body"></form> |
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 | |
| RUN=/opt/vyatta/bin/vyatta-op-cmd-wrapper | |
| # Slack Webhook | |
| HOOK_URL='' | |
| # Arguments | |
| GROUP=$1 | |
| INTF=$2 | |
| STATUS=$3 |
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
| <?php | |
| // https://qiita.com/mpyw/items/0fdffd3c70b3abd802f5 | |
| function array_group_by_range(array $array, $separator = '-') | |
| { | |
| sort($array, SORT_NUMERIC); | |
| $pairs = $ranges = []; | |
| foreach (array_values(array_unique($array, SORT_NUMERIC)) as $i => $v) { | |
| $pairs[$v - $i][isset($pairs[$v - $i])] = $v; | |
| } |
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
| <template> | |
| <article>{{ message }}</article> | |
| </template> | |
| <script lang="babel"> | |
| module.exports = { | |
| computed: { | |
| ...Vuex.mapState([ | |
| 'message', | |
| ]), |
NewerOlder