Keybase proof
I hereby claim:
- I am mtauraso on github.
- I am mtauraso (https://keybase.io/mtauraso) on keybase.
- I have a public key ASACXnqnXJ1ckMH8Th5f2KvotZHnASfXDhcR19AYqdoLugo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
$ curl -v -o temp.gif https://s3.amazonaws.com/cn-ppg-api-development/dest/049e387b-7acd-40c9-b7ec-f13d263be6ac/animated.gif | |
* Adding handle: conn: 0x7f9be2002a00 | |
* Adding handle: send: 0 | |
* Adding handle: recv: 0 | |
* Curl_addHandleToPipeline: length: 1 | |
* - Conn 0 (0x7f9be2002a00) send_pipe: 1, recv_pipe: 0 | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* About to connect() to s3.amazonaws.com port 443 (#0) | |
* Trying 54.231.114.100... |
What xcode project/workspace file we're using. If you specify a project on the command-line and that project has an associated workspace, the project is still aware of its existence within the workspace. As an example, worspace level schemes will be available to xcodebuild even if you specify a project on the command line.
Specify the scheme to use for build. Schemes specify multiple build/test targets along with environment args and command line parameters. Schemes must be marked "shared" in the xcode UI in order to be available to xcodebuild. For any particular build/test action there is a default configuration when you use a scheme from the Xcode UI.
#!/bin/bash | |
# This will add lauchd to the list of allowed processes for accessibility access | |
sudo sqlite3 /Library/Application\ Support/com.apple.TCC/TCC.db "INSERT or REPLACE INTO access VALUES('kTCCServiceAccessibility','/sbin/launchd',1,1,1,NULL)" | |
# This outputs the rows in the TCC database | |
sudo sqlite3 /Library/Application\ Support/com.apple.TCC/TCC.db 'select * from access' | |
echo "Restart is required for these changes to take effect" |
#include <iostream> | |
using namespace std; | |
struct A { | |
int an_integer; | |
float a_float; | |
}; | |
int main (void) { |
# LBs have 8 cores. One is used for haproxy, rest are used for nginx workers | |
worker_processes 7; | |
worker_rlimit_nofile 90000; | |
pid <PID_FILE>; | |
events { | |
use epoll; | |
multi_accept off; | |
accept_mutex off; |