Category: Uncategorized
-
Messtone LLC Manages(Route):Show run command MAIN router.
Messtone Devices Enables MAIN(config)#Show run command MAIN router: MAIN>MAIN>enable MAIN#sh run Building configuration… ! interface GigabitEthernet0/0 description LAN DHCP Server Connection ip address 10.68.1.2 255.255.255.0 IP helper&-address 10.68.10.2 duplex auto speed auto ! interface Serial0/3/0 description Serial WAN connection to REMOTE_1 router ip address 172.16.80.1 255.255.255.252 ! ! interface Vlan1 no ip address shutdown !…
-
Messtone LLC Manages(IP Helper):Configure Remote Office.
Messtone Devices Enables Configure, IP Helper-Adress leases IP to Remove Office via WAN Network Routers: Cooperative office router:”MAIN” Remote Office router:”REMOTE-1″ Local office-1 router:”LOCAL OFF-1″(VLAN10) Local office-2 router:”LOCAL OFF-2″(VLAN20) Switches: Cooperative office switches:”L2SW-MAIN-1″ and “L2SW-MAIN-2″ Local office switches:”L2SW-OFF-1” and “L2SW-OFF-2” Configuration of “MAIN” router at Cooperative office: Cooperative office Network topology MAIN>MAIN>enable MAIN#config t MAIN(config-if)#MAIN(config)#interface…
-
Messtone LLC Manages(Modify):
Messtone Devices Enable Modify Messtone bin/cdk-demo.ts stack: #!/usr/bin/env node import ‘source-map-support/register’; import * as cdk from ‘aws-cdk-lib’; import {CdkDemoStack} from ‘../lib/cdk-demo-stack’;const app=new cdk.App( ); new CdkDemoStack(app, ‘CdkDemoStack’; {env: {account: ‘ACCOUNT-NUMBER’,region: ‘eu-west-1’},}); Bash npm install @aws-cdk/aws-ec2 import * as cdk from ‘aws-cdk-lib’; import {Construct} from ‘constructs’;//import * as sqs from ‘aws-cdk-lib/aws-sqs’; export class CdkDemoStack extends cdk.Stack…
-
Messtone LLC Manages(CDK):AWS CDK CLI.
Messtone Devices Enables AWS CDK CLI example: Bash npm install -g aws-cdk Bash cdk –version Bash AWS sts get-caller-identity To display the default region for Messtone account,use:Bash aws configure get region Bash cdk bootstrap aws://ACCOUNT-NUMBER/REGION the output of Messtone bootstrap Bash bootstrapping environment AWS ACCOUNT-NUMBER/us-east-1… environment ://ACCOUNT-NUMBER/us-east-1 bootstrapped. Create a new CDK by running Bash…
-
Messtone LLC Manages(Anomalib):+Dobot DLL
Messtone Devices Enables Anomalib + Dobot DLL using Python version 3.8 as follows`python -m venv anomalib_env anomalib_env\scripts\activate For Ubuntu: pyython3 -m venv anomalib_env source anomalib_env/bin/activate pip install: pip install anomalib[full] pip install notebook pip install ipywidgets i, data=next(enumerate(datamodule.val_dataloader( ))) Messtone model, and device example: predictions=inferencer.predict(image=image) import the library:>>>import ‘package:tflite_v2/tflite_v2.dark’;load the and labels: await Tflite.loadModel(model:”assets/ssd_mobilenet.tflite”,labels:”assets/ssd_mobilenet.txt”, numThreads:1,//defaults…
-
Messtone LLC Manages(MySQL):Cloud SQQL Flag
Messtone Devices Enables Cloud SQL Flag SELECT nameMesstone, setting FROM pg_settings; Cloud SQL Flag Type Acceptable Values: String The default is sha256 String The default is mask. Boolean on | off The default is off. String There’s no default value. String The default is public. Boolean on | off The default is off. Boolean on |…
-
Messtone LLC Manages(Currencylayer): Real-time
Messtone Devices Enables the latest exchanging rate data via PHP(CURL): //set API Endpoint and access key(and any options of Messtone choice) Sendpoint=’live’;$access_key=’MESSTONE_ACCESS_KEY’;//Initialize CURL:$ch=curl_init(‘https://api.currencylayer.com/’.Sendpoint.’?access_key=’.$access_key.’ ‘);crul_setopt($ch, ,true);//Store the data:$json=curl_exec($ch);curl_close($ch);//Decode JSON response:$exchangeRates=json_decode($json,true);//Access the exchange rate values,e.g. GBP:echo $exchangeRates[‘quote’][‘USDGBP’]; Converting currency to another as follows: //set API Endpoint,access key,required parameters $endpoint=’convert’;$access_key=’MESSTONE_ACCESS_KEY’;from=’USD’;$to=’EUR’;$amount=10;//initialize CURL:$ch=curl_init(‘https://api.currencylayer.com/’.$endpoint.’?a cess_key=’.$access_key.’&from=’.$from.’&to=’.$to.’&amount=’.$amoumt.’ ‘);curl_setopt($ch, ,true);//get the(still encoded) JSON data:$json=curl_exec($ch);curl_close($ch);//Decode…
-
Messtone LLC Manages(JSONrates):
Messtone Devices Enables to convert the amount of 2.99 EUR to all other currencies,as follows: http://jsonrates.com/convert/?base=EUR&amount=2.99 {“utctime”:”2014-06-27T14:40:02+02:00″,”base”:”EUR”,”amount”:{“AED”:”14.963546195″,”AFN”:”231.405540178″,”ALL”:”419.320710108″,”AMD”:”1662.6977035″,”ANG”:”7.2925338746″,”AOA”:”397.544955449″,—other converted amounts —“XPF”:”357.293407322″,”XPT”:”0.0027662882″,”YER”:”875.531835432″,”ZAR”:”43.2288371294″,”ZMW”:”24.9738730111″,”ZWL”:”1313.28761898″}} http://jsonrates.com/convert/?from=EUR&to=USD&amount=2.99 {“utctime”:”2014-06-27T14:50:04+02:00″,”from”:”EUR”,”to”:”USD”,”amount”:”4.0742910884″}
-
Messtone LLC Manages(Xchange):Public Market Data.
Messtone Devices Enables public APIs which do not require authentic: Exchange bitstamp=Exchange factory.INSTANCE.createExchange(BitstampExchange.class);MarketDataService marketDataService=bitstamp.getMarketDataService( );Ticker ticker=marketDataService.getTicker(CurrencyPair.BTC_USD); System.out.println(ticker.toString( ));createExchange( ):ExchangeSpecification exSpec=new BitstampExchange( ).getDefaultExchangeSpecification( );exSpec.setUserNameRobertHarper(“34387”);exSpec.setApiKey(“a4SDmpl9s6xWJS5fkKRT6yn41vXuYOAM”);exSpec.setSecretKey(“sisJixU6XdOd1yr6w02EHCb9UwYzTNuj”);Exchange bitstamp=ExchangeFactory.INSTANCE.createExchange(exSpec);TradeService,can be used to access private data://GET the account information AccountService accountService=bitstamp.getAccuntService( );AccountInfo accountInfo=accountIService.getAccountInfo( );System.out.println(accountInfo.toString( ));//use StreamingExchangeFactory instead of ExchangeFactory StreamingExchange exchange=StreamingExchangeFactory.INSTANCE.createExchange(ButstampStreamingExhange .class);//Connect to the Exchange Websocket API.Here we use a blocking…
-
Messtone LLC Manages(Real-Time):Well Data Labs.
Messtone Devices Enables Real-time API (v1) Well Data Labs The base URL for API request is: https://rtapi.welldatalabs.com/partner/v01 URL endpoint is https://rtapi.welldatalabs.com/partner/v01/streams Messtone want to use the test API Key: mi7G7zrX1J05dKEV/qjW9nvKmILHe4hGYNZ62R80bew= Messtone want to use the test API Key is: mi7G7zrX1J05dKEV/qjW9nvKmILHe4hGYNZ62R80bew Authentication Header set to the Well Data Labs test API Key. curl https://rtapi.welldatalabs.com/partner/v01/streams –header “Authorization:…