Skip to content

Instantly share code, notes, and snippets.

View khalid283's full-sized avatar
😳
Debugging

khalid ansari khalid283

😳
Debugging
View GitHub Profile
@khalid283
khalid283 / speech-synthesis-split.js
Last active April 7, 2017 06:37
This a complete JavaScript function to split long text while using speech synthesis in chrome or Mozilla.
function startPlay(speak_content, k){
var msg = new SpeechSynthesisUtterance();
msg.voice = window.speechSynthesis.getVoices().filter(function(voice) {
return voice.name == 'native';
})[0];
msg.rate = 1; // 0.1 to 10
msg.pitch = 1; //0 to 2
msg.text = speak_content;
msg.onend = function(event) {
console.log(msg);
@khalid283
khalid283 / MySQL Replication Check
Created August 23, 2016 19:40 — forked from ssimpson89/MySQL Replication Check
Just a simple Mysql Replication Health Check script I wrote. You can put this in a cron.
#!/bin/bash
### VARIABLES ### \
EMAIL=""
SERVER=$(hostname)
MYSQL_CHECK=$(mysql -e "SHOW VARIABLES LIKE '%version%';" || echo 1)
LAST_ERRNO=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G" | grep "Last_Errno" | awk '{ print $2 }')
SECONDS_BEHIND_MASTER=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G"| grep "Seconds_Behind_Master" | awk '{ print $2 }')
IO_IS_RUNNING=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G" | grep "Slave_IO_Running" | awk '{ print $2 }')
SQL_IS_RUNNING=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G" | grep "Slave_SQL_Running" | awk '{ print $2 }')