- upgrade went wrong, no idea why
- retry => restore from backup
zfs set snapdir=visible zfast
So you got your u-blox GPS and wired it up only to look at it struggling to get a valid fix? Under less than ideal conditions, it can take a better part of half an hour. That's because unlike your smartphone GPS, it doesn't have the luxury of having downloaded all the auxiliary navigation data (almanacs and the lot) out-of-band, via fast mobile connection. Instead it relies on the satellite's signal itself, which is being transmitted to you at meager 50 bits per second (I'm not missing "kilo" there, it's three orders of magnitude slower than your 2G GPRS connection).
Luckily, the u-blox receivers are fitted with what the company calls "AssistNow" capability and it does exactly the same thing your iPhone does - feeds the GPS with pre-downloaded almanacs, speeding up the acquisition process to mere seconds.
In principle, the process looks easy enough - we just need to download the data, and then push them to the receiver. Sadly, the AssistNow documentat
| #!/usr/bin/perl | |
| # | |
| # Brad's el-ghetto do-our-storage-stacks-lie?-script | |
| # | |
| sub usage { | |
| die <<'END'; | |
| Usage: diskchecker.pl -s <server[:port]> verify <file> | |
| diskchecker.pl -s <server[:port]> create <file> <size_in_MB> | |
| diskchecker.pl -l [port] |
| # long running queries: | |
| SELECT | |
| pid, | |
| now() - pg_stat_activity.query_start AS duration, | |
| query, | |
| state | |
| FROM pg_stat_activity | |
| WHERE (now() - pg_stat_activity.query_start) > interval '5 minutes'; | |
| ## active queries and killing them: |
| >++++++++[<++++++++>-]<--> | |
| >++++++[<+++++++>-]<+> | |
| ,[[-<.>]<+++.---<.>>,] |
| [alias] | |
| a = annex | |
| sf = svn fetch | |
| sr = svn rebase | |
| sd = svn dcommit | |
| s = status | |
| st = status | |
| sb = show-branch | |
| b = branch | |
| c = clone |
| #!/bin/bash | |
| tmp_=$(mktemp -d --tmpdir google-chrome-anon-XXXXXXXXXX) | |
| echo "private dir: " $tmp_ | |
| trap "{ rm -rf /tmp/$(basename $tmp_); exit 255; }" EXIT | |
| nice -n5 google-chrome --user-data-dir=$tmp_ |
| package main | |
| import ( | |
| "encoding/json" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| "strconv" | |
| ) |
| package main | |
| import ( | |
| "encoding/csv" | |
| "flag" | |
| "fmt" | |
| "io" | |
| "os" | |
| ) |
| #include <unistd.h> | |
| static char staticfoo[80*1024*1024]; // = {"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"}; | |
| #define WRITE(Str) write(1, Str, sizeof(Str)) | |
| int main() | |
| { | |
| char in; | |
| int i; |