« first day (67 days earlier)      last day (242 days later) » 

12:35 AM
If we follow Locations, then setMaxRedirects might need to be renamed.
Redirection is the name for 3xx level codes.
Also, how do browsers handle the case when you send a 201 with a Location header? Do they redirect?
 
 
1 hour later…
1:56 AM
@LeviMorrison my experience is that browsers transparently follow the Location header for any 2xx or 3xx response
I've considered changing from setMaxRedirects to setMaxLocationNesting($int) ... Thoughts? Also, infinite redirects are currently detected automatically -- each request maintains an array of previous URIs in the redirection process.
 
 
1 hour later…
3:14 AM
setMaxLocationNesting sounds terrible.
It describes it better but sounds awful.
 
setMaxNestedRedirects sounds a bit better
 
setMaxFollows?
Never mind that doesn't describe anything
 
setMaxNumberOfTimesThisHttpClientShouldFollowALocationHeaderPassedByTheHttpServ‌​erToMeBeforeStopping
 
sold. It's perfect.
 
in all seriousness, i wouldn't fret too much if the name of that particular method is bad --- most of the time (i'd imagine) the default will be used anyway
and no one will cringe reading the one or two lines its used on
i really am looking forward to the election being over so i can stop seeing these [censored] ads for the [censored] [withheld] party.
 
 
9 hours later…
12:48 PM
posted on September 19, 2012 by Anders Thorhauge Sandholm

Summary Dart is getting closer to reaching Milestone 1. We have been doing a lot of M1 bug-fixing across sub components. There is now a Dart web components sample available. We have a new pub package layout and the editor now comes with the possibility to auto-update. Details Dart Editor: Lots of SDK changes: dart:dom was removed and several libraries moved from dart-sdk/lib to dart-sdk/pkg.

 
 
2 hours later…
2:48 PM
posted on September 19, 2012 by Seth Ladd

Watch this episode of Dartisans and learn more about using Dart with Web Components. Even though Web Components aren't yet baked into the platform, you can use Dart to build Web Components today and compile them down into code that works in modern browsers. You can follow along with the open-source dart-web-components work on Github. With Dart, you can build structured web apps. With Web Co

 
 
2 hours later…
5:11 PM
posted on September 19, 2012 by noreply

So the past few days I've been playing around with some simple algorithms. I'm not 'professionally' trained, and most of my experience has been with what I've seen in code or have implemented myself. Does that make me less of a developer for not being classically trained? Maybe, maybe not. In particular I've been playing around with some of the sorting algorithms. Stuff like Bubble sort, Selec

 
5:50 PM
posted on September 19, 2012 by noreply

I've been busy the last few weeks. I've had to give more time to another gig, so I've slowed my progress on the Dartsweeper Pop, Pop, Win! But I've made some great tractions. Check out the demo at sweeper.j832.com. Graphics and animation with TexturePacker Graphics for the Pop, Pop Win! (PPW) are packaged using TexturePacker. TexturePacker takes a number of source images and produces an o

 
 
3 hours later…
9:03 PM
I need to rewrite my hotplate problem in Dart with a modern Dart VM.
Hopefully it will show improvements.
@rdlowrey You should appreciate this:
0
A: Google Document List API 308 Resume Incomplete

Levi MorrisonIt seems that your last request is not sending a Content-Range. I think this is the problem but am unsure because I have never used this API before. I'm just going off what I know in the HTTP spec.

Was an attempt to repwhore your domain while you were busy :)
 
9:26 PM
+1 nice :)
 
Note: Currently, typedefs are restricted to function types. This may change in a future version of the language specification.
. . .
 
whaaaaa
 
10:00 PM
Yuck.
Dart is so slow.
 
Still can't program scientific applications in Dart, I see.
 
I'm going to try isolates in a moment.
Come on, Dart, you can do it!
140 more iterations to go!
Blah, and I have an error.
It's so slow I can run it and check :/
 
Thoughts on eliminating all the Client option setter methods in favor of the following?
function setSslOptions(array $options);
function setAttribute($attr, $val);
with the following constants for the setAttribute method ...
Client::ATTR_FOLLOW_LOCATION
---
Client::FOLLOW_LOCATION_NONE
Client::FOLLOW_LOCATION_3XX
Client::FOLLOW_LOCATION_SAFE
Client::FOLLOW_LOCATION_ALL

Client::ATTR_PROXY_REQUESTS
---
Client::PROXY_REQUESTS_ON
Client::PROXY_REQUESTS_OFF

Client::ATTR_CONNECT_TIMEOUT
---
Client::CONNECT_TIMEOUT_DEFAULT

Client::ATTR_HOST_CONCURRENCY
---
Client::HOST_CONCURRENCY_DEFAULT

Client::ATTR_IO_CHUNK_SIZE
---
Client::IO_CHUNK_SIZE_DEFAULT
 
Dunno.
One problem with them is that it is easier to make mistakes.
 
Right. I've always felt like the explicit setter methods make it exceedingly clear what you're doing.
And they're more readable.
You don't have to reference an exhaustive list of attribute constants to figure out what's going on.
 
10:26 PM
On the other hand you only gave to look up options in one place.
 
And they're all peripheral options -- none of the attributes are required and all have defaults ...
They're really more for fine-grained control than anything else
 
By the way, I had a really dumb error in my Dart code.
 
One of my beefs with curl_* is that the attributes assigned with curl_setopt are all over the map ... some deal with http, some with ssl, etc.
 
My isSteady function always was returning false. Doh.
 
I'd say about 75% of my debug time is spent locating "really dumb errors"
 
10:36 PM
lol
Also, I turned off checked-mode.
It's faster but still slow.
 
Unless you have reservations I think I'm going to give in to using Client::setAttributes instead of all the individual option setter methods. This is basically the last decision to make before things are "finished" and ready for final polishing.
I may or may not get around to creating a composer.json file tonight as well.
 
 
1 hour later…
11:50 PM
@rdlowrey This reminds me that PHP needs enums.
 

« first day (67 days earlier)      last day (242 days later) »