AGENGA:
- Một vài lưu ý chung
- Ôn tập kiến thức JS/ReactJS
- Cày thuật toán, giải thuật
- Tìm hiểu về công ty mà mình xin ứng tuyển
//PUT YOUR MIXPANEL TOKEN AND SECRET BELOW: | |
const credentials = { | |
"token": "your-mixpanel-token-here", | |
"secret": "your-mixpanel-secret-here" | |
} | |
/* |
#!/usr/bin/env python3 | |
# Thanks to Jacob Vlijim for the original script, for more info please refer to the source | |
# Source: https://askubuntu.com/questions/556723/make-a-text-file-my-automatically-updated-background | |
# Edited by Ichirou2910 for personal needs | |
# Update 8 Feb 2020: | |
# - You can use tab, define your tab so it will replace the "TAB" you enter | |
# - Remove strip() when reading from file to be able to use tab |
CREATE DATABASE QLBH | |
----------------------------------------------------- | |
----------------------------------------------------- | |
---------------------------------------------USE QLBH | |
-- KHACHANG | |
CREATE TABLE KHACHHANG( | |
MAKH char(4) not null, | |
HOTEN varchar(40), | |
DCHI varchar(50), | |
SODT varchar(20), |
/* | |
* Simple MD5 implementation | |
* | |
* Compile with: gcc -o md5 -O3 -lm md5.c | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdint.h> | |
import java.math.BigInteger; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
public class BaseConvert | |
{ | |
public static void main(String[] args) throws Throwable | |
{ | |
if(args.length < 3) | |
{ |