- Nhập
tên phim
vào thanh tìm kiếm - Cú pháp:
Tên
+Năm ra mắt phim
+Season
- Ví dụ:
far from home
2022
Inception
Squid game
S01
Hulk
1080p
Umbrella Academy
S02E04
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
' Save presentation as pptm then create a macro in "View > Macros", run it | |
Sub MkVideo() | |
If ActivePresentation.CreateVideoStatus <> ppMediaTaskStatusInProgress Then | |
ActivePresentation.CreateVideo FileName:=Environ("USERPROFILE") & "\Desktop\video.wmv", _ | |
UseTimingsAndNarrations:=True, _ | |
VertResolution:=1080, _ | |
FramesPerSecond:=60, _ | |
Quality:=100 | |
Else: MsgBox "There is another conversion to video in progress" | |
End If |
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
let jspdf = document.createElement("script"); | |
jspdf.onload = function () { | |
let pdf = new jsPDF(); | |
let elements = document.getElementsByTagName("img"); | |
for (let i in elements) { | |
let img = elements[i]; | |
if (!/^blob:/.test(img.src)) { | |
continue; |
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
# Câu 1 | |
print('CÂU 1:\n') | |
n = 0 | |
while n<10 or n.is_integer() == False: | |
n = float(input("Nhập số nguyên dương lớn hơn 10: ")) | |
n = int(n) | |
# Câu 2 | |
print('\n---\n\nCÂU 2:\n') | |
array = [] |
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
// Hướng dẫn liệt kê danh sách file trong folder Google Drive - GDrive.VIP | |
// GDRIVE.VIP: Dán ID folder vào dưới | |
var folderId = 'ID Folder'; | |
// Function 1: Liệt kê tất cả folder và viết vào sheet. | |
function listFolers(){ | |
getFolderTree(folderId, false); | |
}; |
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
"alt_thumbnail_dearrow_connection_toast": true, | |
"append_time_stamp_information_type": false, | |
"bypass_ambient_mode_restrictions": true, | |
"custom_playback_speed_menu_type": true, | |
"custom_playback_speeds": "0.2\n0.5\n0.7\n1.0\n1.2\n1.3\n1.5\n1.7\n1.8\n2.0\n2.2\n2.5\n3.0\n3.5\n4.0\n5.0", | |
"custom_player_overlay_opacity": 10, | |
"custom_seekbar_color_value": "#ff0000", | |
"default_playback_speed": 1, | |
"default_video_quality_mobile": 720, | |
"default_video_quality_wifi": 1080, |
Tên | Điểm |
---|---|
Huỳnh Minh Anh | 716 |
Trần Nhật Phương Anh | |
Nguyễn Quốc Anh | 893 |
Đào Thị Quỳnh Anh | |
Đoàn Thục Anh | 866 |
Nguyễn Phạm Trâm Anh | 917 |
Nguyễn Tuấn Anh | 680 |
Nguyễn Đức Bảo | 818 |
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
origin =r""" | |
""" | |
import os | |
import sys | |
import fnmatch | |
# Const | |
gboard_format = r"# Gboard Dictionary version:1" | |
gboard_macro = "dictionary.txt" |
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
var getid=async function(sec_user_id,max_cursor){ | |
var res=await fetch("https://www.douyin.com/aweme/v1/web/aweme/post/?device_platform=webapp&aid=6383&channel=channel_pc_web&sec_user_id="+sec_user_id+"&max_cursor="+max_cursor, { | |
"headers": { | |
"accept": "application/json, text/plain, */*", | |
"accept-language": "vi", | |
"sec-ch-ua": "\"Not?A_Brand\";v=\"8\", \"Chromium\";v=\"108\", \"Microsoft Edge\";v=\"108\"", | |
"sec-ch-ua-mobile": "?0", | |
"sec-ch-ua-platform": "\"Windows\"", | |
"sec-fetch-dest": "empty", | |
"sec-fetch-mode": "cors", |
OlderNewer