Esad Hajdarevic

Results 10 comments of Esad Hajdarevic

@dirkx Did you ever get any further on this? Any reason why changes to CocoaAsyncSocket here didn't make it into main CocoaAsyncSocket repo?

Would adding support for "port module" and "effects module" be too much effort?

@deadfoxygrandpa Please consider moving this project to elm-community organization. What do you think @rtfeldman, would having support for major editors under elm-community make sense?

@eeue56 Should we make PR to https://github.com/wbond/package_control_channel to have the default package switch to the new repo?

What happens when you have multiple contexts? On 28.12.2011, at 12:14, Christian [email protected] wrote: > Just put the code before and after the context/describe block... > > --- > >...

This is my current monkey-patch: ``` Bacon::Context.class_eval do alias_method :__initialize__, :initialize define_method(:initialize) do |*args, &block| __initialize__(*args, &block) self.before do DataMapper.auto_migrate! end end end ```

(I encountered this on 8.1.x, but now I upgraded to version 8.3.3-59-g5d6358244 and this still happens)

(Note that when `engine_destroy/1` is removed, the process still crashes, I guess it's getting garbage collected?) I'm not familiar with engines or http code enough (yet :-) so you may...

Digging further I think I found the cause of the problem. In https://github.com/jpsim/SourceKitten/blob/42b70b0e281ac9d72e436b8b1a4ce9f268102f0d/Source/SourceKittenFramework/Xcode.swift#L169 sdk path is retrieved by calling `xcrun --show-sdk-path` ignoring xcodebuild option `sdk` passed to sourcekitten. On my...

It would be also quite handy to have some syntax to easily match structure of a dict right in the clause header, for example when processing parsed JSON documents. The...