Skip to content

Instantly share code, notes, and snippets.

View odanado's full-sized avatar

odanado odanado

View GitHub Profile
export XDG_CONFIG_HOME=$HOME/.config
source $HOME/.zplug/init.zsh
zplug "zsh-users/zsh-syntax-highlighting", defer:2
zplug "zsh-users/zsh-completions"
zplug "zsh-users/zsh-autosuggestions"
zplug "zsh-users/zsh-history-substring-search"
zplug "peco/peco", as:command, from:gh-r
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@odanado
odanado / work78.c
Created October 30, 2017 09:41 — forked from siberiy4/work78.c
#include<stdio.h>
int main(void){
int a,b,c=1, i, j, e, f, p, d;
printf("桁区切りする値の入力:");
scanf("%d",&a);
b=a;
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cmath>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(n);i++)
#define out(S) cout<<(S)<<endl;
#include <iostream>
#include <map>
#include <set>
#include <string>
#include <algorithm>
#include <vector>
#include <cmath>
#define rep(i, n) for (int i = 0; i < (n); i++)
using ll = long long;
#include <algorithm>
#include <cassert>
#include <cmath>
#include <iostream>
#include <map>
#include <set>
#include <string>
#include <vector>
#define rep(i, n) for (int i = 0; i < (n); i++)
#include <bits/stdc++.h>
using namespace std;
// using ll = long long;
const int INF = 1e8;
#define all(c) (c).begin(), (c).end()
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
int dx[4] = {1, 0, -1, 0};
#include <bits/stdc++.h>
using namespace std;
#define all(c) (c).begin(), (c).end()
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
int dx[4] = {1, 0, -1, 0};
int dy[4] = {0, 1, 0, -1};
import json
from twitter import OAuth, Twitter
with open('config.json') as f:
param = json.load(f)
t = Twitter(auth=OAuth(**param))
screen_name = '5percent_Dora'
items = []
max_id = None
ids = set()
#include <stdio.h>
#include <stdlib.h>
typedef struct {
char id[7];
char name[21];
int height;
int weight;
} Student;