目前整个互联网环境,被破坏最严重地部分,是 Web 服务体验。当直接破坏难以实现时,就会从流程链的上下游着手,如:DNS 污染。
其它地互联网服务类型,例如:邮件,可能小部分会受到 Web 服务上下游破坏地余震,但整体上基本不受影响。
| // | |
| // JAZMusician.h | |
| // JazzyApp | |
| // | |
| #import <Foundation/Foundation.h> | |
| /** | |
| JAZMusician models, you guessed it... Jazz Musicians! | |
| From Ellington to Marsalis, this class has you covered. |
| {-# LANGUAGE OverloadedStrings #-} | |
| {-| | |
| Tokenizer for SLF0 serialization format, used by Xcode to, at the very least, | |
| encode some log files. | |
| For example, `.xcactivitylog` logs are gzipped files of this format, | |
| serializing some objc classes which represent the build log. | |
| This class tokenizes the raw byte stream into a flat list of tokens. The actual |
| #!/bin/bash | |
| #traversal rules in .gitignore file | |
| while read LINE | |
| do | |
| #ignore empty line | |
| if [ -n "$LINE" ];then | |
| #line include "#" is comment | |
| if [[ $LINE != *"#"* ]] | |
| then |
| // | |
| // LinkedTextView.h | |
| // | |
| // Created by Benjamin Bojko on 10/22/14. | |
| // | |
| // The MIT License (MIT) | |
| // | |
| // Copyright (c) 2014 Benjamin Bojko | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy |
| @echo off | |
| cygwin-shim.bat /bin/ansible-galaxy %* |
| WWDC 2013 - #???: What's new in Foundation Networking | |
| ----------------------------------------------------- | |
| . NSURLConnection, configured through NSURLRequest. Has a global storage for cookies, cache, etc. | |
| . NSURLSession, replaces NSURLConnection, per object configurable. | |
| . Uploads/Downloads through the filesystem. Can be done Out-of-process, but not a regular data request. | |
| . NSURLSessionTask per request, represents the status and progress. Cancel, Suspend, Resume. | |
| . Per session policies: cache, cookies, credentials. | |
| . backgroundSessionConfiguration | |
| . Background Transfers |