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
| # -------------------------- | |
| # Base stage - Microsoft repo setup | |
| # -------------------------- | |
| ARG PHP_VERSION=8.4-fpm-bookworm | |
| FROM docker.io/php:${PHP_VERSION} AS base | |
| ENV DEBIAN_FRONTEND=noninteractive \ | |
| ACCEPT_EULA=Y |
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
| ############################ | |
| # Stage 1: downloader image | |
| ############################ | |
| ARG ALPINE_VERSION=3.23 | |
| FROM docker.io/alpine:${ALPINE_VERSION} AS downloader | |
| ARG PB_VERSION=0.34.2 | |
| ARG PB_SHA256_CHECKSUM=a469d8ad8e6bd571b50841d63cd8b5c2e79d66552f9749221fd20ce497ade027 |
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 <LiquidCrystal.h> | |
| int count = 0; | |
| int contrastPin = 10; | |
| const int rs = 8, en = 9, d4 = 4, d5 = 5, d6 = 6, d7 = 7; | |
| LiquidCrystal lcd(rs, en, d4, d5, d6, d7); | |
| void setup() { |
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 <LiquidCrystal.h> | |
| int count = 0; | |
| int contrastPin = 10; | |
| const int rs = 8, en = 9, d4 = 4, d5 = 5, d6 = 6, d7 = 7; | |
| LiquidCrystal lcd(rs, en, d4, d5, d6, d7); | |
| void setup() { |
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
| ; ArellanOS | |
| ; A simple string echo boot sector program for x86 in real mode | |
| ; Released for the public domain by Nícolas Castillo | |
| ; Feel free to modify and redistribute with or without this message ;) | |
| ; Big thanks to https://github.com/nico-qwer | |
| [org 0x7c00] | |
| [bits 16] |