Skip to content

Instantly share code, notes, and snippets.

View hhosu107's full-sized avatar

Chansu Park hhosu107

View GitHub Profile
@Lambda1357
Lambda1357 / 1_LoopLogic.md
Last active January 24, 2023 00:17
Doba's candy drop 360 회전 플랫폼 구현 로직

실제 객체들의 회전 구현 로직

MapLoopNormalPos

    private void Update()
    {
        normalizedPlayerPosition = NormalizeToLoopMap(playerTrans.position.x);

        if (playerTrans.position.x < frontMapBlock.position.x)
        {
@longfin
longfin / writing.md
Last active May 26, 2023 09:22
엔지니어를 위한 글쓰기

이 글은 Heinrich Hartmann 님이 작성하신 글을 한국어로 번역한 것입니다. 원문은 https://www.heinrichhartmann.com/posts/writing/ 에서 확인하실 수 있습니다.


글쓰기는 큰 조직에서 영향력을 발휘하는 데 중요합니다. 경력 있는 소프트웨어 엔지니어로서의 글쓰기는 직무 범위를 확장하고 경력을 발전시키기 위해 획득해야 하는 가장 중요한 기술입니다.

글쓰기는 어렵습니다. 많은 소프트웨어 엔지니어들이 글쓰기와 씨름하죠. 저도 개인적으로 문학에 대한 관심이 없기 때문에 글쓰기가 자연스럽지 않았습니다.

@msg555
msg555 / 3dhull.cpp
Last active April 1, 2023 17:39
3D Convex Hull
#include <iostream>
#include <vector>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <cassert>
using namespace std;