Skip to content

Instantly share code, notes, and snippets.

@rexpit
rexpit / Anime.html
Created May 2, 2021 07:43
個人メモの Anime.txt からブログ HTML のテーブルを出力する簡易ツール
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Anime.txt → HTML</title>
<script>
// 行の正規表現
const regex_input_pattern = /^(\d+)\/(\d+)\/(\d+)-(\d+)\/(\d+)\/(\d+)\s+(.*)$/;
const regex_replace_pattern = ` <tr>
<td>$7</td>
@rexpit
rexpit / bf.cpp
Last active December 18, 2015 06:58
Brainfuck by rexpit
#include <iostream>
#include <vector>
#include <string>
#include <fstream>
#include <sstream>
#include <cstdlib>
#include <stack>
const char *USAGE_TEXT = "\
Brainfuck by rexpit\n\