Skip to content

Instantly share code, notes, and snippets.

View chrishieu's full-sized avatar
🧑‍🚒
keep calm and stay focused

chrishieu

🧑‍🚒
keep calm and stay focused
View GitHub Profile
This file has been truncated, but you can view the full file.
{
"5234132": {
"pcb": {
"risk_rule": {
"pcb_instalment_monthly_payment": 0,
"pcb_is_reject_recent_credit": false,
"pcb_is_reject_current_final": false,
"pcb_is_reject_6m_final": false,
"pcb_is_reject_36m_final": false,
"pcb_remaining_instalment_amt_FC": 0,
{
"5184286": {
"pcb": {
"risk_rule": {
"pcb_instalment_monthly_payment": 1573528,
"pcb_is_reject_recent_credit": false,
"pcb_is_reject_current_final": false,
"pcb_is_reject_6m_final": false,
"pcb_is_reject_36m_final": false,
"pcb_remaining_instalment_amt_FC": 53499952,

Danh sách yêu cầu cần thực hiện

1. Vấn đề nhiệt độ iPhone 15

  • ✅ Đã được cải thiện, buổi test không xảy ra

2. Vấn đề mạng Wifi -> Wifi

  • Vấn đề: Không enable local: bị rớt mạng trong quá trình stream, kết nối bị lâu
  • Trạng thái: ⚠️ Cần Fix

3. Event tracking ✅

<?php
class TextInput {
// Properties
public $value;
// Methods
function add($text) {
$this->value .= $text;
}
<?php
$a1=array('Ava', 'Emma', 'Olivia');
$a2=array('Olivia', 'Sophia', 'Emma');
function unique_names ($a1, $a2) {
return (array_unique(array_merge($a1,$a2), SORT_REGULAR));
}
print_r(unique_names($a1, $a2));
<?php
$input = array("Input.txt" => "Randy", "Code.py" => "Stan", "Output.txt" => "Randy");
$arr = array();
foreach ($input as $key => $item) {
$arr[$item][] = $key;
}
var_dump($arr);
@chrishieu
chrishieu / sample_resp.json
Last active August 27, 2021 09:04
Hieu_sample_resp_public
{
"value": {
"id": "01f15513-d59d-4082-a145-3cd4a5084741",
"result": "D",
"reason": "Credo: High Risk Country (Vietnam)",
"statedIp": "0:0:0:0:0:ffff:ac12:4",
"accountCode": "credolab_test@mafc.com.vn",
"trackingNumber": 140497178202088257,
"details": {
"device": {
@chrishieu
chrishieu / frms.json
Created June 15, 2020 06:39
FRMS Phase 1 Output Proc
{
"status" : "True",
"data": []
}
{
"status" : "False",
"data": []
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
import { Get, Controller, Render, Dependencies } from '@nestjs/common';
import { CategoryServiceImpl } from 'Services/Implementation/category.service.impl';
import { CategoryService } from 'Services/category.service';
import { DictionaryServiceImpl } from 'Services/Implementation/dictionary.service.impl';
import { PromotionServiceImpl } from 'Services/Implementation/promotion.service.impl';
import { PromotionService } from 'Services/promotion.service';
import { DictionaryService } from 'Services/dictionary.service';
@Controller()
@Dependencies(CategoryServiceImpl, PromotionServiceImpl, DictionaryServiceImpl)