Skip to content

Instantly share code, notes, and snippets.

View tomokinex's full-sized avatar
🐺
arai-san

Tomoki Nakamura tomokinex

🐺
arai-san
View GitHub Profile
@tomokinex
tomokinex / matrix_vector_mul.c
Created August 26, 2021 08:44
merge_sort_and_matrix_vector_mul
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#define vector_size (1 << 14)
int array[vector_size][vector_size] = {0};
int in_vector[vector_size] = {0};
int out_vector[vector_size] = {0};
struct pthread_arg{
@tomokinex
tomokinex / file0.css
Last active December 22, 2018 03:51
css "だけ"で サイトをtwitter風にするコツ ref: https://qiita.com/tomokinex/items/d96feb18633949470c26
display:none
@tomokinex
tomokinex / redmine_sample.html
Last active December 22, 2018 03:41
twitter風css
<!DOCTYPE html>
<html lang="ja"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>活動 - test Redmine</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="description" content="Redmine">
<meta name="keywords" content="issue,bug,tracker">
<meta name="csrf-param" content="authenticity_token">