Skip to content

Instantly share code, notes, and snippets.

@ebal5
ebal5 / Readme.org
Last active June 1, 2018 09:47
Papers I read, have to read, collected...

In the beginning there was darkness

私が読んだ論文、読むべき論文、とりあえず積んでいる論文をまとめていこうというお気持ち。

テンプレートは用意したのでそれを埋めるように書く。できればBeamerに落しこめればより良いなーなんて。

そんなことを考えている。

Hoge Fuge

@ebal5
ebal5 / .gitconfig
Last active April 16, 2019 08:29
Shell settings
[user]
name = Shuichi Tani
email = muminn4@gmail.com
[alias]
s = status
ss = status -s
l = log
c = commit
ca = commit --amend
pu = push
@ebal5
ebal5 / neko.c
Last active April 18, 2017 12:20
部分的だけど実装部
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <assert.h>
#define MAX_LENGTH 255 /* 設定上の最大文字数 */
#define NUM_OF_TGT 3
int search(char *word, char *str);
@ebal5
ebal5 / twoDimDFTTest.cpp
Last active May 8, 2018 02:51
Two dimentional DFT
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <assert.h>
using namespace std;
typedef struct _complex {
double re;
double im;
@ebal5
ebal5 / stack.v
Last active January 28, 2016 15:53
作ったはいいけど思った通りの動作をしてくれない子。馬鹿な子ほど可愛いというけれども……
// module stack
// it is submodule of pc
module stack(clk, en, pu_po, qi, qo);
parameter WIDTH = 9;
input clk, en, pu_po;
input [WIDTH-1:0] qi;
output [WIDTH-1:0] qo;
@ebal5
ebal5 / insertion sort c
Created May 21, 2015 11:53
insertion sort
#include <stdio.h>
#include <stdlib.h>
typedef struct _node {
int node_data;
struct _node *next;
}node;
node *newNode(int data){
node *ret = (node *)malloc(sizeof(node));
@ebal5
ebal5 / hsort.c
Created December 22, 2014 05:43
Heap sort Test
#include <stdio.h>
#include <stdlib.h>
#define swap(a,b) {(a)+=(b);(b)=(a)-(b);(a)-=(b);}
/* use gcc -std=gnu99 for compile */
/* if you don't want to use -std=gnu99 option, */
/* then you can use D = (int *)malloc(n * sizeof(int)) */
/* as line 24 and must add declaration of int *D */
typedef struct HeapTree
@ebal5
ebal5 / ABOUT.md
Last active August 29, 2015 14:08
make-calendar

make-calendar

This program is made for calendar-programming. I want to lean Racket(not Tennis ,or Badminton ,and any other sports) language. So this program is wrriten in Racket.

How to use

I'll tell you how to use it.

1.check for the racket. if you don't install yet, this program won't work