Skip to content

Instantly share code, notes, and snippets.

View fuCtor's full-sized avatar

Alexey Shcherbakov fuCtor

View GitHub Profile
def counter(name)
name = name.to_s
@counters ||= {}
return unless name.present?
return @counters[name] if counters.key?(name)
return unless block_given?
relaion = yield
@counters[name.to_s] ||= relation.count if relation.respond_to? :count
end
@fuCtor
fuCtor / rails.template.rb
Last active January 30, 2016 08:23
My Rails App default template
file 'Procfile.dev', <<-CODE
web: bin/puma -b unix://./tmp/sockets/puma.socket -e development
CODE
file 'bin/dev', <<-CODE
#!/bin/sh
bin/bundle exec foreman start --procfile=./Procfile.dev
CODE
run 'rm .gitignore'
#include "stdlib.h"
#include "stdio.h"
#include "math.h"
#include "locale.h"
#include <string.h>
typedef struct Date {
int d;
int m;
int y;
{
"fields" : ["id", "osm_type", "name", "admin_level"],
"sort": ["admin_level"],
"query":{
"bool": {
"must": {
"match_all": {}
},
"filter": {
"geo_shape": {
@fuCtor
fuCtor / 111
Created October 31, 2013 15:01
Гоез
<?php
$item_id = JRequest::getInt('Itemid', 0, 'get');
$view_name = JRequest::getString('view', '', 'get');
$task = JRequest::getString('task', '', 'get');
$div_class_name = 'div1';
if($item_id == 174 && $view_name == 'itemlist')
{
$div_class_name = ( $task == 'some_task' ) ? 'div2' : 'div3';
} ?>