Skip to content

Instantly share code, notes, and snippets.

View jafffy's full-sized avatar
😆
HAPPY

Jaewon Choi jafffy

😆
HAPPY
View GitHub Profile
@jafffy
jafffy / memory.c
Created September 25, 2019 05:03
How to interpret pointer variable?
#include <stdio.h>
int main()
{
float f = 3.141592f;
printf("%f\n", f);
int i = f;
printf("%d\n", i);
from random import random, seed
n = 24 - 1
seed(n)
print(int(n * random()))

SW 마에스트로 전형 중 AI 면접에 보이콧합니다.

안녕하세요, 아주대학교 대학원 컴퓨터공학과 석박사통합과정으로 재학 중인 최재원(jaewon.james.choi@gmail.com, github: https://github.com/jafffy) 이라고 합니다.

저는 2019년 SW 마에스트로 10기 전형 절차 중 AI 면접에 보이콧합니다.

저는 SW 마에스트로 사업에 지원하여 서류 전형에 합격하였고, 적성검사 진행을 위해 AI 면접에 접속했는데 시스템이 마이크와 카메라 접근 권한을 요청했습니다.

해당 시스템이 어떤 판단을 어떻게 내릴지에 대해서는 저는 알지 못합니다. 하지만, 이러한 privacy 침해 소지가 다분한 시스템을 받아들이고 선발된 사람들이 SW 마에스트로의 목적인 한국 최고의 SW 인재이거나 한국의 스티브 잡스가 되지 않을 것이라고 믿고 있고, 그렇지 않았으면 좋겠습니다.

@jafffy
jafffy / gist:db4c040cc72d731bc82adb352bc141a6
Created February 19, 2019 13:49 — forked from johanmeiring/gist:3002458
"git lg" alias for pretty git log
# From http://garmoncheg.blogspot.com/2012/06/pretty-git-log.html
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --"
@jafffy
jafffy / tmux-cheatsheet.markdown
Created February 19, 2019 11:15 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
void __lpglDrawArrays(GLenum mode, GLint first, GLsizei count);
#define glDrawArrays(mode, first, count) \
__lpglDrawArrays(mode, first, count)
@jafffy
jafffy / clean-up-boot-partition-ubuntu.md
Created December 9, 2017 14:15 — forked from ipbastola/clean-up-boot-partition-ubuntu.md
Safest way to clean up boot partition - Ubuntu 14.04LTS-x64

Safest way to clean up boot partition - Ubuntu 14.04LTS-x64

Reference

Case I: if /boot is not 100% full and apt is working

1. Check the current kernel version

$ uname -r 
@jafffy
jafffy / introrx.md
Created January 8, 2017 04:05 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing