Skip to content

Instantly share code, notes, and snippets.

View uplus's full-sized avatar
🌏
Working from the earth

Yuto Ito uplus

🌏
Working from the earth
View GitHub Profile
#include <iostream>
#include <string>
#include <cstdlib>
using namespace std;
int main(int argc, const char* argv[]){
int n = argc == 1? 1: atoi(argv[1]);
if(n%15 == 0) cout << "FizzBuzz" << endl;
else if(n%3 == 0) cout << "Fizz" << endl;
function! s:bufdo(bufname, cmd) abort
let wn = bufwinnr(a:bufname)
if wn == -1
return 0
endif
exe wn 'wincmd w'
exe a:cmd
wincmd p
endfunction
#include <stdio.h>
int main(){
int a = 0;
if (a == 0)
for(int i = 0; i < 10; ++i)
if (i % 2 == 0)
printf("even\n");
else if (i % 2 != 0)
@uplus
uplus / file0.vim
Created March 24, 2016 12:05
vimのコマンドライン補完を自作する。 ref: http://qiita.com/uplus_e10/items/294524fc9dd5063b6a3b
command! -nargs=1 -complete=customlist,{func} {cmd} {rep}
@uplus
uplus / file0.txt
Created March 6, 2016 15:46
virt-manager(KVM)で共有フォルダを使うには(Ubuntu15) ref: http://qiita.com/uplus_e10/items/91b64111d153fe8d7c1f
$ sudo apt-get install nfs-common nfs-kernel-server
@uplus
uplus / file0.txt
Created January 22, 2016 13:31
Ubuntu コマンドでサスペンド&ロックする ref: http://qiita.com/uplus_e10/items/203fb3297c784c669c9a
dbus-send --system --print-reply=literal --dest=org.freedesktop.login1 /org/freedesktop/login1 org.freedesktop.login1.Manager.Suspend boolean:true