Skip to content

Instantly share code, notes, and snippets.

View YumNumm's full-sized avatar
:bowtie:
Hi👋

Ryotaro Onoue YumNumm

:bowtie:
Hi👋
View GitHub Profile
@YumNumm
YumNumm / main.dart
Created July 23, 2023 09:32
interactive_viewer sample
import 'package:flutter/material.dart';
void main() => runApp(const App());
class App extends StatelessWidget {
const App({super.key});
@override
Widget build(BuildContext context) => MaterialApp(
title: 'InteractiveViewer Demo',
home: const HomePage(),

Keybase proof

I hereby claim:

  • I am YumNumm on github.
  • I am yumnumm (https://keybase.io/yumnumm) on keybase.
  • I have a public key whose fingerprint is E74C D2A9 6E0B DAEB E4FF BFEE 98D7 1D27 EC36 41DC

To claim this, I am signing this object:

@YumNumm
YumNumm / email-worker.js
Last active July 2, 2024 15:58
Cloudflare Email Workersで、Slack通知を行うスクリプト cf. https://developers.cloudflare.com/email-routing/email-workers/
export default {
async email(message, env, ctx) {
await message.forward("[email protected]");
const SLACK_WEBHOOK_URL =
"https://hooks.slack.com/services/[credential]";
const data = {
username: message.from,
channel: "#mail",
text: `<!channel> ${message.from}からのメール`,