일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 코로나
- 당사자표시정정신청서
- 인민공원
- win32
- Python
- 사업자계좌
- as후기
- Eclipse
- vue
- Laravel
- 소액임금체불
- 전자소송
- auth
- php
- Tutorial
- 코로나19
- Bootstrap
- reactnative
- 체당금
- Blade
- 홈택스
- 이더리움
- 개인사업자
- javascript
- 보정명령
- Sentinel
- blockchain
- Java
- cartalyst
- elasticSearch
- Today
- Total
목록Development (103)
그냥 사는 이야기
AMD 라이젠 가상화 활성화 하기 (AMD-V) Virtualbox나 VMWare같은 가상머신을 사용하려면 CPU의 가상화 기능이 활성화 되어야 그나마 조금 빨리 사용할 수 있다. 이 기술은 나온지 꽤 되었기 때문에 요즘은 대부분은 기능이 있을 것이다. 일부 특별한(?) 경제적 모델 빼고는.... 이게 CPU 제조사마다 기술이름이 다르지만 같은 기능이다. 인텔 : VT-x AMD : AMD-V Ryzen(라이젠)의 AMD-V 확인 PC CPU중 AMD가 근래에는 사용자층이 늘고 있다. 가격도 상대적으로 저렴하고 기능도 우세하고 코어수도 훨씬 많고. 기술적으로 인텔을 능가하는 스펙을 훨씬 저렴하게 공급하고 있기 때문이다. 그래서 AMD PC가 많이 늘어나고 있는데 AMD-V 지원유무를 확인해야 할 필요가 ..
윈도우즈 8 x64 환경에서 MariaDB를 설치하다 에러가 났다. 나중에 다시 인스톨하라고 하지만 계속해도 마찬가지였다. Mysql도 에러 mariadb 최신이 안되면 mysql은 되지 않을까 싶어서 다시 했더니 역시나 설치가 안되었다. 에러 내용을 텍스트로 옮기면 아래와 같다. MySQL error 1042: Unable to connect to any of the specified MySQL hosts. Waiting 5 seconds before the next connection attempt... Retry 10: Attempting to connect to Mysql@localhost:3306 with user root with no password... MySQL error 1042: Un..
Kibana Data 준비 curl -X DELETE localhost:9200/basketball {"acknowledged":true} curl -X PUT localhost:9200/basketball {"acknowledged":true,"shards_acknowledged":true,"index":"basketball"}rudalson@C02WR164G8WL:~/Applications:> curl -X PUT 'localhost:9200/basketball/record/_mappin' -H 'Content-Type: application/json' -d @basketball_mapping.json {"_index":"basketball","_type":"record","_id":"_mappin"..
Search 우선 샘플데이터 삽입하여 넣어 놓는다. curl -X POST 'localhost:9200/_bulk' -H 'Content-Type: application/json' --data-binary @simple_basketball.json 확인은 아래와 같다. curl -XGET localhost:9200/basketball/record/_search?pretty points=30 검색한다면 curl -X GET 'localhost:9200/basketball/record/_search?q=points:30&pretty' -H 'Content-Type: application/json' request body를 사용한 검색 curl -X GET 'localhost:9200/basketball/re..
Elasticserarch curl -X GET http://localhost:9200?pretty { "name" : "Vett6lF", "cluster_name" : "elasticsearch", "cluster_uuid" : "-GeFznOrQkqjg7qpyNysiw", "version" : { "number" : "6.4.2", "build_flavor" : "default", "build_type" : "tar", "build_hash" : "04711c2", "build_date" : "2018-09-26T13:34:09.098244Z", "build_snapshot" : false, "lucene_version" : "7.4.0", "minimum_wire_compatibility_versi..
Edit & Delete resources/views/admin/posts/edit.blade.php @extends('layouts.dashbord') @section('content') Update Post Title Description Thumbnail @if(!old('body')) {!! $post->body !!} @endif {!! old('body') !!} @if($post->active == '1') @else @endif Delete @endsection App/Http/Controllers/Auth/PostController public function edit(Request $request, $slug) { public function edit(Request $request, $..
Create, Store Post 생성 App/Http/Controllers/Auth/PostController public function create(Request $request) { // if user can post i.e. user is admin or author if ($request->user()->can_post()) { return view('admin/posts/create'); } else { return redirect('/')->withErrors('You have not sufficient permissions for writing post'); } } public function store(Request $request) { $post = new Post(); $post->..
Admin PostController Admin dashboard 에서 사용할 PostController를 별도로 만든다. 기존의 PostController와 이름이 같기 때문에 Auth 디렉토리 밑으로 생성한다. php artisan make:controller Auth/PostController --resource App/Http/Controllers/Auth/PostController use App\Post; use App\User; class PostController extends Controller { public function index(Request $request) { $search = $request->get('search'); $posts = Post::where('title', '..