last day (341 days later) » 

4:25 AM
My first dart example that deals with timers and default interface behavior:
#import('dart:isolate');

interface TimerHandler default TimerHandlerImpl {
  TimerHandler();
  void handle(Timer t);
}

class TimerHandlerImpl implements TimerHandler {
  num i = 0;
  TimerHandler(){}

  void handle(Timer t) {
    if (i<20) {
      print(i++);
    } else {
      t.cancel();
    }
  }
}

main() {
  TimerHandler handler = new TimerHandler();
  new Timer.repeating(1000, handler.handle);
}
Seems odd that I have to specify a constructor in an interface.
 
That default implementation declaration is sweet
 
I agree.
In Java I was always doing this: TimerHandler handler = new TimerHandlerImpl();
Somehow just saying it's a new TimerHandler is nice.
I can have my interface but NEVER have to worry about providing the default through dependency injection.
 
Oh btw I changed my mind on the PHP RFC for getters/setters. I watched a presentation on Scala today and it totally changed my mind about how nice it would be to implement language features to make my life easier.
 
interface TimerHandler {
  num iterations;
}
That actually just makes getters and setters in Dart.
 
Not to mention PHP probably needs to push its limits in terms of being developer-friendly to stay as ubiquitous going forward.
 
4:29 AM
Since, obviously, you can't have variables in interfaces.
@rdlowrey No kidding.
I wonder if this room will stick.
 
Dunno. My browser's happy to live here. I feel dirty saying it, but seeing all this dart awesomeness makes me feel like I'm cheating on PHP :)
 
I know the feeling.
I love PHP.
I love my in-laws but they drive me nuts.
 
lol
 
I feel the same way about PHP sometimes.
 
 
4:34 AM
I'm seriously going to start looking at using Dart to develop chrome apps and forego js. I've been considering creating some sort of client side app out of some of my stock data and it would be a great way to dive in.
And if Atreyu ever gets finished it would be a really nice RESTful hook up for such an application.
 
Also, we can maybe gain some insights from Dart's webserver stuff.
I bet you can guess what my next Dart project is . . . :)
 
for sure
@LeviMorrison ?
 
@rdlowrey Starting up a webserver.
lol
 
oh lol duh
 
I do know that a request handler has the following prototype:
(Request request, Response response)
Response contains a stream you can output to.
That's about all I know right now.
 
4:37 AM
Heh, sounds similar to how I've setup the example Atreyu Resource classes
 
Constructor parenthesis are required.
new TimerHandler; // does not work
 
I guess I'm okay with that. I've kind of grown fond of leaving off the parens when instantiating a class that takes no ctor args
 
@rdlowrey Same.
 
probably better to always be consistent, though.
 
I need to go follow .
 
4:39 AM
good call.
 
posted on June 26, 2012 by Dart News

Posted by Seth Ladd You can watch Lars Bak and Kasper Lund's Google IO presentation LIVE on Wednesday, June 27th at 1:30PM (US/Pacific). Tune into the Google IO broadcast stream to watch the Dart project founders as they discuss the rationale behind Dart's design and its impact on web scalability and performance. They'll also present how Dart helps developers innovate by increasing their

posted on June 28, 2012 by Dart News

Posted by Gilad Bracha Eliminating Interface Declarations from Dart This document motivates the planned phase-out of interface declarations from the Dart language, and details the required specification changes. Motivation In Dart, every class engenders an implicit interface.  Now that this feature is implemented, it is possible to actually eliminate interface declarations from the

posted on June 28, 2012 by Dart News

Posted by Gilad Bracha First-class Types in Dart Currently Dart does not provide any access to types as objects at the base level.  We propose to provide a getter on class Object: @native Type get type; which returns a reified representation of the class of an object.  Note that the method type can be overridden in subclasses (for example, to implement a remote proxy that hides i

posted on July 09, 2012 by Dart News

Posted by Gilad Bracha Metadata This document fleshes out the specification for the metadata proposal given by Peter. Spec Changes Metadata gets its own section that describes what a valid annotation is either an identifier referring to a constant variable or a valid call to a constant constructor. Some discussion of reflective access. The rest of the changes are modifications to the gramm

posted on July 10, 2012 by Dart News

Posted by Devon Carew A new Dart Editor build is now available. Highlights from this build include: The 32 bit Dartium build has beed added back into the 32 bit Editor build for Linux (and the 64 bit Editor build still contains the 64 bit Dartium build).5 analysis issues fixed.Dartdoc improvements; we now syntax highlight dartdoc comments, and properly indent the next

 
woah
 
What just happened.
lol
 
Feed-splosion
 
4:42 AM
woot. super-duper software update requires reboot. brb.
 
4:59 AM
You know, something else worth considering ... like any new technology from a major player, google will look to develop (and possibly purchase) quality applications that make use of its platform. Early adopters who do a good job stand to make $$$ if the language doesn't flop :)
 
 
1 hour later…
6:15 AM
another . another and another. .
 
hehe :)
 
