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
# This allows you to route all email from a Linux WHM server using exim through the Mailgun service | |
# or other email service. This is very powerful because email from a server is typically untrusted | |
# and hard to get good email delivery. | |
# This is not tested on servers that host multiple domains, because Mailgun's service is specific | |
# to one domain. If you figure out multiple domains with Mailgun, write it in the comments or fork this! | |
# Log in to WHM, go to Exim Configuration Manager -> Advanced Editor tab then edit the following. | |
### NOTE! | |
# If setting hosts_require_auth and hosts_require_tls = smtp.mailgun.org, |
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
/** | |
* Compilation of colors for data visualization and web application purposes. | |
* Compiled by Ryan McKeel. | |
* | |
* Can be easily converted to LESS by changing `$` character to `@` | |
*/ | |
// similar to HighCharts colors (with tiny modifications to avoid exact colors), retrieved from http://www.highcharts.com/demo/area-basic/grid | |
$rmChartBlue: #058dc8; | |
$rmChartGreen: #51b433; |
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
const gulp = require( 'gulp' ); | |
const spawn = require( 'child_process' ).spawn; | |
/** | |
* This solution to execute and watch a shell function from Gulp is | |
* adapted from https://stackoverflow.com/a/10232330/3232832 | |
* | |
* e.g. callSpawn( 'ping', [ '-c 5', 'google.com' ], cb ); | |
*/ | |
function callSpawn( command, arguments, cb ) { |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script> | |
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/qna"></script> | |
<script> | |
const searchText = 'Afghanistan (/æfˈɡænɪstæn, æfˈɡɑːnɪstɑːn/ (About this soundlisten);[12] Pashto/Dari: افغانستان, Afġānestān [avɣɒnesˈtɒn]) is a landlocked country at the crossroads of Central and South Asia. It is bordered by Pakistan to the east and south, Iran to the west, Turkmenistan and Uzbekistan to the north, and Tajikistan and China to the northeast. Occupying 652,864 square kilometers (252,072 sq mi), the country is predominately mountainous with plains in the north and southwest. It is inhabited by 31.4 million people as of 2020, composed mostly of ethnic Pashtuns, Tajiks, Hazaras, and Uzbeks. Kabul serves as its capital and largest city.\n' + | |
'\n' + | |
'Human habitation in Afghanistan dates back to the Middle Paleolithic Era, and the country\'s strategic location along the Silk Road connected it to the c |