- MacBook Pro 16-inch, 2021 (M1 Pro, RAM 16GB)
- macOS Sonoma 14.0 (stable)
π
This file contains hidden or 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 React | |
import UIKit | |
class SecureImageView: UIView { | |
@objc var url: String = "" { | |
didSet { | |
do { | |
let imageUrl = URL(string: url) | |
let data = try Data(contentsOf: imageUrl!) | |
let image = UIImage(data: data) |
This file contains hidden or 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
#include <stdio.h> | |
#include <stdlib.h> | |
int set_random() { | |
int result = rand() % 3; | |
return result; | |
} | |
int decision(int computer, int user) { |
I hereby claim:
- I am kentakang on github.
- I am kentakang (https://keybase.io/kentakang) on keybase.
- I have a public key ASDuyvMVkXUz6BGhy8WWpmxe4wtlAyrjutELR-pxrpMWCAo
To claim this, I am signing this object:
This file contains hidden or 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
{ | |
"BTTPresetName" : "Default", | |
"BTTPresetUUID" : "13CE21D5-B6B5-43BD-9BC6-01945FCEDE7A", | |
"BTTPresetContent" : [ | |
{ | |
"BTTAppBundleIdentifier" : "BT.G", | |
"BTTAppName" : "Global", | |
"BTTAppAutoInvertIcon" : 1, | |
"BTTAppSpecificSettings" : { |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.kentastudio.hanyang"> | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" | |
android:roundIcon="@mipmap/ic_launcher_round" | |
android:supportsRtl="true" |
This file contains hidden or 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
<table border=1> | |
<tr> | |
<td>1μ</td> | |
<td>2μ</td> | |
<td>3μ</td> | |
<td>4μ</td> | |
<td>5μ</td> | |
<td>6μ</td> | |
<td>7μ</td> | |
<td>8μ</td> |
This file contains hidden or 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 requests | |
from bs4 import BeautifulSoup | |
import pymysql | |
import datetime | |
conn = pymysql.connect(host='localhost', user='root', password='', db='', charset='utf8') | |
curs = conn.cursor() | |
sql = "INSERT INTO search(first, second, third, fourth, fifth, sixth, seventh, eighth, ninth, tenth, date) VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)" | |
html = requests.get('https://www.naver.com/').text |
This file contains hidden or 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
#include <stdio.h> | |
char goBoard[19][19]; | |
int i, j; | |
void initialize() | |
{ | |
for(i = 0; i < 19; i++) | |
{ | |
for(j = 0; j < 19; j++) |
κΈμ΄μ΄: κΉμ μ£Ό([email protected])
μ΄ λ¬Έμλ ν μνλ‘μ° κ³΅μ νμ΄μ§ λ΄μ©μ λ°νμΌλ‘ λ§λ€μ΄μ‘μ΅λλ€.
ν μνλ‘μ°(TensorFlow)λ κΈ°κ³ νμ΅κ³Ό λ₯λ¬λμ μν΄ κ΅¬κΈμμ λ§λ μ€νμμ€ λΌμ΄λΈλ¬λ¦¬μ λλ€. λ°μ΄ν° νλ‘μ° κ·Έλν(Data Flow Graph) λ°©μμ μ¬μ©νμμ΅λλ€.