anyone know if the syntax is similar to any other language??
 
@tomexsans It's not dissimilar to javascript ... basic C style
 
@rdlowrey, i can't look .. it's killing me :D
 
well, it seems really legit. I'm pretty pumped about it myself.
 
6:30 AM
VM's, like java
or not,
 
6:46 AM
@tomexsans Dart runs in VMs.
Can be compiled to JS, but it's lengthy JS.
It's not just a client language either.
Already has stuff built-in to be a web server.
I haven't looked into that part too much, but that's where I'm going next.
 
7:15 AM
@rdlowrey We could be among the first people to make a web library for Dart. If you want to. Just sayin'.
 
@LeviMorrison lol
 
I'm 'guessing' Dart has events.
They have all the tools, we just have to package them.
 
Even if it doesn't, I've learned so much about how to make things pluggable over the last few months it wouldn't be an issue.
First, what else do you think Atreyu needs after Content-Negotiation?
Authorization handling ... what else?
I'm thinking I don't care to bother with sessions/cookies as they're not in the spirit of stateless communication.
 
Agreed.
Authentication needs implemented.
 
I just need to standardize the config class, finalize the directives I've mentioned before and add XML config file support
+ finish unit tests for everything. hopefully everything short of authentication will be finished this weekend.
Then we can survey the damage and see what else needs to be added besides authentication handling (if anything for now).
But I am down for being an early dart adopter.
 
7:20 AM
Web server in dart:
#import('dart:io');

main() {
  var server = new HttpServer();
  server.listen('127.0.0.1', 8080);
  server.defaultRequestHandler = (HttpRequest request, HttpResponse response) {
    response.outputStream.write('Hello, world'.charCodes());
    response.outputStream.close();
  };
}
 
And all that's native from the io module?
 
holy crap.
 
But to make a nice web-app, on the other hand . . .
I'm not sure what all is in there.
Digging through it.
#library('atreyu:http');
#import('dart:io');

class HttpRequestHandler {

  handleRequest(HttpRequest request, HttpResponse response) {
    response.outputStream.write("${request.method} ${request.uri}".charCodes());
    response.outputStream.close();
  }

}
@rdlowrey Making a web library for this will be a piece of cake.
 
nice!
things like this make me laugh:
Note: The library system in Dart will change. This section describes how it currently works.
Because I totally understand the motivation for saying things like that ...
 
 
1 hour later…
9:21 AM
That's right, yo. Room owner status. Makes me feel better after fighting with stupid SAMBA shares all night.
 
 
6 hours later…
2:53 PM
room topic changed to Dart Lang: It's new and questionable, but it exists; might as well talk about it. [[dart]] [[dartium]]
room topic changed to Dart Lang: It's new and questionable, but it exists; might as well talk about it. [dart] [dartium]
 
 
2 hours later…
5:19 PM
I've had a lot of fun with Dart already.
Getting ready to implement a routing mechanism.
 
6:01 PM
I haven't looked deep into it but it looks like Isolates make concurrent programming almost trivial. I've often wished the PCRE extension were better.
 
@rdlowrey I'm not sure what Isolates and PCRE have to do with each other?
interface Uri {

  String get scheme();
  String get authority();
  String get path();
  String get query();
  String get fragment();

  String toString();
}


class Url implements Uri {

  String scheme = '';
  int port = 80;
  String domain = '';
  String path = '/';
  String query = '';
  String fragment = '';

