View Dockerfile
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
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim as base | |
RUN apt-get update \ | |
&& apt-get install -y --no-install-recommends libcap2-bin \ | |
&& rm -rf /var/lib/apt/lists/* | |
# Allow binding to port 80 and 443 for non root user | |
RUN setcap 'cap_net_bind_service=+ep' /usr/share/dotnet/dotnet | |
# Create maranics group and user |
View CubeSat.ino
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
#include <SystemStatus.h> // Get VCC | |
#include <avr/sleep.h> // Sleep Modes | |
#include <avr/wdt.h> // Watchdog timer | |
// PIN Definition - Remember to change pinMode(PIN) in setup when changing pin definitions | |
#define LED_PIN 0 | |
#define SOLAR_PIN 7 | |
#define RX_PIN 3 | |
#define TX_PIN 4 |
View LED_pulse.ino
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
// Source: https://www.sparkfun.com/tutorials/329 | |
// To understand the code you need to look at the sinus curve in the toturial. | |
const int LED = 0; | |
void setup() { | |
} | |
void loop() |
View SpeechDemo Releases
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
V 2.8.6.2 | |
- Updated GroupTalk authentication | |
V 2.8.6.1 | |
- Updated GroupTalk API key | |
V 2.8.5.0 |
View utc_offset_list.txt
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
Time offset Example time(ISO 8601 notation) Example locations | |
=========== =============================== ================= | |
UTC−12:00 2014-03-14T20:19:12-12:00 Baker Island, Howland Island (both uninhabited) | |
UTC−11:00 2014-03-14T21:19:12-11:00 American Samoa, Niue | |
UTC−10:00 2014-03-14T22:19:12-10:00 United States (Hawaii) | |
UTC−09:30 2014-03-14T22:49:12-09:30 Marquesas Islands | |
UTC−09:00 2014-03-14T23:19:12-09:00 Gambier Islands | |
UTC−07:00 2014-03-15T01:19:12-07:00 Canada (northeastern British Columbia), Mexico (Sonora), United States (Arizona) | |
UTC−06:00 2014-03-15T02:19:12-06:00 Canada (almost all of Saskatchewan), Costa Rica, El Salvador, Ecuador (Galápagos Islands), Guatemala, Honduras, Mexico (most), Nicaragua |