- Nguồn âm thanh:
- File âm thanh (có giọng nói rõ ràng, không nhiễu).
- Độ dài: Tối thiểu 30-60 phút (càng dài càng tốt).
- Định dạng:
.wav
với tần số mẫu 16kHz hoặc 22.05kHz.
- Transcript:
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
Sub TachFileesop() | |
Dim Duongdan As String 'Duong dan hien tai | |
Dim TargetFilePath As String 'Duong dan file muc tieu | |
Dim startIndex As Long ' Diem bat dau chay | |
Dim StartIndexTarget As Long 'Diem bat dau chay cua file muc tieu | |
Dim PassFile As String 'Pass file neu co | |
Dim PassSheet As String 'Pass sheet | |
Dim ColumnCheck As String 'Colum se so sanh' | |
Duongdan = ThisWorkbook.Path | |
' Input Here |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
def load_gist(gist_id): | |
"""translate Gist ID to URL""" | |
from json import load | |
from urllib import urlopen | |
gist_api = urlopen("https://api.github.com/gists/" + gist_id) |
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
alias gitclean="git branch --merged | grep -v \* | xargs git branch -D && git remote update origin --prune" |
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
/// | |
/// OTPService | |
/// cloud_firestore: ^0.12.9 | |
/// firebase_storage: ^3.0.6 | |
/// firebase_auth: ^0.14.0 | |
/// | |
import 'package:firebase_auth/firebase_auth.dart'; | |
typedef void PhoneSubmitCallBack(String status); |
A version number has three components, major.minor.patch e.g. 1.2.13. You decide which to increment based on the changes you have made since the last version.
major.minor.patch
-
Patch is for minor changes or bug fixes
-
Minor is for new functionality
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Localize.py - Incremental localization on XCode projects | |
# João Moreno 2009 | |
# http://joaomoreno.com/ | |
# Modified by Steve Streeting 2010 http://www.stevestreeting.com | |
# Changes | |
# - Use .strings files encoded as UTF-8 |
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
func _ip(r *http.Request) string { | |
//Get IP from the X-REAL-IP header | |
ip := r.Header.Get("X-REAL-IP") | |
netIP := net.ParseIP(ip) | |
if netIP != nil { | |
return ip | |
} | |
//Get IP from X-FORWARDED-FOR header | |
ips := r.Header.Get("X-FORWARDED-FOR") |
NewerOlder