Skip to content

Instantly share code, notes, and snippets.

@lucasff
lucasff / dm-oat-milk.js
Last active October 28, 2020 14:40 — forked from marco79cgn/dm-toilet-paper.js
iOS Widget, das die Anzahl an Hafermilch in deiner nächsten dm Drogerie anzeigt (für die scriptable.app)
// dm Hafermilch Widget
//
// Original work from:
// dm Klopapier Widget
// Copyright (C) 2020 by marco79 <marco79cgn@gmail.com>
//
// Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
@lucasff
lucasff / dumpoverssh.sh
Created October 10, 2015 18:32 — forked from kirkegaard/dumpoverssh.sh
pipe a mysql dump through gzip and send it over ssh
mysqldump -u MYSQL_USERNAME -p YOUR_DATABASE | gzip -c | ssh USERNAME@YOUR_TO_HOST 'cat > ~/dump.sql.gz'