This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import numpy as np | |
print(sys.getsizeof(np) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -exu | |
dev=$1 | |
cd $(mktemp -d) | |
function umountboot { | |
umount boot || true | |
umount root || true | |
} | |
# RPi1/Zero (armv6h): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
OlderNewer