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 면접에 λ³΄μ΄μ½§ν•©λ‹ˆλ‹€.

μ•ˆλ…•ν•˜μ„Έμš”, μ•„μ£ΌλŒ€ν•™κ΅ λŒ€ν•™μ› 컴퓨터곡학과 μ„λ°•μ‚¬ν†΅ν•©κ³Όμ •μœΌλ‘œ μž¬ν•™ 쀑인 μ΅œμž¬μ›([email protected], 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