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
| # This should be the public-facing name (ie: dns name) | |
| HOME_SERVER_URL="https://matrix.org" | |
| # The room ID is NOT the room alias. The ID can be found at the bottom of the room settings dialog in riot-web | |
| ROOM_ID="!AbCDef823s:matrix.org" | |
| # This is your user ID and access token. The access token must match the user. | |
| USER_ID="@turt2live:matrix.org" # The home server should match this domain as well (ie: t2l.io as a HS should be :t2l.io in the user) | |
| ACCESS_TOKEN="token_here" |
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
| <?php | |
| /** | |
| * Dirty, dirty Reddit bot: Decronym | |
| */ | |
| class Reddit { | |
| const USERNAME = 'Decronym'; | |
| const PASSWORD = '***'; | |
| const CLIENTID = '***'; | |
| const SECRET = '***'; |
NewerOlder