Conferences

Fullstack 2014

78 thoughts
last posted Oct. 24, 2014, 11:32 p.m.
0
get stream as: markdown or atom
0

Kings Place was actually quite a decent venue but the conference was really too small for the halls.

0

The conference didn't really have a final session or concluding event.

Some of the hardware hacks get demoed and then that was kind of that. Spheros are cool tech toys.

Not even a nominated pub so far as I can tell.

0

Add security testing into the build process.

0

Long description of the security improvements WebGL makes on top of the OpenGL.

This talk has morphed into a discussion of graphics card and their drivers.

After a long diversion it now comes back to the browser. Graphic drivers are fundamentally insecure and have access to kernel space. WebGL moves web programming out of the sandbox and userspace into a different, less secure area.

Future applications in the browser are going to be less document-based and more visual.

0

ngAudio an audio player implemented in Angular

0

Interesting point in the Browser Security talk about localStorage poisoning. Local storage isn't restricted to a domain.

Increasingly fonts, CSS and even HTML are being stored there.

0

Touches on content migration but I want to hear more.

0

Semantics (defined at a brand-level) are in the Markdown syntax. Seems like a great compromise.

0

Embeds, the foundation blocks of the modern CMS.

0

Good point that in print you completely handcraft the visual experience and it is impossible to translate that to the web.

0

There seems be a lot of talks about AOP today. Every bad idea in OO must be implemented in Javascript.

0

Yes! Using extended Markdown instead of WYSIWYG

0

Finally moving to some fullstack issues, demarcation of roles means fitting work to capacity rather than priorities.

Also tangentially admitting that building websites is not really a hard problem in computing. Broader is better than deeper.

0

Showing a content search application, makes no sense as it has no context but it does remind me that understanding large content production systems is hard.

0

HATEOAS dropped without explanation, is it really that well-known?

It also implies a super rigorous API design unless it means HATEOAS-like or simply Hypermedia.

I think the speaker means Hypermedia.

0

Here we go again though: another day at an allegedly Fullstack conference discussing and defending Javascript.

0

Javascript is clearly not the final language.

0

There seems to be a view that developers who say they hate Javascript don't use Javascript.

Well yes, obviously.

But the speakers are trying to make an implication that the opinion is one born out of ignorance which does not follow at all.

Adopting an application scripting language as your One True Language is obviously going to have some fundamental problems.

If you don't agree with that then why ES6?

0

A single-language shop encourages developers to look at code outside their box.

Single-language means that developers have less barriers to pursuing their interests across the development landscape.

0

Conde Nast have service tier per brand. Avoids the issue of having to prioritise multiple requirements across a platform.

Stack design seems to be standardised, presumably so developers can switch between brands with a minimum amount of relearning.

A platform team's customers are the developers that are consuming their services.

0

Best question to the panel was from a colleague about the state of tooling and instrumentation in Node. Ops and platform have to part of the fullstack discussion.

0

Not much insight in the answers though, the panel regard themselves as Javascripters

0

Sensible point that if you want to share a language you want to shared the compiled output not the source directly.

Jars (rightly or wrongly) are medium of exchange on the JVM.

0

Finally an interesting question about more abstract languages that compile down to Javascript

0

People are constructing a little myth for themselves that Node is somehow a special fit for microservices.

Oh thank god someone has actually pointed out that SOA isn't uniquely a Node thing.

0

Microservices are not a silver bullet no matter what Clifton Cunningham says.

0

Pointless rambling about whether people are moving from frontend or backend to Node.

0

Final first day session is opening as a kind of weird Node circlejerk

0

What makes someone think that it is a good idea to finish their presentation with a promotional video for their company?

0

Esprima parser/AST generator for Javascript

0

Falafel AST transformer library

0

Through a stream wrapper library

0

Recast AST transformer for Javascript

0

Javascript analyser Plato

0

Helium CSS tool for checking for redundant CSS selectors

0

Code rules are very team specific so you need an extension to language convention checkers

0

Interesting point that complexity of a problem has to exist somewhere: either for users of a product or for the developers of the product.

However there isn't a right choice as to which side it is.

0

Frontend performance is essentially voodoo. The obsession with remove characters or bytes and passing it off as "optimisation" instead of building performance profiles and addressing root causes.

0

Milo feels like the product of a team working in a bubble

0

Daily Mail CMS has an overlay that indicates image orientation.

Also a very nice image pallette for all images that occur in a piece of content. Imagery is clearly very important.

0

Connector objects simplify architecture by being universal

0

Yay! The return of the Registry pattern!

0

What do they do with event flooding from numerous model changes?

0

Weird discussion of the disadvantages of synthetic access: they've invented property interpolation to parameterise access but naive code is very inefficient.

0

They haven't shown any reactive programming yet.

0

Event subscribers can take a RegExp, wild.

0

Model change events are notified on the path of the accessor. Which makes sense except the user has to make sure the type prefix is unique.

0

Does string interpretation to generate an accessor. Again not something that could possibly go wrong.

0

They added null guards on model access, .get will return undefined and create the underlying object tree as well if you use nested attributes.

Because that's never gone wrong.

0

Doesn't feel that two-way data binding is punishing in terms of performance

0

Data rewriting seems a bit more logical but less obvious that virtual properties to me.

0

WTF?! They're doing attribute rebinding between the model and the DOM

0

Looks like it does two way data-binding

0

The memory model is bound to the data facet in the component.

The binder is using the number of chevrons on a string to indicate the depth of the binding. Not obvious what the hell that is doing at first glance.

Not sure that counting the number of symbols is better than simply specifying the depth as an integer.

0

Milo bind looks a lot like all template structures

0

Components are faceted structures where facets operate on their owning component.

Facets are namespaced functions.

Not the greatest description of the architecture.

0

DOM as data? I think I see some influence

0

Daily Mail generates 700 pieces of content a day

0

Interesting point about large open source projects and large companies contributing to projects. You need better ways of resolving issues in that situation.

0

Companies have a role in creating inclusivity in projects, or at least not ruling out inclusivity.

0

There's a claim for introvert exceptionalism that I'm not sure I agree with.

0

Employees shouldn't be contributing to Open Source in addition to their job. Companies shouldn't claim their employee's own-time contributions as their open source contribution.

0

Americans are always confused about the nature of companies, corporations and historic companies.

The LLC is the one that changed the balance of risk and responsibility.

0

Unhealthy communities in open source cost the organisations involved.

0

Question about memory restriction in embedded devices. Answer is that capacity increases constantly so it's not worth doing something for today's restricted environment that is going to cause problems tomorrow.

Value correctness over cleverness.

0

Rather fatuously claims JSON is the last data format.

0

Advocating dec64 as the new number format for computing.

0

let has block-scope, which a reminder than var counter-intuitively doesn't.

0

A constructor just takes a spec object instead of arguments. Probably works better with destructing than it does in ES5.

Key destructuring with let (so Clojure) would probably be awesome.

0

Advocating class-free object programming instead.

0

Prototype inheritance saves memory allocation but doesn't make sense in modern computing environments

0

For and while are redundant when you have recursion and tail recursion.

0

Slightly more interestingly, he also rejects falsiness, thinks conditions should be strict booleans.

0

Douglas Crockford has stopped using null and this. Which makes total sense.

Uses undefined instead of null

0

Conferences are introducing anti-harassment policies but still seem embarrassed to talk about them, what they want to achieve with them and why they are necessary.

If it matters then use them and be proud, don't have them just because.

0

Ooo. A Call for Thoughts for organising next year's conference, that's clever.

0

Despite the name Fullstack is really a Javascript conference about Javascript.