Skip to content

Instantly share code, notes, and snippets.

View jaecheoljung's full-sized avatar

jaecheoljung

View GitHub Profile
@jaecheoljung
jaecheoljung / FloatingPanel.swift
Last active April 8, 2021 11:54
(Floating Panel || Bottom Sheet || Floating View) in SwiftUI
//
// FloatingPanel.swift
// UITest
//
// Created by USER on 2021/04/07.
//
import SwiftUI
import Introspect
https://egg-money.tistory.com/115
@jaecheoljung
jaecheoljung / main.py
Created July 12, 2020 12:20
m4a audio file to text
import speech_recognition as sr
import sys
from pydub import AudioSegment
if __name__ == "__main__":
args = sys.argv
if len(args) < 3:
print("Input filename, language(ex. ko-KR)")
exit(0);
@jaecheoljung
jaecheoljung / acquire.py
Last active June 23, 2021 08:43
Acquire data
# Pandas DataFrame을 사용
train_df = pd.read_csv('../input/train.csv')
test_df = pd.read_csv('../input/test.csv')
combine = [train_df, test_df]
train_df.head()