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
| const CryptoJS = require('crypto-js') | |
| const e = { | |
| message: "test phát nữa", | |
| clientId: null, // type: Number | |
| toid: "" // type: String | |
| } | |
| const getParam = e => { | |
| const t = CryptoJS.enc.Base64.parse('kMj/NDripXEt4d7Fm9PlwQ==') |
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
| const axios = require('axios') | |
| const { exec } = require('child_process') | |
| const login = require('./login') | |
| const apiTest = () => { | |
| return new Promise((resolve, reject) => { | |
| axios.get('http://13.78.39.26:8081/') | |
| .then(res => { | |
| resolve(res.status) | |
| }) |
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
| https://steamcommunity.com/workshop/filedetails/discussion/1697219667/1769259642876282869/ |
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
| mp_drop_knife_enable "1" | |
| give weapon_knife_butterfly | |
| ent_fire weapon_knife addoutput "classname weapon_knifegg" |
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
| import java.util.Scanner; | |
| public class bai4 { | |
| public static void main(String args[]) { | |
| Scanner in = new Scanner(System.in); | |
| int num = in.nextInt(); | |
| triangle(num); | |
| } | |
| private static void triangle(int num) { | |
| for(int i = 1; i <= num; i++) { |
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
| import java.util.Scanner; | |
| import java.lang.Math; | |
| public class bai3 { | |
| public static void main(String args[]) { | |
| Scanner in = new Scanner(System.in); | |
| System.out.println("a: "); | |
| float a = in.scanner.nextFloat(); | |
| System.out.println("b: "); | |
| float b = in.scanner.nextFloat(); | |
| System.out.println("c: "); |
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
| import java.util.Scanner; | |
| import java.lang.Math; | |
| public class bai2 { | |
| public static void main(String args[]) { | |
| Scanner in = new Scanner(System.in); | |
| System.out.println("m: "); | |
| int m = in.nextInt(); | |
| System.out.println("n: "); | |
| int n = in.nextInt(); | |
| System.out.println(compute(m, n)); |
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
| import java.util.Scanner; | |
| public class bai1 { | |
| public static String baseConversion(String number) { | |
| return Integer.toString(Integer.parseInt(number, 10), 2); | |
| } | |
| public static void main(String[] args) { | |
| Scanner sc = new Scanner(System.in); | |
| String number = sc.next(); | |
| System.out.println(baseConversion(number)); | |
| } |
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
| /** | |
| * @author hypnguyen1209 | |
| */ | |
| (()=>{let e=document.body.getElementsByTagName("script")[6].innerText.match(/\"actorID\":\"(.*?)\",\"/m)[1];fetch("https://www.facebook.com/api/graphql/",{headers:{"content-type":"application/x-www-form-urlencoded","sec-fetch-dest":"empty","sec-fetch-mode":"cors","sec-fetch-site":"same-origin","viewport-width":"1920"},referrer:"https://www.facebook.com/",referrerPolicy:"strict-origin-when-cross-origin",body:`av=${e}&__user=${e}&__a=1&dpr=1&fb_dtsg=${(()=>{let e=document.body.getElementsByTagName("script");for(let t=0;t<e.length;t++)if(e[t].innerText.includes("fb_dtsg"))return e[t].innerText.match(/\"name\":\"fb_dtsg\",\"value\":\"(.*?)\"}/m)[1]})()}&fb_api_caller_class=RelayModern&fb_api_req_friendly_name=CometTrialParticipationChangeMutation&variables=%7B%22input%22%3A%7B%22change_type%22%3A%22OPT_OUT%22%2C%22source%22%3A%22FORCED_GROUP_ADMIN_OPT_OUT%22%2C%22actor_id%22%3A%22${e}%22%2C%22client_mutation_id%22%3A%223%22%7D%7D&server_timestamps=true&doc_id=2317726921658975`,met |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <conio.h> | |
| typedef struct sinh_vien | |
| { | |
| char ho_ten[20]; | |
| float diem_tb; | |
| struct sinh_vien *tiep; |