Skip to content

Instantly share code, notes, and snippets.

View KevinNitroG's full-sized avatar
🤑
Money

Kevin Nitro KevinNitroG

🤑
Money
View GitHub Profile
@KevinNitroG
KevinNitroG / muc_luc_triet.md
Created November 7, 2024 18:03
Mục lục triết

WTF IS THIS

Ờm ko biết bro


Chương 1: KHÁI NIỆM VỀ TRIẾT HỌC VÀ TRIẾT HỌC MÁC - LÊNIN

I. TRIẾT HỌC VÀ VẤN ĐỀ CƠ BẢN CỦA TRIẾT HỌC

@KevinNitroG
KevinNitroG / download_weibo.ps1
Created November 6, 2024 07:47
download image from weibo
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
@KevinNitroG
KevinNitroG / course-moodle-uit.md
Last active November 12, 2024 06:17
Lấy kết quả từ course moodle UIT

What's this

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.


1. Truy cập file JS

  1. F12 vào tab Source
  2. File: h5player (embed.PHP) -> h5p-frame-*(about:blank) -> courses.uit.edu.vn -> pluginfile.php -> ... -> cachedatasets -> *.js
@KevinNitroG
KevinNitroG / delete_all_stylus_styles.md
Last active November 10, 2024 11:51
Delete all stylus styles
  • 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

}

@KevinNitroG
KevinNitroG / garudalinux.txt
Created August 4, 2024 14:08
Garuda Linux
https://bin.garudalinux.org/?4e769a49118e1b58#GWL5KGY2v7YNrL2gB9wq18fJFP3uoj2oUKd5daEHFxdN
@KevinNitroG
KevinNitroG / IT002-23520161-Buoi_7-Bai_1.cpp
Created April 5, 2024 14:46
gửi thầy Khánh hỏi về sử dụng overload operator >> của parent class cho child class
#include <cstring>
#include <iostream>
#include <string.h>
#include <string>
using namespace std;
class CanBoVienChuc
{
friend class GiangVien;
@KevinNitroG
KevinNitroG / heapSort.cpp
Last active March 8, 2024 11:43
Code C++ Heap Sort & Quick Sort cho thuyết trình DSA UIT IT003.O24 (giảng viên cô Dương Việt Hằng)
#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};
@KevinNitroG
KevinNitroG / README.md
Last active September 28, 2024 11:03
Triển khai khảo sát sự hài lòng của người học với trải nghiệm học tập (chỉ số IR3_dự án VUDP)

https://ks.vnuhcm.edu.vn/khao-sat/chi-tiet-khao-sat

f12 paste vào console lệnh dưới

Nguyên văn email

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.

@KevinNitroG
KevinNitroG / ticket.cpp
Last active November 6, 2023 17:41
WeCode lỏ
#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;
}