This site uses cookies. By continuing to browse the site, you are agreeing to our use of cookies.
OKWe may request cookies to be set on your device. We use cookies to let us know when you visit our websites, how you interact with us, to enrich your user experience, and to customize your relationship with our website.
Click on the different category headings to find out more. You can also change some of your preferences. Note that blocking some types of cookies may impact your experience on our websites and the services we are able to offer.
These cookies are strictly necessary to provide you with services available through our website and to use some of its features.
Because these cookies are strictly necessary to deliver the website, refusing them will have impact how our site functions. You always can block or delete cookies by changing your browser settings and force blocking all cookies on this website. But this will always prompt you to accept/refuse cookies when revisiting our site.
We fully respect if you want to refuse cookies but to avoid asking you again and again kindly allow us to store a cookie for that. You are free to opt out any time or opt in for other cookies to get a better experience. If you refuse cookies we will remove all set cookies in our domain.
We provide you with a list of stored cookies on your computer in our domain so you can check what we stored. Due to security reasons we are not able to show or modify cookies from other domains. You can check these in your browser security settings.
These cookies collect information that is used either in aggregate form to help us understand how our website is being used or how effective our marketing campaigns are, or to help us customize our website and application for you in order to enhance your experience.
If you do not want that we track your visit to our site you can disable tracking in your browser here:
We also use different external services like Google Webfonts, Google Maps, and external Video providers. Since these providers may collect personal data like your IP address we allow you to block them here. Please be aware that this might heavily reduce the functionality and appearance of our site. Changes will take effect once you reload the page.
Google Webfont Settings:
Google Map Settings:
Google reCaptcha Settings:
Vimeo and Youtube video embeds:
The following cookies are also needed - You can choose if you want to allow them:
Understanding Design Patterns in JavaScript
/0 Comments/in Tips /by Fire BullBy Tilo Mitra Today, we’re going to put on our computer science hats as we learn about some common design patterns. Design patterns offer developers ways to solve technical problems in a reusable and elegant way. Interested in becoming a better JavaScript developer? Then read on. July, 2012 Introduction Solid design patterns are the […]
Event-Based Programming: What Async Has Over Sync
/0 Comments/in Tips /by Fire BullBy Jonathan Creamer One of JavaScript’s strengths is how it handles asynchronous (async for short) code. Rather than blocking the thread, async code gets pushed to an event queue that fires after all other code executes. It can, however, be difficult for beginners to follow async code. I’ll help clear up any confusion you might […]
Contracts: The Practical Side of Semantics
/0 Comments/in Tips /by Fire BullBy Denis Sokolov We all recognize that we should be writing semantic code. Maybe, you’re even using or correctly, and feel pretty good about yourself. But, are you also considering the implied contract that exists when you code? Let’s imagine that a customer requests a text link, “See More,” which should reveal additional text […]
Building Ribbit in Django
/0 Comments/in Tips /by Fire BullBy Gaurav Narula After implementing our Twitter-clone, Ribbit, in plain PHP and Rails, it’s time to introduce the next walk-through: Python! In this tutorial, we’ll rebuild Ribbit using Django. Without further delay, let’s get started! [responsive][/responsive] Step 0 – Bootstrapping As of the time of this writing, Django 1.4 supports Python 2.5 to 2.7.3. Before […]
Ruby on Rails Study Guide: Blocks, Procs, and Lambdas
/0 Comments/in Tips /by Fire BullBy James Anders Ruby is a language with a set of powerful features – the most powerful arguably being Blocks, Procs, and Lambdas. In short, these features allow you to pass code to a method and execute that code at a later time. Despite regularly using these features, many developers don’t fully understand the subtle […]
Using Web Debugging Proxies
/0 Comments/in Tips /by Fire BullBy Rey Bango My previous two articles focused on debugging tools, so it’s only fitting that I continue with this theme. When debugging front-end code, you tend to spend a lot of time reviewing how CSS and JavaScript affect your page’s rendering; equally important is how network requests affect your site. In many cases, we […]
Git Tips From the Pros
/0 Comments/in Tips /by Fire BullBy Chris Kelly You’re already using source control for managing your code, right? You might even be using your SCM as the central piece of your workflow, like we do at New Relic. In this article, we’re not going to review the basics of source control management, regardless of which one you use. Let’s just […]
Laravel 4: A Start at a RESTful API
/0 Comments/in Tips /by Fire BullBy Chris Fidao RESTful API’s are hard! There are a lot of aspects to designing and writing a successful one. For instance, some of the topics that you may find yourself handling include authentication, hypermedia, versioning, rate limits, and content negotiation. Rather than tackling all of these concepts, however, let’s instead focus on the basics […]
Setting Up A Staging Environment
/1 Comment/in Tips /by Fire BullBy Gabriel Manricks It’s common practice to work locally on a project and push revisions to a production server, but the step that people often skip is the staging server. A staging server is a mix between production and development; you get to test your app as if it were in production. Let’s review some […]
How to Write Code That Embraces Change
/0 Comments/in Tips /by Fire BullBy Patkos Csaba Writing code, which is easy to change is the Holy Grail of programming. Welcome to programming nirvana! But things are much more difficult in reality: source code is difficult to understand, dependencies point in countless directions, coupling is annoying, and you soon feel the heat of programming hell. In this tutorial, we […]