Skip to content

Instantly share code, notes, and snippets.

View Giromi's full-sized avatar

Minsuki2(Giromi) Giromi

View GitHub Profile
@Giromi
Giromi / 1-prof.py
Last active March 15, 2024 12:04
로보틱스 교수님 코드 리뷰 및 개선
print('\n\n< Prof. code >')
print('-----------------------------------------')
num_links = 0
num_total_joints = 0
num_fixed_joints = 0
num_revolute_joints = 0
num_prismatic_joints = 0
processed_links = set()
processed_joints = set()
@Giromi
Giromi / obj_function_property.js
Last active April 29, 2023 04:54
[JS] function property 작성 방법
let obj = {
slow1 : function (x) {
console.log(`Called with ${x}`);
return x;
},
slow2(x) {
console.log(`Called with ${x}`);
@Giromi
Giromi / suggestion.md
Last active April 25, 2023 05:43
[JS] Convension
@Giromi
Giromi / ft_atoi.c
Last active April 18, 2023 16:48
ft_atoi.c
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: minsuki2 <minsuki2@student.42seoul.> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/20 12:27:51 by minsuki2 #+# #+# */
/* Updated: 2022/01/24 14:34:34 by minsuki2 ### ########.fr */
/* */