Skip to content

Instantly share code, notes, and snippets.

View acious's full-sized avatar

Jongchan Kim acious

View GitHub Profile
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
#include <sys/stat.h>
#include <dirent.h>
#include <ctype.h>
#define FIFO_FILE "/tmp/fifo"
@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;
@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 / 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 / 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 / WeatherHomeB.json
Created April 24, 2023 07:09
WeatherHomeB.json
{
"responseData" : {
"screenName":"Home",
"viewContents" : [
{
"viewType" : "BigCarouselViewType",
"content" : {
"items": [
{
"primaryText" : "06:00",
@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 / 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 / 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 / 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"
}
}