This file contains 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" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
<script src="https://d3js.org/d3.v7.min.js"></script> | |
</head> | |
<body> | |
<h1>こんにちは、世界!</h1> |
This file contains 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
[ | |
{ | |
"Date": "2020/05/23", | |
"DayOfWeek": "Sat", | |
"Data": 4 | |
}, | |
{ | |
"Date": "2020/05/22", | |
"DayOfWeek": "Fri", | |
"Data": 0 |
This file contains 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
[ | |
{ | |
"Date": "2020/05/23", | |
"DayOfWeek": "Sat", | |
"Data": 0 | |
}, | |
{ | |
"Date": "2020/05/22", | |
"DayOfWeek": "Fri", | |
"Data": 8 |
This file contains 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
using System; | |
using System.Globalization; | |
namespace ConsoleApp1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Hello World!"); |
This file contains 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
[ | |
{ | |
"Date": "2020/05/23", | |
"DayOfWeek": "Sat", | |
"Data": 74 | |
}, | |
{ | |
"Date": "2020/05/22", | |
"DayOfWeek": "Fri", | |
"Data": 96 |
This file contains 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
import sys | |
import iothub_service_client | |
from iothub_service_client import IoTHubRegistryManager, IoTHubRegistryManagerAuthMethod | |
from iothub_service_client import IoTHubDeviceStatus, IoTHubError | |
### TODO:ここは変える! | |
CONNECTION_STRING = "<接続文字列>" | |
DEVICE_ID = "MyFirstPythonDevice" | |
def print_device_info(title, iothub_device): |
This file contains 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
for image in *jpg; | |
do; | |
base64 < ${image} > ${image}.base64; | |
done |
This file contains 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
/* LSM303DLH Example Code | |
by: Jim Lindblom | |
SparkFun Electronics | |
date: 9/6/11 | |
license: Creative commons share-alike v3.0 | |
Summary: | |
Show how to calculate level and tilt-compensated heading using | |
the snazzy LSM303DLH 3-axis magnetometer/3-axis accelerometer. | |
This file contains 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
#container{ | |
margin: 50px 0 0 200px; | |
width : 200px; | |
height: 200px; | |
display: block; | |
border: #ccc 1px solid; | |
position: relative; | |
-webkit-perspective-origin-x: 100px; |
This file contains 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
#container{ | |
-webkit-perspective: 200px; | |
} | |
#stage{ | |
-webkit-transform-style: preserve-3d; | |
} | |
#shape{ | |
-webkit-transform-style: preserve-3d; | |
} | |
#panel{ |
NewerOlder