開発合宿のメモ
見てる限り,pipelineを使うことがメインで設計されているっぽい. gitっぽく使うというより,jsonでpipelineを設定して,それをpachydermでバッチ実行するとかを想定されているようだ. Kubernetesを使って,クラウド上とかで実装することが 想定されており,pipeline処理もバックグラウンド実行とか,atomicで実行されるように設計されている.
| #!/bin/sh | |
| # kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing. | |
| if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then | |
| set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script | |
| fi | |
| ### BEGIN INIT INFO | |
| # Provides: ndppd | |
| # Required-Start: $remote_fs $syslog $network | |
| # Required-Stop: $remote_fs $syslog $network |
| { | |
| "configurations": [ | |
| { | |
| "name": "Mac", | |
| "includePath": [ | |
| "${workspaceFolder}/**", | |
| "/usr/local/opt/llvm/include/" | |
| ], | |
| "defines": [], | |
| "macFrameworkPath": [ |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "clang++ build and debug active file", | |
| "type": "lldb", | |
| "request": "launch", | |
| "program": "${fileDirname}/${fileBasenameNoExtension}", | |
| "args": [], | |
| "cwd": "${fileDirname}", |
| { | |
| "tasks": [ | |
| { | |
| "type": "shell", | |
| "label": "clang++ build active file", | |
| "command": "/usr/bin/clang++", | |
| "args": [ | |
| "-g", | |
| "-O0", | |
| "${fileDirname}/${fileBasename}", |
| #!/bin/bash | |
| # | |
| # https://qiita.com/yasulab/items/49511c27179be454d568 | |
| # | |
| if [ $# -ne 1 ]; then | |
| echo "Usage: $0 <path to pdf file>" 1>&2 | |
| exit 1 | |
| fi |
株式会社デンソーアイティーラボラトリ 人事・採用担当の募集要項
| import Cocoa | |
| import Foundation | |
| //var buffer: UnsafeMutablePointer<unichar> = UnsafeMutablePointer<unichar>.allocate(capacity: 3) | |
| // | |
| //Array.with) | |
| var buffer = [unichar](repeating: 0, count: 3) |
| #include <vector> | |
| #include <iostream> | |
| #include <unordered_map> | |
| #define _DEBUG | |
| // Input: 3 | |
| // Output: | |
| // [ |