Some notes, tools, and techniques for reverse engineering macOS binaries.
- Proposal: SE-xxxx
- Authors: Alastair Houghton
- Review Manager: TBD
- Status: Prototyping
This year we are improving the usability of Swift for command line and
| 1) Install cloudflared using homebrew: | |
| brew install cloudflare/cloudflare/cloudflared | |
| 2) Create /usr/local/etc/cloudflared/config.yaml, with the following content | |
| proxy-dns: true | |
| proxy-dns-upstream: | |
| - https://1.1.1.1/dns-query | |
| - https://1.0.0.1/dns-query |
From episode "5 - Setting Up Universal Links (Deep Linking)" on the Inside iOS Dev Podcast
1) Create an apple-app-site-association file that contains JSON data about the URLs that your app can handle.
- Create
apple-app-site-associationtext file without.jsonfile extension - Use
application/jsonMIME type for the text file - Have the following contents of the file similar to this format:
{ "applinks": {
"apps": [],
Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.
This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
| require "aws-sdk" | |
| require "pry" | |
| filename = File.expand_path("./deploy/video.rb", File.dirname(__FILE__)) | |
| config_file = File.open(filename, "w") | |
| client = Aws::EC2::Client.new( | |
| region: "eu-west-1", | |
| access_key_id: "access_key_id", | |
| secret_access_key: "secret_access_key" |
| # You will need fswatch installed (available in homebrew and friends) | |
| # The command below will run tests and wait until fswatch writes something. | |
| # The --stale flag will only run stale entries, it requires Elixir v1.3. | |
| fswatch lib/ test/ | mix test --stale --listen-on-stdin |
