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
# _config.ymlで以下のようにセットすること。 | |
# url: https://<fqdn> | |
# baseurl: / | |
# repository: <github username>/<github repository name> | |
name: Build Jekyll site | |
on: | |
push: | |
branches: ["master"] | |
permissions: | |
contents: read |
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
name: Build Jekyll site | |
on: | |
push: | |
branches: ["master"] | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
This script sets up a Spark session configured for Apache Iceberg, | |
creates necessary tables, and performs data ingestion from CSV files. | |
Dependencies: | |
- PySpark | |
- Apache Iceberg |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
- PWA 最新のブラウザ環境に合わせた Progressive Web Application | |
- https://pwanight.connpass.com/ | |
- ブラウザの進化 | |
- CSS+JS+Ajax | |
- ServiceWorker+Web App Manifest | |
- And more | |
- PWA | |
- ノーコード: https://blog.mbaas.nifcloud.com/entry/2020/05/15/190009 |
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
Return-Path: <[email protected]> | |
X-Original-To: [email protected] | |
Delivered-To: [email protected] | |
Received: from b3eaeb27.virtua.com.br (unknown [179.234.235.39]) | |
by mail.mydomain.com (Postfix) with ESMTP id numnum | |
for <[email protected]>; Tue, 5 Jul 2022 00:36:07 +0900 (JST) | |
From: <[email protected]> | |
To: <[email protected]> | |
Subject: There is an overdue payment under your name. Please, settle your debts ASAP. | |
Date: 4 Jul 2022 08:26:04 -0400 |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
# Check MSEdge Version | |
# https://docs.microsoft.com/en-us/microsoft-edge/webdriver-chromium/?tabs=c-sharp | |
# Donwload msedgedriver.exe and move it to C:\Windows\System32 | |
# https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/ | |
# Donwload Cygwin and Python |
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
//"data" has to be the name of a datasheet. | |
DEFAULT_DATA_SHEET_NAME = "data"; | |
//Cached data sheet holder (save API access) | |
D = function() { | |
this.dataSheetName = DEFAULT_DATA_SHEET_NAME; | |
this.dataSheet = undefined; | |
this.data = undefined; | |
this.dataShape = undefined; | |
}; |
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
#!/usr/bin/env python | |
from importlib import __import__ | |
import sys | |
print(__import__(sys.argv[1]).__file__) |
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 continuumio/miniconda3:latest | |
MAINTAINER SYA-KE | |
#mb requirements.txt | |
#mv app | |
#app/app.py: | |
# def application: | |
# run port 9999 | |
ENV APPDIR app |
NewerOlder