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
kubectl run --generator=run-pod/v1 dnsutil --image tutum/dnsutils -i --tty --rm | |
root@dnsutil:/# dig grafana.default.svc.us-central1.local |
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
kubectl create clusterrolebinding cluster-admin-binding \ | |
--clusterrole cluster-admin \ | |
--user $(gcloud config get-value account) |
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
<Grid Background="{StaticResource brushWatermarkBackground}"> | |
<TextBlock Margin="5,2" Text="Type something..." | |
Foreground="{StaticResource brushForeground}" | |
Visibility="{Binding ElementName=txtUserEntry, Path=Text.IsEmpty, | |
Converter={StaticResource BooleanToVisibilityConverter}}" /> | |
<TextBox Name="txtUserEntry" Background="Transparent" | |
BorderBrush="{StaticResource brushBorder}" /> | |
</Grid> |
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
#include "stdafx.h" | |
#include "DisableCharmBar.h" | |
bool DisableCharmbar(HWND hWnd) | |
{ | |
PROPVARIANT var; | |
var.vt = VT_BOOL; | |
var.boolVal = VARIANT_TRUE; | |
// Get window properties |
NewerOlder