<?xml version="1.0"?>
<News hasArchived="true" page="8462" pageCount="10726" pageSize="10" timestamp="Thu, 16 Jul 2026 19:38:51 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8462">
<NewsItem contentIssues="true" id="33495" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33495">
<Title>The &#8220;Other&#8221; Interface: Atomic Design With Sass</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>As front-end developers and designers, we’re constantly refining two interfaces simultaneously: one for visitors who load the website, the other for developers who have to tackle the code in the future, when adjustments or full-scale redesigns must be made. Yet we tend to assign the role of “user” to the first group, often forgetting that the code we write must work for developers in a similar way. We shouldn’t forget that <strong>developers are users, too</strong>.</p>
    <p>If this is the case, then our convention for naming and organizing files is critical if we are to ensure active (and efficient) development in the future. But do we really design the partials, files and directories that make up this interface with a particular set of users in mind, with a set of clear goals, combined with precise, well-defined documentation? I don’t think we do.</p>
    <p>Recently, I’ve been working on many different projects, each wildly different from each other. And the various problems I’ve faced while switching between the projects has made me wonder how we can drastically improve <strong>front-end accessibility</strong>.</p>
    <h3>We Need To Follow Atomic Design Principles In Our Style Sheets</h3>
    <p>Last month, in a post titled “<a href="http://bradfrostweb.com/blog/post/atomic-web-design" rel="nofollow external" class="bo">Atomic Design</a>,” Brad Frost argued that Web development could be improved. He suggested to developers that, instead of coding a form as a component that is reused throughout a website, they could <strong>style small modules</strong> — such as a placeholder, input field and text field — and then create each form by combining these chunks together. This process could be duplicated for navigational items, text with icons, floated objects and pretty much any other sort of front-end module that needs to be reused regularly.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/08/atoms-large_mini.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/08/atoms-500_mini.jpg" alt="atoms-500_mini" width="500" height="375" style="max-width: 100%; height: auto;"></a><br>
    <em>(Image: Brad Frost)</em></p>
    <blockquote><p>“Atomic design gives us the ability to traverse from abstract to concrete. Because of this, we can create systems that promote consistency and scalability while simultaneously showing things in their final context. And by assembling rather than deconstructing, we’re crafting a system right out of the gate instead of cherry picking patterns after the fact.”</p></blockquote>
    <p>The theory is that by employing these distinct elements, a developer can speed up their workflow and write code more efficiently because they’re not forced to repeat themselves. This much appears to be common sense. Essentially, what Brad calls for is <a href="http://coding.smashingmagazine.com/2011/12/12/an-introduction-to-object-oriented-css-oocss" rel="nofollow external" class="bo">object-oriented design</a>, which has been discussed in numerous articles and blog posts recently. That isn’t really what interested me about the idea, though — it was the <strong>naming convention</strong> that Brad chose.</p>
    <p>He uses scientific terms to quickly describe what sections of a design should do; “atoms” are the discrete chunks (placeholders, labels, etc.), while “molecules” are combinations of these standard atoms. The simplicity here grabbed my attention, because ultimately what we’re discussing isn’t just a process for design, but also a distinction to be made in the user interface, as I mentioned earlier.</p>
    <h3>Problems With The Front-End Interface</h3>
    <p>Before we retroactively squeeze some of Brad’s ideas into our current workflow, we have to figure out precisely which problems need to be solved. So, as I switched between my projects, I started to take note of the flaws that appeared to be wasting much of my time. By the end, I counted three main problems that affect the developer’s workflow:</p>
    <h4>1. Finding Code Should Be Easy</h4>
    <p>Although I had written some components with Sass early on in a project, I found that towards the end, I was simply incapable of remembering where in the stack I needed to make adjustments. This <strong>forced me to try to memorize where each block of code was</strong> and had me scurrying around, completely lost, even with the advanced search features of a great text editor.</p>
    <p>Developers are probably quite familiar with <a href="http://sassnotsass.com/" rel="nofollow external" class="bo">Sass</a> files, which contain thousands of lines of code. The legacy <a href="https://github.com/erskinedesign/ed.ultimate_package" rel="nofollow external" class="bo">Ultimate Package</a>, a tool that we used as a boilerplate for all of our front-end code at <a href="http://erskinedesign.com" rel="nofollow external" class="bo">Erskine</a>, also contained that unfortunate mistake. The main problem with keeping all of this code in one place and not breaking the files into smaller parts is that you’re likely to forget where a particular section of code is. This eventually wastes the developer’s time and could slow down the project considerably.</p>
    <p>Of course, these problems become infinitely worse when you must navigate someone else’s project or an entirely unfamiliar code base.</p>
    <h4>2. Figuring Out the Relationships Between Modules Should Be Straightforward</h4>
    <p>Whenever I try to add a component to an old website, I have to figure out the mental model of the relationships between elements. I have to wonder how removing a portion of the website would affect another totally unrelated thing elsewhere. This could be a background color or margins or padding or even the order of elements in a module (such as an image in a comments section combined with text from the same object).</p>
    <p>Nicole Sullivan mentions in her fantastic <a href="http://talks.webstock.org.nz/speakers/nicole-sullivan/css-tools-massive-websites/" rel="nofollow external" class="bo">talk at Webstock</a> that these elements can become so interwoven with one another that they pose hurdles down the road. This problem often forces me to move from the text editor to the Web inspector and manipulate elements by hand in order to get an idea of how things work together, and then move back to the editor to make the fix.</p>
    <p>This is unnecessarily slow and cumbersome. With atomic design, we would know precisely how one element affects another; we wouldn’t have to worry about editing components, or even adding new ones.</p>
    <h4>3. Websites Need Tailor-Made Components</h4>
    <p>Sometimes a design requires a component that is never reused, a sort of <a href="http://www.smashingmagazine.com/2012/02/08/the-journey-from-writer-to-reader/" rel="nofollow external" class="bo">one-of-a-kind</a> embellishment that sparks interest or delight in the user in some way. If it were repeated, it would become boring or, worse, repellant. Ideally, a new organizational system would allow for the sort of design components that Allen Tan describes in his article “<a href="http://contentsmagazine.com/articles/made-to-measure/" rel="nofollow external" class="bo">Made to Measure</a>”:</p>
    <blockquote><p>“Design is about establishing a set of relationships between elements. By codifying these relationships as a set of principles instead of a single, stand-alone template, we make it possible for other designers to extend our work (per article) while remaining faithful to its core ideas.”</p></blockquote>
    <p>Yet we know that these minute design variations can quickly turn into a royal pain. Having to maintain all of these various fluctuations of commonly used structures would turn most projects into very hostile coding environments.</p>
    <p>Of course, if we used some of this atomic design thinking, we wouldn’t have to worry about unnecessary code bloat when we add a fancy banner or an alternative text style to a figure. Hopefully, it would encourage us to scope components of the code base so that another user could easily identify which objects are global and which are specific to a single template or module.</p>
    <p>What we need to do here is <strong>group components according to the sort of effect they might have</strong> on the entire system. Atomic design to the rescue!</p>
    <h3>The System</h3>
    <p>Last month, I stumbled upon the wonderful <a href="http://inuitcss.com/" rel="nofollow external" class="bo">Inuit.css</a> framework, which is probably the best place to start learning if you’re unfamiliar with modular design in Sass. After a few moments of playing around, I saw that this is a phenomenal step forward for developers and designers alike. It employs <a href="http://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/" rel="nofollow external" class="bo">BEM’s syntax</a>, <a href="http://coding.smashingmagazine.com/2011/12/12/an-introduction-to-object-oriented-css-oocss/" rel="nofollow external" class="bo">object-oriented CSS</a> (OOCSS) and many aspects of atomic design, which all might seem a little overwhelming at first but is definitely worth going through because you’ll likely see the advantages soon enough.</p>
    <p>The problem I had with Inuit.css was with its naming conventions. What was contained in the <a href="https://github.com/csswizardry/inuit.css/tree/master/base" rel="nofollow external" class="bo">base</a>, <a href="https://github.com/csswizardry/inuit.css/tree/master/generic" rel="nofollow external" class="bo">generic</a> and <a href="https://github.com/csswizardry/inuit.css/tree/master/objects" rel="nofollow external" class="bo">object</a> directories wasn’t entirely obvious. These relationships should be obvious and immediate; developers shouldn’t have to read hundreds of lines of code and tediously experiment in order to be able to fix a bug or add a feature.</p>
    <p>So, I decided to fork my own version and combine these atomic design ideas with the principles of BEM and OOCSS from Inuit. I’ll describe this alternative convention here. Now that we’ve discussed some of the key problems, we can look at how atomic design can help us.</p>
    <h4>The Control Panel</h4>
    <p>First, it’s worth mentioning that we’ll have a style sheet that <a href="http://sass-lang.com/tutorial.html#id1" rel="nofollow external" class="bo">imports</a> all of the Sass partials we’re about to make. Think of this as our control panel, because in the future we won’t want to write all of our code from scratch; for most projects, we’ll just want to set things up quickly and turn an object on or off. All of the partials will be compiled to this file before we convert it to plain old CSS and serve it up to our website. So far, so good.</p>
    <h4>Utilities</h4>
    <p>Atomic design encourages us to first think as vaguely as possible, and then to focus our energy on the smallest pieces later. This means that we need a set of system-wide styles to begin; this directory of Sass files will need to define the foundation; effectively, what’s required is a <strong>set of utilities that make up the basic plumbing</strong> of the website. This directory of partials is also important because we’ll need to define global classes, mixins and styles that can be used anywhere and at any time. Our utilities directory might look something like this:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/08/utilities_mini.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/08/utilities_mini.png" alt="Breakdown of the files within the utilities directory: base-spacing.scss, cleafix.scss, reset.scss" width="500" height="350" style="max-width: 100%; height: auto;"></a></p>
    <p>The code in our reset, clearfix and base-spacing partials have a global impact, changing almost every page, template, element and module. By scoping our code in this way, we can easily find these partials later and hide them when our focus is needed elsewhere.</p>
    <h4>Quarks</h4>
    <p>Next up, we ought to define the basic building blocks of the website, including paragraphs, tables, images and links. Be careful here: We need to <strong>slowly build up to the complexity</strong> that is required so that we don’t step on our own toes later. At this stage, we should still be thinking globally and not styling for any particular section of the design.</p>
    <p>Therefore, this next directory should focus only on default HTML elements. I’ve started to call these components quarks — classless objects that, within the files themselves, contain nothing more than a few elements:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/08/quarks_mini.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/08/quarks_mini.png" alt="Breakdown of the quarks directory: lists.scss, paragraphs.scss etc." width="500" height="350" style="max-width: 100%; height: auto;"></a></p>
    <p>Note that these files contain only the default styles for these elements, not modified elements. For example, if we have a table that looks and works entirely differently from the default tables used throughout the website, it would not be a quark.</p>
    <p>This system might look like overkill at this point. Why do we need a separate partial to style almost every default element individually? My argument is that if we were to combine all of these small pieces together, we would make the files less readable, especially on a large website. Having a substantial number of partials is fine, as long as they’re easy to find and organized properly.</p>
    <p>Quarks are also helpful when we set up a style guide or an elements template page that lists the various default components of a project.</p>
    <h4>Atoms</h4>
    <p>Now we need to start thinking about the relationships between these quarks, and so we start to introduce aspects of BEM and OOCSS. In this system, I’ve called these modules “atoms” — universal abstractions, such as the <a href="http://www.stubbornella.org/?p=497" rel="nofollow external" class="bo">media</a> or <a href="http://csswizardry.com/2013/05/the-flag-object/" rel="nofollow external" class="bo">flag</a> object. For example, we might include a partial that sets the default style for buttons, so that we can plan for those styles to be extended and built upon:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/08/atoms_mini.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/08/atoms_mini.png" alt="Breakdown of the atoms directory: media.scss, buttons.scss etc." width="500" height="350" style="max-width: 100%; height: auto;"></a></p>
    <p>The <strong>styles in an atom should almost never be attached to an HTML element itself</strong>; we might not be able to guarantee what the markup will look like in the future. Specifying a class instead is always safer.</p>
    <p>In this way, atoms will save us from writing hundreds of lines of code and keep things relatively abstract. Just as Brad suggests, this concept is powerful because atoms can be combined to form more complicated structures.</p>
    <h4>Molecules</h4>
    <p>As I mentioned earlier, sometimes we need one-off structures, such as a banner or navigation element or footer, that we don’t intend to replicate. This is where we can combine multiple quarks and atoms, without interfering with any of our global styles:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/08/molecules_mini.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/08/molecules_mini.png" alt="Examples of files from the molecule directory: banner.scss, footer-nav.scss" width="500" height="350" style="max-width: 100%; height: auto;"></a></p>
    <p>A molecule can take advantage of an atom for layout (such as the heading-group molecule, which might manipulate the styles of the heading quark, which lists the styles for <code>h1</code>, <code>h2</code> etc.). But then, within this molecule, we can <strong>extend, modify and combine</strong> other styles and modules.</p>
    <p>So, while atoms and quarks define rigid and clear rules for the system overall, and utilities provide the outlining structural styles necessary to keep things tidy, the molecules are where the design can be more flexible and extend styles out from those central tenets of the system.</p>
    <p>As you can see, quarks, atoms and molecules break up those monster Sass files that I mentioned earlier and make code faster to read and easier to maintain in the long run.</p>
    <h3>We Need To Revise Our Current Best Practices</h3>
    <p>Although the system outlined here is pretty rigid, these are <strong>not die-hard rules</strong>. This is not the only way to organize styles with Sass, and I’m not arguing that it’s a panacea for our front-end woes. I’m simply proposing that we take a good look at the developer interface and try to make things better for everyone.</p>
    <p>This system could even be based on another kind of taxonomy or categorization, completely unrelated to biology or chemistry. But, as you can see, this is more than just a goofy way to name files and directories — rather, it suggests the kinds of relationships between these independent components. Thanks to this system, our code should be much faster to read and organize and, alongside <a href="https://github.com/necolas/idiomatic-css" rel="nofollow external" class="bo">detailed instructions and documentation</a>, enable another Web developer to be up and running in minutes.</p>
    <p>In the past, directories and file names were often poorly designed navigational tools. But if we think long enough about the other interface (the one for developers) and about alternative frameworks and helpful tools to make our code base more human-readable, then we can finally put some of these problems to rest and worry about other more elusive issues.</p>
    <h4>Relevant Talks</h4>
    <ul>
    <li>“<a href="http://vimeo.com/44773888?t=4m" rel="nofollow external" class="bo">Breaking Good Habits</a>,” Harry Roberts, Front-Trends 2012</li>
    <li>“<a href="http://vimeo.com/67476280" rel="nofollow external" class="bo">Atomic Design</a>,” Brad Frost, Beyond Tellerand 2013</li>
    <li>“<a href="http://talks.webstock.org.nz/speakers/nicole-sullivan/css-tools-massive-websites/" rel="nofollow external" class="bo">CSS Tools for Massive Websites</a>,” Nicole Sullivan, Webstock 2011</li>
    </ul>
    <p><em>(al) (ea)</em></p>
    <hr>
    <p><small>© Robin Rendle for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        As front-end developers and designers, we’re constantly refining two interfaces simultaneously: one for visitors who load the website, the other for developers who have to tackle the code...</Summary>
<Website>http://www.smashingmagazine.com/2013/08/02/the-other-interface-atomic-design-with-sass/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33495/guest@my.umbc.edu/27ac5967ce7024f335be0a522d2fca92/api/pixel</TrackingUrl>
<Tag>coding</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</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, 02 Aug 2013 05:25:38 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33496" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33496">
<Title>How to use social media B2B strategies</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="Thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/02/thumbnail37.jpg" width="200" height="160" style="max-width: 100%; height: auto;">With so many social media B2B strategies for your business, the options can sometimes get a bit overwhelming.</p> <p>That is why it is important to state this disclosure. The strategies we discuss below are not nearly as important as your understanding of your target market. You have to know your target market. Are they hip, technology-savvy entrepreneurs who read blog posts in the morning while downing coffee like an IV infusion? Or, are your clients busy professionals who have no time for this gosh-darn new technology? Maybe you have a mix.</p> <p>Do not make a decision based on which strategy looks easiest. Instead, choose a strategy that resonates with your target market. Below are some social media B2B strategies that will simplify the process for your online marketing.</p> <h1>LinkedIn</h1> <p>You might have heard recently that LinkedIn surpassed 200 Million members on their site. What you probably are not aware of is that close to 30% of those members are in the United States.</p> <p>More impressive is that every Fortune 500 company has an executive using the site for everything from hiring to networking to re-connecting with past colleagues and associates. If you want a way to connect with the some of the top executives in the country, this is a great in.</p> <p>So, how do you tap into this social network?</p> <p>Be active on the site. Start using the group feature to connect with targeted professionals in your niche.</p> <p>Participate in the group discussions, so you can start building a name for yourself on the groups. You can join up to 50 groups, but most professionals will see that there is no reason to join more than a dozen or so groups when they start.</p> <p>Finally, do something that is utter nonsense to some. Stay in touch with your contacts. I know right, crazy! However, LinkedIn works similar to offline networking. The more you keep your name in front of someone and deliver value, the greater the likelihood of you building your business.</p> <p>If you need some additional help with your LinkedIn lead generation, check out this post: <a href="http://growmap.com/linkedin-lead-generation/" rel="nofollow external" class="bo">http://growmap.com/linkedin-lead-generation/</a></p> <p> </p> <h1>Blogging</h1> <p>If LinkedIn is not enough then you might want to consider blogging. With the right mix you can tap search and social media traffic for large, long-term success.</p> <p>I am a big fan of blogging. It is a huge traffic and lead generator. However, it is also a huge time suck. Most blogs do not start gaining traction until they have been around for at least 6 months or longer.</p> <p>Keeping this in mind, we need a strategy to increase your chances of success without wasting your time.</p> <p>The most important aspect of blogging is that you need to be consistent. Google wants to see you are posting regularly before they send traffic your way. The more content you provide, the more opportunities for readers to see your call to action, see the value you provide them with, and give them ideas of the services you provide.</p> <p>Writing great content is only half the battle. Once you write a great blog post, you need to let people know about your content. This means sharing your content on social media, and when possible emailing your post to your list. Over time, you will start getting search traffic, however, this should not be a part of your initial traffic. If it happens, call it a bonus.</p> <p>One of the best tools you can use for blogging is WordPress. They have convenient social media sharing buttons, plus SEO plugins to make your job a lot easier.</p> <p> </p> <h1>Webinars</h1> <p>When done right, webinars can be an extremely powerful tool to drive qualified prospects to your business. Also, unlike blogs and LinkedIn where you have a limited time to entice your audience to act, webinars are remarkable for their ability to provide quality content, and sell to your clients.</p> <p>The best way to rock your webinar is to provide quality information that knocks the socks off your attendees. The more the attendees, the more clients you will see rolling your way.</p> <p>The easiest way to drive traffic to a webinar is to offer a free webinar to your new LinkedIn connections, and post the information on your blog for all of your readers to see how they can attend your next webinar. The more you spread the word about your webinar, the more opportunities you will have.</p> <p>A cool new resource for finding webinar attendees is Dabble.Co. While they max out your price for classes at $20, they can help you easily bring new attendees to events on a regular basis.</p> <p>In addition, webinars are a great way to integrate your offline efforts. If you do a lot of sales calls or networking, asking people to go to your free webinar is a much better sales funnel than selling people immediately.</p> <p> </p> <p>The social media strategies listed above are just a few that you can use to connect with your target market. Do not get tied up on the platform. Instead, focus on what is best for connecting with your clients.</p> <p> </p> <p><em><strong>Which social media B2B strategies do you use? Which have you found most effective? Let us know in the comments.</strong></em></p> <p><em>Featured image/thumbnail, <a href="http://www.shutterstock.com/pic-91523222/stock-photo-happy-group-of-finger-smileys-with-social-chat-sign-and-speech-bubbles-fingers-representing-a.html" rel="nofollow external" class="bo">social media image</a> via Shutterstock.</em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/web-design-sales-kit.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Web Design Sales Kit – 45 Video Lessons – only $47!</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="How to use social media B2B strategies" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/08/how-to-use-social-media-b2b-strategies/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Fhow-to-use-social-media-b2b-strategies%2F&amp;t=How+to+use+social+media+B2B+strategies" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Fhow-to-use-social-media-b2b-strategies%2F&amp;t=How+to+use+social+media+B2B+strategies" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Fhow-to-use-social-media-b2b-strategies%2F&amp;t=How+to+use+social+media+B2B+strategies" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Fhow-to-use-social-media-b2b-strategies%2F&amp;t=How+to+use+social+media+B2B+strategies" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Fhow-to-use-social-media-b2b-strategies%2F&amp;t=How+to+use+social+media+B2B+strategies" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/172487648453/u/49/f/661066/c/35285/s/2f780b4e/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487648453/u/49/f/661066/c/35285/s/2f780b4e/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>With so many social media B2B strategies for your business, the options can sometimes get a bit overwhelming.   That is why it is important to state this disclosure. The strategies we discuss...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/2f780b4e/sc/4/l/0L0Swebdesignerdepot0N0C20A130C0A80Chow0Eto0Euse0Esocial0Emedia0Eb2b0Estrategies0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33496/guest@my.umbc.edu/8769623b972c10c2942496f62154e41b/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>blogging-for-clients</Tag>
<Tag>building-a-client-list</Tag>
<Tag>business</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>linkedin</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>social-media</Tag>
<Tag>sql</Tag>
<Tag>webinars-and-clients</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, 02 Aug 2013 05:15:05 -0400</PostedAt>
<EditAt>Fri, 02 Aug 2013 05:15:05 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33491" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33491">
<Title>Bits Blog: LinkedIn&#8217;s Profits Soar as User Growth Accelerates</Title>
<Body>
<![CDATA[
    <div class="html-content">LinkedIn reported strong growth in revenue, profits and new subscribers for the second quarter, sending its shares up sharply in after-hours trading on Thursday.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F01%2Flinkedins-profits-soar-as-user-growth-accelerates%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+LinkedIn%E2%80%99s+Profits+Soar+as+User+Growth+Accelerates" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F01%2Flinkedins-profits-soar-as-user-growth-accelerates%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+LinkedIn%E2%80%99s+Profits+Soar+as+User+Growth+Accelerates" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F01%2Flinkedins-profits-soar-as-user-growth-accelerates%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+LinkedIn%E2%80%99s+Profits+Soar+as+User+Growth+Accelerates" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F01%2Flinkedins-profits-soar-as-user-growth-accelerates%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+LinkedIn%E2%80%99s+Profits+Soar+as+User+Growth+Accelerates" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F01%2Flinkedins-profits-soar-as-user-growth-accelerates%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+LinkedIn%E2%80%99s+Profits+Soar+as+User+Growth+Accelerates" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/172487607978/u/0/f/640387/c/34625/s/2f747be3/kg/342/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487607978/u/0/f/640387/c/34625/s/2f747be3/kg/342/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>LinkedIn reported strong growth in revenue, profits and new subscribers for the second quarter, sending its shares up sharply in after-hours trading on Thursday.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/08/01/linkedins-profits-soar-as-user-growth-accelerates/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33491/guest@my.umbc.edu/eb91c02f1285d4c31006e6c709e88383/api/pixel</TrackingUrl>
<Tag>company-reports</Tag>
<Tag>enterprise-computing</Tag>
<Tag>linkedin-corporation</Tag>
<Tag>new</Tag>
<Tag>social</Tag>
<Tag>social-media</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>Thu, 01 Aug 2013 20:53:39 -0400</PostedAt>
<EditAt>Fri, 02 Aug 2013 12:10:48 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="34572" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34572">
<Title>The Long Wait</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>How did you get started with programming?<br>
    I started programming in the beginning of January 2013. I'm originally from Brazil and got married in November to my American girlfriend. During the paperwork process I couldn't work or study so it was the perfect time to learn to code. </p>
    
    <p>Learning JavaScript and Python on Codecademy gave me the confidence to start learning Android programming. I started working on my application in April. </p>
    
    <p>As my first project I decided to do a formula calculator. It's a calculator that allows the user to solve math formulas quickly and even has a few different color-themes. I released the free app in Google Play store in the beginning of June. </p>
    
    <p>How did you make the jump from Codecademy to building real life applications?<br>
    The jump was hard. Especially when I started using a code editor and had to compile code. When I started reading documentation and seeing guides online I realized that besides some small differences the code structure was always the same. All the programming languages have logical iterations, loops and variables.</p>
    
    <p>Sometimes if I felt overwhelmed reading API documentation I would go back to lessons on Codecademy and refresh my memory. The courage to move ahead came from these lessons. In the exercises you basically build a program, a small cash register, a game and so forth. I realized if I was able to understand the logic and create it within the exercise, building a bigger software would just take a little more time. </p>
    
    <p>What are your future plans for coding?</p>
    
    <p>I will keep improving my app during college or every time I learn something new and exciting that I can add to it! </p>
    
    <p>I already added two more sections on my app since the release. I also want to listen to the suggestions my users have.</p>
    
    <p>How do you see Codecademy fitting together with other learning methods? </p>
    
    <p>I will be starting a degree in Computer Science at Oklahoma State University next fall. I see Codecademy fitting very well on my CS degree, as it allows me to get a quick access to learning a specific language or an API. I am also founding a Google Developer Group in my city to bring together experienced coders and beginners. One of my coworkers already joined my group. I recommended Codecademy to him and he is loving it! </p>
    
    <p>What is your advice for someone just getting started on coding? <br>
    Don't ever give up and don't get intimidated by how big or complex some programs are. Everyone started with writing "Hello World". Start with a small project. Once you're done, try to think how to improve it. Some of the most important lessons I've learned happened when I was reusing code, or adding features to an already finished project. </p>
    </div>
]]>
</Body>
<Summary>How did you get started with programming?  I started programming in the beginning of January 2013. I'm originally from Brazil and got married in November to my American girlfriend. During the...</Summary>
<Website>http://www.codecademy.com/blog/107-the-long-wait</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34572/guest@my.umbc.edu/b774ab264ebc2e76f19d611966d8560d/api/pixel</TrackingUrl>
<Tag>academy</Tag>
<Tag>code</Tag>
<Tag>codecademy</Tag>
<Tag>learning</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, 01 Aug 2013 18:43:05 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33488" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33488">
<Title>Bits Blog: Flares in Canada at the Thought of Verizon</Title>
<Body>
<![CDATA[
    <div class="html-content">Prominent ads have appeared across the country over the last few weeks denouncing any possible incursion by Verizon.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F01%2Fflares-in-canada-at-the-thought-of-verizon%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Flares+in+Canada+at+the+Thought+of+Verizon" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F01%2Fflares-in-canada-at-the-thought-of-verizon%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Flares+in+Canada+at+the+Thought+of+Verizon" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F01%2Fflares-in-canada-at-the-thought-of-verizon%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Flares+in+Canada+at+the+Thought+of+Verizon" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F01%2Fflares-in-canada-at-the-thought-of-verizon%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Flares+in+Canada+at+the+Thought+of+Verizon" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F01%2Fflares-in-canada-at-the-thought-of-verizon%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Flares+in+Canada+at+the+Thought+of+Verizon" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/172487659266/u/0/f/640387/c/34625/s/2f73cbb4/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487659266/u/0/f/640387/c/34625/s/2f73cbb4/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Prominent ads have appeared across the country over the last few weeks denouncing any possible incursion by Verizon.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/08/01/flares-in-canada-at-the-thought-of-verizon/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33488/guest@my.umbc.edu/558e8151fb190c16c5095b1e7e89a90f/api/pixel</TrackingUrl>
<Tag>canada</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>telephones-and-telecommunications</Tag>
<Tag>verizon-communications-inc</Tag>
<Tag>verizon-communications-inc-vz-nyse</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, 01 Aug 2013 18:37:46 -0400</PostedAt>
<EditAt>Fri, 02 Aug 2013 11:50:32 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33483" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33483">
<Title>Fall 2013 Important Dates and Information</Title>
<Tagline>Come with a Smile and we will teach you the rest!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><span>Involvement Fest: September 4th 12-3pm on the Quad</span></p>
    <p><span>Interest Meeting: Wednesday September 11th  12-1pm  Commons 329</span></p>
    <span>Fall Tryouts, Day 1 (Learn) Tuesday September 17th  6-8pm  UC 310<br>                     Day 2 (Perform) TBA<br><br>Fall Practice times:<br>          -Tuesday and Thursday evenings (6-8pm or 7-9pm) <br>          -One day will be on campus and one will be at an off campus gym to practice stunting and tumbling<br></span>
    </div>
]]>
</Body>
<Summary>Involvement Fest: September 4th 12-3pm on the Quad  Interest Meeting: Wednesday September 11th  12-1pm  Commons 329 Fall Tryouts, Day 1 (Learn) Tuesday September 17th  6-8pm  UC 310...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33483/guest@my.umbc.edu/791ab7a8271cb21710d7e0d744fe6dee/api/pixel</TrackingUrl>
<Tag>cheer</Tag>
<Tag>cheerleading</Tag>
<Tag>club</Tag>
<Group token="retired-655">UMBC Spirit Club</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-655</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/images/avatars/group/2/xsmall.png?1784205622</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/2/original.png?1784205622</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/2/xxlarge.png?1784205622</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/images/avatars/group/2/xlarge.png?1784205622</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/2/large.png?1784205622</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/2/medium.png?1784205622</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/2/small.png?1784205622</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/images/avatars/group/2/xsmall.png?1784205622</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/images/avatars/group/2/xxsmall.png?1784205622</AvatarUrl>
<Sponsor>UMBC Club Cheerleading Team</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/033/483/ae5ef52da81b8f483ac166475587ad87/xxlarge.jpg?1375392345</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/033/483/ae5ef52da81b8f483ac166475587ad87/xlarge.jpg?1375392345</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/033/483/ae5ef52da81b8f483ac166475587ad87/large.jpg?1375392345</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/033/483/ae5ef52da81b8f483ac166475587ad87/medium.jpg?1375392345</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/033/483/ae5ef52da81b8f483ac166475587ad87/small.jpg?1375392345</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/033/483/ae5ef52da81b8f483ac166475587ad87/xsmall.jpg?1375392345</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/033/483/ae5ef52da81b8f483ac166475587ad87/xxsmall.jpg?1375392345</ThumbnailUrl>
<PawCount>5</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 01 Aug 2013 17:26:34 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33487" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33487">
<Title>Web Ads Used to Launch Online Attacks</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Researchers show how easy it is to hide code in online ads that can turn people into an online attack squad.</p>
    <p>Online advertising networks could be used to enlist millions of unsuspecting Web surfers in attacks on other websites, a demonstration at the <a href="http://www.blackhat.com/us-13/" rel="nofollow external" class="bo">Black Hat security conference</a> in Las Vegas showed on Wednesday.</p>
    </div>
]]>
</Body>
<Summary>Researchers show how easy it is to hide code in online ads that can turn people into an online attack squad.  Online advertising networks could be used to enlist millions of unsuspecting Web...</Summary>
<Website>http://www.technologyreview.com/news/517751/web-ads-used-to-launch-online-attacks/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33487/guest@my.umbc.edu/f758a355a0ca52f2cbc054e5777a8a27/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>Thu, 01 Aug 2013 17:06:17 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33482" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33482">
<Title>PAID Sustainability Outreach Internship Opportunity @ OCSS</Title>
<Tagline>Fall 2013 semester</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <h1>PAID Sustainability Outreach Internship Opportunity @ OCSS</h1>
    <div>Fall 2013 semester</div>
    <p> </p>
    <div><div><div><div>
    <p><span>Off-Campus<br> Student Services is looking for an intern to promote, support, and raise awareness about sustainability as it relates to commuter students.<br> The intern will assist in the design and delivery of social and educational events related to alternative transportation (e.g., UMBC Transit Shuttles, MTA public transportation, carpooling, zipcar, etc.) and other "green" options.  <br></span></p>
    <p>QUALIFICATIONS:</p>
    <ul>
    <li>Majors: Geography, Environmental Science, Public Policy, Political Science, <br>Environmental Engineering and Sustainability, STEM Education, or a <br>related field</li>
    <li>2.5 GPA</li>
    <li>Sophomore, Junior, or Senior standing</li>
    <li>Passion for sustainability</li>
    <li>Knowledge of advertising through social media</li>
    <li>Experience planning and promoting social and/or educational events is preferred.</li>
    </ul>
    <p>BENEFITS:</p>
    <ul>
    <li>$900 Stipend</li>
    <li>Transcript notation and academic credit</li>
    <li>Participation in social events hosted by OCSS</li>
    <li>Attendance at professional development seminars and events related to sustainability</li>
    <li>Experience creating and facilitating instructional programs in a professional environment</li>
    <li>Professional networking opportunities through coordinating with various UMBC departments, campus members, and student leaders</li>
    <li>Learn professional skills useful for future employment</li>
    <li>A flexible work schedule that compliments your class schedule</li>
    </ul>
    <p>To apply, you need to have your resume reviewed and approved by a Coordinator at The Shriver Center. Please call their front desk at <a rel="nofollow external" class="bo">410-455-2493</a> for an appointment or contact <a href="mailto:shrivercenter@umbc.edu" rel="nofollow external" class="bo"><u>shrivercenter@umbc.edu</u></a>,<a href="mailto:umbcworks@umbc.edu" rel="nofollow external" class="bo"><u> umbcwor</u></a><a href="mailto:ks@umbc.edu" rel="nofollow external" class="bo"><u>ks@umbc.edu</u></a> for more information. The internship listing can be found at UMBCworks (ID#: 9259655). The deadline to submit your resume, cover letter, and unofficial transcript(s) is <span><span>August 20, 2013</span></span>.<br><br>If you have any questions, please email Jessica Sadler, OCSS graduate assistant @ <a href="mailto:jsadler1@umbc.edu" rel="nofollow external" class="bo"><u>jsadler1@umbc.edu</u></a>.</p>
    </div></div></div></div>
    </div>
]]>
</Body>
<Summary>PAID Sustainability Outreach Internship Opportunity @ OCSS  Fall 2013 semester         Off-Campus  Student Services is looking for an intern to promote, support, and raise awareness about...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33482/guest@my.umbc.edu/28d49821d85f39b872598d7951d5d1f1/api/pixel</TrackingUrl>
<Group token="sustainability">Sustainability Matters at UMBC</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/sustainability</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xsmall.png?1586269437</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/original.png?1586269437</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xxlarge.png?1586269437</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xlarge.png?1586269437</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/large.png?1586269437</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/medium.png?1586269437</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/small.png?1586269437</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xsmall.png?1586269437</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xxsmall.png?1586269437</AvatarUrl>
<Sponsor>UMBC Sustainability</Sponsor>
<PawCount>3</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 01 Aug 2013 16:53:41 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33490" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33490">
<Title>Motorola Reveals First Google-Era Phone, the Moto X</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>The Moto X lowers the emphasis on manual control in favor of always-on sensors built to respond to speech, gestures, and context.</p>
    <p>Google-owned Motorola unveiled the <a href="http://www.motorola.com/us/consumers/Moto-X/moto-x,en_US,pg.html" rel="nofollow external" class="bo">Moto X</a>, its new flagship smartphone, in New York City today. The Moto X deëmphasizes manual control, hardware buttons, and the touch screen in favor of always-on sensors built to respond to speech, gestures, and context. And customers will be able to customize many features of the device when they order it.</p>
    </div>
]]>
</Body>
<Summary>The Moto X lowers the emphasis on manual control in favor of always-on sensors built to respond to speech, gestures, and context.  Google-owned Motorola unveiled the Moto X, its new flagship...</Summary>
<Website>http://www.technologyreview.com/news/517676/motorola-reveals-first-google-era-phone-the-moto-x/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33490/guest@my.umbc.edu/5de4cbf7104a91ba9c1fee999edc7c27/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>Thu, 01 Aug 2013 16:52:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33485" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33485">
<Title>W3C Highlights - August 2013</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>Today, W3C published <a href="http://www.w3.org/2013/08/w3c-highlights/" rel="nofollow external" class="bo">W3C Highlights - August 2013</a>, a survey of select recent work and upcoming priorities. The report includes: progress and work ahead in making the Open Web Platform 
    a success on mobile devices, news in Web for All areas like accessibility
    and internationalization, how W3C is collaborating more closely with various industries that are being
    transformed by the Web, liaison updates, and new opportunities for more people to get involved in W3C.</p></div>
]]>
</Body>
<Summary>Today, W3C published W3C Highlights - August 2013, a survey of select recent work and upcoming priorities. The report includes: progress and work ahead in making the Open Web Platform  a success...</Summary>
<Website>http://www.w3.org/News/2013.html#entry-9910</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33485/guest@my.umbc.edu/72715c55abc65b5057785621309cd861/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>sql</Tag>
<Tag>w3</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>Thu, 01 Aug 2013 16:30:48 -0400</PostedAt>
</NewsItem>

</News>
