Skip to content

Instantly share code, notes, and snippets.

View PikarryPham's full-sized avatar
🌈
Love rainbow

Phạm Ngọc Thùy Trang PikarryPham

🌈
Love rainbow
  • 21:23 (UTC -12:00)
View GitHub Profile
@ak--47
ak--47 / productSchool.js
Last active April 18, 2024 12:11
💾 data loader for the Product Analytics Certification
//PUT YOUR MIXPANEL TOKEN AND SECRET BELOW:
const credentials = {
"token": "your-mixpanel-token-here",
"secret": "your-mixpanel-secret-here"
}
/*
@paulnguyen-mn
paulnguyen-mn / reactjs-interview-tips.md
Last active March 7, 2023 12:16
Bí kíp cho buổi phỏng vấn ReactJS thành công 🎉

Bí kíp cho buổi phỏng vấn ReactJS thành công 🎉

From unplash.com

AGENGA:

  1. Một vài lưu ý chung
  2. Ôn tập kiến thức JS/ReactJS
  3. Cày thuật toán, giải thuật
  4. Tìm hiểu về công ty mà mình xin ứng tuyển
@paulnguyen-mn
paulnguyen-mn / git-end-to-end-commands.md
Last active June 9, 2022 03:42
Những lệnh git sử dụng từ lúc nhận task cho đến khi tạo PR 😍

GIT - CÁC LỆNH ĐƯỢC DÙNG TỪ LÚC NHẬN TASK CHO TỚI LÚC TẠO PR 🎉

0. Nhận task, ví dụ ở đây task có id là 123

  • Tí nữa, đọc thấy tạo nhánh có số 123 thì các bạn hiểu ngầm nó chính là taskId nhen.
  • Ví dụ team mình dev trên nhánh develop.

1. Lấy code mới nhất trên branch develop

@ichirou2910
ichirou2910 / walltext.py
Created February 7, 2020 17:44
Script to print notes on your desktop
#!/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
@uhpd
uhpd / Quan_Ly_Ban_Hang.sql
Last active April 12, 2024 02:29
Quản Lý Bán Hàng _coppy share
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)
{