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
<template id="radio-controls"> | |
<div class="radio-controls"> | |
<div class="radio-controls-buttons"> | |
<div class="radio-controls-button" @click="skipStation(-1)" title="Previous Station"> | |
<i class="fa fa-fast-backward" aria-hidden="true"></i> | |
</div> | |
<div v-if="playerPlaying" class="radio-controls-button" @click="pauseStation()" title="Pause"> | |
<i class="fa fa-pause" aria-hidden="true"></i> | |
</div> | |
<div v-else class="radio-controls-button" @click="playStation()" title="Play"> |
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
const http = require('http'); | |
const { exec } = require('child_process'); | |
const mysql = require('mysql'); | |
const jsonRpc = require('jayson'); | |
const fetch = require('node-fetch'); | |
// Read configuration from file | |
const config = require('./example.conf'); | |
// Create MySQL connection pool |
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
/* NickServ core functions | |
* | |
* (C) 2003-2021 Anope Team | |
* Contact us at [email protected] | |
* | |
* Please read COPYING and README for further details. | |
* | |
* Based on the original code of Epona by Lara. | |
* Based on the original code of Services by Andy Church. | |
*/ |
OlderNewer