Skip to content

Instantly share code, notes, and snippets.

View slava-vishnyakov's full-sized avatar

Slava Vishnyakov slava-vishnyakov

View GitHub Profile
@slava-vishnyakov
slava-vishnyakov / README.md
Last active August 29, 2015 14:01 — forked from rezgaa/install_graphite_statsd_ubuntu_precise.sh
Graphite/Statsd installation

After install run

# start statsd
# start graphite

statsd is on 8125 port graphite is on http://127.0.0.1:8080/

#!/bin/bash
set -o errexit
echo "Removing exited docker containers..."
docker ps -a -f status=exited -q | xargs -r docker rm -v
echo "Removing dangling images..."
docker images --no-trunc -q -f dangling=true | xargs -r docker rmi
<?xml version="1.0" encoding="utf-8"?>
<ym:ymaps xmlns:ym="http://maps.yandex.ru/ymaps/1.x"><Representation xmlns="http://maps.yandex.ru/representation/1.x" xmlns:gml="http://www.opengis.net/gml"><View><boundedBy xmlns="http://www.opengis.net/gml"><Envelope><lowerCorner>30.22437 45.024992</lowerCorner><upperCorner>82.935971 60.008409</upperCorner></Envelope></boundedBy></View><Style gml:id="userobject"><iconStyle><template>#placemark</template></iconStyle><balloonContentStyle><template>#balloon</template></balloonContentStyle></Style><Template gml:id="placemark"><text>&lt;img src="http://api-maps.yandex.ru/i/0.3/micro/pm$[metaDataProperty.AnyMetaData.icon]s.png" width="28" heigh="29"/&gt;&lt;font style="font-weight:bold;position:relative;z-index:4;top:-29px;display:block;width:22px;text-align:center" color="$[metaDataProperty.AnyMetaData.color]"&gt;$[metaDataProperty.AnyMetaData.number]&lt;/font&gt;</text></Template><Template gml:id="balloon"><text>&lt;div style="max-width:400px;*width:400px;"&gt;&lt;strong
/*
* CVE-2012-2122 checker
*
* You may get differing results with/without -m32
*
* Joshua J. Drake
*/
#include <stdio.h>
#include <stdlib.h>
@slava-vishnyakov
slava-vishnyakov / youtube.rb
Created November 4, 2012 09:30 — forked from jamieowen/youtube.rb
Octopress Youtube plugin...
# Example:
# {% youtube http://www.youtube.com/watch?v=Awf45u6zrP0 %}
require 'cgi'
require 'uri'
module Jekyll
class Youtube < Liquid::Tag
@width = 640
@height = 390
@slava-vishnyakov
slava-vishnyakov / gist:4966944
Created February 16, 2013 13:27
Nicer foundation.css layout for Rails 3.2
<!DOCTYPE html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7 ]><html class="ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
% ls
foot.c foot.h foot.o toe.c toe.o
% rm * .o
rm: .o: No such file or directory
% ls
%
@slava-vishnyakov
slava-vishnyakov / main.go
Created March 21, 2016 12:56
leaky gorequests
package main
import (
"fmt"
"log"
"os"
"os/exec"
"strings"
"time"
@slava-vishnyakov
slava-vishnyakov / README.md
Last active September 5, 2017 13:38
Laravel Slice Consecutive (like Array#each_cons in Ruby)
@slava-vishnyakov
slava-vishnyakov / _browser_ide_helper.php
Last active June 5, 2020 15:23
Laravel Dusk IDE helpers
<?php
namespace Laravel\Dusk {
class Browser
{
use Concerns\InteractsWithAuthentication,
Concerns\InteractsWithCookies,
Concerns\InteractsWithElements,
Concerns\InteractsWithJavascript,