  Url(String uri){
    RegExp regex = const RegExp(@'^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?');

    if (!regex.hasMatch(uri)) {
      throw new IllegalArgumentException('Argument to Url must be a valid uri');
That's pretty slick. Next step is to make Url the default impl of Uri.
Done. That was easy.
By the way, the constructor definition is only required in an interface when it has a default impl.
 
6:22 PM
All code in Dart runs in the context of an isolate. You can use additional isolates for concurrent programming, and to run third-party code more securely. The isolates within an app don't share any state or memory. Instead, isolates communicate by passing messages. When an isolate sends a message, the receiving isolate gets a local copy of the original message's data.
Super-ping formatting fail!
 
lol
I need to find out if the default webserver automatically creates isolates.
I didn't even think about that.
I might need to spawn them myself.
 
"You can use additional isolates ... to run third-party code more securely." Sounds like it might be possible to use a separate isolate as a sandboxed environment for templating? I need to look into that.
 
Also, I just learned that the Dart web server can have multiple handlers.
I'm not sure how it works just yet.
Was reading the source code.
But that sounds like a very useful feature for a routing system. Add one handler to do routing stuff, and it the route isn't matched, then use a handler that will do static files.
@rdlowrey At the moment, I don't care about Dart's client side stuff at all.
I'd develop a web service with Dart in a heartbeat . . . assuming it has good classes for database handling.
 
I haven't seen anything built-in to deal with DBs yet, but haven't looked that hard. I would think that at the very least there'd be something sqlite-related
 
localstorage in the browser does sqlite, right?
 
6:32 PM
Looks like there is a MongoDb driver right now
@LeviMorrison I think*
 
Time to learn MongoDb, I guess. :)
 
local storage appears to be supported now api.dartlang.org/html/Storage.html
Asynchronous MySQL database access github.com/jamesots/sqljocky
 
@rdlowrey Awe-some.
 
6:52 PM
@rdlowrey Feel free to add feeds if you think they'd be helpful.
I figured the official dartlang.org would be a good feed to have.
 
Oooh I really like the cascades implementation over method chaining:
query('#my-form').query('button')
    ..classes.add('toggle')
    ..text = 'Click Me!'
    ..labels.add(toggleLabel);
everything after .. is called on the result of the expression before the first ..
 
You get the benefit of method chaining without violating SOLID.
 
yup
And you don't have to rely on an outside API to use a fluent interface
 
It's very nice.
 
7:24 PM
rdlowrey has made a change to the feeds posted into this room
 
7:39 PM
I'm tempted to quietly start converting my work's app into Dart.
And then in a staff meeting in a year just say, oh, hey, I happen to have our application in Dart.
 
hehe covert ops
 
Dart has a standard unit-testing framework.
PHP is the only other language I know to have a built-in testing library, but phpt sucks.
It's not really unit-testing.
Just testing.
room topic changed to Dart Lang: It's new and questionable but it exists; might as well talk about it. [dart] [dartium]
Had to fix the grammar.
Was driving me crazy. Errant comma's bother me.
 
 
2 hours later…
9:34 PM
I'm trying to convince my boss that when we do an API rewrite that we should do it in Dart.
@rdlowrey I've looked at Dart's event system. They redid the API for the DOM events, but I can't find anything about normal, non-dom-related events.
That isn't to say it's not there.
I just can't find it.
room topic changed to Dart Lang: It's new and questionable but it exists; might as well talk about it. Language Reference [dart] [dartium]
room topic changed to Dart Lang: It's new and questionable but it exists; might as well talk about it. [dart] [dartium]
 
 
1 hour later…
11:05 PM
@LeviMorrison I was looking at it as well. I'm excited to incorporate some ideas into what I have php-wise as well as develop some implementations for dart
 
@rdlowrey If you find non-dom related event stuff, be sure to link me.
 
will do
 
This might be useful: phylotic.blogspot.com/2011/11/…
@rdlowrey I just realized that Dart has generics. I cognitively registered it before, but I just realized what that means.
o.0
EventHandler(Object sender, EvenArguments args)
I wonder if they have a callable type hint?
 
11:24 PM
Sorry, had to do a restart to get fedora to recognize my new bluetooth mouse
Yeah, I'm like a kid in a candy store ... going from not having scalar typehinting to full-blown generics is more than I can take. It's like a programming sugar-rush :)
Looks like someone else wanted a callable typehint too sam-mccall.github.com/dart-reflect/reflect/Callable.html
 
11:38 PM
Since they have C++ like templates, we can even do more fun stuff
 
I honestly have zero exposure to C++, so I'll have to take your word for it.
 
Stuff like Queue<Events>.
It's a Queue of Events.
 
@LeviMorrison Thanks for adding the language reference. I kept closing the tab then having to pull it back up :)
adding the link, I mean
 
Same :)
 
All right, I'm going to go workout. I'll be on the computer all night after that feverishly trying to finish the Atreyu php necessaries so I can start playing with dart.
 

  last day (341 days later) »