Shared-Hosting mit gemanagtem E-Mail Kram. E-mail ist der wichtige Teil, den Rest kann ich notfalls auch selbst auf nem V-Server hosten.
This is a simple maildrop filter which filters incoming messages by the sender address and move it to the corresponding folder. E-Mail address and destination folder are both defined in a MySQL table.
This example is used in an uberspace environment.
For convenience we use the already existing database corresponding to your uberspace account (e.g. your uberspace username is melanie there will be already a database called melanie.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git fetch --all | |
| git reset --hard origin/master | |
| git pull origin master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function($){ | |
| $.fn.fullscreenr = function(options) { | |
| if(options.height === undefined) alert('Please supply the background image height, default values will now be used. These may be very inaccurate.'); | |
| if(options.width === undefined) alert('Please supply the background image width, default values will now be used. These may be very inaccurate.'); | |
| if(options.bgID === undefined) alert('Please supply the background image ID, default #bgimg will now be used.'); | |
| var defaults = { width: 1280, height: 1024, bgID: 'bgimg' }, | |
| options = $.extend({}, defaults, options); | |
| $(document).ready(function() { $(options.bgID).fullscreenrResizer(options); }); | |
| $(window).bind("resize", function() { $(options.bgID).fullscreenrResizer(options); }); | |
| return this; |