Skip to content

Instantly share code, notes, and snippets.

@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];
}
@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]]];
# Расширение контроллера
#
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 / 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
#!/bin/sh
wget --content-disposition http://buy-home.tv/admin/reels/playlist
FILE=`wget --server-response -q -O - "http://buy-home.tv/admin/reels/playlist" 2>&1 |.
grep -i "Content-Disposition:" | tail -1 | awk 'match($0, /filename=(.+)/, f) { print f[1] }' | sed -e 's/^"//' -e 's/"$//'`
cd ./tmp
youtube-dl -a ../$FILE -f mp4 --skip-download
#!/bin/sh
while [ 1 ]; do
ffmpeg -re -f concat -i ./$1 -c copy -f flv rtmp://ferry1.irsot.net/bhtvlive/live
done
@raveman
raveman / gist:94fd0e89ca98d00601d32eb0623df42c
Created May 23, 2016 18:58 — forked from ArchieGoodwin/gist:d07895ac1481d20af509ec08c93a6119
Shows message for given time in upper part of screen above all windows including status bar (swift)
func showMessage(message : String, delay : NSTimeInterval, color : UIColor, completion: boolClosure?)
{
dispatch_async(self.GlobalMainQueue)
{
guard let window = appDelegate.window else
{
completion!(result: false,error: nil)
return
}
@raveman
raveman / nginx.conf
Created December 9, 2017 09:41 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@raveman
raveman / bootstrap4_breadcrumbs_builder.rb
Last active February 6, 2018 14:03 — forked from riyad/bootstrap_breadcrumbs_builder.rb
How to make breadcrumbs_on_rails render a Bootstrap 4 compatible breadcrumb navigation
# based on riyad's bootstrap breadcrumb builder https://gist.github.com/riyad/1933884
#
# The BootstrapBreadcrumbsBuilder is a Bootstrap compatible breadcrumb builder.
# It provides basic functionalities to render a breadcrumb navigation according to Bootstrap's conventions.
#
# BootstrapBreadcrumbsBuilder accepts a limited set of options:
# * separator: what should be displayed as a separator between elements
#
# You can use it with the :builder option on render_breadcrumbs:
# <%= render_breadcrumbs :builder => ::BootstrapBreadcrumbsBuilder, :separator => "&raquo;" %>
@raveman
raveman / ultimate_question.rb
Created October 28, 2019 09:59
ultimate question of life
x = [false, *(1..7), nil, 9]
.map(&:object_id)
.map { |i| i / 2 }
.select { |i| i % 2 }
.sum
.+(STDOUT.fileno)