<?xml version="1.0"?>
<News hasArchived="true" page="7653" pageCount="10793" pageSize="10" timestamp="Sun, 06 Sep 2026 15:34:16 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7653&amp;range=30">
<NewsItem contentIssues="true" id="43220" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43220">
<Title>Creating an RSS Feed Reader With the MEAN Stack</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>This article is a continuation of <a href="http://code.tutsplus.com/tutorials/introduction-to-the-mean-stack--cms-19918" rel="nofollow external" class="bo">Introduction to the MEAN Stack</a>. The previous post covered the installation of the MEAN stack and also presented what we ended up with in terms of its directory structure, after installation. Now it's time for some actual coding!</p>
    <h2>What We'll Be Building</h2>
    <p>We will be building an RSS feed reader using the MEAN stack. The application will allow its user to manage their list of feeds by adding a new feed, deleting an existing one, modifying an existing one and, of course, seeing a list of all the feeds in which the user is interested in.</p>
    <p>The user has to authenticate in order to have access to the application, so that the feeds of one user are not visible to others and most importantly, to users that are not logged in. As we saw in the <a href="http://code.tutsplus.com/tutorials/introduction-to-the-mean-stack--cms-19918" rel="nofollow external" class="bo">previous</a> article, the stack comes with a full authentication mechanism already implemented, so we can use it without further modifications.</p>
    <p>The feed's URLs are stored in a Mongo database on the server so that they are available even after logging off, or after closing the browser.</p>
    <p>The last feeds are displayed to the user on the main page and they will show the article's title, an excerpt and allow the user to click on the title to read the entire post.</p>
    <p>The user will also have the possibility to filter the feeds on various criteria.</p>
    <p>In this first part, we will discuss the implementation of the server part of our application (the backend). We will implement a REST API to respond to the user's requests for viewing, creating, deleting and modifying feeds.</p>
    <p>Luckily for us, the MEAN stack gives us such an API for handling the articles that can be created. We will modify this API to respond to our need of handling the feed URLs. After all, this is why we are using boilerplate code, to modify and adapt it to the needs of our application. So let's do that!</p>
    <h2>The Routes</h2>
    <p>Let's spend a minute and think about what routes our app should to respond to. The picture below shows what we expect to have: </p>
    <img alt="" src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/45/posts/20563/image/routes.jpeg" style="max-width: 100%; height: auto;">
    <p>Now, let's open the file <code>app/routes/articles.js</code>. If we look at its contents, we see that this is what we want to have, but applied to the articles. So, we have to modify it a little to fit our needs. First, change its name from <code>articles.js</code> to <code>feeds.js</code>. Then modify it as shown below:</p>
    <pre>    // app/routes/feeds.js&#x000A;        'use strict';&#x000A;    &#x000A;        var feeds = require('../controllers/feeds');&#x000A;        var authorization = require('./middlewares/authorization');&#x000A;    &#x000A;        // Feeds authorization helpers&#x000A;        var hasAuthorization = function(req, res, next) {&#x000A;            if (req.feed.user.id !== req.user.id) {&#x000A;                return res.send(401, 'User is not authorized');&#x000A;            }&#x000A;            next();&#x000A;        };&#x000A;    &#x000A;        module.exports = function(app) {&#x000A;            app.get('/feeds', feeds.all);&#x000A;            app.post('/feeds', authorization.requiresLogin, feeds.create);&#x000A;            app.get('/feeds/:feedId', feeds.show);&#x000A;            app.put('/feeds/:feedId', authorization.requiresLogin, hasAuthorization, feeds.update);&#x000A;            app.del('/feeds/:feedId', authorization.requiresLogin, hasAuthorization, feeds.destroy);&#x000A;    &#x000A;            // Finish with setting up the feedId param&#x000A;            app.param('feedId', feeds.feed);&#x000A;        };&#x000A;    </pre>
    <p>For those familiar with the Express framework, this shouldn't be anything new, but just in case, let's go over it real quickly. We start by requiring the <code>feeds</code> controller (which we'll see in a moment) and the authorization middleware (which the MEAN stack gives us).</p>
    <p>Then we have the <code>hasAuthorization()</code> function, which compares the <code>id</code> of the user who wants to manipulate the feed with the <code>id</code> of the logged in user and returns an error if they are not the same. The <code>next()</code> function is a callback which allows the next layer in the middleware stack to be processed.</p>
    <p>In the last part, our code exports the routes as described in the table above, implementing the security requirements.</p>
    <h2>The Models</h2>
    <p>Creating the application's model using <code>mongoose</code> is a breeze. Rename the <code>app\models\article.js</code> to <code>app\models\feed.js</code> and perform the following modifications:</p>
    <pre>    'use strict';&#x000A;    &#x000A;        /**&#x000A;         * Module dependencies.&#x000A;         */&#x000A;        var mongoose = require('mongoose'),&#x000A;            Schema = mongoose.Schema;&#x000A;    &#x000A;        /**&#x000A;         * Feeds Schema.&#x000A;         */&#x000A;        var FeedsSchema = new Schema ({&#x000A;            feedUrl: {&#x000A;                type: String,&#x000A;                default: '',&#x000A;                trim: true&#x000A;            },&#x000A;    &#x000A;            user: {&#x000A;                type: Schema.ObjectId,&#x000A;                ref: 'User'&#x000A;            }&#x000A;        });&#x000A;    &#x000A;        /**&#x000A;         * Statics&#x000A;         */&#x000A;        FeedsSchema.statics.load = function(id, cb) {&#x000A;            this.findOne({&#x000A;                _id: id&#x000A;            }).populate('user', 'name username').exec(cb);&#x000A;        };&#x000A;    &#x000A;        mongoose.model('Feeds', FeedsSchema);&#x000A;    </pre>
    <p>We define our database structure here as follows: we will have a feeds table containing a <code>feedUrl</code> string type field and a reference to a <code>user</code> which will store the <code>id</code> of the current logged in user. Notice that we don't handle the creation of an <code>id</code> for our documents here, since this is taken care of for us by the MongoDB system.</p>
    <p>Finally, we define a <code>load()</code> function that filters the documents in the database based on the <code>id</code> of the current logged in user.</p>
    <h2>The Controller</h2>
    <p>The controller is responsible for implementing the functions called by the router, when a specific route is requested. All the necessary functions for the CRUD operations we perform are implemented in the controller. Let's take a look at them one by one and see the implementation details.</p>
    <p>You should be noticing a pattern by this point. First, don't forget to rename the <code>app/controllers/articles.js</code> file to <code>app/controllers/feeds.js</code>.</p>
    <h3>Creating a Feed</h3>
    <p>In order to create a feed we implement the <code>create()</code> function:</p>
    <pre>    /**&#x000A;         * Create a feed&#x000A;         */&#x000A;        exports.create = function(req, res) {&#x000A;            var feed = new Feeds(req.body);&#x000A;            feed.user = req.user;&#x000A;    &#x000A;            feed.save(function(err) {&#x000A;                if (err) {&#x000A;                    return res.send('users/signup', {&#x000A;                        errors: err.errors,&#x000A;                        feed: feed&#x000A;                    });&#x000A;                } else {&#x000A;                    res.jsonp(feed);&#x000A;                }&#x000A;            });&#x000A;        };&#x000A;    </pre>
    <p>First, we create a <code>feed</code> variable based on the <code>Feeds</code> model. Then we add to this variable the reference to the current logged in user to be stored. Finally, we call the model's <code>save</code> method to store the document in the database. Upon error, we return to the signup form since most likely the user is not logged in. If the document is created successfully, we return the new document to the caller.</p>
    <h3>Modifying a Feed</h3>
    <pre>    /**&#x000A;         * Update a feed&#x000A;         */&#x000A;        exports.update = function(req, res) {&#x000A;            var feed = req.feed;&#x000A;    &#x000A;            feed = _.extend(feed, req.body);&#x000A;    &#x000A;            feed.save(function(err) {&#x000A;                if (err) {&#x000A;                    return res.send('users/signup', {&#x000A;                        errors: err.errors,&#x000A;                        feed: feed&#x000A;                    });&#x000A;                } else {&#x000A;                    res.jsonp(feed);&#x000A;                }&#x000A;            });&#x000A;        };&#x000A;    </pre>
    <p>We call Lodash's <code>extend</code> method in order to modify the feed's properties with the ones that came from the user. Then the <code>save</code> method of the model stores the modified data in to the database.</p>
    <h3>Deleting a Feed</h3>
    <pre>    /**&#x000A;         * Delete a feed&#x000A;         */&#x000A;        exports.destroy = function(req, res) {&#x000A;            var feed = req.feed;&#x000A;    &#x000A;            feed.remove(function(err) {&#x000A;                if (err) {&#x000A;                    return res.send('users/signup', {&#x000A;                        errors: err.errors,&#x000A;                        feed: feed&#x000A;                    });&#x000A;                } else {&#x000A;                    res.jsonp(feed);&#x000A;                }&#x000A;            });&#x000A;        };&#x000A;    </pre>
    <p>Quite simple, isn't it? The model has a <code>remove</code> method which solved our problem quite easily.</p>
    <h3>Showing Feeds</h3>
    <p>Showing all feeds will be the task of the client part of our application. The server will only return the necessary data:</p>
    <pre>    /**&#x000A;         * List of Feeds&#x000A;         */&#x000A;        exports.all = function(req, res) {&#x000A;            Feeds.find().sort('-created').populate('user', 'feedUrl').exec(function(err, feeds) {&#x000A;                if (err) {&#x000A;                    res.render('error', {&#x000A;                        status: 500&#x000A;                    });&#x000A;                } else {&#x000A;                    res.jsonp(feeds);&#x000A;                }&#x000A;            });&#x000A;        };&#x000A;    </pre>
    <p>The code performs a find in the database returning the <code>user</code> and the <code>feedUrl</code>. If <code>find</code> fails, a server error is returned, otherwise all the found feeds will be returned.</p>
    <p>A single feed is displayed by using the following:</p>
    <pre>    /**&#x000A;         * Show a feed&#x000A;         */&#x000A;        exports.show = function(req, res) {&#x000A;            res.jsonp(req.feed);&#x000A;        };&#x000A;    </pre>
    <p>... which then uses a helper function:</p>
    <pre>    exports.feed = function (req, res, next, id) {&#x000A;            Feeds.load(id, function (err, feed) {&#x000A;                if (err) return next(err);&#x000A;    &#x000A;                if (!feed) return next(new Error('Failed to load feed ' + id));&#x000A;    &#x000A;                req.feed = feed;&#x000A;    &#x000A;                next();&#x000A;            });&#x000A;        };&#x000A;    </pre>
    <p>... that loads a specific feed based on its <code>id</code> (which will come packaged in the URL).</p>
    <p>The complete code should like this:</p>
    <pre>    // app/controllers/feeds.js&#x000A;        'use strict';&#x000A;    &#x000A;        var mongoose = require('mongoose'),&#x000A;            Feeds = mongoose.model('Feeds'),&#x000A;            _ = require('lodash');&#x000A;    &#x000A;        exports.feed = function (req, res, next, id) {&#x000A;            Feeds.load(id, function (err, feed) {&#x000A;                if (err) return next(err);&#x000A;    &#x000A;                if (!feed) return next(new Error('Failed to load feed ' + id));&#x000A;    &#x000A;                req.feed = feed;&#x000A;    &#x000A;                next();&#x000A;            });&#x000A;        };&#x000A;    &#x000A;        /**&#x000A;         * Show a feed&#x000A;         */&#x000A;        exports.show = function(req, res) {&#x000A;            res.jsonp(req.feed);&#x000A;        };&#x000A;    &#x000A;        /**&#x000A;         * List of Feeds&#x000A;         */&#x000A;        exports.all = function(req, res) {&#x000A;            Feeds.find().sort('-created').populate('user', 'feedUrl').exec(function(err, feeds) {&#x000A;                if (err) {&#x000A;                    res.render('error', {&#x000A;                        status: 500&#x000A;                    });&#x000A;                } else {&#x000A;                    res.jsonp(feeds);&#x000A;                }&#x000A;            });&#x000A;        };&#x000A;    &#x000A;        /**&#x000A;         * Create a feed&#x000A;         */&#x000A;        exports.create = function(req, res) {&#x000A;            var feed = new Feeds(req.body);&#x000A;            feed.user = req.user;&#x000A;    &#x000A;            feed.save(function(err) {&#x000A;                if (err) {&#x000A;                    return res.send('users/signup', {&#x000A;                        errors: err.errors,&#x000A;                        feed: feed&#x000A;                    });&#x000A;                } else {&#x000A;                    res.jsonp(feed);&#x000A;                }&#x000A;            });&#x000A;        };&#x000A;    &#x000A;        /**&#x000A;         * Update a feed&#x000A;         */&#x000A;        exports.update = function(req, res) {&#x000A;            var feed = req.feed;&#x000A;    &#x000A;            feed = _.extend(feed, req.body);&#x000A;    &#x000A;            feed.save(function(err) {&#x000A;                if (err) {&#x000A;                    return res.send('users/signup', {&#x000A;                        errors: err.errors,&#x000A;                        feed: feed&#x000A;                    });&#x000A;                } else {&#x000A;                    res.jsonp(feed);&#x000A;                }&#x000A;            });&#x000A;        };&#x000A;    &#x000A;        /**&#x000A;         * Delete a feed&#x000A;         */&#x000A;        exports.destroy = function(req, res) {&#x000A;            var feed = req.feed;&#x000A;    &#x000A;            feed.remove(function(err) {&#x000A;                if (err) {&#x000A;                    return res.send('users/signup', {&#x000A;                        errors: err.errors,&#x000A;                        feed: feed&#x000A;                    });&#x000A;                } else {&#x000A;                    res.jsonp(feed);&#x000A;                }&#x000A;            });&#x000A;        };&#x000A;    </pre>
    <h2>Is the REST API Complete?</h2>
    <p>Well, almost. At this point we do not have the client part of the application implemented in order to prove that the code is working. I didn't present the unit tests for the code either, since it's not so complicated and I wanted to leave it up to you as an exercise.</p>
    <p>We can test the code using the Postman - REST Client application available on Google Chrome.</p>
    <h3>Creating a Feed</h3>
    <p>Install <a href="https://github.com/a85/POSTMan-Chrome-Extension" rel="nofollow external" class="bo">Postman</a> if you don't have it already and configure it as follows:</p>
    <img alt="" src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/45/posts/20563/image/create_feed.jpg" style="max-width: 100%; height: auto;">
    <h3>Viewing All Feeds</h3>
    <img alt="" src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/45/posts/20563/image/get_all_feeds.jpg" style="max-width: 100%; height: auto;">
    <h3>Viewing a Single Feed</h3>
    <img alt="" src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/45/posts/20563/image/get_single_feed.jpg" style="max-width: 100%; height: auto;">
    <p>The remaining parts of the code are easy to verify, so please have some fun with Postman and your new application.</p>
    <h2>Conclusion</h2>
    <p>Using a framework or boilerplate code can, in some situations, be useful and make you very productive. As you've seen in this article, implementing the REST API needed for our application was reduced to performing minor modifications to the boilerplate code. Of course for more complex applications, it may be necessary to do more than that, but still, having a starting point can be useful.</p>
    <p>In the next tutorial, we will take a look at the client part of the application for displaying the data we will request from the server, showing forms for entering new feed URLs, handling events and so on.</p>
    </div>
]]>
</Body>
<Summary>This article is a continuation of Introduction to the MEAN Stack. The previous post covered the installation of the MEAN stack and also presented what we ended up with in terms of its directory...</Summary>
<Website>http://code.tutsplus.com/tutorials/creating-an-rss-feed-reader-with-the-mean-stack--cms-20563</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43220/guest@my.umbc.edu/6d2b8f3749d97efcbe2ec139c514b55e/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>wed</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 04 Apr 2014 10:00:04 -0400</PostedAt>
<EditAt>Fri, 04 Apr 2014 10:00:04 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="43226" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43226">
<Title>How the Internet Is Taking Away America&#8217;s Religion</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Using the Internet can destroy your faith. That’s the conclusion of a study showing that the dramatic drop in religious affiliation in the U.S. since 1990 is closely mirrored by the increase in Internet use.</p>
    <p><img src="https://www.technologyreview.com/sites/default/files/images/Religion.png" alt="" width="460" height="388" style="max-width: 100%; height: auto;"></p>
    </div>
]]>
</Body>
<Summary>Using the Internet can destroy your faith. That’s the conclusion of a study showing that the dramatic drop in religious affiliation in the U.S. since 1990 is closely mirrored by the increase in...</Summary>
<Website>http://www.technologyreview.com/view/526111/how-the-internet-is-taking-away-americas-religion/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43226/guest@my.umbc.edu/5e4334a88bc8eeef652e84c5d7c64eb5/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 04 Apr 2014 10:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="43217" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43217">
<Title>INDS at URCAD</Title>
<Tagline>Witness examples of Interdisciplinarity in action!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <span>UMBC's Undergraduate Research and Creative Achievement Day (URCAD) Wednesday,
    April 23, 2014</span><div><span><br></span></div>
    <div><span><br></span></div>
    <span><div>   Poster Presentations, University Ballroom</div>
    <div><br></div>12:00 - 2:00 Vivian C. Chioma</span><br><div>
    <span>"</span><strong>Fear Be Gone: Endocannabinoids Modulate Subsecond Dopamine Release during the Extinction of the Fear Memories"</strong>
    </div>
    <div><br></div>
    <div>
    <div><span><br></span></div>
    <div>
    <span>12:00 - 2:00 Mary B. Hester</span><br><div>
    <span>"</span><span><strong>Arts Advocacy: How to Inspire Policy Change by Measuring and Communicating the Benefits of Arts Education"</strong><br></span>
    </div>
    </div>
    <div><strong><span><br></span></strong></div>
    <div><strong><span><br></span></strong></div>
    <div><span>12:00 - 2:00 Michelle Seu</span></div>
    <div><strong><span>"Investigation of Dimerization Mechanisms in the Simian Immunodeficiency Virus 5' - Untranslated Region"</span></strong></div>
    <div><strong><span><br></span></strong></div>
    <div><br></div>
    <div>
    <div><span>2:00 - 4:00 Michael Zurkowski</span></div>
    <div>
    <strong>"</strong><strong>Student Learning Outcome: Communicating Engineering Design"</strong>
    </div>
    </div>
    <div><span><strong><br></strong></span></div>
    <div><br></div>
    <div>Oral Presentations</div>
    <div><span><br></span></div>
    <div>
    <span>1:45 </span><span>Samantha Hawkins</span><br><div>
    <span>"</span><strong>Baltimore Voices: Creating a Comprehensive Sense of Place and Identity"</strong>
    </div>
    </div>
    <div><span>Location: UC 312</span></div>
    </div>
    <div><span><br></span></div>
    <div>
    <div><strong><br></strong></div>
    <div>
    <span>2:45</span><span> Joyce Ohiri</span>
    </div>
    <div><strong>"Characterizing the AC1-Exemestane Resistant Cell Line in Estrogen-Dependent Breast Cancer"</strong></div>
    <div><span>Location: UC 310</span></div>
    <div><br></div>
    </div>
    </div>
]]>
</Body>
<Summary>UMBC's Undergraduate Research and Creative Achievement Day (URCAD) Wednesday, April 23, 2014          Poster Presentations, University Ballroom    12:00 - 2:00 Vivian C. Chioma  "Fear Be Gone:...</Summary>
<Website>http://www.umbc.edu/undergrad_ed/research/urcad/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43217/guest@my.umbc.edu/de4e8fb142ffd4990d746fa247649654/api/pixel</TrackingUrl>
<Group token="inds">Individualized Study </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/inds</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xsmall.png?1775678457</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/original.png?1775678457</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xxlarge.png?1775678457</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xlarge.png?1775678457</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/large.png?1775678457</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/medium.png?1775678457</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/small.png?1775678457</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xsmall.png?1775678457</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xxsmall.png?1775678457</AvatarUrl>
<Sponsor>Interdisciplinary Studies</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 04 Apr 2014 09:46:14 -0400</PostedAt>
<EditAt>Fri, 04 Apr 2014 14:37:19 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="43218" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43218">
<Title>Bits Blog: Amazon Channels a Cheaper Television Experience</Title>
<Body>
<![CDATA[
    <div class="html-content">To make its set-top box viable, Amazon will have to spend a lot of money. That’s something it’s never been afraid of doing.<br>
    </div>
]]>
</Body>
<Summary>To make its set-top box viable, Amazon will have to spend a lot of money. That’s something it’s never been afraid of doing.</Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38fd1846/sc/4/l/0Lbits0Bblogs0Bnytimes0N0C20A140C0A40C0A40Camazon0Echannels0Ea0Echeaper0Etelevision0Eexperience0C0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43218/guest@my.umbc.edu/1d62ef1f7080ffb06fdcfadd526d7751/api/pixel</TrackingUrl>
<Tag>amazon-com-inc</Tag>
<Tag>amazon-com-inc-amzn-nasdaq</Tag>
<Tag>comcast-corporation</Tag>
<Tag>comcast-corporation-cmcsa-nasdaq</Tag>
<Tag>devices</Tag>
<Tag>new</Tag>
<Tag>roku</Tag>
<Tag>technology</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 04 Apr 2014 09:30:36 -0400</PostedAt>
<EditAt>Fri, 04 Apr 2014 09:30:36 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="43212" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43212">
<Title>10 Open Source Blogging Platforms for Developers</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Mainstream blogging platforms like WordPress, Blogger, Tumblr, <a href="http://sixrevisions.com/tools/top-free-online-blogging/" rel="nofollow external" class="bo">etc.</a> aren’t designed for hackers. They’re encumbered by features developers  just don’t need or want.</p>
    <p>And, out of the box, the popular blogging platforms certainly lack a lot things coders <em>actually</em> would want, such as code syntax highlighting, blog theming capabilities using a standardized templating engine, markup language support besides HTML, and integration with source code repositories, among other things.</p>
    <p></p>
    <p>If you’re looking for a blogging solution that’s programmer-friendly, you’ve come to the right place. The free and <strong>open source blogging platforms</strong> I’ll talk about are designed with the needs of developers in mind, and not their moms’ (unless she likes to code too).</p>
    <h3><a href="http://hexo.io/" rel="nofollow external" class="bo">Hexo</a></h3>
    <p><a href="http://hexo.io/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0415-01_open_source_blog_hexo.jpg" width="550" height="323" alt="Hexo" style="max-width: 100%; height: auto;"></a></p>
    <p>Hexo is a blogging platform powered by Node.js (it says so right there in the site’s tagline).</p>
    <p>Its hacker-friendly features include native support for <a href="https://help.github.com/articles/github-flavored-markdown" rel="nofollow external" class="bo">GitHub Flavored Markdown</a> (GMF) as well as templating and extensibility capabilities using EJS, Swig and Stylus.</p>
    <p>Installing Hexo will take you but a few seconds, assuming you already have <a href="https://www.npmjs.org/" rel="nofollow external" class="bo">npm</a> set up and ready to go. Boom:</p>
    <pre>$ npm install hexo -g</pre>
    <p><strong>Fun tangential fact:</strong> "npm" doesn’t stand for <em>Node packaged modules</em> or <em>Node Package Manager.</em> It’s a recursive acronym like PHP. Or more accurately: "It’s a recursive <em>bacronymic abbreviation</em> because it stands for ‘npm is not an acronym’," as the author explains. [<a href="https://www.npmjs.org/doc/faq.html#If-npm-is-an-acronym-why-is-it-never-capitalized" rel="nofollow external" class="bo">Source</a>]</p>
    <ul>
    <li>
    <strong>License:</strong> <a href="https://github.com/tommy351/hexo/blob/master/LICENSE" rel="nofollow external" class="bo">MIT</a>
    </li>
    <li><a href="http://hexo.io/docs/" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/tommy351/hexo" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <h3><a href="http://jekyllrb.com/" rel="nofollow external" class="bo">Jekyll</a></h3>
    <p><a href="http://jekyllrb.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0415-02_open_source_blog_jekyll.png" width="550" height="323" alt="Jekyll" style="max-width: 100%; height: auto;"></a></p>
    <p>Jekyll is a static site generator that compiles your markup files into Web-ready HTML documents — that’s what all static site generators do, more or less — the  value proposition being <a href="http://sixrevisions.com/web-development/why-website-speed-is-important/" title="Why Website Speed is Important" rel="nofollow external" class="bo">better Web performance</a> and the option to ditch your databases and server-side scripts.</p>
    <p>Jekyll has a steady-growing ecosystem, as evidenced by the other open source projects being developed for it:</p>
    <ul>
    <li>
    <a href="http://octopress.org/docs/" rel="nofollow external" class="bo">Octopress</a> – a blogging framework designed for hackers</li>
    <li>
    <a href="http://jekyllbootstrap.com/" rel="nofollow external" class="bo">JekyllBootstrap</a> – makes it easier for you to use your GitHub Pages to host your blog for free</li>
    <li>
    <a href="https://github.com/thomasf/exitwp" rel="nofollow external" class="bo">Exitwp</a> – helps you move from WordPress to Jekyll</li>
    </ul>
    <p>Jekyll can be installed as a Ruby Gem:</p>
    <pre>gem install jekyll</pre>
    <ul>
    <li>
    <strong>License:</strong> <a href="https://github.com/jekyll/jekyll/blob/master/LICENSE" rel="nofollow external" class="bo">MIT</a>
    </li>
    <li><a href="http://jekyllrb.com/docs/home/" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/jekyll/jekyll" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <h3><a href="http://anchorcms.com/" rel="nofollow external" class="bo">Anchor CMS</a></h3>
    <p><a href="http://anchorcms.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0415-03_open_source_blog_anchor_cms.png" width="550" height="323" alt="Anchor CMS" style="max-width: 100%; height: auto;"></a></p>
    <p>Anchor CMS is a featherweight; the project’s source code .zip archive is just a little over 200 KB.</p>
    <p>Off the bat, Anchor supports <a href="http://daringfireball.net/projects/markdown/syntax" rel="nofollow external" class="bo">Markdown syntax</a>, which a lot of coders feel is easier and more natural for blog-writing and formatting. It also supports <a href="http://css-tricks.com/art-directed-articles-still-good-idea/" rel="nofollow external" class="bo">art-directed blogging</a>, i.e., you can easily make each post look different.</p>
    <ul>
    <li>
    <strong>License:</strong> Unknown</li>
    <li><a href="http://anchorcms.com/docs" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/anchorcms/anchor-cms" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <h3><a href="https://github.com/creationix/wheat" rel="nofollow external" class="bo">Wheat</a></h3>
    <p>Wheat is truly cool: It pulls articles from your GitHub repo and then publishes it to your website. Imagine the possibilities! Like <em>open source blogging</em> where other hackers can issue pull requests for correcting and improving your blog posts.</p>
    <p>Wheat is developed with Node.js and can be installed as a Node packaged module:</p>
    <pre>npm install wheat</pre>
    <ul>
    <li>
    <strong>License:</strong> <a href="https://github.com/creationix/wheat/blob/master/LICENSE" rel="nofollow external" class="bo">MIT</a>
    </li>
    <li><a href="https://github.com/creationix/wheat/blob/master/README.markdown" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/creationix/wheat/" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <h3><a href="http://getnikola.com/" rel="nofollow external" class="bo">Nikola</a></h3>
    <p><a href="http://getnikola.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0415-04_open_source_blog_nikola.png" width="550" height="323" alt="Nikola" style="max-width: 100%; height: auto;"></a></p>
    <p>Nikola, a static site generator, is strongly blog-oriented but it can also be used for any other type of website. Code wranglers will love the fact that it has a small codebase, which the creator of Nikola deems as an advantage because it means "programmers can understand all of Nikola core in a day."</p>
    <p>Nikola supports a whole slew of markup languages: reStructuredText, Markdown, etc. And, of course, HTML will do just fine too if that’s how you roll.</p>
    <ul>
    <li>
    <strong>License:</strong> <a href="https://github.com/getnikola/nikola/blob/master/LICENSE.txt" rel="nofollow external" class="bo">MIT</a>
    </li>
    <li><a href="http://getnikola.com/documentation.html" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/getnikola/nikola" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <h3><a href="https://github.com/cloudhead/toto" rel="nofollow external" class="bo">toto</a></h3>
    <p>Stolen straight off its repo description: toto is <em>"the 10 second blog-engine for hackers."</em></p>
    <p>toto is a minimalist blogging engine that runs on <a href="http://sixrevisions.com/web-development/easy-git-tutorial/" rel="nofollow external" class="bo">Git</a>, which means you can version-control your posts just like you would when you’re writing code.</p>
    <ul>
    <li>
    <strong>License:</strong> <a href="https://github.com/cloudhead/toto/blob/master/LICENSE" rel="nofollow external" class="bo">MIT</a>
    </li>
    <li><a href="https://github.com/cloudhead/toto#introduction" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/cloudhead/toto" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <h3><a href="http://jsantell.github.io/poet/" rel="nofollow external" class="bo">Poet</a></h3>
    <p><a href="http://jsantell.github.io/poet/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0415-05_open_source_blog_poet.jpg" width="550" height="323" alt="Poet" style="max-width: 100%; height: auto;"></a></p>
    <p>Poet is another Node.js-powered blogging platform. What makes it unique is the project’s snooty character mascot. Just kidding.</p>
    <p>What’s notable about Poet is it gives you the ability to write your blog posts using a markup language you’re comfortable in, whether it’s Markdown, Jade or <a href="http://jsantell.github.io/poet/#Templates" rel="nofollow external" class="bo">whatever you want</a>. Also, customizing routes for your blog posts and other pages is simple.</p>
    <ul>
    <li>
    <strong>License:</strong> <a href="https://github.com/jsantell/poet/blob/master/LICENSE" rel="nofollow external" class="bo">MIT</a>
    </li>
    <li><a href="http://jsantell.github.io/poet/" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/jsantell/poet" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <h3><a href="https://github.com/Circa75/dropplets" rel="nofollow external" class="bo">Dropplets</a></h3>
    <p>Dropplets is a minimalist Markdown blogging platform. Its purposefully limited feature set helps makes sure you spend more time writing and less time tinkering.</p>
    <ul>
    <li>
    <strong>License:</strong> <a href="https://github.com/Circa75/dropplets#license" rel="nofollow external" class="bo">MIT</a>
    </li>
    <li><a href="https://github.com/Circa75/dropplets#installation" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/Circa75/dropplets" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <h3><a href="http://blog.getpelican.com/" rel="nofollow external" class="bo">Pelican</a></h3>
    <p><a href="http://blog.getpelican.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0415-06_open_source_blog_pelican.png" width="550" height="323" alt="Pelican" style="max-width: 100%; height: auto;"></a></p>
    <p>Pelican is another static site generator, but it’s written in Python. It supports reStructuredText, Markdown, or AsciiDoc markup. It has code syntax highlighting right out of the box, and an importing feature for data coming from other publishing platforms such WordPress. Theming can be done using <a href="http://jinja.pocoo.org/" rel="nofollow external" class="bo">Jinja2</a>.</p>
    <ul>
    <li>
    <strong>License:</strong> <a href="https://github.com/getpelican/pelican/blob/master/LICENSE" rel="nofollow external" class="bo">GNU AGPL</a>
    </li>
    <li><a href="http://docs.getpelican.com/en/3.3.0/" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/getpelican/pelican/" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <h3><a href="http://wardrobecms.com/" rel="nofollow external" class="bo">Wardrobe</a></h3>
    <p><a href="http://wardrobecms.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0415-07_open_source_blog_wardrobe.jpg" width="550" height="323" alt="Wardrobe" style="max-width: 100%; height: auto;"></a></p>
    <p>Wardrobe is a minimalist blogging platform with a simple UI that will help you focus on writing. Wardrobe is developed with PHP. It’s very similar to Anchor CMS.</p>
    <ul>
    <li>
    <strong>License:</strong> <a href="https://github.com/wardrobecms/wardrobe/blob/master/LICENSE" rel="nofollow external" class="bo">MIT</a>
    </li>
    <li><a href="http://wardrobecms.com/docs" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/wardrobecms/wardrobe" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <h3><a href="http://bolt.cm/" rel="nofollow external" class="bo">Bolt</a></h3>
    <p><a href="http://bolt.cm/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0415-08_open_source_blog_bolt.png" width="550" height="323" alt="Bolt" style="max-width: 100%; height: auto;"></a></p>
    <p>Bolt is a full-on content management system, so you can use it for other purposes outside of blogging. It uses <a href="http://twig.sensiolabs.org/" rel="nofollow external" class="bo">Twig</a> for templating and comes with its own Symphony debug bar for tracing code issues. And, with absolutely no magic required, you actually get to choose which relational database management system to use for a change: SQLite, MySQL or PostgreSQL. Need more reasons? How about this: Bolt was built with the assumption that you might actually want to run unit tests on your CMS; it supports <a href="http://phpunit.de/" rel="nofollow external" class="bo">PHPUnit</a> natively.</p>
    <ul>
    <li>
    <strong>License:</strong> <a href="http://opensource.org/licenses/mit-license.php" rel="nofollow external" class="bo">MIT</a>
    </li>
    <li><a href="http://docs.bolt.cm/" rel="nofollow external" class="bo">Docs</a></li>
    <li><a href="https://github.com/bolt/bolt" rel="nofollow external" class="bo">Download from GitHub</a></li>
    </ul>
    <p>Shout out to the awesome Six Revisions readers who pointed me to some excellent open source blogging platforms <a href="http://sixrevisions.com/wordpress/wordpress-alternatives/#comments" rel="nofollow external" class="bo">via the comments of another related post</a>.</p>
    <h3>Related Content</h3>
    <ul>
    <li><a href="http://sixrevisions.com/tools/top-free-online-blogging/" rel="nofollow external" class="bo">Top 10 Free Online Blogging Platforms</a></li>
    <li><a href="http://sixrevisions.com/tools/online-payment-systems/" rel="nofollow external" class="bo">10 Excellent Online Payment Systems</a></li>
    <li><a href="http://sixrevisions.com/content-strategy/blog-design-tips-content-strategist/" rel="nofollow external" class="bo">7 Blog Design Tips from a Content Strategist</a></li>
    <li><a href="http://sixrevisions.com/website-management/launching-blog-successfully/" rel="nofollow external" class="bo">Launching a Blog Successfully in 15 Days</a></li>
    <li>
    <strong>Related categories:</strong> <a href="http://sixrevisions.com/category/tools/" rel="nofollow external" class="bo">Tools</a> and <a href="http://sixrevisions.com/category/resources/" rel="nofollow external" class="bo">Resources</a>
    </li>
    </ul>
    <h3>About the Author</h3>
    <p><img src="http://images.sixrevisions.com/authors/jacob_gube_small.jpg" alt="" width="80" height="80" style="max-width: 100%; height: auto;"><span><strong>Jacob Gube</strong> is the founder of Six Revisions. He’s a front-end web developer by profession. If you’d like to connect with him, head on over to the <a href="http://sixrevisions.com/contact/" rel="nofollow external" class="bo"><strong>contact page</strong></a> or follow him on Twitter: <strong>@<a href="http://twitter.com/sixrevisions" rel="nofollow external" class="bo">sixrevisions</a></strong>.</span></p>
    <p>The post <a href="http://sixrevisions.com/tools/open-source-blogging-platforms-for-developers/" rel="nofollow external" class="bo">10 Open Source Blogging Platforms for Developers</a> appeared first on <a href="http://sixrevisions.com" rel="nofollow external" class="bo">Six Revisions</a>.</p>
    </div>
]]>
</Body>
<Summary>Mainstream blogging platforms like WordPress, Blogger, Tumblr, etc. aren’t designed for hackers. They’re encumbered by features developers  just don’t need or want.   And, out of the box, the...</Summary>
<Website>http://feedproxy.google.com/~r/SixRevisions/~3/20xZC5gteXM/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43212/guest@my.umbc.edu/9c762bb4b29967491425a4a86ca7bdde/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>database</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>sql</Tag>
<Tag>tools</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 04 Apr 2014 06:00:13 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43211" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43211">
<Title>Interview With Khajag Apelian: &#8220;Type Design Is Not Only About Drawing Letters&#8221;</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <table width="650">
    <tbody>
    <tr>
    <td>
    <div>
    <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="" style="max-width: 100%; height: auto;"><br><a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    <p>Having started his career studying under some of the best typographic minds in the world, Khajag Apelian not only is a talented type and graphic designer, unsurprisingly, but also counts Disney as a client, as well as a number of local and not-for-profit organizations throughout the Middle East.</p>
    <p>Even more impressive is Khajag’s willingness to take on work that most people would find too challenging. Designing a quality typeface is a daunting task when it’s only in the Latin alphabet. Khajag goes deeper still, having designed a Latin-Armenian dual-script typeface in four weights, named “Arek”, as well as an Arabic adaptation of Typotheque’s Fedra Display.</p>
    <p><img alt="Khajag Apelian" src="http://media.smashingmagazine.com/wp-content/uploads/2014/04/type-designer-khajag-apelian.jpg" width="200" height="200" style="max-width: 100%; height: auto;">Given his experience in working between languages, it’s only logical that Khajag’s studio <a href="http://www.maajoun.com/" rel="nofollow external" class="bo">maajoun</a> was chosen by the well-known and beloved Disney to adapt its logos for films such as Planes and Aladdin into Arabic, keeping the visual feel of the originals intact.</p>
    <p><strong>Q: Could you please start by telling us more about some of the typefaces you’ve designed?</strong></p>
    <p><strong>Khajag:</strong> Well, I’ve only designed one retail font, and that is <a href="http://www.rosettatype.com/Arek" rel="nofollow external" class="bo">Arek</a>. It started as my final-year project in the Type and Media program at <a href="http://www.kabk.nl/" rel="nofollow external" class="bo">KABK</a> (Royal Academy of Art, the Hague). Arek was my first original typeface, and it was in Armenian, which is why it is very dear to me. I later developed a Latin counterpart in order to make it available through Rosetta, a multi-script type foundry.</p>
    <p>Another font I designed is Nuqat, with René Knip and Jeroen van Erp. Nuqat was part of the “<a href="http://www.khtt.net/page/27316/en" rel="nofollow external" class="bo">Typographic Matchmaking in the City</a>” project, initiated by the Khatt Foundation between 2008 and 2010. In this project, five teams were commissioned to explore bilingual type for usage in public spaces.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Arek-large-preview.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Arek-preview-opt.png" width="500" style="max-width: 100%; height: auto;"></a><br>
    <em>Arek is a dual-script Latin-Armenian typeface family in four weights, with matching cursive styles. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Arek-large-preview.jpg" rel="nofollow external" class="bo">Large preview</a>)</em></p>
    <p>I’ve also worked on developing the Arabic companion of Fedra Display by Typotheque. The font is not released yet but will be soon, hopefully in the coming year, so keep an eye on <a href="http://www.typotheque.com" rel="nofollow external" class="bo">Typotheque</a> if you’re interested.</p>
    <p><strong>Q: How did you start designing type?</strong></p>
    <p><strong>Khajag:</strong> We had a foundational course in type design at Notre Dame University in Lebanon (NDU) during my bachelor’s degree. Actually, it was more like a project within a course, where we were asked to design an “experimental Arabic typeface” — something that was quite basic and that didn’t really involve type design, which I later realized when I entered the Type and Media program. So, that was the first project I worked on that could be considered close to designing type. The outcome is nothing to be proud of, but the process was a lot of fun.</p>
    <p>Then, I started to work more and more with letters, although I never knew I could develop this interest, let alone study it later on. I only found out about the program at KABK during my final year at the university, when NDU graduate <a href="https://twitter.com/29_Letters" rel="nofollow external" class="bo">Pascal Zoghbi</a> came to the school to present his Type and Media thesis project. That did it for me — two years later, I was there!</p>
    <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/tCi5k96IoxU?list=PLF6594F34551DA32A" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div>
    <br><em>Typographic Matchmaking 2.0 parts 1-3. (<a href="https://www.youtube.com/watch?v=tCi5k96IoxU&amp;list=PLF6594F34551DA32A" rel="nofollow external" class="bo">Watch on YouTube</a>)</em>
    <p><strong>Q: Tell us about the course at KABK. Did you focus only on designing Latin typefaces, or were you able to develop your skill in designing Arabic faces, too?</strong></p>
    <p><strong>Khajag:</strong> The year at KABK was one of the best times I’ve had. It was intense, rich, fun and fast. It’s incredible how much you develop when surrounded by teachers who are considered to be the top of the typographic world and classmates who were selected from different places around the world, each bringing their own knowledge and experience to the table.</p>
    <p>During the first semester, we tackled the basics of type design in calligraphy classes, practicing and exercising the principles of Latin type. We mostly learned the fundamentals of contrast, letter structure and spacing. This continued over the year through <a href="http://www.typecooker.com" rel="nofollow external" class="bo">sketching exercises</a>, designing type for different media and screens, and historical revivals.</p>
    <p><a href="http://www.typecooker.com" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2014/04/typecooker-sketching-exercises-opt.png" width="483" height="316" alt="Sketching exercises" style="max-width: 100%; height: auto;"></a><br><em>A couple of type-drawing exercises on TypeCooker. (<a href="http://www.typecooker.com" rel="nofollow external" class="bo">Image source</a>)</em></p>
    <p>Adapting these principles to the specifics of other scripts, like Arabic and Armenian, had to come from a more personal learning effort. But despite their modest knowledge of these scripts, the instructors are capable of guiding you through your final project. At the time, I decided to go with Armenian for my final project, but others have worked with other scripts, and the results have been strong and impressive.</p>
    <p><strong>Q: How do you keep the spirit of a typeface intact when moving from one language to another? Is it easier to maintain this feel when designing the Latin counterpart of an Armenian typeface, as you did with Arek, or when moving from Latin to Arabic, as you’re doing with Fedra Display?</strong></p>
    <p><strong>Khajag:</strong> I think each project presents its own challenges to translating a certain spirit in different scripts. In the case of Arek, I started designing the Armenian without thinking about designing a Latin counterpart to it. So, my focus was entirely on one script. The process involved a lot of investigation of old Armenian manuscripts, from which my observations and findings were translated into the typeface. This naturally created a very strong spirit that I had to retain when I moved to designing the Latin counterpart.</p>
    <p>Armenian and Latin letter proportions and constructions have certain similarities, which helped with the initial drawing of the Latin letters. I later had to reconsider some details, like the x-height, the serifs and the terminals, in order to achieve the ideal visual harmony.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/FedraDisplayArabic-large-preview.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2014/03/FedraDisplayArabic-preview-opt.png" width="500" style="max-width: 100%; height: auto;"></a><br><em>This Arabic adaptation of Fedra Display. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/FedraDisplayArabic-large-preview.jpg" rel="nofollow external" class="bo">Large preview</a>)</em></p>
    <p>In the case of Fedra Display Arabic, the spirit of the typeface was already there. The challenge was to translate the extreme weights of Fedra Sans Display to the existing Fedra Arabic. The Latin font is designed for headlines and optimized for a compact setting. These were important to retain when designing the Arabic counterpart. I experimented a lot with the weight distribution of the letterforms, something that is an established practice in the Latin script but not in the Arabic.</p>
    <p>I had to find the right width and the maximum height of the letterforms in order to achieve similar blackness while maintaining the same optical size. Whereas, for the hairline, it was necessary to keep the compact feature of the Latin without undermining the Arabic script. A set of ligatures was designed to further enhance the narrowness of the font.</p>
    <p><strong>Q: Do you design only Arabic typefaces? If so, is there a particular reason for that?</strong></p>
    <p><strong>Khajag:</strong> Besides Arek and a few other small projects I’ve been involved in, I mostly work with Arabic. The first direct reason is where I live, of course. Most of the time, clients in the region need to communicate in two languages, and that’s usually Arabic and English, or Arabic and French. The other reason is the number of Arabic fonts available compared to Latin fonts. Usually, when looking to communicate in English, I can find a way to do it through existing Latin fonts, but that’s not always the case with Arabic.</p>
    <p>Although, I have to admit that a lot of good Arabic type is emerging in the design world nowadays. Still, there aren’t that many Arabic typefaces, and <strong>with time the good ones become overused</strong> and everyone’s designs start to look similar. This is why I look to differentiate my work through type. I do not always design complete functional typefaces; rather, I often develop “incomplete” fonts that I can use to write a word or a sentence for a poster or a book cover, and different lettering pieces here and there.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Bilingual-Event-large-preview.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Bilingual-Event-preview-opt.jpg" width="500" style="max-width: 100%; height: auto;"></a><br>
    <em>The identity poster and catalogue for “Miniatures: A Month for Syria” event, organized by SHAMS. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Bilingual-Event-large-preview.jpg" rel="nofollow external" class="bo">Large preview</a>)</em></p>
    <p><strong>Q: Do you prefer to design Arabic typefaces that hold true to the calligraphic origins of the script, or is it more interesting to depart from those origins somewhat, as you did with Nuqat?</strong></p>
    <p><strong>Khajag:</strong> I think Nuqat is quite an extreme case of departing from calligraphy. I consider it an experiment rather than a functional typeface. In any case, I don’t think I have a particular preference for typefaces to design. I am very much intrigued by the process, and in both cases there are some quite interesting challenges to tackle. A big responsibility comes with designing a typeface that must remain true to its calligraphic origins, something that comes with a lot of history and that has reached a level of perfection. And when you depart from that, you go through an abstraction process that can also be a fun exercise.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Nuqat-large-preview.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Nuqat-preview-opt.png" width="500" style="max-width: 100%; height: auto;"></a><br>
    <em>Nuqat is a display typeface designed by Khajag Apelian and René Knip for the “Typographic Matchmaking in the City” project, initiated by the Khatt Foundation. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Nuqat-large-preview.jpg" rel="nofollow external" class="bo">Large preview</a>)</em></p>
    <p><strong>Q: Where does your love of typography and graphic design come from?</strong></p>
    <p><strong>Khajag:</strong> Like most teenagers about to start university, I was confused about my subject of study. At the time, I was part of a dance troupe with a friend who used to be a graphic designer. I liked her quite a bit and thought I could enroll in graphic design to be “cool” like her! I didn’t know what graphic design was about at the time. And so I enrolled. The foundation year was all about color theory, shapes and composition. It wasn’t until the second year or so that I started to realize what design was really about. Luckily, I loved it.</p>
    <p>Later on, I took courses with Yara Khoury, and thanks to her I really got to appreciate typography. Yara was heavily influenced by different European schools that put typography on a pedestal, and she managed to transfer that to me and to other students. At NDU, we were exposed to the work of various designers from the Bauhaus and Swiss schools, and we were trained to capture the details and <strong>understand the function of type within graphic design</strong>. I was particularly fascinated by how one can go all the way from designing something that goes unnoticed by the reader to something that is very present and expressive, all just with type.</p>
    <p><strong>Q: Did you enjoy the visual departure from the Arabic culture you were surrounded by and brought up in, into the Modernist European one you were learning about? Did you ever find the aesthetic difference between the two difficult to navigate?</strong></p>
    <p><strong>Khajag:</strong> Very much, actually. It wasn’t difficult to navigate per se, but rather overwhelming, maybe? Everything in the Netherlands is designed, and many of those things are featured in books as exemplary design. I had always been exposed to this through books and the Internet, but actually being immersed in it was another experience. One funny incident was when I spotted a police car for the first time, knowing it was branded by Studio Dumbar. I was so excited, I almost wanted to take a picture with them.</p>
    <p><strong>Q: How did you start off in the design industry? Could you also describe your role at your current company?</strong></p>
    <p><strong>Khajag:</strong> My first job as a designer was in branding with Landor Associates in Dubai. I worked there for around a year, before going to the Netherlands for my master’s. After graduation, I extended my visa for a year and worked freelance with several Dutch design studios on projects that involved designing with Arabic. My work partner, Lara, was also living and working in the Netherlands at the time, and both of our visas were about to expire. Right before coming back to Beirut, we worked together on a cultural project with <a href="http://www.mediamatic.net/" rel="nofollow external" class="bo">Mediamatic</a>. We got comfortable working together and thought, Why not start a studio when we get back to Beirut? And so we did.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Hachette-Antoine-Covers-large-preview.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Hachette-Antoine-Covers-preview-opt.jpg" width="500" style="max-width: 100%; height: auto;"></a><br>
    <em>Book cover design and guidelines for Hachette Antoine, a regional publishing house that maajoun has been working with for over three years (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Hachette-Antoine-Covers-large-preview.jpg" rel="nofollow external" class="bo">Large preview</a>)</em></p>
    <p>When we started, we were highly inspired by Dutch business models, such as Mediamatic and <a href="http://ok-parking.nl/" rel="nofollow external" class="bo">O.K. Parking</a>, which often initiate their own cultural or educational projects and events, sometimes funded through their commercial practice. This business model was somewhat new to us at the time. Things have changed since then, and many design agencies nowadays have their own cultural or educational projects, sometimes referred to as “R&amp;D” or “corporate social responsibility”. Far from being a corporate strategy, we like to think of our side projects as a channel to exchange knowledge with other designers in our area.</p>
    <p>Our commercial practice, on the other hand, is focused on editorial design, lettering and type design. Our studio is rather small (most of the time, only the two of us), which means we both have to do a bit of everything, even accounting!</p>
    <p><strong>Q: What have been your biggest achievements till now?</strong></p>
    <p><strong>Khajag:</strong> I consider maajoun to be one of my biggest achievements to date. I love what we do. When you work on fun projects in university (whether cultural or experimental), everyone tries to make you feel like you should enjoy it as much as you can because you won’t get to do much of it in the “real world.” That’s not true. At maajoun, we work on interesting projects, we take the time to experiment, and we have fun!</p>
    <p>Publishing Arek with Rosetta would be another big achievement. Arek is the first typeface that I seriously developed, and I am really happy it is out there and available to the public.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Graphorism-Lettering-large-preview.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Graphorism-Lettering-preview-opt.png" width="500" style="max-width: 100%; height: auto;"></a><br><em>Maajoun’s submission to GrAphorisms, a project initiated by SHS Publishing (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Graphorism-Lettering-large-preview.jpg" rel="nofollow external" class="bo">Large preview</a>)</em></p>
    <p><strong>Q: You’ve done some work on Arabic versions of logos for several Disney films. Are you able to share with us what that process has been like?</strong></p>
    <p><strong>Khajag:</strong> Arabic logo adaptation is becoming more and more common in the Middle East and North Africa, whose markets big international brands are trying to reach. Disney is no exception. We were asked to design the Arabic versions of the logos for several Disney films, including Aladdin, The Lion King and Beauty and the Beast.</p>
    <p>We usually start by analyzing the original logo, its visual characteristics and some distinctive shapes; most importantly, we <strong>try to extract some cultural references from the lettering technique</strong> used in the logo, whether it has a 1960s retro feel or some elegance in a classical serif. We then try to translate these both visually and conceptually to the Arabic. This helps us to create a logo that works well visually with its Latin counterpart, without compromising the essence of the Arabic script. </p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Disney-large-preview.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Disney-preview-opt.png" width="500" style="max-width: 100%; height: auto;"></a><br>
    <em>Maajoun’s adaptation of Disney logos to Arabic script (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Disney-large-preview.jpg" rel="nofollow external" class="bo">Large preview</a>)</em></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Rapunzel-Arabic-large-preview.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Rapunzel-Arabic-preview-opt.jpg" width="500" style="max-width: 100%; height: auto;"></a><br>
    <em>The Arabic adaptation for Disney’s Tangled (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/Rapunzel-Arabic-large-preview.jpg" rel="nofollow external" class="bo">Large preview</a>)</em></p>
    <p><strong>Q: Is there a way for readers to know what conferences you’ll be speaking at or attending, or workshops you’ll be organizing?</strong></p>
    <p><strong>Khajag:</strong> Kristyan Sarkis, Lara and I decided a few months ago to start a series of Arabic lettering workshops, which we’ll try to carry to different cities every now and then. We started during Beirut’s Design Week in June 2013 and had another session in July. We are having another one around May in Beirut, so those who are interested can stay tuned to <a href="https://www.facebook.com/ArabicLetteringWorkshops" rel="nofollow external" class="bo">our Facebook page</a>.</p>
    <p>Also, the <a href="http://www.khtt.net/" rel="nofollow external" class="bo">Khatt Foundation</a> usually organizes a workshop on Arabic type design at <a href="http://www.tashkeel.org/En/Index.aspx" rel="nofollow external" class="bo">Tashkeel</a> in Dubai. I usually take part in this. It’s an intensive nine-day workshop. The first three days concentrate on Arabic calligraphy and lettering, while the next six days are on Arabic type design. I also usually announce these things through Twitter (<a href="http://twitter.com/debakir" rel="nofollow external" class="bo">@debakir</a> and <a href="http://www.twitter.com/maajoun" rel="nofollow external" class="bo">@maajoun</a>) or through <a href="https://www.facebook.com/maajoun" rel="nofollow external" class="bo">maajoun’s page on Facebook</a>.</p>
    <p><strong>Q: What advice would you give to young readers out there who are interested in becoming a type designer?</strong></p>
    <p><strong>Khajag:</strong> Go for it! But know that type design is not only about drawing letters. It involves research and a lot of technical work.</p>
    <h4>Related Resources</h4>
    <ul>
    <li>“<a href="http://calligraphyqalam.com/faq.html#question1" rel="nofollow external" class="bo">Calligraphy Qalam</a>”<br>
    An introduction to Arabic, Ottoman and Persian Calligraphy.</li>
    <li>“<a href="http://www.arabictypography.com/" rel="nofollow external" class="bo">Arabic Typography</a>”<br>
    Online portal for typography, design, trends, inspiration and visual culture in the Arab world.</li>
    <li>“<a href="http://blog.29lt.com/" rel="nofollow external" class="bo">Arabic Typography</a>”<br>
    Pascal Zoghbi’s blog, based on contemporary Arabic typography.</li>
    <li>“<a href="http://www.arabictypography.com/" rel="nofollow external" class="bo">Arabic Typography</a>”<br>
    Nadine Chahine’s blog on Arabic type today.</li>
    <li>“<a href="http://typophile.com/" rel="nofollow external" class="bo">Arabic Typography &amp; Type Design</a>”<br>
    Open forum on Typophile.</li>
    </ul>
    <p><em>(il, al)</em></p>
    <hr>
    <p><small>© Alexander Charchar for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2014.</small></p>
    </div>
]]>
</Body>
<Summary>        Having started his career studying under some of the best typographic minds in the world, Khajag Apelian not only is a talented type and graphic designer, unsurprisingly, but also counts...</Summary>
<Website>http://www.smashingmagazine.com/2014/04/04/interview-with-type-designer-khajag-apelian/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43211/guest@my.umbc.edu/b7637cf8008430c4da285a48644223b2/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>global-web-design</Tag>
<Tag>html</Tag>
<Tag>inspiration</Tag>
<Tag>interviews</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 04 Apr 2014 05:31:05 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43210" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43210">
<Title>20 impactful package designs that teach us about effective UX</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2014/04/thumbnail.jpg" width="200" height="160" style="max-width: 100%; height: auto;">I’ve always had this crazy infatuation with packaging design. There’s just something about getting a physical product and checking out what it’s presented in and how its presented. Is it in a box? What color is the label? Is there stuffing of any sort in it? What materials are being used? How does it make me feel?</p> <p>Packaging is important because it’s like the UX, or user experience, of a physical product. It determines how we interact with that product and allows us to make educated assessments of it. If a company doesn’t put time and and effort into their packaging, I may get something I feel is cheap and that may reflect poorly on the product. Thus, I have a poorer experience and I’m not thrilled with the product. It’s all related to the brand experience and our perceptions.</p> <p>Because of this, designers must pay attention to how they are packaging items. We’ve got to keep in mind who’s purchasing the product, what the product is for and what it’s supposed to represent. Luxury items look and feel that way — they aren’t in cheap packages.</p> <h1>Bow and Arrow (student project)</h1> <p>Bow and Arrow is a store that makes handcrafted jewelry. The packaging of this brand reflects that as you have pieces of wood and and handwritten fonts on their bags and in their jewelry boxes. This is a very simple idea that makes a lot of sense and looks great in the process.</p> <p><a href="http://www.packagingoftheworld.com/2013/05/bow-arrow-student-project.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/bowandarrow.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>The Brain Cube</h1> <p>The Brain Cube is the Rubik’s Cube on steroids. Instead of trying to match up different colors, you have to make sure the grooves of the brain are perfectly matched. I’ve never solved a Rubik’s, so I can only imagine how tough this one is. But also of importance, how intriguing is this packaging? It comes in a clear jar and tends to remind you of a mad scientist who keeps organs in his basement!</p> <p><a href="http://www.packagingoftheworld.com/2013/05/the-brain-cube.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/braincube.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <h1>Burn Card T-Shirts</h1> <p>Without the scale, you’d think this was just a fancy deck of cards. But the imagination of these designers is awesome! They’ve decided to keep the ‘card’ going in their packaging to not only make the tag look like a playing card, but also create an apparel box that looks like a card deck.</p> <p><a href="http://lovelypackage.com/burn-card-t-shirts/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/burncard.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Callegari Olive Oil</h1> <p>If you saw this in a store next to other olive oils, you’d probably think a worker made an awful mistake by putting wine or pens or even perfume next to bottles of oil. Calligari has decided to be bold in their packaging design for their olive oil. They want you to feel differently about olive oil and use it differently than you would use most. Chefs are able to sign their dishes now while people can spray aromatic oil on their salads. </p> <p><a href="http://www.thedieline.com/blog/2013/6/6/la-michoacana.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/callegari.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Conto Figueira</h1> <p>There’s just something about menswear and wood that is always intriguing to me. It adds a level of luxury and an experience not common to most brands. Plus, the wood is re-usable and just hard to part with so consumers will always remember and see your brand.</p> <p><a href="http://lovelypackage.com/conto-figueira/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/conto.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Evil Spirits Vodka</h1> <p>This vodka plays off the idea of the notorious board “game” called the Ouija Board. Apparently, you’re supposed to put out this board and let the spirits guide you to the answers to your questions. It’s all in good fun if you believe in spirits and in ghosts. Evil Spirits Vodka takes it to another level by creating a pairing to this type of culture, tapping into the spookiness that comes with the Ouija board.</p> <p><a href="http://netdna.webdesignerdepot.com/uploads/2013/06/evilspirits.jpg" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/evilspirits.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Halycon</h1> <p>I really like how the packaging design and branding of the Halycon is consistent throughout each piece without being redundant and losing its luster. It’s a really bold direction for a place like the Halycon.</p> <p><a href="http://www.thedieline.com/blog/2013/2/26/halcyon.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/halcyon.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Hither &amp; Yon</h1> <p>Who doesn’t love wine labels? Rather than branding their wine with their full name, they’ve taken the very simple ampersand and have made it extremely beautiful for each different flavor. Each one is extremely creative and great for those wine lovers who also have a taste for the arts.</p> <p><a href="http://www.thedieline.com/blog/2013/6/11/hither-yon.html?SSScrollPosition=255" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/hither.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Lo Virol</h1> <p>Wine labels are popular when it comes to packaging. You always want to know how different you can be next to the traditional idea of wine bottles. What I like about this packaging is the pure graphic content. There’s usually always some sort of hand crafted feel to wine labels, but I love how this label has bright colors and geometric shapes.</p> <p><a href="http://www.thedieline.com/blog/2013/6/11/lo-virol.html?SSScrollPosition=212" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/lovirol.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Lucky Brand Jeans</h1> <p>How do you keep your brand consistent when your brand decides to jump into a new industry? Clothing brand Lucky Brand Jeans have decided they wanted to make accessories for the tech-world without losing touch with what they’re best out. So, they decided to create packaging with their jeans on it. It’s so simple and perfect!</p> <p><a href="http://lovelypackage.com/lucky-brand-jeans-2/#more-30526" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/luckybrand.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>La Michoacana</h1> <p>La Michoacana is a traditional Mexican Paleteria. In my quick research, I found that is a small latin ice pop made out of different fruits. It leads me to believe La Michoacana not only makes those things, but also expands their brand as well to drinks and other tasty snacks for people. The brand looks delicious, and even with the help of a few colorful stickers, they’ve created something that’s interesting and simple enough to remember.</p> <p><a href="http://www.thedieline.com/blog/2013/6/6/la-michoacana.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/Michoacana.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Milk Talk</h1> <p>Milk Talk creates moisturizing body soaps that smell like banana, strawberry or apples. These scents are reiterated in the coloring and the fun sponges put atop the packaging. Also, the bottles are made from a really smooth material that continues to echo the sentiment of the moisturizing soap. This is a great example of packaging that has a brand message and continues to send it in various ways.</p> <p><a href="http://www.thedieline.com/blog/2013/6/4/milk-talk.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/milktalk.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>One Percent</h1> <p>By looking at the box, you’d probably have no clue what this product is. However, it’s intriguing enough for you to want to pick it up and scope it out. This shoe box is very intricate and of high quality to help them make a statement to their target audience. It’s hard to rethink packaging such as a shoe box but One Percent really took it to the next level to reflect what they stand for.</p> <p><a href="http://lovelypackage.com/one-percent/#more-31168" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/onepercent.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p> </p> <h1>Relishing Travel Gold Bullion Pineapple Cake</h1> <p>There’s cake in this box, so it automatically gains my interest. But seriously, think of a cake box and think of how Relishing Travel completely re-imaged the idea to fit their brand. They’ve created packaging that creates a higher interest level of the actual product. I would purchase this just to have a chance to unwrap the packaging and have what’s inside. That’s great design.</p> <p><a href="http://www.thedieline.com/blog/2013/6/12/relishing-travel-gold-bullion-pineapple-cake.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/pineapple.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Romero and Paul</h1> <p>Above, One Percent showed us how we can completely re-imagine the shoe box. Romer and Paul decide the shoe box is fine, but they show us how to make it a luxurious experience. These wonderful, high quality loafers play a role in creating characters and settings for consumers, making you feel as if Romero and Paul are close friends.</p> <p><a href="http://netdna.webdesignerdepot.com/uploads/2013/06/romero.jpg" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/romero.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Trafiq</h1> <p>Trafiq is another brand that draws on traditional uses of the word ‘trafik’ to play off. It has a heavy vintage, yet classical feel that seems to make you feel a bit more elegant than eating burgers wrapped in thin paper.</p> <p><a href="http://www.packagingoftheworld.com/2012/11/trafiq.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/Trafiq.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Velocita Coffee</h1> <p>Business is about taking risks and being bold in the decisions you make. How often do you see coffee makers create packaging that makes it look like it just came straight off the plane? Velocita created this packaging intentionally to let consumers know their coffee is so fresh, it’s like they just received it from Rio. I love this because, again, it’s bold and different and is sure to stand out amongst other brands. </p> <p><a href="http://www.thedieline.com/blog/2011/11/29/velocita-coffee.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/velocita.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Vitaly (student project)</h1> <p>This brand focuses on serving gluten-free cereal to the gluten-free community. They wanted to create packaging that was intriguing to that sector and also offered one serving of cereal for them. I like the artistic, natural approach to this packaging because it just makes sense.</p> <p><a href="http://www.packagingoftheworld.com/2013/05/vitality-organics-gluten-free-cereal.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/vitality.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Vogue limited edition box</h1> <p>It’s not often that you feel luxury when dealing with books or magazines. When magazines put out special and limited edition magazines, you just assume it will be larger in number. Vogue totally blew our minds by creating luxurious and elegant packaging for their limited edition magazine that also came with a bag as a gift for recipients. The handwritten note is also another very lovely touch.</p> <p><a href="http://www.thedieline.com/blog/2013/5/23/vogue-limited-edition-box.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/vogue.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Windows 8</h1> <p>I would’ve never thunk it, but it seems like Windows 8 has been trying to prove something with their branding and designs in this new revival of Windows. Where we’d be lucky to see screen shots and just all around ugly stuff on software packaging, it seems Windows has decided to show their cards in the design department. There are some very interesting and beautiful boxes from Windows.</p> <p><a href="http://www.packagingoftheworld.com/2012/10/windows-8.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/windows8.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Kanye West – Yeezus album art</h1> <p>If you’re familiar with the hip hop culture, you’re familiar with Kanye West. Even if you aren’t, you’re probably familiar with Mr. West. At any rate, as always he tends to strike up a lot of conversation when it comes to his album covers. Some get banned and censored, others get praised as amazing and beautiful. With tons of controversy about Kanye’s album, from the title to the cover, this could quite possibly be the very simple CD packaging for his next album. There’s something extremely powerful in all this simplicity.</p> <p><a href="http://netdna.webdesignerdepot.com/uploads/2013/06/yeezus.jpg" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/yeezus.jpg" width="650" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Conclusion</h2> <p>By now, I hope you see that—whether it’s a pair of shoes or a mobile app—you don’t just have to wrap your product up, put in a bag or a box and slap a sticker on it. Think out the process and really determine how you want the people purchasing the product to feel when they first encounter it. There are little to no rules, the sky’s the limit, so think outside the box and be creative!</p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/internet-marketing-book-of-secrets.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Over 600 Secrets, Tips and Tricks for Marketers – only $8!</strong></a> </td> <td> <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br> <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" alt="20 impactful package designs that teach us about effective UX" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2014/04/20-impactful-package-designs-that-teach-us-about-effective-ux/" rel="nofollow external" class="bo">Source</a> <br><br><br><a href="http://da.feedsportal.com/r/193359803845/u/49/f/661066/c/35285/s/38fa8a54/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359803845/u/49/f/661066/c/35285/s/38fa8a54/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193359803845/u/49/f/661066/c/35285/s/38fa8a54/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359803845/u/49/f/661066/c/35285/s/38fa8a54/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193359803845/u/49/f/661066/c/35285/s/38fa8a54/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359803845/u/49/f/661066/c/35285/s/38fa8a54/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/193359803845/u/49/f/661066/c/35285/s/38fa8a54/sc/4/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359803845/u/49/f/661066/c/35285/s/38fa8a54/sc/4/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>I’ve always had this crazy infatuation with packaging design. There’s just something about getting a physical product and checking out what it’s presented in and how its presented. Is it in a box?...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/38fa8a54/sc/4/l/0L0Swebdesignerdepot0N0C20A140C0A40C20A0Eimpactful0Epackage0Edesigns0Ethat0Eteach0Eus0Eabout0Eeffective0Eux0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43210/guest@my.umbc.edu/09f430f76ad86adc0d203050419d8a83/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>branding</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>innovative-branding</Tag>
<Tag>inspiring-packaging</Tag>
<Tag>javascript</Tag>
<Tag>luxury-packaging</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>packaging</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>product-design</Tag>
<Tag>sql</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 04 Apr 2014 04:15:42 -0400</PostedAt>
<EditAt>Fri, 04 Apr 2014 04:15:42 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="43207" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43207">
<Title>Messaging App Adds an Assistant to the Conversation</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Emu mines your conversations and smartphone sensors to add helpful details to messages.</p>
    <p>Making plans via text message can be a pain. A new messaging app called <a href="http://www.emu.is/" rel="nofollow external" class="bo">Emu</a> aims to alleviate some of that pain by bringing a contextually aware assistant into the process.</p>
    </div>
]]>
</Body>
<Summary>Emu mines your conversations and smartphone sensors to add helpful details to messages.  Making plans via text message can be a pain. A new messaging app called Emu aims to alleviate some of that...</Summary>
<Website>http://www.technologyreview.com/news/525991/messaging-app-adds-an-assistant-to-the-conversation/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43207/guest@my.umbc.edu/b9bdbf0c0635e7ff6b600c9b3bfe24af/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 04 Apr 2014 00:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43206" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43206">
<Title>ISLAMIC AWARENESS WEEK, DAY 5: THE GRAND FINALE!!!</Title>
<Tagline>OPEN JUMMAH &amp; DIVINE MERCY</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><span>Abu Hurairah (RA) reports that the Messenger of Allah (SAW) said: "The best day on which the sun rises is Friday. [On Friday] Adam (AS) was created and on that day he entered paradise and on that day he was expelled from paradise. And the Hour will come to pass on Friday." [Muslim]</span></p>
    <p>Friday is the BEST of days. Our Prophet (SAW) referred to it as a day of Eid. It is a day of blessing and of festivity. For all of these reasons and more, we have saved the BEST of Islami<span>c Awareness Week for last!</span></p>
    <div>
    <p><strong><u>TOMORROW Friday, April 4th</u></strong>, in sha Allah from <strong><u>1:15pm - 3pm</u></strong>, join in for <strong><u>OUTDOOR Open Jummah Prayer on ERICKSON FIELD</u></strong>, right across from the library! In the situation that it rains, our back up location will be the Interfaith Center/IFC.</p>
    <p>In sha Allah, the Khateeb will be Brother Jose Acevedo. He is currently serving as the Arabic/Islamic Studies and Quran Chair at the Al Rahmah School, along with teaching the Quran Academy students various subjects, and also along with being the Youth Director at ISB (formerly at Darul Hijrah). Brother Jose is well known in the DMV area and is a very powerful speaker, so this will be one Jummah experience you won't want to miss!</p>
    <p>Afterwards, the excitement for Divine Mercy will finally get real! Join us for the <strong>BIGGEST EVENT EVER</strong> in the history of the UMBC MSA! <strong><u>Divine Mercy: Hidden blessings of supporting disabled orphan children.</u></strong></p>
    <p>In sha Allah, the big event will be taking place from <strong><u>7pm - 11pm</u></strong> at the <strong><u>Loft Ballroom in Laurel, MD</u></strong>, and baby sitting will be available for kids 12 years and under.</p>
    <p>We have a loaded line up for you all as we gather together to raise funds for a great cause. Joining us for our event will be: Sheikh Yaseen, Sheikh AbdulRaouf Alkhawaldeh, Brother <a href="https://www.facebook.com/pages/Joshua-Salaam/233490460041743" rel="nofollow external" class="bo">J</a>oshua Salaam from Native Deen, and we will have featured performances from comedians Azhar Usman &amp; <a href="https://www.facebook.com/PreacherMossComedy" rel="nofollow external" class="bo">P</a>reacher Moss from Allah Made Me Funny.</p>
    <p>I bet you know where to go to purchase your tickets! So stop delaying it and click right away! <a href="https://www.hhrd.org/TicketDivineMercyMD.aspx" rel="nofollow external" class="bo">https://www.hhrd.org/TicketDivineMercyMD.aspx</a> Advanced tickets are available <strong><u>only until noon tomorrow! </u></strong>Remember, prices will rise at the door!</p>
    <p><img src="https://my3.my.umbc.edu/system/shared/attachments/news/000/043/206/9380e398ee9bea45b992a3daaa6b7c4d/unnamed.jpg" style="max-width: 100%; height: auto;"></p>
    </div>
    </div>
]]>
</Body>
<Summary>Abu Hurairah (RA) reports that the Messenger of Allah (SAW) said: "The best day on which the sun rises is Friday. [On Friday] Adam (AS) was created and on that day he entered paradise and on that...</Summary>
<Website>https://www.facebook.com/events/1479100335643137/</Website>
<AttachmentKind>Flyer</AttachmentKind>
<AttachmentUrl>https://assets4-my.umbc.edu/system/shared/attachments/d921df4a1d4255785b88543b86608424/6a9dc038/news/000/043/206/9380e398ee9bea45b992a3daaa6b7c4d/unnamed.jpg?1396581414</AttachmentUrl>
<Attachments>
<Attachment kind="Flyer" url="https://my3.my.umbc.edu/posts/43206/attachments/13075"></Attachment>
<Attachment kind="Flyer" url="https://my3.my.umbc.edu/posts/43206/attachments/13076"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43206/guest@my.umbc.edu/0cdffa25175f6a18f669d379a12399a5/api/pixel</TrackingUrl>
<Tag>divine</Tag>
<Tag>mercy</Tag>
<Group token="msa">Muslim Student Association</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/msa</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/084/a157f5740fef18518eb15501365f8f20/xsmall.png?1788209952</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/084/a157f5740fef18518eb15501365f8f20/original.png?1788209952</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/084/a157f5740fef18518eb15501365f8f20/xxlarge.png?1788209952</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/084/a157f5740fef18518eb15501365f8f20/xlarge.png?1788209952</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/084/a157f5740fef18518eb15501365f8f20/large.png?1788209952</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/084/a157f5740fef18518eb15501365f8f20/medium.png?1788209952</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/084/a157f5740fef18518eb15501365f8f20/small.png?1788209952</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/084/a157f5740fef18518eb15501365f8f20/xsmall.png?1788209952</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/084/a157f5740fef18518eb15501365f8f20/xxsmall.png?1788209952</AvatarUrl>
<Sponsor>Muslim Student Association</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/206/c714650df883e022bfc924cbc35b018f/xxlarge.jpg?1396581343</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/043/206/c714650df883e022bfc924cbc35b018f/xlarge.jpg?1396581343</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/043/206/c714650df883e022bfc924cbc35b018f/large.jpg?1396581343</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/043/206/c714650df883e022bfc924cbc35b018f/medium.jpg?1396581343</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/043/206/c714650df883e022bfc924cbc35b018f/small.jpg?1396581343</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/206/c714650df883e022bfc924cbc35b018f/xsmall.jpg?1396581343</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/206/c714650df883e022bfc924cbc35b018f/xxsmall.jpg?1396581343</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 03 Apr 2014 23:19:02 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43213" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43213">
<Title>U.S. Says It Tried to Build a Social Media Site in Cuba, but Failed</Title>
<Body>
<![CDATA[
    <div class="html-content">The Obama administration insists that the effort to create a Twitter-like network was intended to encourage political discussion, not to foment rebellion.<br>
    </div>
]]>
</Body>
<Summary>The Obama administration insists that the effort to create a Twitter-like network was intended to encourage political discussion, not to foment rebellion.</Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38fc163f/sc/1/l/0L0Snytimes0N0C20A140C0A40C0A40Cworld0Camericas0Cus0Esays0Eit0Etried0Eto0Ebuild0Ea0Esocial0Emedia0Esite0Ein0Ecuba0Ebut0Efailed0Bhtml0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43213/guest@my.umbc.edu/fc0ec433b0c100107892a95d78222b35/api/pixel</TrackingUrl>
<Tag>cuba</Tag>
<Tag>new</Tag>
<Tag>social-media</Tag>
<Tag>technology</Tag>
<Tag>twitter-twtr-nyse</Tag>
<Tag>united-states-agency-for-international-development</Tag>
<Tag>united-states-international-relations</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 03 Apr 2014 23:10:02 -0400</PostedAt>
<EditAt>Thu, 03 Apr 2014 23:10:02 -0400</EditAt>
</NewsItem>

</News>
