- A license for Synthetic Private Agents ( not included in Synthetic Server Monitoring )
- Processor: 2 GHz
- Memory: 4 GB RAM
- Disk Space: 40 GB
- Dedicated host
- Windows Server 2012 64-Bit or Windows Server 2012 R2 64-Bit (Only English version)
- Microsoft .NET Framework 4.7 or greater
- SaaS: https://synthetic.api.appdynamics.com:443;
This can be a conflict with 'n' version of npm and /usr/local version of npm
rm /usr/local/bin/npm
ln -s ~/.node/bin/npm /usr/local/bin/npm
from typing import List, Union | |
from pydantic import BaseModel | |
from pydantic.dataclasses import dataclass | |
class MyConfig: | |
validate_assignment = True | |
@dataclass(config=MyConfig) |
Read AirBNB style guide
Specific notes
const warningMessage = (fn) => | |
`Error running function '${fn.name}' with args:` | |
const composeReducer = (f, g) => (...args) => { | |
var fResult, gResult; | |
try { | |
gResult = g(...args); | |
} catch (e) { | |
console.warn(warningMessage(g), args); | |
throw e; |
{ | |
"plugins": ["syntax-jsx", "syntax-object-rest-spread", "transform-flow-strip-types"] | |
} |
include karax / prelude | |
import strutils | |
type | |
Model = object | |
counter*: int | |
Dispatch = proc(model: Model): void | |
proc init(): Model = | |
result = Model(counter: 0) |
import json | |
import marshal | |
import options | |
type | |
Message = object | |
id: int | |
message: string | |
OptionalMessage = object | |
id: int |
Copyright 2018 Hone Watson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER