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 DviController | |
| import Chisel._ | |
| class TmdsEncoder extends Module { | |
| val io = new Bundle { | |
| val disp_ena = Bool(INPUT) | |
| val control = UInt(INPUT, 2) | |
| val d_in = UInt(INPUT, 8) | |
| val q_out = UInt(OUTPUT, 10) |
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
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "taskName": "build in docker", | |
| "type": "shell", | |
| "command": "./build-in-docker.sh", | |
| "problemMatcher": [ | |
| "$go" | |
| ], |
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
| time | temp | |
|---|---|---|
| 1549 | 48.00 | |
| 3497 | 48.00 | |
| 5498 | 47.75 | |
| 7498 | 48.00 | |
| 9498 | 48.25 | |
| 11550 | 49.00 | |
| 13497 | 50.25 | |
| 15497 | 51.25 | |
| 17497 | 52.75 |
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
| bash-4.3# ./log_sample.sh | |
| I'm blue... | |
| DEBUG[Play me some Jazz, will ya? (YEAH)] [log_sample.sh:37] | |
| Something bad happened. | |
| This will be printed to STDERR, no matter what. | |
| step1〜step2: 0 ms | |
| step2〜step3: 0 ms | |
| step3〜step4: 0 ms | |
| ... |
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
| bash-4.3# cat /etc/alpine-release | |
| 3.4.0 | |
| bash-4.3# date -h | |
| date: unrecognized option: h | |
| BusyBox v1.24.2 (2016-08-12 14:38:34 GMT) multi-call binary. | |
| Usage: date [OPTIONS] [+FMT] [TIME] | |
| Display time (using +FMT), or set time |
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
| = Bar! | |
| Here's an image (@<img>{myimg1}). | |
| //image[myimg1][My Image]{ | |
| //} | |
| And here's another (@<img>{myimg2}). | |
| //image[myimg2][My Image 2]{ |
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 com.example.adder | |
| import Chisel._ | |
| class HalfAdder extends Module { | |
| val io = new Bundle { | |
| val a = Bool(INPUT) | |
| val b = Bool(INPUT) | |
| val s = Bool(OUTPUT) | |
| val c = Bool(OUTPUT) |
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
| cpdf -o _.pdf articles/xxxxx.pdf "5-end" && cpdf -crop "20mm 30mm 150mm 220mm" -o preview.pdf _.pdf && rm _.pdf |
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
| { | |
| paths: { | |
| + /orders/{order_id}/subscribers: { | |
| + get: { | |
| + tags: [ | |
| + "Order" | |
| + ] | |
| + summary: "List ordered subscribers." | |
| + description: "発注したSIMのSubscriber一覧を返します。" | |
| + operationId: "listOrderedSubscribers" |
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
| --- tango_client_api_opaque.h 2016-06-04 14:41:51.000000000 +0900 | |
| +++ tango_client_api_mira.h 2016-06-04 14:41:56.000000000 +0900 | |
| @@ -16,6 +16,7 @@ | |
| TANGO_COORDINATE_FRAME_CAMERA_COLOR, | |
| TANGO_COORDINATE_FRAME_CAMERA_DEPTH, | |
| TANGO_COORDINATE_FRAME_CAMERA_FISHEYE, | |
| + TANGO_COORDINATE_FRAME_UUID, | |
| TANGO_COORDINATE_FRAME_INVALID, | |
| TANGO_MAX_COORDINATE_FRAME_TYPE | |
| } TangoCoordinateFrameType; |
NewerOlder