Skip to content

Instantly share code, notes, and snippets.

View fduch2k's full-sized avatar

Alexander Hramov fduch2k

View GitHub Profile
@fduch2k
fduch2k / underscore.repeat.js
Created January 24, 2012 10:58
underscore mixin for repeatly calls the function
_.mixin({
repeat: function(func, times, delay, context) {
delay = delay || 100;
context = context || this;
var intervalId = setInterval(function() {
func.apply(context);
if (--times < 1)
clearInterval(intervalId);
}, delay);
}
@fduch2k
fduch2k / i18n.coffee
Created February 2, 2012 09:49 — forked from madrobby/i18n.coffee
Backbone i18n with CoffeeScript
# before this file is loaded, a locale should be set:
#
# In a browser environment, you can use:
# ```<script>__locale='en';</script>```
#
# In a server environment (specifically node.js):
# ```global.__locale = 'en';```
# normalize in-app locale string to "en" or "de-AT"
parts = @__locale.split('-')
@fduch2k
fduch2k / Counts.js
Created February 11, 2012 13:29 — forked from TrisMcC/Counts.js
Backbone collection with metadata model
Collection.Counts = Backbone.Collection.extend({
Model: Model.CountResult,
url: function() {
return '../EmailCounts/CountResults.php';
},
sync: function(method, model, options) {
options = _.extend({
dataType: 'html',
@fduch2k
fduch2k / manualcall.js
Created February 12, 2012 13:53 — forked from easierbycode/manualcall.js
search with backbone collections
var results = new SearchResults();
results.searchTerm = "some search term";
results.fetch({
success: someView.showTheResults
});
@fduch2k
fduch2k / ARCHelper.h
Created June 1, 2012 12:35 — forked from nicklockwood/ARCHelper.h
ARC Helper
//
// ARC Helper
//
// Version 1.3.1
//
// Created by Nick Lockwood on 05/01/2012.
// Copyright 2012 Charcoal Design
//
// Distributed under the permissive zlib license
// Get the latest version from here:
@fduch2k
fduch2k / UIDevice+HostUUID.h
Created September 24, 2012 08:06 — forked from 0xced/UIDevice+HostUUID.h
Alternative iOS device unique identifier
#import <UIKit/UIKit.h>
@interface UIDevice (HostUUID)
- (NSString *) xcd_uniqueIdentifier;
@end
@fduch2k
fduch2k / UIImage+Retina4.h
Created September 24, 2012 08:09 — forked from bstahlhood/UIImage+Retina4.h
Swizzled UIImage imageNamed for iPhone 5
//
// UIImage+Retina4.h
// StunOMatic
//
// Created by Benjamin Stahlhood on 9/12/12.
// Copyright (c) 2012 DS Media Labs. All rights reserved.
//
#import <UIKit/UIKit.h>
----- Esc -----
Quick change directory: Esc + c
Quick change directory history: Esc + c and then Esc + h
Quick change directory previous entry: Esc + c and then Esc + p
Command line history: Esc + h
Command line previous command: Esc + p
View change: Esc + t (each time you do this shortcut a new directory view will appear)
Print current working directory in command line: Esc + a
Switch between background command line and MC: Ctrl + o
Search/Go to directory in active panel: Esc + s / Ctrl + s then start typing directory name
#!/bin/sh
#
# For each ref, validate the commit.
#
# - It disallows deleting branches without a /.
# - It disallows non fast-forward on branches without a /.
# - It disallows deleting tags without a /.
# - It disallows unannotated tags to be pushed.
@fduch2k
fduch2k / config.rb
Created October 16, 2013 06:13 — forked from rinatio/config.rb
# for more information look at help.github.com/capistrano/
set :application, "yii2-app-basic"
server "example.com", :web # your server address or IP
set :user, "username" # your username for ssh
set :use_sudo, false
# set the remote directory you're going to deploy to
set :deploy_to, "/home/#{user}/www/#{application}"
# disable rails specific normalize_assets property