- 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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://json-schema.org/draft/2020-12/schema", | |
"$id": "https://gist.githubusercontent.com/bakyeono/84232f85b8331f588141f68b06eaf618/raw/9cd0d5e578c0aa25aa626c2646ef0e2a0211f31d/producer-and-productions-change-payload-v20250526.schema.json", | |
"$defs": { | |
"EnumFacilityType": { | |
"type": "string", | |
"description": "OPEN_FIELD: 노지, OPEN_FIELD_WITH_SMART_FARM: 노지 스마트팜, GREENHOUSE: 비닐하우스, GREENHOUSE_WITH_SMART_FARM: 비닐하우스 스마트팜, GLASSHOUSE: 유리온실, GLASSHOUSE_WITH_SMART_FARM: 유리온실 스마트팜", | |
"enum": [ | |
"OPEN_FIELD", | |
"OPEN_FIELD_WITH_SMART_FARM", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://json-schema.org/draft/2020-12/schema", | |
"$id": "https://gist.githubusercontent.com/bakyeono/bd363ec3e151efc8b7a0bd57dc86cb6f/raw/ec291b45b8eb376d20caa3c6e3446e5ae8dc2fd1/producer-and-productions-change-payload-v20250512.schema.json", | |
"$defs": { | |
"EnumFacilityType": { | |
"type": "string", | |
"description": "OPEN_FIELD: 노지, OPEN_FIELD_WITH_SMART_FARM: 노지 스마트팜, GREENHOUSE: 비닐하우스, GREENHOUSE_WITH_SMART_FARM: 비닐하우스 스마트팜, GLASSHOUSE: 유리온실, GLASSHOUSE_WITH_SMART_FARM: 유리온실 스마트팜", | |
"enum": [ | |
"OPEN_FIELD", | |
"OPEN_FIELD_WITH_SMART_FARM", |
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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"))))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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"
NewerOlder