I have a 128x128 .png of the new logo.
Here’s my ~/.local/share/applications/firefox-nightly.desktop:
[Desktop Entry]
Encoding=UTF-8
Version=1.0
Name=Firefox Nightly
Comment=Browse the Internet (Nightly)
| javascript:%28function%28%29%7B%20%20var%20t%3Btry%7Bt%3D%28%28window.getSelection%26%26window.getSelection%28%29%29%7C%7C%28document.getSelection%26%26document.getSelection%28%29%29%7C%7C%28document.selection%26%26document.selection.createRange%26%26document.selection.createRange%28%29.text%29%29%3B%7Dcatch%28e%29%7Bt%3D%22%22%3B%7D%3B%20%20window.location%3D%22https%3A%2F%2Fquill.p3k.io%2Fbookmark%3Furl%3D%22%2BencodeURIComponent%28window.location.href%29%2B%22%26content%3D%22%2BencodeURIComponent%28%28t%20%3D%3D%20%27%27%20%3F%20%27%27%20%3A%20%27%22%27%2Bt%2B%27%22%27%29%29%2B%22%26name%3D%22%2BencodeURIComponent%28document.title%29%2B%22%26token%3Dey...3w%22%3B%7D%29%28%29%3B |
I have a 128x128 .png of the new logo.
Here’s my ~/.local/share/applications/firefox-nightly.desktop:
[Desktop Entry]
Encoding=UTF-8
Version=1.0
Name=Firefox Nightly
Comment=Browse the Internet (Nightly)
My workflow is to write es6, and use webpack to bundle and transpile down to es5 with babel.
In the case of wanting static maps on a page. I have a maps.js file, which is a target of my webpack config.
This maps.js file looks for all .map divs and runs an addMap() function on them. This is defined inside a mapbox-utils.js file.
It starts with various helper functions, then there is the actual addMap() function.
Hopefully you can work out what I’m doing.
| { | |
| "type": [ | |
| "h-entry" | |
| ], | |
| "properties": { | |
| "published": [ | |
| "2017-01-01 12:00:00" | |
| ], | |
| "checkin": { | |
| "type": [ |
I hereby claim:
To claim this, I am signing this object:
| Homebrew build logs for imagemagick on Mac OS X 10.11.5 | |
| Build date: 2016-07-12 14:41:04 |
| <?php | |
| namespace App\Tests; | |
| use TestCase; | |
| use Illuminate\Foundation\Testing\WithoutMiddleware; | |
| use Illuminate\Foundation\Testing\DatabaseMigrations; | |
| use Illuminate\Foundation\Testing\DatabaseTransactions; | |
| class ExampleTest extends TestCase |
| <?php | |
| namespace IndieAuth; | |
| use BarnabyWalters\Mf2; | |
| class Client { | |
| private static $_headers = array(); //if you bump requirement to php5.4 we could use short syntax | |
| private static $_body = array(); | |
| //skip some code |
| ERROR: missing FROM-clause entry for table "places" at character 639 | |
| STATEMENT: select * from ( | |
| select *, | |
| ('3959' * acos( cos( radians('53.49') ) * cos( radians( places.lat ) ) | |
| * cos( radians( places.lng ) - radians('-2.38') ) | |
| + sin( radians('53.49') ) * sin( radians( places.lat ) ) ) ) AS distance | |
| from ( | |
| select * | |
| from places | |
| where places.lat between 53.475527714192 and 53.504472285808 |
| <?php | |
| namespace App\Http\Controllers; | |
| use App\Http\Controllers\Contrller; | |
| use Illuminate\Http\Request as LaraRequest; | |
| use GuzzleHttp\Psr7\Request as GuzzleRequest; | |
| class FooController extends Controller | |
| { |