Searching for xml
- Mar 03 2017
Three Years with the WordPress REST API
In December WordPress 4.7 shipped with a built-in REST API, giving every WordPress site out-of-the-box REST endpoints for the core WordPress data types such as posts, comments and categories. This release is the culmination of almost four years of work by a globally-distributed contributor team, and I’m proud to say that here at Bocoup we’ve […]
Continue ReadingThree Years with the WordPress REST API- Tagged in:
- open source,
- web applications,
- wordpress
- Dec 09 2015
Smaller, Faster Websites
The following is a transcript of a talk given at various events throughout 2015, including Bocoup’s own TXJS and Boston JS. Transcript My name is Mat Marquis, of Marquis Home Renovation. I don’t care about websites. I’m a carpenter. That, you’ll notice, is why my slide deck looks like the side of the most badass […]
Continue ReadingSmaller, Faster Websites- Tagged in:
- performance,
- responsive web design
- Dec 19 2014
Using SVG Patterns as Fills
Back in the day, before color printers (or printers at all), people still had to make good data visualization. One way to do that was by using patterns instead of solid colors to indicate changes in scale or category. For example, take a look at this set of pie charts, using different patterns for different […]
Continue ReadingUsing SVG Patterns as Fills- Tagged in:
- data visualization,
- design,
- tutorial
- Jun 23 2011
Synchronizing HTML5 Slides with Node.js
I gave a talk in February on Advanced jQuery Templates that had an interesting and unique twist. Instead of changing slides using traditional presentation delivery methods such as a clicker or a laptop keyboard, I used my smartphone which made asynchronous calls to a Node.js server. The server then propagated events to all connected viewers, regardless of […]
Continue ReadingSynchronizing HTML5 Slides with Node.js- Tagged in:
- client side,
- tutorial
- Dec 06 2010
Popcorn.js 0.2 Facelift
Popcorn.js, the HTML5 <video> framework, is getting a facelift. Rick, Al and I spent last weekend working on Popcorn with Anna and Scott from the Centre for Development of Open Technology (CDOT) at Seneca College on the forthcoming release of Popcorn JS. The History Bocoup’s own Nick Cammaratta attended a week long code sprint for […]
Continue ReadingPopcorn.js 0.2 Facelift - Sep 01 2010
Social Primitives for A Brave New Web
The Facebook Thing Facebook has had a lot of press recently. Growing by a million users a day, playing the patent game like every other large corporation, seemingly constant legal-disputes over ownership, and to top it off.. the Facebook movie called “The Social Network” will be hitting the big-screen this October. A lot of people […]
Continue ReadingSocial Primitives for A Brave New Web- Tagged in:
- web applications
- Jul 07 2010
Popcorn.js Walkthrough
Popcorn.js, which I wrote about recently, is an infant javascript library that allows film makers to better showcase their videos on the web using html5’s video element. Using popcorn, directors can incorporating social media and integrate several features such as subtitles and credits that may be beneficial in the context of the web. Although typically, […]
Continue ReadingPopcorn.js Walkthrough - Jun 07 2010
JavaScript EventSource: Now available in Firefox!
…Not natively… but this will work in the meantime: Git it here firefox-event-source.js ;(function (w) { if ( !w[‘EventSource’] ) { // parseUri 1.2.2 // (c) Steven Levithan <stevenlevithan.com> // MIT License var parseUri = function(str) { var o = { key: [‘source’,’protocol’,’authority’,’userInfo’,’user’,’password’,’host’,’port’,’relative’,’path’,’directory’,’file’,’query’,’anchor’], q: { name: ‘queryKey’, parser: /(?:^|&)([^&=]*)=?([^&]*)/g }, parser: { strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/ } […]
Continue ReadingJavaScript EventSource: Now available in Firefox!- Tagged in:
- performance,
- tools and workflow
- May 17 2010
Javascript Web Workers: From Basics to jQuery.Hive
This is long overdue. Also, it should serve as a context for my slides from jQuery Conference, San Francisco 2010 (use the up and down arrow keys to navigate). Whether or not you’ve read the WHATWG Web Worker spec and are looking for more information about Javascript multi threading OR you already have a rudimentary […]
Continue ReadingJavascript Web Workers: From Basics to jQuery.Hive - Apr 26 2010
CSS SVG-Filters Elem.style & xlink:href=”url(#id)” #fail
I have been playing around with SVG Filters a lot over the last few weeks and I have to say that the SVG Filters are a) really freekin’ cool and b) powerful in ways yet undiscovered. When these things land cross-browser, it will really polish off the modern web-app paradigm, adding a level of depth […]
Continue ReadingCSS SVG-Filters Elem.style & xlink:href=”url(#id)” #fail- Tagged in:
- design,
- performance