Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# battery_temperature for mac osx 10.9.2
if [ `uname` == "Darwin" ]; then
if [ "$1" == "-h" ]; then
echo "Usage: $(basename $0 ".sh") [option]"
echo " -l also show Model Name and Processor Name"
echo " -h display this help message"
exit
fi
@jondthompson
jondthompson / gist:1cdbe5304b894aa8cae2
Created October 24, 2015 23:36
issue in iron-chrome-storage
.controller( 'HomeCtrl', function HomeController( $scope, $firebaseArray, $firebaseObject, chromeStorage ) {
var ref;
Firebase.INTERNAL.forceWebSockets();
var storage;
chromeStorage.getOrElse('storage', function() {
var keyValue = {
path: 'demo',
key: 'unknown'
};
return keyValue;
var ref // Firebase ref to your list that has items with bad arrays in them.
var arrayToChange // String of the name of the property that contains the bad array.
ref.once("value", function(snapshot) {
snapshot.forEach(function(listItem){
var goodArray = $firebaseArray(listItem.ref().child(arrayToChange));
listItem.child(arrayToChange).forEach(function(arrayItem){
var arrayItemVal = arrayItem.val();
arrayItem.ref().remove();
goodArray.$add(arrayItemVal);
@jondthompson
jondthompson / reset_routing_table.sh
Created April 6, 2020 19:16 — forked from midwire/reset_routing_table.sh
[Reset routing table on OSX] #osx #devops #networking
#!/usr/bin/env bash
# Reset routing table on OSX
# display current routing table
echo "********** BEFORE ****************************************"
netstat -r
echo "**********************************************************"
for i in {0..4}; do
sudo route -n flush # several times