veganism.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Veganism Social is a welcoming space on the internet for vegans to connect and engage with the broader decentralized social media community.

Administered by:

Server stats:

302
active users

#master

1 post1 participant0 posts today

👉 En el Máster Universitario en Dirección Contable y Financiera se aprende en base a retos reales. En este vídeo, los alumnos Unai Arietaleanizbeaskoa e Itsaso García, junto a Ainhoa Aranburu Iraola, controller de la empresa, explican en qué consistió el reto Mondragon Assembly Group y cómo lo llevaron a cabo.
▶️ youtu.be/pXUkZgkfNIM?si=2FzTZ3

➕ Más info sobre el #máster: mondragon.edu/es/master-univer

🎓✨ Congratulations to the Class of 2023-2025! ✨🎓
Last week, on March 14th, we celebrated the successful graduation of our Master of Geospatial Technologies students. 🌍 Your hard work, dedication, and passion for geospatial science have brought you to this milestone. We are incredibly proud of your achievements and excited to see how you will shape the future of the geospatial world. Wishing you all the best in your next chapter! 🚀
#Graduation2025 #GeospatialTech #ProudMoment #Master

#master : a person holding an office of authority among the freemasons, esp. the presiding officer

- French: maître

- German: der Meister

- Italian: maestro

- Portuguese: mestre

- Spanish: maestro

------------

Join our new Discord Server for language learners @ wordofthehour.org/discord

DiscordJoin the Learn A New Language Discord Server!Check out the Learn A New Language community on Discord - hang out with 405 other members and enjoy free voice and text chat.

@dustinrue It's not that hard to start a buildkit runner, I have it running on a cheap hetzner ARM VPS (less than 5€/mo) :

services:
buildkit:
image: moby/buildkit:latest
privileged: true
volumes:
- .certs:/etc/buildkit/certs
ports:
- 1234:1234
command: |
--addr tcp://0.0.0.0:1234
--tlscacert /etc/buildkit/certs/daemon/ca.pem
--tlscert /etc/buildkit/certs/daemon/cert.pem
--tlskey /etc/buildkit/certs/daemon/key.pem

and run

SAN="127.0.0.1 1.2.3.4 example.com" docker buildx bake https://github.com/moby/buildkit.git\#master:examples/create-certs

In the same directory

And the github action :

      - name: Start a local Docker Builder
run: |
docker run --rm -d --name buildkitd -p 1234:1234 --privileged moby/buildkit:latest --addr tcp://0.0.0.0:1234

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
driver: remote
endpoint: tcp://localhost:1234
platforms: linux/amd64
append: |
- endpoint: ${{ secrets.DOCKER_BUILDER_ARM64 }}
platforms: linux/arm64
env:
BUILDER_NODE_1_AUTH_TLS_CACERT: ${{ secrets.DOCKER_BUILDER_ARM64_CACERT }}
BUILDER_NODE_1_AUTH_TLS_CERT: ${{ secrets.DOCKER_BUILDER_ARM64_CERT }}
BUILDER_NODE_1_AUTH_TLS_KEY: ${{ secrets.DOCKER_BUILDER_ARM64_KEY }}