Intridea Blog: Technology, Design, Business

Back to Blog

Get in Touch

You're currently viewing posts tagged with: "tutorial"

Google Glass Hello World

By Marc Garrett | May 15, 2013 tutorial, glass
Medium

Let's get started. A "Hello World" Google Glass example.

Read more…

Open Source Backpack

By Chris Tate | September 4, 2012 tutorial, design, web, backpack, illustrator
Medium
As someone who deals with the digital presentation layer from day-to-day, being limited to the screen creatively can be…well…limiting. Read more…

Improve Interface Development with Box Sizing

By Javier Rios | August 22, 2012 tutorial, css, design, ui, ux, UI, protip, html

New to css layouts or a Ninja warrior we both share one common headache, The Box Model. The box-model is the way we calculate the width and heigh of an object. The W3C modal calculates the width and height by adding the padding and border to the width you specify ( width + padding + border / height + padding + border ). This is a pain when we want to specify a width to be 400px wide, we need to then subtract the difference of the padding and border to make a 400px wide box. If we had a border of 10px and a padding of 20px, the width would be 340px wide (400 - 20 - 40 = 340px).

Read more…

Signed Idempotent Action Links

By Michael Bleigh | June 7, 2012 tutorial, links, protip, netflix, qup

If you're running any kind of service that uses e-mail as a communication method (which is just about everyone) and you want your users to be able to take some kind of action from the email (as just about everyone does) then you should be using Signed Idempotent Action Links. Now I know what you're thinking, "Signed Idempotent Action Links? But EVERYONE knows what those are!". I know, but here's a refresher anyway (ok so I made up the term, but it's descriptive!).

Read more…

Building Streaming REST APIs with Ruby

By Jerry Cheung | May 24, 2012 rails, ruby, tutorial
Medium

Twitter popularized the term "firehose API", to mean a realtime stream of data sent through a persistent connection. But even if you're not a realtime service, streaming APIs are great for pushing data from the backend to clients. They reduce resource usage because the server can decide when it's a good time to send a incremental chunk of data. They can also improve the responsiveness of your user experience. The same HTTP API can be reused to power multiple different apps. For example, you could write your web frontend with a Javascript frameworks like Backbone.js, but reuse the same API to power a native iOS application. Follow the jump to read about how streaming APIs work, and how you can write one with Rack::Stream.

Read more…

How To Make Your Own Symbol Font

By Ben Markowitz | April 24, 2012 tutorial, design, web, retina, fonts, bitmap, svg

With the advent of high resolution “retina” displays, keeping bitmap images sharp and crisp on the web has meant using larger and thus more bandwidth-hungry images. At the same time, more and more people are browsing on mobile devices where bandwidth is at a premium.

One solution to this problem is scalable vector graphics (SVG) since they scale infinitely while keeping the file size low. However, now that web fonts are widely supported, symbol fonts like Dingbats or WebDings provide another option for tack sharp symbols used in icons or buttons. Fonts are also very flexible. For example, using CSS you can easily change the size, color, add drop shadows or other text effects.

But what happens when symbol typefaces don’t have the symbols you need? Well, make your own of course! Today I am going to show you how make your own symbol font using some freely available software and tools, which you can then easily embed in a web page and use in your design comps.

Read more…

Updates from Lone Star RubyConf 2008

By Pradeep Elankumaran | September 5, 2008 conference, refactoring, matz, rubyconf, lonestar rubyconf, austin, tutorial