Skip to content

Instantly share code, notes, and snippets.

@raveman
raveman / beats1.bat
Last active August 29, 2015 14:24
beats1 akamai routing
route add 2.16.4.0 mask 255.255.254.0 172.31.0.1
route add 23.14.92.0 mask 255.255.254.0 172.31.0.1
# Расширение контроллера
#
module Bitrix::Authorization
def current_user
@current_user ||= find_from_cookie
end
def login_user(user)
logout_user if current_user
@current_user = user
@raveman
raveman / gist:3337220
Created August 13, 2012 05:43
Downloads in thread and assigning in main thread
-(void)getPhotoWithThread
{
if (self.photoDictionnaire)
{
dispatch_queue_t downloadQueue = dispatch_queue_create("flickr photoDowloader", NULL);
dispatch_async(downloadQueue,
^{
self.photoView.image = [UIImage imageWithData:
[NSDatadataWithContentsOfURL:
[FlickrFetcherurlForPhoto:self.photoDictionnaireformat:FlickrPhotoFormatLarge]]];
@raveman
raveman / reachability-test.m
Created August 13, 2012 05:38
Reachability test
#import "Reachability.h"
- (void)viewDidLoad
{
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];
Reachability * reach = [Reachability reachabilityWithHostname:@"www.google.com"];
[reach startNotifier];
}