Skip to content

Instantly share code, notes, and snippets.

View tani's full-sized avatar
:octocat:
LISP interpreter

TANIGUCHI Masaya tani

:octocat:
LISP interpreter
View GitHub Profile
@tani
tani / Dockerfile
Created June 24, 2020 06:12
CUDA 10.2, cuDNN 7, Python 3 & 2, JDK 8, OpenCV 4.3
FROM nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04
RUN apt-get update \
&& apt-get install -y \
curl \
cmake \
gcc \
g++ \
python-dev \
python-numpy \

Keybase proof

I hereby claim:

  • I am tani on github.
  • I am masaya (https://keybase.io/masaya) on keybase.
  • I have a public key ASD4t5WL8Gr_UaQSBLqjKfDs8xyVpgEzzV85tNpiTC0zXQo

To claim this, I am signing this object:

$Env:Path += ";C:\PATH\TO\NKF\"
# Get-ChildItem -Recurse | where { ! $_.PSIsContainer } | ForEach-Object { nkf -w8 --overwrite $_ }
Get-ChildItem -Recurse | where { ! $_.PSIsContainer } | where { $_.Extension -eq "" } | ForEach-Object { echo $_.FullName }
name: roswell
version: "20.04.14.105"
summary: intended to be a launcher for a major lisp environment that just works.
description: |
Roswell is a Lisp implementation installer/manager, launcher, and much more!
Roswell started out as a command-line tool with the aim to make installing and managing Common Lisp implementations really simple and easy.
Roswell has now evolved into a full-stack environment for Common Lisp development, and has many features that makes it easy to test, share, and distribute your Lisp applications. With Roswell, we aim to push the Common Lisp community to a whole new level of productivity.
abcl-1.6.1
acl2-8.3
bigloo-4.1a-2
carp-0.3.0
ccl-1.11.5
chez-scheme-9.5.2
chibi-scheme-0.8
chicken-5.2.0
clang-7.1.0
clisp-2.50pre20171114
print "hello"

Keybase proof

I hereby claim:

  • I am nzt on github.
  • I am masaya (https://keybase.io/masaya) on keybase.
  • I have a public key whose fingerprint is 3B09 5201 9EDF 7F49 ADFF CF2C 0ADD 4DFC 6385 E141

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am bibliobibulus on github.
  • I am masaya (https://keybase.io/masaya) on keybase.
  • I have a public key ASC46UP_LlK28ynEeuksGs9LRiwXl6wMFnHYUS4yiV4ewwo

To claim this, I am signing this object:

@tani
tani / gsp.user.js
Last active November 16, 2022 08:13
// ==UserScript==
// @name Google Scholar Plus
// @namespace info.masaya.userscript.gsp
// @match *://scholar.google.com/*
// @match *://scholar.google.co.jp/*
// @match *://scholar.google.jp/*
// @version 1.1.1
// @author TANIGUCHI Masaya
// @description 2020/1/14 10:46:29
// @run-at document-idle
@tani
tani / centos.sh
Last active November 15, 2019 01:29
#!/bin/bash -e
sudo yum install -y epel-release \
&& sudo yum groupinstall -y 'Development Tools' \
&& sudo yum install -y zeromq-devel ncurses-devel gmp-devel sqlite-devel zlib-devel bsdtar cmake
eval $(echo 'export PATH=$HOME/.local/bin:$PATH' | tee -a $HOME/.bashrc)
mkdir -p $HOME/.local/bin $HOME/.local/share/jupyter/kernels
eval $(echo 'export PATH=$HOME/.miniconda/bin:$PATH' | tee -a $HOME/.bashrc)
curl -fsSL -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \