Use these together with https://redsweater.com/fastscripts/ for global hotkey goodness in macOS
Requirements:
brew install fastscripts
Download all the scripts and put them in ~/Library/Scripts/
Use these together with https://redsweater.com/fastscripts/ for global hotkey goodness in macOS
Requirements:
brew install fastscripts
Download all the scripts and put them in ~/Library/Scripts/
| // | |
| // NSMutableArray+WeakArray.h | |
| // | |
| #import <Foundation/Foundation.h> | |
| /// | |
| /// Category on NSArray that provides read methods for weak pointers | |
| /// NOTE: These methods may scan the whole array | |
| /// |
| var express = require("express"); | |
| var app = express(); | |
| app.get("/restricted", function(req, res, next){ | |
| // Grab the "Authorization" header. | |
| var auth = req.get("authorization"); | |
| // On the first request, the "Authorization" header won't exist, so we'll set a Response | |
| // header that prompts the browser to ask for a username and password. |
| - (IBAction)downloadFile:(id)sender { | |
| NSURL *url = [NSURL URLWithString:@"http://www.hulkshare.com/dl/qw30o7x373a8/stan_courtois_&_felly_vs_cutting_crew_-_die_in_your_arms_(x-centrik_mix)_%5B_www.themusix.net_%5D.mp3"]; | |
| NSURLRequest *request = [NSURLRequest requestWithURL:url]; | |
| AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request]; | |
| NSString *fullPath = [NSTemporaryDirectory() stringByAppendingPathComponent:[url lastPathComponent]]; | |
| [operation setOutputStream:[NSOutputStream outputStreamToFileAtPath:fullPath append:NO]]; |