Skip to content

Instantly share code, notes, and snippets.

@7shi
7shi / gist:5031182
Created February 25, 2013 16:46
初心者C#入門 リバーシ(モンテカルロ法)
using System;
using System.Drawing;
using System.Windows.Forms;
namespace Reversi
{
public partial class Form1 : Form
{
int[,] board = new int[8, 8];
@7shi
7shi / BitWriter.bas
Created April 13, 2012 14:20
VBA版Deflate
' public domain
Option Explicit
Private FOut%
Private buf() As Byte
Private bufp&, cur&, bit%
Public Sub BitWriter_Init(FO%)
ReDim buf(4095)
FOut = FO
@7shi
7shi / gist:805326
Created February 1, 2011 02:52
extract JPEG from PDF by iTextSharp
// iTextSharp: http://itextpdf.com/
// reference: http://www.vbforums.com/showthread.php?t=530736
void ExtractJpeg(string file)
{
var dir1 = Path.GetDirectoryName(file);
var fn = Path.GetFileNameWithoutExtension(file);
var dir2 = Path.Combine(dir1, fn);
if (!Directory.Exists(dir2)) Directory.CreateDirectory(dir2);
@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:19
[py] mysqldump (SQL) to TSV converter

This file has been moved.

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

This file has been moved.