Skip to content

Instantly share code, notes, and snippets.

View eks1985's full-sized avatar

Kirill Efimov eks1985

  • Russia, Volgograd region
View GitHub Profile
const login = () => {

    let Username = 'reacttest';
    let Password = 'reacttest';

    let authenticationDetails = new AuthenticationDetails({
      Username,
      Password
    });
@eks1985
eks1985 / 3
Last active May 12, 2017 06:17
aws
```
const login = () => {
let Username = 'reacttest';
let Password = 'reacttest';
let authenticationDetails = new AuthenticationDetails({
Username,
Password
});
const login = () => {

    let Username = 'reacttest';
    let Password = 'reacttest';

    let authenticationDetails = new AuthenticationDetails({
      Username,
      Password
    });
@eks1985
eks1985 / 1.md
Last active May 11, 2017 23:28
aws
  const login = () => {

    let Username = 'reacttest';
    let Password = 'reacttest';

    let authenticationDetails = new AuthenticationDetails({
      Username,
      Password
    });
@eks1985
eks1985 / JSON parser для 1С 7.7
Created December 12, 2016 18:19 — forked from bsa7/JSON parser для 1С 7.7
1C 7.7 JSON parser 2.0
Процедура СкриптКонтролИнит(scriptCtrl)
scriptCtrl = СоздатьОбъект("MSScriptControl.ScriptControl");
scriptCtrl.Language="jscript";
код = "
|
| function parseJSON(strJSON) {
| var tmpFunc = (new Function('return('+strJSON+');'))();
| return(tmpFunc);
| }
|
@eks1985
eks1985 / Redux.md
Last active September 21, 2016 14:03
Redux

Methods not mutating data

Add element to array

concat()

const list = [0, 1];
const result = list.concat(2);