| 日時: | 2024-02-01 |
|---|---|
| 作: | 時雨堂 |
| 資料 バージョン: | 2024.1 |
| GitHub URL: | https://github.com/shiguredo/momo |
| 製品 URL: | https://momo.shiguredo.jp/ |
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 <M5Stack.h> | |
| #include <WiFiClientSecure.h> | |
| WiFiClientSecure client; | |
| const char* ssid = "your SSID"; // WiFi SSID | |
| const char* password = "your WiFi password"; // WiFi PW | |
| const char* host = "host name (e.g. example.azurewebsites.net)"; | |
| const char* path = "url (e.g. /api/EnvMonitor?code=AAA==)"; |
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
| using UnityEngine; | |
| using System.Collections; | |
| using System.IO; | |
| public class WebCam : MonoBehaviour { | |
| public int Width = 1280; | |
| public int Height = 720; | |
| public int FPS = 15; | |
| public Material material; |
gem install fpm --no-ri --no-rdoc
# packagesディレクトリ以下をまとめてpackagingする
go build -o YOURAPP yourapp.go
mkdir -p pakcages/usr/local/YOURAPP/{bin,etc}
cp yourapp packages/usr/local/YOUARPP/bin/yourapp
(cd packages; fpm -s dir -t deb -n YOURAPP -v 0.1.0 .)
ls -la packages
- 大半のgo applicationならdependsはないからfpmはとても楽な選択
| 日時: | 2017-12-03 |
|---|---|
| 作: | 時雨堂 |
| バージョン: | 17.6.30 |
| URL: | https://shiguredo.jp/ |
2017 年 6 月 30 日をもって開発/販売を終了しました。
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
| # Makefile for a go project | |
| # | |
| # Author: Jon Eisen | |
| # site: joneisen.me | |
| # | |
| # Targets: | |
| # all: Builds the code | |
| # build: Builds the code | |
| # fmt: Formats the source files | |
| # clean: cleans the code |
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
| ########################################################## | |
| # How to NEVER use Lambdas. An inneficient and yet educa-# | |
| # tonal guide to the proper misuse of the lambda constru-# | |
| # ct in Python 2.x. [DO NOT USE ANY OF THIS EVER] # | |
| # by: e000 (13/6/11) # | |
| ########################################################## | |
| ## Part 1. Basic LAMBDA Introduction ## | |
| # Well, it's worth diving straight into what lambdas are. | |
| # Lambdas are pretty much anonymous "one line" functions |