Skip to content

Instantly share code, notes, and snippets.

View davidaparicio's full-sized avatar
🚀
Seeking challenging projects 🚀

David Aparicio davidaparicio

🚀
Seeking challenging projects 🚀
View GitHub Profile
<link rel="import" href="../core-pages/core-pages.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
@davidaparicio
davidaparicio / test_connection.sh
Created May 25, 2012 21:21
A bash script to try if you have internet connection
#!/bin/bash
SEC=0 # in seconds
MIN=0 # in minutes
while !(ping -c1 google.com > /dev/null 2>&1); do
echo $SEC
let SEC=SEC+1
sleep 1
done
let MIN=SEC/60
let SEC=SEC-MIN*60