Keybase proof
I hereby claim:
- I am okuoku on github.
- I am okuoku (https://keybase.io/okuoku) on keybase.
- I have a public key ASDhghlWoiFEmE3m2cDkKWCfgVmsVKfyNoqEZzMkzRFn_Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# CONFIG_LOCALVERSION_AUTO is not set | |
CONFIG_NO_HZ_IDLE=y | |
# CONFIG_SYSFS_SYSCALL is not set | |
CONFIG_KALLSYMS_USE_DATA_SECTION=y | |
CONFIG_KALLSYMS_ALL=y | |
# CONFIG_BASE_FULL is not set | |
# CONFIG_FUTEX is not set | |
# CONFIG_SIGNALFD is not set | |
# CONFIG_TIMERFD is not set | |
# CONFIG_AIO is not set |
Install Nexus Repository OSS
Sign-in with admin:admin123 https://help.sonatype.com/display/NXRM3/Configuration
edit jetty-https.xml, work/nexus3/etc/nexus.properties application-port-ssl=8443
add jetty-https.xml https://help.sonatype.com/display/NXRM3/Configuring+SSL#ConfiguringSSL-InboundSSL-ConfiguringtoServeContentviaHTTPS
run it with nexus.exe /run
Install Windows Server + Docker
Create windowsservercore base image http://d.hatena.ne.jp/mjt/20170130/p1
Import certificate
(define (make-coreops-fake) | |
(define-syntax define-query0 | |
(syntax-rules () | |
((_ q (sym0 sym1) ...) | |
(define (q symbol) | |
(case symbol | |
((sym0) sym1) | |
... | |
(else |
;; "4.2.6. Dynamic bindings" | |
;; parameterize is a syntax | |
make-parameter | |
;; "6.1. Equivalence predicates" | |
eqv? eq? equal? | |
;; "6.2.6. Numerical operations" | |
;; Skip: rational? rationalize infinite? numerator denominator | |
;; make-rectangular make-polar real-part imag-part magnitude angle |
(define-library (minitype) | |
(export | |
miniobj-minitype-ref | |
miniobj-minitype-set! | |
make-minitype-obj) | |
(import (scheme base) (scheme write)) | |
(begin | |
(define (make-minitype-obj) | |
(vector "UNINITIALIZED_x" "UNINITIALIZED_y")) |
# Reader error: NRx7xxxx | |
NRE70001: | |
J: 表記エラーが多すぎるため読み取りを中止しました。 | |
NRE70002: | |
J: inline hex escapeがセミコロンによって終端されていません。 | |
NRE70003: | |
J: inline hex escapeによって指定された値は有効な文字ではありません。 |
;; | |
;; compiler.scm | |
;; | |
;;;; SECDR Compiler | |
;; | |
;; Date written 11-Feb-1990 by Atsushi Moriwaki | |
;; Date revised 20-Feb-1990 by Atsushi Moriwaki | |
;; Date revised 06-Mar-1990 by Atsushi Moriwaki | |
;; Date revised 31-Jul-1992 by Shoichi Hayashi |
#include "SDL.h" | |
#include <yuniffi/stub/_top.h> | |
#define EXPORT_SDL_MAIN_NEEDED(k)\ | |
YUNIFFI_EXPORTCLASS_CONST_SINT(k, "SDL_MAIN_NEEDED", SDL_MAIN_NEEDED) | |
#define EXPORT_SDL_ICONV_ERROR(k)\ | |
YUNIFFI_EXPORTCLASS_CONST_UINT(k, "SDL_ICONV_ERROR", SDL_ICONV_ERROR) | |
#define EXPORT_SDL_ICONV_E2BIG(k)\ |
typedef int (*func_ip_i_t)(int, void*); | |
void | |
callstub_ip_i(func_ip_i_t func, uint64_t* args, void* ret){ | |
*(intptr_t*)ret = func(*(int *)(char *)&args[0], *(void* *)(char *)&args[1]); | |
} | |
typedef int (*func__i_t)(); | |
void | |
callstub__i(func__i_t func, uint64_t* args, void* ret){ | |
*(intptr_t*)ret = func(); |