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
import React, { Component } from 'react'; | |
import isEqual from 'lodash/isEqual'; | |
import ItemsList from './ItemsList'; | |
import createPolling from './createPolling'; | |
class Items extends Component { | |
constructor(props) { | |
super(props); |
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
import { Client } from 'subscriptions-transport-ws'; | |
const client = new Client(`ws://localhost:4001/`); | |
const query = `subscription events { | |
eventsUpdated{ | |
Name | |
} | |
}`; |
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
var pabs = new [] | |
{ | |
new { | |
id = 0, name = "Green Way", | |
address= "Льва Толстого вул., 31", | |
lat = 48.62079866700977, | |
lng = 22.291045737400175 | |
}, | |
new { | |
id = 1, name = "R4", |
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
// type your offers.xml path | |
var xmlUrlOrPath = @"D:\Work\parfumstudio\Exchange\offers_2014-10-10T02-08-30.xml"; | |
var doc = XDocument.Load(xmlUrlOrPath); | |
// parse xml | |
var offers = doc.Descendants("Предложение") | |
.Where(o => o.Element("Штрихкод") != null) | |
//.Skip(400) | |
//.Take(15) | |
.Select(o => new { | |
SKU = o.Element("Штрихкод").Value, |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
function TextPattern(pattern){ |
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
/** | |
* Create a project copy | |
*/ | |
exports.clone = function(req, res) { | |
var project = req.project.toObject(), | |
title = project.title, | |
prefix = 'Копия ', | |
postfix = '', | |
copyTitle = title.indexOf(prefix) === 0 ? title.replace(/ \(\d+\)$/,'') : prefix + title, | |
titlePattern = new RegExp('^' + escape(copyTitle) + '( \\(\\d+\\))?$'), |
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
var r = new XMLHttpRequest(), | |
url = "https://dev28-lora-loreal.demandware.net/on/demandware.store/Sites-Site/default/SiteNavigationBar-ShowMenuitemOverview?CurrentMenuItemId=customers&itemType=Site"; | |
setInterval(function(){ | |
r.open("GET", url, true); | |
r.onreadystatechange = function () { | |
if (r.readyState != 4 || r.status != 200) return; | |
var date = new Date(); | |
console.log(date.getHours() + ':' + date.getMinutes(),'session extended'); | |
}; | |
r.send("banana=yellow"); |
NewerOlder