This file contains hidden or 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 io.netty.channel.ChannelOption; | |
import io.netty.handler.timeout.ReadTimeoutHandler; | |
import io.netty.handler.timeout.WriteTimeoutHandler; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.http.HttpHeaders; | |
import org.springframework.http.MediaType; |
This file contains hidden or 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 org.apache.hc.client5.http.config.ConnectionConfig; | |
import org.apache.hc.client5.http.config.RequestConfig; | |
import org.apache.hc.client5.http.cookie.StandardCookieSpec; | |
import org.apache.hc.client5.http.impl.classic.CloseableHttpClient; | |
import org.apache.hc.client5.http.impl.classic.HttpClients; | |
import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager; | |
import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManagerBuilder; | |
import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactoryBuilder; | |
import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactory; | |
import org.apache.hc.core5.http.io.SocketConfig; |
This file contains hidden or 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
dir_root_path="/path-to/codeline-version-change/" | |
files=( | |
"microservice1;[email protected]:AIM/microservice1" | |
"microservice2;[email protected]:AIM/microservice2" | |
"microservice3;[email protected]:AIM/microservice3" | |
) | |
itrac_codeline="JIRA-2345" | |
old_version="3.2.2" | |
new_version="3.3.0" |
This file contains hidden or 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
apiVersion: metallb.io/v1beta1 | |
kind: IPAddressPool | |
metadata: | |
name: first-pool | |
namespace: metallb-system | |
spec: | |
addresses: | |
- 152.16.16.240-152.16.16.250 |
This file contains hidden or 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
Show hidden characters
{ | |
"name": "Hugo (Community)", | |
"build": { | |
"dockerfile": "Dockerfile", | |
"args": { | |
// Update VARIANT to pick hugo variant. | |
// Example variants: hugo, hugo_extended | |
// Rebuild the container if it already exists to update. | |
"VARIANT": "hugo_extended", | |
// Update VERSION to pick a specific hugo version. |
This file contains hidden or 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
Specs | ESP8266 12E | ESP-32 | Arduino UNO R3 | Raspberry PI 3 B+ | |
---|---|---|---|---|---|
Power Rating | 197 mA | 220 mA | 200mA | 459mA | |
Core | 1 | 2 | 1 | 4×Cortex-A53 | |
Arquitecture | 32-bits | 32-bits | 8-bits | 64-bits | |
Clock | 80-160MHz | 160-240MHz | 16MHz | 1.4GHz | |
WiFi | Yes | Yes | No | b/g/n/ac dual band | |
Bluetooth | No | Yes-Classic & BLE | No | 4.2 LS BLE | |
RAM | 160KB | 520KB | 2K | 1GB | |
Flash | 16MB | 16MB | 32KB | 1-2 or 4GB LPDDR4-3200 RAM | |
GPIO | 11 | 22 | 12 | 40 (28 accessable) |
This file contains hidden or 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
{"lastUpload":"2019-06-11T10:37:30.607Z","extensionVersion":"v3.2.9"} |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
/*! | |
* Dynamically changing favicons with JavaScript | |
* Works in all A-grade browsers except Safari and Internet Explorer | |
* Demo: http://mathiasbynens.be/demo/dynamic-favicons | |
*/ | |
// HTML5™, baby! http://mathiasbynens.be/notes/document-head | |
document.head || (document.head = document.getElementsByTagName('head')[0]); | |
function changeFavicon(src) { |

NewerOlder