Skip to content

Instantly share code, notes, and snippets.

@7shi
7shi / split-pdf.html
Created August 24, 2022 17:18
[HTML]Splitter & PDF
<!DOCTYPE html>
<html lang="ja" style="height:100%">
<head>
<meta charset="utf-8">
<style>
.gutter {
background-color: #eee;
}
@7shi
7shi / RijndaelPad.fsx
Last active July 16, 2022 12:03
Crypto Notepad with Rijndael
// (0) PUBLIC DOMAIN
// To the extent possible under law, the person who associated CC0 with this work
// has waived all copyright and related or neighboring rights to this work.
#r "System"
#if NETF
#r "System.Drawing"
#r "System.Windows.Forms"
#else
//#r "nuget: System.Drawing.Common, 5.0.2"
@7shi
7shi / ImageToRtf.cs
Last active January 13, 2022 06:47
Convert image to RTF
// https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/4813e7fd-52d0-4f42-965f-228c8b7488d2
// https://www.codeproject.com/Questions/540673/InsertplusimageplusinplusRichTextBoxpluswithoutplu
// https://stackoverflow.com/questions/1490734/programmatically-adding-images-to-rtf-document
// https://garakutatech.blogspot.com/2021/01/cwpfwinformsrichtextboxjpeg.html
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Text;
@7shi
7shi / GGellMann.ipynb
Created September 5, 2020 07:11
[Jupyter] Generalized Gell-Mann matrices
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@7shi
7shi / index.html
Created July 8, 2020 21:56
[Deno] Simple HTTP Server
<!DOCTYPE html>
<html>
<head>
<title>File Save Test</title>
</head>
<body>
<div id="result"></div>
<script src="test.js"></script>
</body>
</html>
@7shi
7shi / Novial.tsv
Created June 27, 2020 20:00
[TSV] Novial words in OmegaWiki
novial English Deutsch français 日本語
a at an proche
abatial abbatial abteilich abbatial
abdikatione abdication Verzicht abdication 退位
abdomene belly Bauch ventre
abele bee Biene abeille ハチ
abiete fir Tanne sapin 樅の木
abjuratione abjuration Abschwörung abjuration
abolio abolishment Abschaffung abolition 廃止
abolitione abolishment Abschaffung abolition 廃止
@7shi
7shi / fsc.fsx
Last active June 9, 2020 12:49
[F#] fsc dummy
open System
open System.IO
let args = Environment.GetCommandLineArgs()
let text = File.ReadAllText(args.[1].[1..])
File.WriteAllText("/home/xxx/log", text)
@7shi
7shi / README.md
Last active June 5, 2020 08:18
[F#] mysqldump (SQL) to TSV converter

This file has been moved.

@7shi
7shi / README.md
Last active June 5, 2020 08:19
[py] mysqldump (SQL) to TSV converter

This file has been moved.

@7shi
7shi / wintts.py
Created May 25, 2020 09:50
[py] SAPI client
import getopt, sys, win32com.client
options = "lo:v:r:i:ps:"
def usage():
print("[usage] %s -l | [-o] [-v] [-r] (-i | -p | -s | text)" % sys.argv[0])
print(" -l language: case insensitive, begins-with match")
print(" -o output.wav")
print(" -v voice: case insensitive, 'Microsoft' can be dropped.")
print(" -r rate: -10 (slow) ... 10 (fast)")
print(" -i input.txt")