Wrapping console.log (et al.) in your own function to modify logging behavior.
You may want a simple way to:
| (function($) { | |
| $.fn.changeElementType = function(newType) { | |
| this.each(function() { | |
| var attrs = {}; | |
| $.each(this.attributes, function(idx, attr) { | |
| attrs[attr.nodeName] = attr.nodeValue; | |
| }); | |
| $(this).replaceWith(function() { |
| var RateLimit = function(interval_ms) { | |
| this._interval_ms = interval_ms || 0; // (0 means no limit) | |
| this._after = 0; | |
| }; | |
| RateLimit.prototype.attempt = function(time) { | |
| var time = time || Date.now(); | |
| if(time < this._after) return false; | |
| this._after = time + this._interval_ms; |
| import javafx.application.*; | |
| import javafx.geometry.Pos; | |
| import javafx.scene.*; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.layout.*; | |
| import javafx.scene.paint.Color; | |
| import javafx.stage.*; | |
| import javax.imageio.ImageIO; | |
| import java.io.IOException; |
In this guide, I will show you how to make a Linux Mail Server in fast and easy way. This guide was taken from tiq's tech-blog for recent version, Linux distro I using is Ubuntu 20.04 LTS
Make sure you have Certificate and Key file ready to use.
You can use existing Web Server SSL certificate, since we going to use same domain, example.com.
If you plan to use mx.example.com or mail.example.com you need create another one for these.
| /** | |
| * ============================================================================= | |
| * GitHub Markdown → Print Preparation Utility | |
| * ============================================================================= | |
| * | |
| * What This Is | |
| * ------------ | |
| * A console-executable DOM transformation script that: | |
| * | |
| * • Isolates the rendered Markdown section of a GitHub file page |