Skip to content

Instantly share code, notes, and snippets.

@Skymetal
Skymetal / ping_google.sh
Last active July 13, 2016 21:15
bash: ping google
#!/bin/bash
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m' # No Color
while :
do
date | tr -d '\n'
VAL=`ping -c 5 www.google.com | tail -1 | awk '{print $4}' | cut -d '/' -f 2`
if [[ -z "${VAL// }" ]]
then
{
"theme": "Material-Theme.sublime-theme",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"font_size": 14,
"hot_exit": false,
"ignored_packages":
[
"SublimeCodeIntel",
"Vintage"
],
@Skymetal
Skymetal / AppConfig.xml
Last active May 31, 2020 17:22
ED AppConfig
<AppConfig>
<Display>
<ScreenWidth>1280</ScreenWidth>
<ScreenHeight>720</ScreenHeight>
<FullScreen>false</FullScreen>
<VSync>true</VSync>
<PresentInterval>1</PresentInterval>
<Adapter>0</Adapter>
<Monitor>0</Monitor>
<DX11_RefreshRateNumerator>60</DX11_RefreshRateNumerator>