[swift-corelibs-dev] Looking to contribute

2016-09-10 Thread Leonid Kogan via swift-corelibs-dev
Hi!
I’m looking to contribute to the overall success of this amazing project.
30 years of experience in C, C++, etc…
Can take any small, well defined task, to prove my ability to help out.
Would appreciate any attention to my “offer” :)

Cheers,
LK

___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev


[swift-corelibs-dev] Inconsistent URLSession POST behaviour

2016-09-10 Thread Michael Ferenduros via swift-corelibs-dev
I’m seeing differences between Linux and Mac when trying to do a POST with a 
URLSessionDataTask - it seems like URLRequest.httpBody is ignored on Linux, so 
POSTs arrive with an empty body.

Was I relying on undefined behaviour, or is this just not yet implemented?

The following captures the difference in behaviour:

import Foundation
import Dispatch

var req = URLRequest(url: URL(string: "http://httpbin.org/post";)!)
req.httpMethod = "POST"
req.httpBody = "Hello! You should see me in the 'form' parameter of the 
result.".data(using: .utf8)

let sesh = URLSession(configuration: URLSessionConfiguration.default)

let dataTask = sesh.dataTask(with: req) { data, _, _ in
print(String(data: data!, encoding: .utf8)!)
exit(0)
}
dataTask.resume()
dispatchMain()

___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev


Re: [swift-corelibs-dev] Looking to contribute

2016-09-10 Thread Michael Ilseman via swift-corelibs-dev
You can start with the Starter Bugs on JIRA:

https://bugs.swift.org/browse/SR-2605?jql=labels%20%3D%20StarterBug


> On Sep 10, 2016, at 1:22 PM, Leonid Kogan via swift-corelibs-dev 
>  wrote:
> 
> Hi!
> I’m looking to contribute to the overall success of this amazing project.
> 30 years of experience in C, C++, etc…
> Can take any small, well defined task, to prove my ability to help out.
> Would appreciate any attention to my “offer” :)
> 
> Cheers,
> LK
> 
> ___
> swift-corelibs-dev mailing list
> swift-corelibs-dev@swift.org
> https://lists.swift.org/mailman/listinfo/swift-corelibs-dev

___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev


Re: [swift-corelibs-dev] Looking to contribute

2016-09-10 Thread Dmitri Gribenko via swift-corelibs-dev
Thanks Leonid, we'd appreciate your help!

Here's a list filtered down to just the open issues:

https://bugs.swift.org/browse/SR-2605?jql=status%20in%20(Open%2C%20Reopened)%20AND%20labels%20%3D%20StarterBug

Dmitri

On Sat, Sep 10, 2016 at 2:29 PM, Michael Ilseman via
swift-corelibs-dev  wrote:
> You can start with the Starter Bugs on JIRA:
>
> https://bugs.swift.org/browse/SR-2605?jql=labels%20%3D%20StarterBug
>
>
>> On Sep 10, 2016, at 1:22 PM, Leonid Kogan via swift-corelibs-dev 
>>  wrote:
>>
>> Hi!
>> I’m looking to contribute to the overall success of this amazing project.
>> 30 years of experience in C, C++, etc…
>> Can take any small, well defined task, to prove my ability to help out.
>> Would appreciate any attention to my “offer” :)
>>
>> Cheers,
>> LK
>>
>> ___
>> swift-corelibs-dev mailing list
>> swift-corelibs-dev@swift.org
>> https://lists.swift.org/mailman/listinfo/swift-corelibs-dev
>
> ___
> swift-corelibs-dev mailing list
> swift-corelibs-dev@swift.org
> https://lists.swift.org/mailman/listinfo/swift-corelibs-dev



-- 
main(i,j){for(i=2;;i++){for(j=2;j*/
___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev