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
| #!/bin/bash | |
| # Ensure a distribution name is provided | |
| if [ "$#" -ne 1 ]; then | |
| echo "Usage: $0 <distribution>" | |
| exit 1 | |
| fi | |
| DIST=$1 |
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
| # views.py | |
| import os | |
| import logging | |
| from urllib.parse import urlencode | |
| from django.views.generic import RedirectView | |
| from django.urls import reverse | |
| from google.auth.transport.requests import Request | |
| from google_auth_oauthlib.flow import Flow as OAuthFlow | |
| from google.oauth2 import id_token as google_id_token |
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
| FROM debian:bullseye | |
| ENV WORK_DIR /packages | |
| RUN mkdir -p ${WORK_DIR} | |
| WORKDIR ${WORK_DIR} | |
| ADD tmp/pkgdir/* ${WORK_DIR}/ | |
| ENTRYPOINT ["sleep"] | |
| CMD ["infinity"] |
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
| --- | |
| # Source: minio/templates/serviceaccount.yaml | |
| apiVersion: v1 | |
| kind: ServiceAccount | |
| metadata: | |
| name: "RELEASE-NAME-service-account" | |
| namespace: "ix-minio" | |
| labels: | |
| app.kubernetes.io/name: minio | |
| app.kubernetes.io/instance: RELEASE-NAME |
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
| .model small | |
| .stack 100h | |
| .data | |
| ball_bounce_func dw ? | |
| bounce_handle_func dw ? | |
| simple_ball_bounce_func dw ? | |
| set_mode_func dw ? | |
| draw_border_func dw ? | |
| draw_ball_func dw ? | |
| draw_brick_func dw ? |