Skip to content

Instantly share code, notes, and snippets.

View chiwanpark's full-sized avatar

Chiwan Park chiwanpark

View GitHub Profile
From 428b2335978c852f0816cdb3c1de07db1db01a0d Mon Sep 17 00:00:00 2001
From: Chiwan Park <[email protected]>
Date: Fri, 13 Jan 2017 11:43:44 +0900
Subject: [PATCH] Update font version to 1.2 and fix upstream URL
---
.SRCINFO | 10 ++++------
PKGBUILD | 11 +++++------
2 files changed, 9 insertions(+), 12 deletions(-)
@chiwanpark
chiwanpark / sample.py
Created February 28, 2017 07:41
Python size of module
import sys
import numpy as np
print(sys.getsizeof(np)
@chiwanpark
chiwanpark / install-arch-linux-rpi-zero-w.sh
Created November 22, 2017 12:42 — forked from larsch/install-arch-linux-rpi-zero-w.sh
Install Arch Linux ARM for Raspberry Pi Zero W on SD Card (with commands to configure WiFi before first boot).
#!/bin/sh -exu
dev=$1
cd $(mktemp -d)
function umountboot {
umount boot || true
umount root || true
}
# RPi1/Zero (armv6h):
@chiwanpark
chiwanpark / kakao-login.jsx
Created December 25, 2022 16:06
Kakao Login
import { useCallback, useEffect } from 'react';
import { Button } from 'components/button';
import { iconKakaoTalk } from 'components/icon';
const KAKAO_SDK_ID = 'solvesql_kakao_sdk';
const KAKAO_SDK_PATH = '//developers.kakao.com/sdk/js/kakao.min.js';
export const KakaoLogin = props => {
const { appKey, className } = props;