Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
�V KORF hDRK(prcisson) Halay Perc Tati mixkit 2 Resat kit 5 Yeni Perc 2012 RMX Drums | |
House kit Ti2 House kit Ti1 Yeni Perc 2013* Tati mixkit 3 Tati mixkit 2 Tati mixkit 1 Stadium kit Ti Stadium kit2 Ti Session kit2 Ti Session kit2 Ti House kit Yeni Ti SFX AY KiT deneme TATi KIT | |
RockDrummer v2 Funk Drummer irt Funk Drummer irt RockDrummer v2 Tati`s worldPerc Tati`s Perc 01 2 @ Tati Perc 2014 @Tati Perc Tati mixkit 3 ~ House kit Yeni Funk Drummer irt | TSM kit !!SE!! Tati mixkit 1 } House kit Yeni { Ay Kit ORJ z Session kit2 Ti x House kit Yeni y AY KiT deneme p Stadium kit Ti q AY KiT deneme NM Darbuka Kit EMO- |
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; | |
use Illuminate\Http\Request; | |
use Intervention\Image\Facades\Image; | |
use Storage; | |
use Http; | |
use Cache; |
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
const fs = require('fs'); | |
const Parser = require('binary-parser').Parser; | |
// Define the structure of the STY file | |
const StyParser = new Parser() | |
.endianess('little') | |
.uint32('magic') | |
.uint32('version') | |
.uint32('size') | |
.string('name', { length: 32, encoding: 'ascii' }) |
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
export default { | |
data(){ return { | |
currentPage: 1, | |
perPage: 50, | |
data: null, | |
}}, | |
computed: { | |
items(){ | |
return this.data ? this.data.data : [] |
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\WCX; | |
use App\Http\Controllers\Controller; | |
use Illuminate\Http\Request; | |
class IRCClient extends Controller | |
{ | |
protected $socket; |
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": "tt1375666", | |
"title": "Inception", | |
"originalTitle": "", | |
"fullTitle": "Inception (2010)", | |
"type": "Movie", | |
"year": "2010", | |
"image": "https://imdb-api.com/images/original/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_Ratio0.6751_AL_.jpg", | |
"releaseDate": "2010-07-16", | |
"runtimeMins": "148", |
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
const host = window.location.host; | |
const parts = host.split('.'); | |
const domainLength = 3; // route1.example.com => domain length = 3 | |
const router = () => { | |
let routes; | |
if (parts.length === (domainLength - 1) || parts[0] === 'www') { | |
routes = index; | |
} else if (parts[0] === 'route1') { | |
routes = route1; |
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
let withdrawalAmount = 10 | |
let fetchOptions = { | |
headers: { | |
'Authorization': 'bearer '+window.localStorage["sessionToken"], | |
'Content-Type': 'application/json' | |
}, | |
body: JSON.stringify({ amount: window.tronWeb.toSun(withdrawalAmount) }), | |
method: 'POST' | |
}; |
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
//pragma solidity 0.5.17; | |
pragma experimental ABIEncoderV2; | |
contract Context { | |
// Empty internal constructor, to prevent people from mistakenly deploying | |
// an instance of this contract, which should be used via inheritance. | |
constructor () internal { } | |
// solhint-disable-previous-line no-empty-blocks | |
function _msgSender() internal view returns (address payable) { |