Skip to content

Instantly share code, notes, and snippets.

View stevetompson0's full-sized avatar

Steve Xu stevetompson0

View GitHub Profile
0x99500B23A15E2426dB04bcBA99f5552BED6f6B29

= CMPT405 Spring 2016 =

Instructor: Petra Berenbrink, [[mailto:[email protected]|[email protected]]], TASC1 8227\ TA: Chang Xu (Steve), [[mailto:[email protected]|[email protected]]],\ TA office hour: \ Monday 12:00 ~- 13:00 ASB 9814\ Friday 15:00 ~- 16:00 ASB 9814

== Textbook == Introduction to Algorithms

Hardcover – Jul 31 2009 by Thomas H. Cormen (Author), Charles E. Leiserson (Author), Ronald L. Rivest (Author), Clifford Stein

sadasdasdasd
package models;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
import javax.persistence.PrePersist;
import javax.persistence.PreUpdate;
@stevetompson0
stevetompson0 / MySQL Replication Check
Created December 22, 2015 02:23 — 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 }')