User loginNavigation |
LtU ForumSML# targets LLVMI will always have a soft spot in my (otherwise cold, desolate, inchoate) heart for SML. Their main page is unreachable for me just now (you can get e.g. the google cached version of it still if you like), but their last announcement was in April of this year (2014) so I hope the project is still alive.
Integrating Dependent and Linear TypesThis wasn't posted yet, that I could find. Sorry if this is a dupe. Neelk doesn't self-promote, I guess. :-)
Personally I find the abstract a little over my head, but am excited when I read stuff like, "We would like to fully integrate dependent and linear type theory. Linear type theory would permit us to extend the Curry-Howard correspondence to (for example) imperative programs, and type dependency permits giving very precise types to describe the precise functional behavior of those programs." Funny how the 'Fair Reactive' paper was just recently mentioned on the ATS list. Chocolate & Peanut-butter: Google Blockly & Behavior ThreadsMy day job involves GUI work on smartphones (pity me) so I like finding out about things like this:
By raould at 2014-12-05 23:22 | LtU Forum | login or register to post comments | other blogs | 4100 reads
Future of Programming Videos, final programThe final program from the SPLASH Future of Programming workshop is up. A lot of great videos with a lot of great ideas for the future of our field! Contents with brief one liners (see the program page for more detailed abstracts):
Antha programming system for Bioinformatics
Recently made open source, the programming system Antha uses flow based programming. They have set up a bioinformatics related set of types in said system. (I have nothing to do with the project, haven't even used it, but sure wish I could get paid to do so. :-) By raould at 2014-12-04 18:21 | LtU Forum | login or register to post comments | other blogs | 3661 reads
Whither compositionality: Declarative vs. imperative?From the other thread, I read Relations as First-Class Citizen from which I wonder: If we are seeking good support for compositionality, how might a declarative/calculus approach go wrong? What is it about SQL or Make or whatever else (e.g. random thing IBM's Collage) that might contribute to compositional frustration?
By raould at 2014-12-01 18:53 | LtU Forum | login or register to post comments | other blogs | 3504 reads
CFP: International Conference on Live CodingInternational Conference on Live Coding With pleasure we announce the initial call for papers and performances for the first International Conference on Live Coding, hosted by ICSRiM in the School of Music, University of Leeds, UK. This conference follows a long line of international events on liveness in computer programming; the Changing Grammars live audio programming symposium in Hamburg 2004, the LOSS Livecode festival in Sheffield 2007, the annual Vivo festivals in Mexico City from 2012, the live.code.festival in Karlsruhe, the LIVE workshop at ICSE on live programming, and Dagstuhl Seminar 13382 on Collaboration and Learning through Live Coding in 2013, as well as numerous workshops, concerts, algoraves and conference special sessions. It also follows a series of Live Coding Research Network symposia on diverse topics, and the activities of the TOPLAP community since 2004. We hope that this conference will act as a confluence for all this work, helping establish live coding as an interdisciplinary field, exploring liveness in symbolic abstractions, and understanding the perceptual, creative, productive, philosophical and cultural consequences. The proceedings will be published with ISSN, and there will also be an follow-on opportunity to contribute to a special issue of the Journal on Performance Arts and Digital Media; details will be announced soon. Timeline * Templates available and submissions system open: 8th December 2014 Submission categories * Long papers (6-12 pages) ICLC is an interdisciplinary conference, so a wide range of approaches are encouraged and we recognise that the appropriate length of a paper may vary considerably depending on the approach. However, all submissions must propose an original contribution to Live Coding research, cite relevant previous work, and apply appropriate research methods. The following long list of topics, contributed by early career researchers in the field, are indicative of the breadth of research we wish to include: * Live coding and the body; tangibility, gesture, embodiment Submissions which work beyond the above are encouraged, but all should have live coding research or practice at their core. Please contact us if you have any questions about remit. Please email feedback and/or questions to livecodenet@gmail.com By yaxu at 2014-11-18 14:06 | LtU Forum | login or register to post comments | other blogs | 3394 reads
Code Completion for Generic ProgrammingI want generics, in particular polymorphic functions as well as function overloading based on type-classes. For the moment think about Haskell type-classes and C++ Concepts. I also want code completion. Code completion works for OO languages because they are polymorphic on the object type, which prefixes the function call, and hence the type is known when code completion lookup occurs. Generic functions can be polymorphic on any argument. This suggests that all the arguments need to go before the operator in postfix format. This way code completion can operate on the argument types, and only offer valid generic functions. It can also offer all generic functions that take those arguments in alphabetic order. I want to discuss whether this idea has any merit, and second I want to discuss syntax: So, a reverse lisp style (likely to confuse people as no clear difference from lisp function first format): (list comparator sort) or perhaps reverse C: (list, comparator) sort Or perhaps a template C++ like syntax: <list,comparator>.sort Or: list,comparator.sort Lisps are funI think this paper is a really nice blast from the past.
Too bad it doesn't seem to be available online anywhere. Might any LtU user have the social network to find it / obtain it / write an eulogy about it? managing closed worlds of symbols via alpha-renaming in loosely coupled concurrent appsI enjoyed discussion in Why do we need modules at all? (about Joe Armstrong's post on the same topic) more than anything else on LtU the last few years. Several comments reminded me of something I've been thinking about several years now. But describing it doesn't seem on topic in reply (or, I lack the objectivity to tell). The modules thread is already long, and I don't want to pollute it with junk. This is mainly about transpiling, where you compile one source to generate another, with a goal of automated rewrite, where both syntax and complexity in the input and output are similar: compiling one language to itself, but re-organized. For example, you can use continuation passing style (CPS) to create fibers (lightweight threads) in a language without them natively, like C. Obviously this is language agnostic. You can add cooperative fibers to any language this way, from assembler to Lisp to Python, as long as you call only code similarly transformed. You're welcome to free associate about this or anything else mentioned, though. For the last year or so, almost all my thinking on the topic has been about environment structure, lightweight process management, and scripts effecting loose coupling relationships via mechanisms similar to Unix, such as piping streams, etc. Once you work out how a core kernel mechanism works, all the interesting parts are in the surrounding context, which grow in weirdly organic ways as you address sub-problems in ad hoc ways. Thematically, it's like a melange of crap sintered together, as opposed to being unified, or even vaguely determined by constraints stronger than personal taste. Note I'm not working on this, thus far anyway, so treat anything I say as an armchair design. There's no code under way. But I probably put a couple thousand hours thinking into it the last seven years, and parts may have a realistic tone to them, in so far as they'd work. It started out as a train of thought beginning with "how do I make C behave like Erlang?" and grew from there. I've been trying to talk myself into wanting to code parts of it, sometime. Several folks mentioned ideas in the other thread I want to talk about below, in the context of details in the armchair design problem. (I'll try to keep names of components to a minimum, but it gets confusing to talk about things with no names.) Most of the issues I want to touch deal with names, dependencies, modules, visibility, communication, and the like, in concurrent code where you want to keep insane levels of complexity in control if possible. |
Browse archives
Active forum topics |
Recent comments
8 weeks 6 days ago
8 weeks 6 days ago
9 weeks 8 hours ago
9 weeks 19 hours ago
9 weeks 4 days ago
9 weeks 4 days ago
9 weeks 5 days ago
9 weeks 5 days ago
9 weeks 5 days ago
9 weeks 5 days ago