Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
| // ==UserScript== | |
| // @name Hypothes.is everywhere | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description Enable Hypothesis scriptlet on all pages | |
| // @author https://github.com/potter0815 | |
| // @match http://*/* | |
| // @include http://* | |
| // @include https://* | |
| // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== |
| #EXTM3U | |
| #EXTINF:-1,BBC - Radio 1 | |
| http://as-hls-ww-live.akamaized.net/pool_01505109/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 1Xtra | |
| http://as-hls-ww-live.akamaized.net/pool_92079267/live/ww/bbc_1xtra/bbc_1xtra.isml/bbc_1xtra-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 1Dance | |
| http://as-hls-ww-live.akamaized.net/pool_62063831/live/ww/bbc_radio_one_dance/bbc_radio_one_dance.isml/bbc_radio_one_dance-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 1 Anthems (UK Only) | |
| http://as-hls-uk-live.akamaized.net/pool_11351741/live/uk/bbc_radio_one_anthems/bbc_radio_one_anthems.isml/bbc_radio_one_anthems-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 2 |
| # /etc/systemd/system/jstatd.service | |
| # | |
| # Install: | |
| # - Put this file on /etc/systemd/system/jstatd.service | |
| # - Rewrite <host ip> | |
| # | |
| # Usage: | |
| # sudo systemctl enable jstatd | |
| # sudo systemctl start jstatd | |
| # |
Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
| Option Explicit | |
| Dim objshell,path,DigitalID, Result | |
| Set objshell = CreateObject("WScript.Shell") | |
| 'Set registry key path | |
| Path = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\" | |
| 'Registry key value | |
| DigitalID = objshell.RegRead(Path & "DigitalProductId") | |
| Dim ProductName,ProductID,ProductKey,ProductData | |
| 'Get ProductName, ProductID, ProductKey |
| #!/bin/bash | |
| # usage: diffpdf.sh file_1.pdf file_2.pdf | |
| # requirements: | |
| # - ImageMagick | |
| # - Poppler's pdftoppm and pdfinfo tools (works with 0.18.4 and 0.41.0, | |
| # fails with 0.42.0) | |
| # (could be replaced with Ghostscript if speed is | |
| # not important - see commented commands below) |
| #EXTM3U | |
| # TECSUN PL-505 ~ Location: 37.975288, 23.625487 | |
| #EXTINF:0,087.50 ~ Κρήτη FM - 087.50 ~ Κρήτη FM | |
| http://s3.onweb.gr:8878 | |
| #EXTINF:0,087.70 ~ En Lefko - 087.70 ~ En Lefko | |
| https://stream.radiojar.com/enlefko877 | |
| #EXTINF:0,088.00 ~ Μέντα - 088.00 ~ Μέντα | |
| https://stream.radiojar.com/menta.aac | |
| # 088.30 ~ ? - 088.30 ~ ? | |
| #EXTINF:0,088.60 ~ Kids Radio - 088.60 ~ Kids Radio |
| $ curl --dump-header - localhost:12345 | |
| HTTP/1.0 404 Not Found | |
| Content-Type: text/html | |
| Content-Length: 43 | |
| Date: Fri, 05 Dec 2014 17:48:56 +0000 | |
| <html> | |
| <body> | |
| <h1>WUT</h1> | |
| </html> |
This is a sequel to "Postfix: relay to authenticated SMTP".
I would like to send mail from two different Gmail accounts using Postfix. Here is the relevant section in the Postfix documentation: Configuring Sender-Dependent SASL authentication.
As a concrete example, here's how to set up two Gmail accounts (only relevant sections of the config files are listed below):
/etc/postfix/main.cf:
# sender-dependent sasl authentication
smtp_sender_dependent_authentication = yes
sender_dependent_relayhost_maps = hash:/etc/postfix/sender_relay
Taking Gmail as an example, put the following into /etc/postfix/main.cf.
relayhost = [smtp.gmail.com]:587
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_sasl_mechanism_filter = plain
smtp_tls_CAfile = /etc/pki/tls/certs/ca-bundle.crt
smtp_use_tls = yes
smtp_tls_security_level = encrypt