Skip to content

Instantly share code, notes, and snippets.

View syakesaba's full-sized avatar
🍙
ごはんください

SYA-KE syakesaba

🍙
ごはんください
View GitHub Profile
@syakesaba
syakesaba / jekyll.yml
Last active February 13, 2025 16:52
cloudflareにプッシュする jekyll.yml
# _config.ymlで以下のようにセットすること。
# url: https://<fqdn>
# baseurl: /
# repository: <github username>/<github repository name>
name: Build Jekyll site
on:
push:
branches: ["master"]
permissions:
contents: read
name: Build Jekyll site
on:
push:
branches: ["master"]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
@syakesaba
syakesaba / pyspark_iceberg_with_proxy.py
Created January 11, 2025 06:08
This script sets up a Spark session configured for Apache Iceberg, creates necessary tables, and performs data ingestion from CSV files.
#!/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
@syakesaba
syakesaba / gguf_creator.ipynb
Created October 4, 2024 02:09
GGUF_creator.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@syakesaba
syakesaba / .txt
Created August 3, 2022 04:03
20220803 https://pwanight.connpass.com/ PWA Night for Beginners Vol.15 ~基本をまなぼう~
- 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
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
@syakesaba
syakesaba / chronium_edge_selenium_win.py
Created June 30, 2021 07:40
chronium_edge_selenium_win.py
#!/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
@syakesaba
syakesaba / util.gs
Created May 12, 2019 16:59
GASでSpreadsheetを使う際にキャッシュアクセスをするスクリプト
//"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;
};
#!/usr/bin/env python
from importlib import __import__
import sys
print(__import__(sys.argv[1]).__file__)
@syakesaba
syakesaba / how?
Created March 23, 2017 14:36
how_conda_source??.py
FROM continuumio/miniconda3:latest
MAINTAINER SYA-KE
#mb requirements.txt
#mv app
#app/app.py:
# def application:
# run port 9999
ENV APPDIR app