Skip to content

Instantly share code, notes, and snippets.

View kojix2's full-sized avatar
🔬
🧬 🖥️ ♋

kojix2

🔬
🧬 🖥️ ♋
View GitHub Profile
@kojix2
kojix2 / md5.cr
Created June 14, 2024 07:48
Crystal lang md5 check
require "digest/md5"
require "colorize"
# Get the filename from the command-line arguments
filename = ARGV[0]
# Change the directory to the location of the file
Dir.cd File.dirname(filename)
# Define a FileRecord structure to store the md5sum and file path
@kojix2
kojix2 / test_gzip_generator.c
Created May 8, 2024 06:36
Generate gzip file for testing Compress::Gzip ver1
#include <stdio.h>
#include <string.h>
#include <zlib.h>
#include <time.h>
int main()
{
char *filename = "test.gz";
char *contents = "One\nTwo";
int content_length = strlen(contents);
@kojix2
kojix2 / fuga.c
Last active May 8, 2024 06:31
GZIPのいろんなフラグが立ってるやつ
#include <stdio.h>
#include <string.h>
#include <zlib.h>
#include <time.h>
int main()
{
char *filename = "test.gz";
char *contents = "One\nTwo";
int content_length = strlen(contents);
@kojix2
kojix2 / bam_plp_auto.c
Last active May 2, 2024 11:52
bam_plp_autoの使用例
#include <stdio.h>
#include <stdlib.h>
#include <htslib/sam.h>
typedef struct {
samFile *fp;
bam_hdr_t *h;
} bam_file_handle;
static int process_reads(void *data, bam1_t *b) {

red-datasets-parquet

red-datasets-parquet is a Ruby gem that provides datasets in Apache Arrow's Parquet format. It includes datasets from New York City's Taxi and Limousine Commission (TLC) data, such as green and yellow taxi trip records.

Installation

You can install the red-datasets-parquet gem by adding the following line to your Gemfile:

@kojix2
kojix2 / catgpt.rb
Created March 2, 2023 03:08
CatGPT - Glimmer DSL LibUI
require 'glimmer-dsl-libui'
require 'ruby/openai'
class ChatGPT
class Message < Struct.new(:role, :content)
def role_color
[role, color]
end
def content_color
@kojix2
kojix2 / ddbj_sra_urls.rb
Created September 17, 2022 06:31
Get DDBJ SRA download URLs from BioProject id
# DDBJ SRA URL Getter
# author: kojix2
require 'net/http'
require 'json'
require 'tty-spinner'
project_id = ARGV[0]
if project_id.nil?
warn 'Error: No project name.'
@kojix2
kojix2 / winequality.ipynb
Created September 4, 2022 05:34 — forked from heronshoes/winequality.ipynb
Wine quality
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y llvm-11 clang-11 libclang-11-dev libclang-cpp11-dev python3-pip
# Easiest way to get sufficiently new cmake appears to be using pip - Ubuntu 20.10 version is too old
RUN pip3 install --upgrade cmake
# Copy the source into the Docker container
RUN mkdir -p /c2ffi
COPY / /c2ffi
@kojix2
kojix2 / gen_documentation_rb
Created May 21, 2022 11:50
gen_documentation_rb by Sami Sieranoja (@SamiSieranoja)
#!/usr/bin/ruby
require "gtksourceview4"
require "gtk3"
require "ripl"
c = Gtk::TextBuffer
GtkSource::View.new
classes = {}
$wm = Gtk::Widget.instance_methods