Skip to content

Instantly share code, notes, and snippets.

View hanumesh's full-sized avatar
🎯
Focusing

Hanumesh Palla hanumesh

🎯
Focusing
View GitHub Profile
@juliojsb
juliojsb / mysql-collectd-grafana.json
Created January 24, 2019 20:40
MySQL/MariaDB dashboard for Grafana (Collectd)
{
"annotations": {
"list": [
{
"builtIn": 1,
"datasource": "-- Grafana --",
"enable": true,
"hide": true,
"iconColor": "rgba(0, 211, 255, 1)",
"name": "Annotations & Alerts",
@juliojsb
juliojsb / security-dashboard-grafana.json
Created November 28, 2018 16:43
A simple security dashboard for Grafana
{
"annotations": {
"list": [
{
"builtIn": 1,
"datasource": "-- Grafana --",
"enable": true,
"hide": true,
"iconColor": "rgba(0, 211, 255, 1)",
"name": "Annotations & Alerts",
@pbanaszkiewicz
pbanaszkiewicz / linode_config.js
Created June 1, 2014 21:48
Lynckia's Linode configuration file, for use with Peer Instruction (https://github.com/pbanaszkiewicz/peer-instruction)
var config = {}
config.rabbit = {};
config.nuve = {};
config.erizoController = {};
config.cloudProvider = {};
config.erizo = {};
config.rabbit.host = 'localhost';
config.rabbit.port = 5672;
@pstjuste
pstjuste / l2capsender.c
Last active May 15, 2017 06:05
WebRTC session creation over command line
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/un.h>
#include <sys/ioctl.h>
#include <sys/types.h>
@andrewjmead
andrewjmead / app.js
Last active December 22, 2016 03:41
An AngularJs directive for smart inline editing.
/* demo app that uses the inline directive */
var myApp = angular.module('inlineDemo', ['inline']);
myApp.config(function ($routeProvider) {});
myApp.controller('names', function ($scope) {
console.log('controller');
$scope.masterName = $scope.name = '46';