« first day (308 days earlier)   

1:10 AM
@rdlowrey I'm going home soon. I'll get the server back online for the weekend.
 
1:58 AM
@rdlowrey The last IP I sent you is good.
Server up and good to go.
 
 
2 hours later…
3:49 AM
posted on May 18, 2013 by noreply

‹prev | My Chain | next› I am pretty jazzed about the progress in both the ICE Code Editor and the test suite that is driving much of its development. I really have the sense that I have the beginnings of a robust codebase. I love Dart. One of the things that I do not have is the ability to test headlessly. This is something that worked way back in the day, but stopped at some point due to a b

 
 
13 hours later…
4:27 PM
@rdlowrey Everything okay?
 
4:38 PM
@LeviMorrison Yep. Didn't do any computer anything since early afternoon yesterday. Pretty nice:)
And I just ssh'd in successfully.
 
It's just unusual to ping you 3 times. Was worried you were in the hospital or worse (like some really boring meeting).
 
lol, nah. I saw star trek last night. It was entertaining but I don't think it was as good as the first one.
 
@rdlowrey Meaning the 2009 version?
Or the first one?
 
I mean the 2009 version -- I enjoyed that one a lot.
 
So what's on the agenda for today?
 
4:54 PM
I think I'm going to go workout then come back and spend most of the day working on the client. I'm one or two good programming sessions away from having it working. It'll be much easier for people to use than it was before.
Much easier to use.
$client = new Artax\Client;
$response = $client->request('http://www.google.com');
$requests = ['key1' => 'http://www.google.com', 'key2' => 'http://www.yahoo.com'];
$onComplete = function($key, Response $r) {};
$onError = function($key, Exception $e) {};
$client->requestMulti($requests, $onComplete, $onError);
$request = (new Request)->setUri('http://www.google.com')->setHeader('My-Header', 'myValue');
$response = $client->request($request);
$request = (new Request)->setUri('http://mysite.com/form')->setMethod('POST')->setBody(fopen('/some/file.txt', 'r'));
$response = $client->request($request);
^ Some examples ...
 
Does request block?
I like the promises syntax a lot
 
Yes, these do block. The Client::requestMulti retrieves all requests in parallel but it still blocks until the slowest request finishes. I'm going to finish the blocking version first and then write one that can be used with my event reactor in non-blocking event loops.
 
request("www.google.com").done(function($result){
   //handle success
}).fail(function($err){
   //handle fail
});
 
Interesting ... I may adopt that style for the non-blocking version.
 
That's what jQuery does, one of the only things it does right imho. In nodejs you usually get callback based versions, but there exist interesting promise packages like Q
Yield also comes to mind (in the context of async/await msdn.microsoft.com/en-us/library/vstudio/hh191443.aspx )
$request = $client->get("http://www.google.com");
// do synchronous stuff
// ...
// ...
$result = await $request;// Now result is available
 
5:10 PM
Node has the advantage that the event loop is built-in so you don't have to fiddle with passing around a reactor and starting it manually. It hurts my Inversion of Control sensibilities but I could implement those sorts of functional interfaces seamlessly if I bootstrapped everything with a single global static event loop instance and then referenced it from inside closed scopes.
I don't know if the decrease in testability would allow me to feel comfortable with that, though.
 
Sounds like something clever DI injection might solve
 
Yeah I can do it with a DI container but I was just thinking about this:
7 mins ago, by Benjamin Gruenbaum
request("www.google.com").done(function($result){
   //handle success
}).fail(function($err){
   //handle fail
});
In PHP I'd need to do something along these lines for that to work:
 
It might hurt you in the future but that's unlikely, do you see a scenario where someone would want to replace the event loop? Or create two event loops?
 
static $loop = new Loop;
function request($uri) {
    global $loop;
    // ....
}
Not really -- if you want to use an event loop in PHP you're going to be using a third-party userland implementation and you're best served to have a single instance that you fire up one time and let the application run.
 
In JavaScript, you can't write anything that is asynchronous. It's impossible
You can only run methods you already have access to which are asynchronous, like setTimeout, setInterval, etc.
You don't have direct access to the event loop at all, just to a bunch of modules that do.
(Well, technically it's possible, but it would still require third party code like threads_a_gogo or Fibers)
 
5:17 PM
I'll have to think about it some more. Anyway, I'll be back around later. Have a nice day/evening @LeviMorrison & @BenjaminGruenbaum.
 
You too :)
Also, maybe check out github.com/joyent/libuv
 

« first day (308 days earlier)