- A Fisherman's Tale https://www.oculus.com/appreferrals/bakyeono/2299967930057156/
- After the Fall https://www.oculus.com/appreferrals/bakyeono/2160364850746031/
- All-In-One Sports VR https://www.oculus.com/appreferrals/bakyeono/3840611616056575/
- Ancient Dungeon https://www.oculus.com/appreferrals/bakyeono/5138511912885491/
- Angry Birds VR: Isle of Pigs https://www.oculus.com/appreferrals/bakyeono/2718606324833775/
- Arizona Sunshine https://www.oculus.com/appreferrals/bakyeono/2190353671014400/
- BARTENDER VR SIMULATOR https://www.oculus.com/appreferrals/bakyeono/6424742560904148/
- Battle Talent https://www.oculus.com/appreferrals/bakyeono/6424742560904148/
- Beat Saber https://www.oculus.com/appreferrals/bakyeono/2448060205267927/
- Blade & Sorcery: Nomad https://www.oculus.com/appreferrals/bakyeono/2031826350263349/
A list of commonly asked questions, design decisions, reasons why Clojure is the way it is as they were answered directly by Rich (even when from many years ago, those answers are pretty much valid today!). Feel free to point friends and colleagues here next time they ask (again). Answers are pasted verbatim (I've made small adjustments for readibility, but never changed a sentence) from mailing lists, articles, chats.
How to use:
- The link in the table of content jumps at the copy of the answer on this page.
- The link on the answer itself points back at the original post.
;; read from STDIN | |
(line-seq (java.io.BufferedReader. *in*)) | |
(map #(Integer/parseInt %) (line-seq (java.io.BufferedReader. *in*))) | |
;; write elements of a sequence, line by line, to STDOUT | |
(doseq [elm result] (print (str elm "\n"))))) |
<?php | |
function curl_get($url) { | |
$curl = curl_init(); | |
curl_setopt_array($curl, array ( | |
CURLOPT_RETURNTRANSFER => true, | |
CURLOPT_HEADER => false, | |
CURLOPT_URL => $url, | |
CURLOPT_USERAGENT => 'useragent' | |
)); | |
$response = curl_exec($curl); |
C/C++ - 윈도우에서 zip 압축 풀기
Xzip을 이용해 윈도우에서 간단히 zip 압축 푸는 방법이다. 다양한 압축 라이브러리가 있지만 내가 찾아본 것 중에 Xzip 이 윈도우 전용이고 가장 간편한 것 같다. 다만 문서화가 되어 있지 않아서 데모 코드를 해석해서 사용법을 배워야 한다.
압축을 풀 때는 XUnzip.h
, XUnzip.c
두 파일만 있으면 된다.
Xzip이
#include "XUnzip.h"
Prevent screen from turning off (in console)
$ setterm -blank 0 -powerdown 0
Alternatively you can disable console blanking permanently using the following command:
# echo -ne "\033[9;0]" >> /etc/issue
" Load Plugins (Vundle) | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
" Plugin 'viewdoc' | |
Plugin 'ctrlp.vim' | |
Plugin 'Buffergator' | |
Plugin 'guns/vim-clojure-static' |