Skip to content

Instantly share code, notes, and snippets.

@region23
region23 / golang_books_sites.md
Last active July 18, 2022 08:58
Полезные ресурсы для изучающих Go

На русском языке

Русскоязычные сайты и сообщества

English resources

anonymous
anonymous / gist:4414249
Created December 30, 2012 18:23
Git config by monolithed
[user]
name =
email =
[core]
autocrlf = input
safecrlf = true
whitespace = fix, -indent-with-non-tab, trailing-space, cr-at-eol
pager = less -R
@Meettya
Meettya / observer.coffee
Created February 17, 2012 21:45 — forked from sdiehl/observer.coffee
Observer Pattern in Coffeescript
# app/environment/observer.coffee
###
This module for global Observer
very simple implementation, but works
and support method chaining
###
module.exports = class Observer
@Meettya
Meettya / convert-bath2.sh
Created January 28, 2012 16:24
simply paralell bash bath image resizer
#!/bin/bash
#===================================
#
# This command resize all images
# in this dir and all sub dirs
# For common purpose.
#
# GNU Parallel version
# http://www.gnu.org/software/parallel/
@Meettya
Meettya / convert-bath.sh
Created January 28, 2012 11:18
simply bash bath image resizer
#!/bin/bash
#===================================
#
# This command resize all images
# in this dir and all sub dirs
# For common purpose
#
# usage:
# convert-bath.sh dirname
//
// Regular Expression for URL validation
//
// Author: Diego Perini
// Created: 2010/12/05
// Updated: 2018/09/12
// License: MIT
//
// Copyright (c) 2010-2018 Diego Perini (http://www.iport.it)
//