export PROJECT_ID=YOUR-PROJECT-ID-HERE
I uploaded the src file via Cloud Shell
tar -xvzf echo-web-v2.tar.gz
docker build -t gcr.io/${PROJECT_ID}/echo-app:v2 .
docker push gcr.io/${PROJECT_ID}/echo-app:v2
export PROJECT_ID=YOUR-PROJECT-ID-HERE
I uploaded the src file via Cloud Shell
tar -xvzf echo-web-v2.tar.gz
docker build -t gcr.io/${PROJECT_ID}/echo-app:v2 .
docker push gcr.io/${PROJECT_ID}/echo-app:v2
cf. Blog: HTTP/2 VS HTTP/1.1 cf. Doc: Documentation HTTP/2
In JBoss EAP 7, the undertow
subsystem allows you to configure web server and servlet container settings.
cf. Doc: JBoss 7.2 config undertow
// ==UserScript== | |
// @name GitLab-Warning-Editing-Master | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://innersource.soprasteria.com/* | |
// @grant none | |
// ==/UserScript== |
Example.reg
:Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\wt]
@="Windows terminal here"
"Icon"="%USERPROFILE%/Pictures/wt.ico"
// ==UserScript== | |
// @name Translation | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match */* | |
// @grant none | |
// ==/UserScript== |
#!/bin/bash | |
# Auto-connect to SFR WiFi | |
# To use in combination with wicd | |
# by vincesafe (https://vincesafe.fr/2014/11/10/authentification-automatique-sur-le-sfr-wifi/) | |
# modified by lzcjames (GitHub:https://github.com/lzcjames) | |
# VARS | |
# location: URL associated with 302 reply (contains challenge) | |
# challenge: part of POST data to be sent |
GitHub Flavored Markdown lets you create useful documents in GitHub and GitHub Enterprise using .md
files.
Like other varieties of markdown, GitHub Markdown tries to be as readable as possible in its raw form, resulting in an intentionally limited set of formatting options.
However, these options can feel restrictive when dealing with complex content.
Although GitHub Markdown strips out most HTML tags, here are a few tricks that can give you more flexibility when formatting your documents. These advanced formatting options can make your documents more useable, but they come at the expense of plain text readability, so use with caution.
Add-Type -AssemblyName System.Windows.Forms | |
# import mouse_event from user32.dll | |
Add-Type -MemberDefinition '[DllImport("user32.dll")] public static extern void mouse_event(int flags, int dx, int dy, int cButtons, int info);' -Name u32func -Namespace w; | |
function mouseMvClik($x, $y){ | |
# mouse move | |
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point($x,$y) | |
# left mouse click up | |
[w.u32func]::mouse_event(0x00000002, 0, 0, 0, 0); |