Skip to content

Instantly share code, notes, and snippets.

PING 192.168.5.161 (192.168.5.161): 56 data bytes
Request timeout for icmp_seq 0
64 bytes from 192.168.5.161: icmp_seq=0 ttl=128 time=1149.272 ms
64 bytes from 192.168.5.161: icmp_seq=1 ttl=128 time=133.614 ms
64 bytes from 192.168.5.161: icmp_seq=2 ttl=128 time=514.051 ms
64 bytes from 192.168.5.161: icmp_seq=4 ttl=128 time=8.253 ms
Request timeout for icmp_seq 5
64 bytes from 192.168.5.161: icmp_seq=5 ttl=128 time=1002.607 ms
64 bytes from 192.168.5.161: icmp_seq=6 ttl=128 time=677.653 ms
64 bytes from 192.168.5.161: icmp_seq=7 ttl=128 time=357.575 ms
@ckesc
ckesc / code.kt
Created December 5, 2017 16:22 — forked from chrisbanes/code.kt
Night Mode inflater
/*
* Copyright 2017 Google, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@ckesc
ckesc / invis.vbs
Created February 26, 2015 00:19
SIlent run bat and other scripts
set args = WScript.Arguments
num = args.Count
if num = 0 then
WScript.Echo "Usage: [CScript | WScript] invis.vbs aScript.bat <some script arguments>"
WScript.Quit 1
end if
sargs = ""
if num > 1 then
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Default.xaml"></ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
<Style x:Key="QueryBoxStyle" BasedOn="{StaticResource BaseQueryBoxStyle}" TargetType="{x:Type TextBox}">
<Setter Property="Background" Value="#3f51b5"/> <Setter Property="Foreground" Value="#f5f5f5" />
</Style>
<Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}">
<Setter Property="Background" Value="#3f51b5"></Setter>
</Style>