- node
- @noble/ed25519
- axios
- Update the last line of
keypair-generator.js
to use your Vanmoof account details. - Run
node keypair-generator.js > bikecredentials.txt
esphome: | |
name: open-lcc-sniffer | |
esp32: | |
board: esp32dev | |
framework: | |
type: arduino | |
# Enable logging | |
logger: |
#!/bin/bash | |
function dce { | |
if [[ -f .maincontainer ]]; then | |
docker-compose exec $(cat .maincontainer) $* | |
else | |
echo "Could not find .maincontainer file" | |
fi | |
} |
version: '2' | |
services: | |
mysql: | |
image: mysql | |
ports: | |
- 3306:3306 | |
environment: | |
MYSQL_ROOT_PASSWORD: foo |
Kött: Helstekt fransyska, serveras med ugnsrostade rotfrukter, tzatziki och en grönsallad
Vegetariskt: Stekt aubergine och zucchini och fetaost, serveras med ugnsrostade rotfrukter, tzatziki och en grönsallad
Kött: Tagliatelle al ragu alla bolognese
(Köttfärsgryta med tomat)
var system = require('system'); | |
//create new webpage object | |
var page = new WebPage(); | |
//load the page | |
page.open(system.args[1], function (status) { | |
//fire callback to take screenshot after load complete | |
page.render(system.args[2]); | |
//finish |
# If you're having trouble creating a good rewrite for Symfony2 apps in Lighttpd, this seems to do the charm. It even works with query string parameters. | |
url.rewrite-if-not-file = ( | |
"^/(?!app_[dev|test]+\.php/)[^\?]*(\?.*)?$" => "/app.php$1" | |
) |
<?php | |
namespace SymfonySE\Documents; | |
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB; | |
/** | |
* @MongoDB\Document | |
*/ | |
class Pizza |
/** | |
* Find/Show an Especie entity. | |
* | |
* @Route("/search", name="individuos_showby") | |
* | |
*/ | |
public function searchAction() | |
{ | |
if (!$this->get('request')->query->has('query')) | |
{ |
<?php | |
class ProgressiveController | |
{ | |
public function progressiveAction($some_id) | |
{ | |
$response = new ProgressiveResponse(); | |
$response->setHead("Some static data (maybe from twig), or an ESI tag, or whatever"); |