Skip to content

Instantly share code, notes, and snippets.

View informationsea's full-sized avatar

Yasunobu Okamura informationsea

View GitHub Profile
@informationsea
informationsea / nothing-installer.iss
Created February 8, 2023 03:44
Nothing Installer with InnoSetup
View nothing-installer.iss
[Setup]
AppId={{3DD1237A-78BD-4E14-9AC6-2376BE4E3B1B}
AppName="Nothing Installer"
AppVersion=1.0
Uninstallable=no
OutputBaseFilename=nothing-installer
DefaultDirName={autopf}
DisableDirPage=yes
DisableProgramGroupPage=yes
@informationsea
informationsea / pubmed-format.py
Created September 15, 2022 13:45
Format Pubmed for Citaion
View pubmed-format.py
#!/usr/bin/env python3
import argparse
import xml.etree.ElementTree as ET
def _main():
parser = argparse.ArgumentParser(description='')
parser.add_argument('pubmed_xml')
options = parser.parse_args()
@informationsea
informationsea / font-download-install.sh
Created June 17, 2022 02:30
Install additional fonts to linux desktop
View font-download-install.sh
#!/bin/bash
set -eux -o pipefail
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )";
DOWNLOAD_DIR="${SCRIPT_DIR}/downloads"
FILES_DIR="${SCRIPT_DIR}/files"
function download() {
URL="$1"
@informationsea
informationsea / fill-data.ps1
Created April 21, 2022 05:34
Create large file with PowerShell
View fill-data.ps1
$FillData1 = ""
for ($i = 0; $i -lt 1000; $i++) {
$FillData1 += "0"
}
$FillData2 = ""
for ($i = 0; $i -lt 1000; $i++) {
$FillData2 += $FillData1
@informationsea
informationsea / install-almalinux.sh
Last active March 5, 2022 12:05
Automated Alamlinux Install with KVM
View install-almalinux.sh
#!/bin/bash
function install-almalinux-usage() {
cat <<EOF 1>&2
$0 [options] name
-l INSTALL_ISO AlmaLinux ISO [Example: ${VM_INSTALL_ISO}]
-b BOOTPROTO IPv4 boot protocol (dhcp/static) [Example: ${VM_IP_BOOTPROTO}]
-i IP_ADDR IPv4 address [Example: ${VM_IP_ADDR}]
-m IP_NETMASK IPv4 netmask [Example: ${VM_IP_NETMASK}]
@informationsea
informationsea / Dockerfile
Created July 24, 2021 10:08
build apache
View Dockerfile
FROM centos:8 AS download-httpd
RUN dnf update -y
RUN dnf install -y bzip2
ARG HTTPD_VERSION=2.4.48
ARG APR_VERSION=1.7.0
ARG APR_UTIL_VERSION=1.6.1
RUN curl -OL https://ftp.tsukuba.wide.ad.jp/software/apache/httpd/httpd-${HTTPD_VERSION}.tar.bz2
RUN curl -OL https://ftp.kddi-research.jp/infosystems/apache/apr/apr-${APR_VERSION}.tar.bz2
RUN curl -OL https://ftp.kddi-research.jp/infosystems/apache/apr/apr-util-${APR_UTIL_VERSION}.tar.gz
RUN tar xjf httpd-${HTTPD_VERSION}.tar.bz2
@informationsea
informationsea / ffmpeg-converter.c
Last active May 1, 2021 08:55
ffmpeg convert helper for windows
View ffmpeg-converter.c
#include <stdio.h>
#include <errno.h>
#include <windows.h>
#include <stdlib.h>
#include <string.h>
void wait_key();
int main()
{
@informationsea
informationsea / grideye.uno
Created December 31, 2020 07:55
M5StickC Plus + GridEye
View grideye.uno
#include <M5StickCPlus.h>
#include <Wire.h>
#include <SparkFun_GridEYE_Arduino_Library.h>
GridEYE grideye;
void setup() {
// put your setup code here, to run once:
M5.begin();
Wire.begin(0,26);
@informationsea
informationsea / pem-to-jwk-encode.rs
Last active July 23, 2020 10:48
Convert PEM RSA public key to JWK format (imcomplete)
View pem-to-jwk-encode.rs
use clap::{crate_authors, crate_version, App, Arg};
use simple_asn1::ASN1Block;
use std::fs;
use std::io::prelude::*;
use std::str;
fn main() {
let matches = App::new("view-ans1")
.version(crate_version!())
.author(crate_authors!())
@informationsea
informationsea / Dockerfile
Created July 20, 2020 15:39
Build OpenJDK 11 for Cent OS 7
View Dockerfile
FROM centos:7 AS jdk-download
RUN yum update -y
RUN curl -o jdk11u.tar.gz -L https://hg.openjdk.java.net/jdk-updates/jdk11u/archive/0b0d55cb09b2.tar.gz
FROM centos:7
RUN yum update -y
RUN yum install -y java-11-openjdk-devel autoconf automake bison flex gcc gcc-c++ gcc-gfortran kernel-devel make m4 patch tar bzip2 gzip xz file gmp-devel mpfr-devel wget rsync unzip zip libXtst-devel libXt-devel libXrender-devel cups-devel alsa-lib-devel freetype-devel which ccache mercurial bison flex gperf ksh pkgconfig libpng-devel libjpeg-devel libxml2-devel libxslt-devel systemd-devel glib2-devel gtk2-devel libXtst-devel pango-devel freetype-devel libXxf86vm-devel mesa-libGL-devel mesa-libGLU-devel mesa-libGLw-devel
COPY --from=jdk-download /jdk11u.tar.gz .
RUN tar xzf /jdk11u.tar.gz
WORKDIR /jdk11u-0b0d55cb09b2