Brad Bossard

Results 9 issues of Brad Bossard

In Chapter 9, under the section, "Making the Profiles Module", there is a step Include this file in javascripts.html: Throughout the tutorial, I've noticed there is usually a checkbox after...

In Chapter 9, in the section "Making the Profiles Module", the code reads as follows angular .module('thinkster', [ 'thinkster.config', 'thinkster.routes', 'thinkster.authentication', 'thinkster.layout', 'thinkster.posts', 'thinkster.profiles' ]); but forgets to include 'thinkster.utils',...

In Chapter 6, under the section "Making API views for Post objects", the following code should be indented to make it part of the class PostViewSet, otherwsie copying and pasting...

In Chapter 6, under the section "Making the IsAuthorOfPost permission", the text of the checkpoint says "Make a new permission called IsAuthenticatedAndOwnsObject in posts/permissions.py" but the name of the function...

In the following code snippet under the section "Serializing the Post Model", the line from authentication.serializers import Account should be from authentication.serializers import AccountSerializer Otherwise, the file causes an error...

In Chapter 4, under the section "Authentication Service", you have the following code block var Authentication = { getAuthenticatedAccount: getAuthenticatedAccount, isAuthenticated: isAuthenticated, login: login, register: register, setAuthenticatedAccount: setAuthenticatedAccount, unauthenticate: unauthenticate...

In Chapter 6, under the section "Making the Post model", the following two lines should be in the code block below it. from django.db import models from authentication.models import Account

I haven't used exercism for a while, but upon deciding to revisit after a hiatus, I was pleased to find there is now a snap package available. Following the instructions...

Hey man, great project, really better than any of the alternatives I've seen. One little I ran into is, it seems when generating a PDF from the Condensed or Centered...