This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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]; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-(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]]]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
while [ 1 ]; do | |
ffmpeg -re -f concat -i ./$1 -c copy -f flv rtmp://ferry1.irsot.net/bhtvlive/live | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x = [false, *(1..7), nil, 9] | |
.map(&:object_id) | |
.map { |i| i / 2 } | |
.select { |i| i % 2 } | |
.sum | |
.+(STDOUT.fileno) |
OlderNewer