Skip to content

Instantly share code, notes, and snippets.

@blu3mo
blu3mo / gist:1aa5cc22bd893d2e8dd00a485853d014
Last active April 17, 2025 08:47
未踏ジュニア採択に向けた徹底調査レポート

(下にスクロールして本文へ)

  • 読者に価値のある情報だと思うので共有: 今年は未踏ジュニアに事前応募するとプロトタイプ開発にChatGPT APIが無料で使えます。

  • 以下本文


了解しました!未踏ジュニアに『採択されるために役立つ』実践的な知見を重点的に調査します。

from flask import Flask, request, render_template_string
import requests
from openai import OpenAI
import concurrent.futures
import logging
SEMANTIC_SCHOLAR_API_KEY=
OPENAI_API_KEY=
# Initialize the OpenAI client
@blu3mo
blu3mo / TwiterToBluesky_tooslow
Created April 11, 2023 03:20
This didn't work on Zapier because getting title takes time
import requests
import re
import datetime
ATP_HOST = "https://bsky.social"
ATP_USERNAME =
ATP_PASSWORD =
def fetch_external_embed(uri):
try:
@blu3mo
blu3mo / ScrapboxFilter.py
Created March 4, 2023 02:35
Python script to remove scrapbox pages that has specific string.
""" remove all pages that contain the word "private.icon" """
import json
# Load the JSON data
with open('blu3mo.json') as f:
data = json.load(f)
# Loop through each page in a copy of the data
for page in list(data['pages']):
# Check if any line in the page includes the word "private.icon"