zhekaus

Results 10 comments of zhekaus

Because it isn’t English but Cyrillic (Russian) in utf8 encoding. If I add headers parameter and JSON_UNESCAPED_UNICODE option, I’ll see Russian text.

I have quite similar issue. I use `npm-run-all` to run Angular (`ng serve`), Laravel (`php artisan server`) and `pug-cli` simultaneously like this (a `package.json` fragment): ``` "scripts": { … "serve":...

The same problem. It looks like nobody wants to fix it. It's necessary to link wiredep and useref to correct path specified in .bowerrc.

I have the same problem.

Этот код при выбранном Serial: GyverUART... выдает ошибку "error: 'sprintf' was not declared in this scope": ``` void setup() { char buf_str[32]; sprintf(buf_str, "%d", 0); } void loop() {} ```...

@philliperosario , thanks for tutorial. however, what about the signing up?

@core01 , many thanks indeed! However, I've got this: ``` Type error: Argument 1 passed to Tymon\JWTAuth\JWT::fromUser() must implement interface Tymon\JWTAuth\Contracts\JWTSubject ``` at the line `$token = JWTAuth::attempt($request->only('email', 'password'));` However,...

@Frondor , As I said before, I did it. There is no problem with a fresh Laravel project. I just can't make it work with the real one.

Finally I’ve solved my problem. Tracing led to wrong config. I had user provider driver set to 'database' before I cached configuration following the tutorial. I changed it to 'eloquent'...