Skip to content

Instantly share code, notes, and snippets.

<html>
<head>
<title>Single Html React</title>
<script src='https://unpkg.com/requirejs/require.js'></script>
</head>
<body>
<div id='app'></div>
<script id='main' type='text/babel'>
'strict';
@tmatz
tmatz / build_android_app_on_termux.md
Last active March 2, 2025 01:44
Build android app on termux

Build android app on termux

1. install termux

install termux from F-Droid.

2. setup termux

apt update
@tmatz
tmatz / PartitionUtility.cs
Created June 17, 2019 00:20
Array & List Partitioning
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
// Array & List Partition
// Trampoline:
// Tail recursion optimization technique.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Console;
@tmatz
tmatz / TaskEx.cs
Last active April 1, 2019 09:13
use Task like a Promise
using System;
using System.Threading;
using System.Threading.Tasks;
namespace WpfAsyncCommandTest
{
public static class TaskEx
{
/// <summary>
/// 非同期処理を実行するアクションです。
"use strict"
const curry = fn =>
curryN(fn.length, fn)
const curryN = (n, fn) =>
rename(fn.name, (...a) => {
const num_ = count_(a)
const len = a.length - num_
return (num_ == 0 && len >= n) ?
@tmatz
tmatz / enumerable.js
Last active March 19, 2019 05:21
JavaScript LINQ-like collection evaluation
test('try implement LINQ.', () => {
class Enumerable {
static from(array) {
return new Enumerable(
function*() {
yield* array;
})
}
constructor(generator) {
@tmatz
tmatz / ExpressionConverter.cs
Last active February 27, 2019 06:09
ExpressionConverter: WPF UniversalConverter
//
// ExpressionConverter
//
// Syntax
//
// Top = '$' CStr | . Expr .
// CStr = cs { '{' . Expr . '}' cs }*
// Expr = Lor . '?' . Expr . ':' . Expr
// Expr = Lor
// Lor = Land { . '||' . Lor }
@tmatz
tmatz / ASTGeneratorAndEvaluator.cs
Last active February 17, 2019 06:16
LL(1) Recursive Descent Parser
//
// AST Generator & Evaluator
// based on Recursive Descent Parser without back-tracking
//
// Syntax
//
// E := T { [ '+' '-'' ] E }
// T := U { [ '*' '/' '%' ] T }
// U := [ '+' '-' '' ] F
// F := '(' E ')' | [ '0' '1' ... '9' ]

ubuntu のターミナルでクリップボードを使う方法

sudo apt-get install xsel

コピー

echo hogehoge | xsel --clipboard --input