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 | |
use Illuminate\Support\Facades\Redis as Redis; | |
class SroMessagesController extends \BaseController { | |
public function getIndex() | |
{ | |
$messages = new SroMessage(); |
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
<template> | |
<div> | |
<steps | |
v-for="(step, index) in steps" | |
:step="step" | |
:current="current" | |
:index="index" | |
:button_url="button_url" | |
:button_text="button_text" | |
:button_type="button_type" |
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 | |
/** | |
* Created by PhpStorm. | |
* User: vladimir | |
* Date: 12/05/2018 | |
* Time: 1:22 PM | |
*/ | |
namespace App; | |
use Illuminate\Support\Facades\DB; |
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; | |
use Carbon\Carbon; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Database\Eloquent\SoftDeletes; | |
use App\Instrument; | |
use App\Source; | |
use App\Person; |
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; | |
use Carbon\Carbon; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Database\Eloquent\SoftDeletes; | |
use App\Instrument; | |
use App\Source; | |
use App\Person; |
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\Http\Controllers\Api; | |
use App\Company; | |
use App\Http\Controllers\Controller; | |
use App\Http\Resources\CompanyCollection; | |
use App\Http\Resources\SingleCompany; | |
use Illuminate\Http\Request; | |
/** | |
* @group Companies | |
* |
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
#!/usr/bin/env node | |
let WebSocketClient = require('websocket').client; | |
let client = new WebSocketClient(); | |
let moment = require('moment'); | |
const url = 'mongodb://localhost:27017'; | |
const dbName = 'binance'; | |
// const collectionName = "\u006D\u0061\u0074\u0069\u0063\u005F\u0062\u0074\u0063\u0073"; | |
const collectionName = "trades"; | |
const MongoClient = require('mongodb').MongoClient; | |
const assert = require('assert'); |
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
{ | |
"_id" : ObjectId("5e613eb27d5aa0c3d9397948"), | |
"fixture_id" : NumberInt(65), | |
"updated_at" : ISODate("2020-03-05T18:02:26.000+0000"), | |
"created_at" : ISODate("2020-03-05T18:02:26.000+0000"), | |
"awayTeam" : { | |
"team_id" : NumberInt(46), | |
"team_name" : "Leicester", | |
"logo" : "https://media.api-sports.io/teams/46.png" | |
}, |
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
{ | |
"api": { | |
"results": 1, | |
"standings": [ | |
[ | |
{ | |
"rank": 1, | |
"team_id": 50, | |
"teamName": "Манчестер Сити", | |
"logo": "https://media.api-sports.io/teams/50.png", |
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
{ | |
"api": { | |
"results": 1, | |
"standings": [ | |
[ | |
{ | |
"rank": 1, | |
"team_id": 50, | |
"teamName": "Манчестер Сити", | |
"logo": "https://media.api-sports.io/teams/50.png", |
OlderNewer