View VSCodeMCTerminalTheme.json
This file contains 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
{ | |
"workbench.colorCustomizations": { | |
"terminal.background":"#000000", | |
"terminal.foreground":"#c5c5c5", | |
"terminalCursor.background":"#a5a2a2", | |
"terminalCursor.foreground":"#cacaca", | |
"terminal.ansiMagenta":"#ff00bf", | |
"terminal.ansiBrightMagenta":"#a16a94", | |
"terminal.ansiBlack":"#000000", | |
"terminal.ansiBrightBlack":"#555555", |
View nweather-gerecse-add.php
This file contains 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
#!/usr/bin/php5 | |
<?php | |
// Puts weather data from OMSZ into the nweather database. | |
ini_set('display_errors','On'); | |
error_reporting(E_ALL); | |
define('DB_NAME', 'ha5kdr.hu'); | |
define('DB_USER', 'ha5kdr.hu'); | |
define('DB_PASSWORD', ''); |
View .procmailrc
This file contains 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
#LOGFILE=/home/nonoo/procmail.log | |
#VERBOSE=YES | |
:0 | |
* ^List-ID: <aprs.nonoo.hu>$ | |
| /home/nonoo/bin/mail2aprs.php | |
:0 | |
* ^List-ID: <aprs.nonoo.hu>$ | |
/dev/null | |
:0: | |
! nonoo@nonoo.hu |
View aprslocsend.php
This file contains 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
#!/usr/bin/php5 | |
<?php | |
$aprs_callsign = ''; | |
$aprs_passcode = 0; | |
$aprs_altinfeet = 2080; | |
// W is the WX icon. See http://wa8lmf.net/aprs/APRS_symbols.htm | |
// Use GPS coordinate format, see http://www.csgnetwork.com/gpscoordconv.html | |
$aprs_coord = '4740.55N/01829.60EW'; | |
$aprs_comment = 'Gerecse WX - www.ha5kdr.hu'; |