Thứ Ba, 21 tháng 9, 2021

Các thật ngữ và từ viết tắt trong Big Data

Các từ viết tắt
  1. HDP: Hortonworks Data Platform
  2. CDP: Cloudera Data Platform
  3. DA: Data Analyst
  4. DE: Data Engineer
  5. DS: Data Scientist
  6. BA: Business Analyst
  7. DBA: Database Administrator
  8. DG: Data Governance
  9. HDFS: Hadoop Distributed File System
Các công nghệ 

  1. Hadoop: 
  2. Spark:
  3. Yarn:
  4. Hive:
  5. NIFI:

Chủ Nhật, 31 tháng 1, 2021

Laravel 8: 419 page expired

 *** thêm thẻ @csrf vào form:

<form action="{{route('postForm')}}" method="POST">

@csrf

...

</form>

Thứ Bảy, 30 tháng 1, 2021

Laravel 8 - Target class [Controller] does not exist

*** Mở file: app/Http/Providers/RouteServiceProvider.php
*** Thêm dòng code: protected $namespace = 'App\Http\Controllers';

<?php

namespace App\Providers;

use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;

class RouteServiceProvider extends ServiceProvider
{
    /**
     * The path to the "home" route for your application.
     *
     * This is used by Laravel authentication to redirect users after login.
     *
     * @var string
     */
    public const HOME = '/home';
    protected $namespace = 'App\Http\Controllers';

    /**
     * The controller namespace for the application.
...