Ờm ko biết bro
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
Get-Clipboard > _test.html | |
prettier _test.html | Select-String -Pattern 'src="' | ForEach-Object { | |
if ($_ -match 'src="([^"]+)"') | |
{ | |
$url = $matches[1] | |
curl --header "Referer: https://m.weibo.cn/" --header "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" --header "Sec-Fetch-Site: cross-site" --output $([System.IO.Path]::GetFileName($url)) $url | |
} | |
} | |
Remove-Item -Path _test.html -Force |
Lấy dữ liệu đáp án của các bài tập học trực tuyến trên Course Moodle UIT (ví dụ môn OS của thầy Duy). Cơ chế là log dữ liệu khi trang web load.
- F12 vào tab Source
- File:
h5player (embed.PHP)
->h5p-frame-*(about:blank)
->courses.uit.edu.vn
->pluginfile.php
-> ... ->cachedatasets
->*.js
- Open stylus manager page
- F12
- Paste this script in the console
Or add this snippet. Then Ctrl + Enter
async function deleteStyle() { const deleteBtn = document.querySelector('p.actions > a.delete'); if (!deleteBtn) { return 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
https://bin.garudalinux.org/?4e769a49118e1b58#GWL5KGY2v7YNrL2gB9wq18fJFP3uoj2oUKd5daEHFxdN |
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
#include <cstring> | |
#include <iostream> | |
#include <string.h> | |
#include <string> | |
using namespace std; | |
class CanBoVienChuc | |
{ | |
friend class GiangVien; |
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
#include <bits/stdc++.h> | |
using namespace std; | |
void heapify(int[], int, int); | |
void heapSort(int[], int); | |
void display(int[], int); | |
int main() | |
{ | |
int arr[] = {1, 14, 3, 7, 0}; |
https://ks.vnuhcm.edu.vn/khao-sat/chi-tiet-khao-sat
f12 paste vào console lệnh dưới
Chào các bạn sinh viên!
Với nhu cầu cấp thiết trong việc nâng cao chất lượng nguồn nhân lực trong bối cảnh hội nhập kinh tế và sự bùng nổ của thời đại công nghệ 4.0, trong khuôn khổ Dự án Phát triển các Đại học Quốc gia Việt Nam.
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
#include <iostream> | |
using namespace std; | |
// Bước check 1: Quick check xem có thoả mãn tồn tại không | |
bool checkValid(int first, int sec) | |
{ | |
if (first > 18 || sec > 18 || first < sec) | |
return false; | |
return true; | |
} |
NewerOlder