Ticket: WEB-XYZ @reviewer_handle please review [optional extra comments for reviewer]
Description of the problem that this code change is solving
GIF OR IMAGE IF POSSIBLE HERE
| use std::convert::TryInto; | |
| use std::process; | |
| use esp_idf_sys::{self as _, c_types}; // If using the `binstart` feature of `esp-idf-sys`, always keep this module imported | |
| use std::net::Ipv4Addr; | |
| use std::{sync::Arc, thread, time::*}; | |
| use anyhow::bail; | |
| use log::*; | |
| use embedded_svc::ipv4; | |
| use embedded_svc::wifi::*; |
| $ git diff | |
| diff --git a/docker-compose.yml b/docker-compose.yml | |
| index f7991e7303..61dfbcdf5a 100644 | |
| --- a/docker-compose.yml | |
| +++ b/docker-compose.yml | |
| @@ -9,7 +9,7 @@ services: | |
| mysql: | |
| image: mysql:5 | |
| ports: | |
| - - "3306" |
Ticket: WEB-XYZ @reviewer_handle please review [optional extra comments for reviewer]
Description of the problem that this code change is solving
GIF OR IMAGE IF POSSIBLE HERE
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.io.OutputStream; | |
| import java.net.HttpURLConnection; | |
| import java.net.MalformedURLException; | |
| import java.net.URL; | |
| import org.apache.commons.codec.binary.Base64; | |
| import org.openqa.selenium.By; |
| var wd = require('wd') | |
| , Q = require('q') | |
| , request = require('request') | |
| , assert = require('assert') | |
| , host = "ondemand.saucelabs.com" | |
| , port = 80 | |
| , username = YOUR_USERNAME | |
| , accessKey = YOUR_ACCESS_KEY | |
| // using promisified version of webdriver | |
| , browser = wd.promiseRemote(host, port, username, accessKey); |
| // You need to have the following installed: | |
| // https://github.com/admc/wd | |
| // https://github.com/kriskowal/q | |
| var wd = require('wd') | |
| , Q = require('q') | |
| , request = require('request') | |
| , assert = require('assert') | |
| , host = "ondemand.saucelabs.com" | |
| , port = 80 |
| // You need to have the following installed: | |
| // https://github.com/admc/wd | |
| // https://github.com/kriskowal/q | |
| var wd = require('wd') | |
| , Q = require('q') | |
| , request = require('request') | |
| , assert = require('assert') | |
| , host = "ondemand.saucelabs.com" | |
| , port = 80 |
| #!/usr/bin/env python | |
| # Copyright (c) 2010 Erik Karulf ([email protected]) | |
| # | |
| # Permission to use, copy, modify, and/or distribute this software for any | |
| # purpose with or without fee is hereby granted, provided that the above | |
| # copyright notice and this permission notice appear in all copies. | |
| # | |
| # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
| # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
| # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |