Cause stuff like offline and others are simply better there still
Not to mention memory consumption on chrome -.-
But I really, really need to stop discussing now and go to bed xD
So stop coming with engaging subjects xD
I'll talk to y'all later
Chris Beckett
@chrismbeckett
@Alxandr Night, respect your opinions, and recognize the conjecture in my own.
Luke A. Greenleaf
@gishmel
if you read the second article @Alxandr you would realize you described asm.js not web assembly
Chris Beckett
@chrismbeckett
@Alxandr I don't really think I am right, but I find value in the conversation and hearing others opinions.
Luke A. Greenleaf
@gishmel
but have a good night
Chris Beckett
@chrismbeckett
@Alxandr Thanks, night
I am not gonna touch the thread the Web Assembly :)
Luke A. Greenleaf
@gishmel
yeah its a beast as of right now but hopefully they sort out a lot of the issues surrounding it but its a consortium so it should work no @chrismbeckett
Chris Beckett
@chrismbeckett
@gishmel LOL
Luke A. Greenleaf
@gishmel
and those Google folks kinda bite the bullet hard as they dumped a lot of money into their solution
pNaCl and its former self NaCl I guess they are trying to leverage their learnings on the security vulnerabilities though so that is good
is anyone using the ServiceWorker APIs in their Aurelia application yet?
I mean its the web so its safe to say it will be in flux for a while
but its amazing
I might publish a plugin cause I ended up making something that I think if pluggable into the http layer could really help keep requests low for mobile
I am interested in its Add-To-Home-Screen functionality currently
so it makes web application stuff more easy and allows offline work as well which is a total bonus
Kijana Woodard
@kijanawoodard
@ejsmith "who the heck wants to be locked into a single language with no choice?" exactly, I want to be able write in any language and have it run in a browser.
yd021976
@yd021976
hi all
simple (maybe noob) question about external ressources in aurelia apps
i want a package (jquery image cropper) that is not in jspm, what is the best way to integrate this dependency in aurelia app ?
yd021976
@yd021976
anyone could help with this ?
Roland Quast
@rquast
is there a github project for it?
if it's this one... fengyuanchen/cropper
jspm install github:fengyuanchen/cropper
yd021976
@yd021976
ok ! i've searched in jspm registry but not found any image cropper
Roland Quast
@rquast
no, that's directly getting it from github
jspm can use it's own registry, npm's reg or any github project
yd021976
@yd021976
ok thanks very much ! Just a jspm noob question so :worried:
Roland Quast
@rquast
and if you don't have jquery ... jspm install that too
then in your view model (or whatever..)
import $ from 'jquery';
import {cropper} from 'fengyuanchen/cropper';
This message was deleted
yd021976
@yd021976
right ! github:fengyuanchen was exactly what i'm looking for
in my VM, do i init my custom element in constructor or elsewhere ?