Skip to content

Instantly share code, notes, and snippets.

View nguyentuan1696's full-sized avatar
🎯
Focusing

Tuan Nguyen nguyentuan1696

🎯
Focusing
View GitHub Profile
---
title: Hướng dẫn làm ngữ âm tiếng anh THPT
seoTitle: Hướng dẫn làm ngữ âm tiếng anh THPT
description: Hướng dẫn làm ngữ âm tiếng anh THPT
---
Bài đầu tiên trong loạt bài [hướng dẫn tự ôn thi Tiếng Anh](/bai-viet/huong-dan/tieng-anh-thpt) THPT Quốc Gia,
Thích Tiếng Anh chia sẻ "[Hướng dẫn cách làm dạng bài ngữ âm Tiếng Anh ôn thi THPT Quốc Gia](/bai-viet/huong-dan/ngu-am-thpt)",
bài viết sẽ đưa ra phương pháp làm dạng bài ngữ âm - trọng âm Tiếng Anh, các mẹo quy tắc đánh trọng âm - ngữ âm đầy đủ đễ nhớ, với ví dụ minh họa cụ thể để bạn nắm vững kiến thức làm dạng bài ngữ âm
@nguyentuan1696
nguyentuan1696 / gist:0f94475b41286319985ccb673b089fff
Created August 2, 2023 15:50
Key ZOC 8 Terminal Full for Windows macOS Linux
/* Key ZOC8 Terminal, đã test trên MacOS và WIndows. Chia sẻ bởi https://www.flatsome.io */
#Dòng đầu sn-part:
51698/01027/34713
#Dòng 2:
00937
@nguyentuan1696
nguyentuan1696 / random-string-golang
Created March 10, 2023 15:35
Random string best performance in Golang
// https://stackoverflow.com/questions/22892120/how-to-generate-a-random-string-of-a-fixed-length-in-go
package main
import (
"fmt"
"math/rand"
"time"
"unsafe"
)
//dev.to/vvo/how-to-solve-window-is-not-defined-errors-in-react-and-next-js-5f97
// https://frontend-digest.com/why-is-window-not-defined-in-nextjs-44daf7b4604e
import { useEffect, useState } from 'react'
import ExecutionEnvironment from './ExecutionEnvironment'
const windowSizes = {
desktop: 'desktop',
mobile: 'mobile',
ssr: 'ssr',
}
@nguyentuan1696
nguyentuan1696 / check-is-external-url-example
Created November 26, 2021 05:18
Check is external url
export function hasProtocol(url) {
return /^(\w*:|\/\/)/.test(url) === true
}
export default function isInternalUrl(url) {
return typeof url !== 'undefined' && !hasProtocol(url)
}
@nguyentuan1696
nguyentuan1696 / gist:7d24f453b295503188176d4a41219341
Created June 8, 2021 08:22
Hide control button google doc in preview mode
<div style="height: 480px; position: relative; width: 100%;">
<iframe height="480" src="https://drive.google.com/file/d/14Y_L3F9VFUn-Sk2P_HOjt5f_-MbcpV1o/preview" width="100%"></iframe><br />
<div style="height: 80px; opacity: 0; position: absolute; right: 0px; top: 0px; width: 80px;">
</div>
</div>