Skip to content

Instantly share code, notes, and snippets.

<?php
// API access key from Google API's Console
define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' );
$registrationIds = array( $_GET['id'] );
// prep the bundle
$msg = array
<?php
/**
* DuplicateFilter prevents Yii from exposing URLs starting with /index.php/ when showScriptName is false. Such
* URLs are automatically redirected to proper ones.
*
* To use add the following to your controller:
*
* ```php
* public function filters() {
* return array(
/*
* This tool used to run PHPUnit tests by apache user
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
int stracat(char **target, char *source)
@ergoz
ergoz / rasp_temp.sh
Created May 27, 2014 13:52
raspbery pi temp munin plugin
#!/bin/sh
case $1 in
config)
cat <<'EOM'
graph_title Temperature
graph_vlabel temp in C
graph_args --base 1000 -l 0
graph_category Temperature
@ergoz
ergoz / yii_run_stored_procedure.php
Created June 2, 2014 07:56
Запуск stored procedure из mysql в YII Framework
<?php
function getAPI_Function_Stats($param_one, $param_two){
return Yii::app()->db->createCommand("CALL your_stored_procedure(:page, :section)")->queryAll(array(':page' => $param_one, ':section' => $param_two));
}
?>
go_version=go1.2.2.linux-amd64
if [ ! -e $go_version.tar.gz ]
then
wget https://storage.googleapis.com/golang/$go_version.tar.gz
tar xf $go_version.tar.gz
fi
export GOROOT=$WORKSPACE/go
@ergoz
ergoz / mysql-tuner.pl
Created June 23, 2014 06:54
Tune Mysql
#!/usr/bin/perl -w
# mysqltuner.pl - Version 1.3.0
# High Performance MySQL Tuning Script
# Copyright (C) 2006-2014 Major Hayden - [email protected]
#
# For the latest updates, please visit http://mysqltuner.com/
# Git repository available at http://github.com/major/MySQLTuner-perl
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
package main
import (
"bytes"
"encoding/hex"
"flag"
"fmt"
"io"
"log"
"net"
import (
"crypto/md5"
"encoding/hex"
)
func GetMD5Hash(text string) string {
hasher := md5.New()
hasher.Write([]byte(text))
return hex.EncodeToString(hasher.Sum(nil))
}
@ergoz
ergoz / 0_reuse_code.js
Created August 15, 2014 10:05
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console