Skip to content

Instantly share code, notes, and snippets.

View hololoev's full-sized avatar

Ilya Yurchenko hololoev

View GitHub Profile
@hololoev
hololoev / right
Last active March 20, 2018 13:41
class CurlRequest
{
public $api_url = "";
public $key = "";
function __construct($key, $api_url, $timeOut)
{
$this->key = $key;
$this->api_url = $api_url;
$this->timeOut = $timeOut;
@hololoev
hololoev / Reflux-Issue
Last active July 11, 2017 08:11
Problem with reflux 6.4.1
// file actions.js
const React = require('react');
const Reflux = require('reflux');
var Actions = Reflux.createActions([
'testAction',
]);
module.exports = Actions;