Skip to content

Instantly share code, notes, and snippets.

View acious's full-sized avatar

Jongchan Kim acious

View GitHub Profile
@acious
acious / SWM-sched-intro-response.json
Last active May 20, 2023 10:49
SWM-sched-intro-response.json
{
"data":{
"recommandUpdateVersion" : "1.0.5",
"forceUpdateVersion" : "1.0.2",
"loggingSheetUrl":"19VAa-lorpfCz0GMrJT_RHTJtygiBwYnN65bnKw3FKoU",
"renderTrackingSheetUrl":"19VAa-lorpfCz0GMrJT_RHTJtygiBwYnN65bnKw3FKoU"
}
}
@acious
acious / navigation-with-be.json
Created April 24, 2023 08:58
navigation-with-be.json
{
"responseData" : {
"screenName":"Home",
"viewContents" : [
{
"viewType" : "cashPromotionViewType",
"content" : {
"titleRichText" : [
{
"text" : "김종찬님, 냉장고 채울 때가 됐어요!",
@acious
acious / cash-promotion-final.json
Last active April 24, 2023 08:33
cash-promotion-final.json
{
"responseData" : {
"screenName":"Home",
"viewContents" : [
{
"viewType" : "cashPromotionViewType",
"content" : {
"promotions" : [
{
"richContents" : [
@acious
acious / cash-promotion-A.json
Created April 24, 2023 08:15
cash-promotion-A.json
{
"responseData" : {
"screenName":"Home",
"viewContents" : [
{
"viewType" : "cashPromotionViewType",
"content" : {
"promotions" : [
{
"startIcon" : {
@acious
acious / WeatherHomeB.json
Created April 24, 2023 07:09
WeatherHomeB.json
{
"responseData" : {
"screenName":"Home",
"viewContents" : [
{
"viewType" : "BigCarouselViewType",
"content" : {
"items": [
{
"primaryText" : "06:00",
@acious
acious / 200OK-A.json
Last active April 29, 2023 00:50
200OK.json
{
"responseData" : {
"screenName":"Home",
"viewContents" : [
{
"viewType" : "oneDayWeatherViewType",
"content" : {
"primaryTitle" : "April 3 (Mon) 14",
"centerImgUrl" : "https://res.swm.com/2x/clear-sky.png",
"primaryContentText" : "Clear Sky",
@acious
acious / tuist.swift
Created April 11, 2023 18:38
Tuist Transitive setting example
/*
MyApp/
├── A/
└── Sources/
└── A.swift
├── B/
├── Sources/
└── B.swift
└── TuistDependencies.swift
└── C/
@acious
acious / Jongchan_Kim_Bio.md
Last active April 9, 2022 01:57
SW Maestro 멘토 김종찬 Bio

[전문 분야 및 멘토링 범위]

  • Android, iOS 등 모바일 엔지니어링 플랫폼의 기초부터 심화까지의 내용
  • 모바일 서비스를 운영하기위한 Firebase, AB Testing, Logging, Login 등 각종 도구들에 대한 사용 방법
  • 유저에게 통일된 UX 경험과 View 개발의 효율을 제공하는 Design System 빌드 방법
  • 모바일 서비스의 다국어 처리, 국제화 확장을 고려한 서비스 설계 방법
  • UX, UI 디자이너 없이 MVP 레벨의 모바일 서비스를 빠르게 프로토타이핑하고, 빌드업 하는 방법 및 프로세스
  • 변경과 확장에 용이한 서비스를 만들기위한 OOP 스킬

[담당 프로젝트에 대한 서포트 항목]

  • 멘티 입장에서 쉽지않은 프로젝트 진행에 관련한 문서 작성 및 프로포셜 가이드 제공
@acious
acious / SymmetricTreeChecker.java
Created March 1, 2020 02:48
101. Symmetric Tree
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
@acious
acious / testcode.c
Last active June 9, 2018 12:28
Dijkstra Practice
#pragma warning(disable:4996)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h> // sqrt 함수가 선언된 헤더 파일
#define INF (1000000)
int V, E, K;