I hereby claim:
- I am veproza on github.
- I am marcelsulek (https://keybase.io/marcelsulek) on keybase.
- I have a public key ASArTBEn22J62nv9EVwhcV9ribN8k9YzMCuBk7ZXLjs-Mgo
To claim this, I am signing this object:
<?php | |
/** | |
* By jiripudil, https://github.com/jiripudil/intellij-nette-tester/blob/master/resources/setup.php | |
* @license https://github.com/jiripudil/intellij-nette-tester/blob/master/LICENSE.md | |
*/ | |
use Tester\Runner\Runner; | |
final class TeamCityOutputHandler implements \Tester\Runner\StartAwareOutputHandler | |
{ |
<?php | |
/** | |
* By jiripudil, https://github.com/jiripudil/intellij-nette-tester/blob/master/resources/setup.php | |
* @license https://github.com/jiripudil/intellij-nette-tester/blob/master/LICENSE.md | |
*/ | |
use Tester\Runner\Runner; | |
final class TeamCityOutputHandler implements \Tester\Runner\OutputHandler | |
{ |
I hereby claim:
To claim this, I am signing this object:
// Based on MPU-6050 Short Example Sketch | |
// By Arduino User JohnChi | |
// August 17, 2014 | |
// Public Domain | |
#include <Wire.h> | |
#include <TimerOne.h> | |
#include <SD.h> | |
#include <SPI.h> |
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
#!/bin/bash | |
for i in {0..1000000} | |
do | |
let skip=$i*1024 | |
dd if=/dev/sdb count=1 skip=$skip | wc -w >> output | |
done |
<html> | |
<head> | |
<title>My D3 Page</title> | |
<style> | |
svg {background: #aaa;} | |
</style> | |
</head> | |
<body> | |
<svg width='400' height='400'> | |
<circle cx="0" cy="0" r="0" stroke="black" stroke-width="3" fill="red" /> |
require! { | |
zlib | |
async | |
events.EventEmitter | |
} | |
module.exports = class Package extends EventEmitter | |
-> | |
@type = "text/plain" | |
@lastModified = null | |
@content = |