Skip to content

Instantly share code, notes, and snippets.

View yuryu's full-sized avatar

Emma Haruka Iwao yuryu

View GitHub Profile
@yuryu
yuryu / .screenrc
Created July 5, 2012 11:06
Mac pbcopy helper
bufferfile "$HOME/screen-exchange"
bind ^] eval 'writebuf -e utf8' 'exec sh -c "cat ~/screen-exchange | ~/invoke-pbcopy.sh"' 'echo pasted.'
@yuryu
yuryu / hostsbench.c
Created August 22, 2013 10:20
name lookup benchmark
#define _POSIX_C_SOURCE 199309L
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <memory.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
@yuryu
yuryu / .bashrc
Created September 21, 2013 07:04
Cute prompt
# PS1
function ps_exit() {
a=$?
if [ $a -ne 0 ]; then
echo "/(T_T)\\"
else
echo "\\(^o^)/"
fi
exit $a;
}
@yuryu
yuryu / pre-warm-elb.pl
Last active June 2, 2021 21:52
ELB Warm-up tool
#!perl
use strict;
use warnings;
use Parallel::ForkManager;
use POSIX;
use String::Random;
my $c_start = 1;
my $c_end = 64;
@yuryu
yuryu / paiza-ec-campaign.cpp
Last active December 30, 2015 03:09
噂の https://paiza.jp/poh/ec-campaign をやってみた
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
#include <functional>
const int MAX_N = 500000;
const int MAX_D = 300;
std::vector<int> read_sorted(const int n)
@yuryu
yuryu / gs10.c
Last active August 29, 2015 14:02
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
int main()
{
unsigned int gs10;
pid_t pid, pid10;
FILE *fp;
char buf[256];
CPU-Z TXT Report
-------------------------------------------------------------------------
Binaries
-------------------------------------------------------------------------
CPU-Z version 1.70.0.x64
Processors
-------------------------------------------------------------------------
@yuryu
yuryu / apache.json
Created January 17, 2015 04:52
kubernetes sample json
{
"id": "fedoraapache",
"kind": "Pod",
"apiVersion": "v1beta1",
"desiredState": {
"manifest": {
"version": "v1beta1",
"id": "fedoraapache",
"containers": [{
"name": "fedoraapache",
@yuryu
yuryu / kuji.cc
Created January 23, 2015 05:42
Kuji program
#include <iostream>
#include <algorithm>
#include <random>
#include <vector>
#include <fstream>
#include <set>
#include <unordered_set>
#include <string>
#include <ctime>
#include <cstdio>
@yuryu
yuryu / Dockerfile
Created February 11, 2015 23:24
Dockerfile apache example
FROM registry.access.redhat.com/rhel
RUN yum -y install httpd
ADD index.html /var/www/html/index.html
EXPOSE 80
CMD ["/usr/sbin/httpd", "-DFOREGROUND"]