CATF44LT7C-eyJsaWNlbnNlSWQiOiJDQVRGNDRMVDdDIiwibGljZW5zZWVOYW1lIjoiVmxhZGlzbGF2IEtvdmFsZW5rbyIsImFzc2lnbmVlTmFtZSI6IiIsImFzc2lnbmVlRW1haWwiOiIiLCJsaWNlbnNlUmVzdHJpY3Rpb24iOiJGb3IgZWR1Y2F0aW9uYWwgdXNlIG9ubHkiLCJjaGVja0NvbmN1cnJlbnRVc2UiOmZhbHNlLCJwcm9kdWN0cyI6W3siY29kZSI6IklJIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiQUMiLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJEUE4iLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJQUyIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IkdPIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiRE0iLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJDTCIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IlJTMCIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IlJDIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiUkQiLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJQQyIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IlJNIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiV1MiLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJEQiIsI
This file contains 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
FROM php:fpm | |
# Install packages | |
RUN apt-get update | |
RUN apt-get install -y unzip | |
RUN apt-get install -y libaio1 | |
# Oracle instantclient | |
ADD instantclient-basic-linux.x64-11.2.0.4.0.zip /tmp/ | |
ADD instantclient-sdk-linux.x64-11.2.0.4.0.zip /tmp/ |
This file contains 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 samark chaisanguan | |
' @Email [email protected] | |
' @Since 20/07/2020 | |
' Defined global input string | |
Global inputString As String | |
Sub testValidateTxtInput() | |
inputString = Range("A1") |
This file contains 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
+ | |
| Domain | Method | URI | Name | Action | Middleware | | |
+--------+----------+------------------------------------------------+----------+---------------------------------------------------------------------------------------------------------+-------------------+ | |
| | GET|HEAD | / | | Closure | web | | |
| | GET|HEAD | api/v1/account | | App\Http\Controllers\AccountTransaction\AccountTransactionController@getAccountList | api,jwt | | |
| | POST | api/v1/account/create | | App\Http\Controllers\AccountTransaction\AccountTransactionController@createAccountTransaction | ap |
This file contains 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
APP_ENV=local | |
APP_KEY=base64:z5OBA76pBchX5P8XqrGVl2mP3p7ki29WpUazHkfV8I4= | |
APP_DEBUG=true | |
APP_LOG_LEVEL=debug | |
BACKEND_URL=http://backend | |
DB_CONNECTION=mysql | |
DB_HOST=mariadb | |
DB_PORT=3306 |
This file contains 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
version: '2.3' | |
services: | |
webapp: | |
image: maxca789/php56apachecomposer | |
container_name: backend | |
ports: | |
- "8011:80" | |
volumes: | |
- .:/var/www/html/ |
This file contains 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
version: '2.3' | |
services: | |
mysql: | |
restart: always | |
image: mariadb:10.3 | |
container_name: mariadb | |
ports: | |
- "3307:3306" | |
volumes: |
This file contains 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
version: '2.3' | |
services: | |
webapp: | |
image: maxca789/php56apachecomposer | |
container_name: frontend | |
ports: | |
- "8010:80" | |
volumes: | |
- .:/var/www/html/ |
This file contains 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
<?php | |
namespace App\Repositories\Members; | |
use App\Repositories\BaseRepositoryWrap; | |
use App\Forcatings; | |
class MembersRepository extends BaseRepositoryWrap | |
{ | |
/** | |
* set total count |
This file contains 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: [email protected] | |
**/ | |
INPUT: Word | |
Output: Sentiment Classification | |
Set class = {positive, negative, neutral} | |
Set prior = {0.3333, 0.3333, 0.3333} | |
Set score = 1 |
NewerOlder