<?xml version="1.0"?>
<News hasArchived="true" page="7779" pageCount="10787" pageSize="10" timestamp="Wed, 02 Sep 2026 19:19:58 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7779&amp;range=2">
<NewsItem contentIssues="true" id="41863" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41863">
<Title>Check Out Atom, GitHub's New Development Editor</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>It's been awhile since we've seen any updates in the editor space. The last big splash was made by <a href="http://www.sublimetext.com/" rel="nofollow external" class="bo">Sublime Text</a> which took the web development community by storm, especially once <a href="https://sublime.wbond.net/" rel="nofollow external" class="bo">Package Control</a> came around to serve as the package manager for the editor.</p>
    <p></p>
    <p>Well, GitHub is looking to shake things up with the beta launch of a new editor called <a href="https://atom.io/" rel="nofollow external" class="bo">Atom</a>. I got my hands on a beta and wanted to give you a rundown of what it offers. One thing to note is that the documentation is a bit sparse, so it was tough trying to determine what every feature did, but I'll be touching on the important aspects below.</p>
    <h2>A Hackable Text Editor for the 21st Century</h2>
    <p>The first thing to keep in mind is that this is a beta version; things are going to change and some things aren't going to be in this release. For example, I didn't find a way to create a project out of a directory, which is kind of important to me. It's not ideal, but I'm also being realistic about the status of the product.</p>
    <p>The next thing to bring up is that this editor was created completely with web technology. For example, the underlying architecture relies on Chromium (yes the basis for Google Chrome), making every window a locally-rendered web page. Why didn't they just build it as a browser-based IDE like Cloud9IDE? Because, despite a lot of progress in file APIs for the browser, there are still limitations in terms of file system access, so building it as a desktop app made a lot of sense.</p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-developer-tools.png" alt="atom-developer-tools" width="600" height="456" style="max-width: 100%; height: auto;"><br>
    
    <p>Yep, that's the Chromium Developer Tools running within the editor and I'm highlighting an element with it. It's pretty freaky to be able to modify the code within my editor with the Chrome DevTools, but it goes to show that the underlying engine is web-based.</p>
    <p>They also leveraged Node.js to allow for file system access and provide tremendous flexibility and extensibility in their packaging system basically making Atom highly customizable and giving it incredible access to a ton of npms.</p>
    <p>Ultimately, this statement explains best why they leveraged web technologies:</p>
    <blockquote>
    <p>With the entire industry pushing web technology forward, we're confident that we're building Atom on fertile ground. Native UI technologies come and go, but the web is a standard that can only becomes more capable and ubiquitous with every passing year. We're excited to dig deeper into its toolbox.</p>
    </blockquote>
    <p>When you first drop into Atom, it looks strikingly similar to Sublime, making it easy from a visual perspective to slide into it. </p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-full.png" alt="atom-full" width="600" height="453" style="max-width: 100%; height: auto;"><br>
    
    <p>One of the first things I wanted to check was language support. While I primarily work in JavaScript, I have a burning desire to get into Ruby on Rails so ensuring broad language support. Not only does it support Ruby syntax but also the Rails framework along with: </p>
    <ul>
    <li>Python</li>
    <li>CoffeeScript </li>
    <li>Go</li>
    <li>Sass</li>
    <li>YAML</li>
    </ul>
    <p>and a ton of others. </p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-languages.png" alt="atom-languages" width="501" height="372" style="max-width: 100%; height: auto;"><br>
    
    <p>The breadth of coverage is very comprehensive and on par with any editor I've seen.</p>
    <p>But it's more than just supporting languages. Atom also supports syntax shortcuts (called snippets) that allow you to quickly create code blocks with minimal typing. </p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-js.png" alt="atom-js" width="600" height="559" style="max-width: 100%; height: auto;"><br>
    
    <p>For example, if I type in <code>ife</code> followed by a <strong>tab</strong>, I'll get the following:</p>
    <pre>if (true) {&#x000A;    &#x000A;    } else {&#x000A;    &#x000A;    }</pre>
    <p>And simply typing in a lower case <em>"f"</em> followed by a <strong>tab</strong> gives me a skeleton for an anonymous function:</p>
    <pre>function () {&#x000A;    &#x000A;    }</pre>
    <p>Products like TextExpander and other editors have done these for some time, so it's good to see GitHub including it day one.</p>
    <h2>It's Customizable</h2>
    <p>One of the things that still irks me about Sublime (even v3), is that many of the configuration settings need to be adjusted manually. In Atom, it looks like all settings are available and customizable via a settings panel, giving you the ability to update things such as:</p>
    <ul>
    <li>Font family and size</li>
    <li>Line numbers</li>
    <li>Themes</li>
    <li>Packages</li>
    </ul>
    <p>As well as easily disable packages that you've installed.</p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-settings.png" alt="atom-settings" width="600" height="491" style="max-width: 100%; height: auto;"><br>
    
    <p>Personalizing an editor is one of the first things any program does, especially the theme since it's what you'll look at every day. Atom comes with five themes by default, in both light and dark variations, but via it's packages manager, you can add more to suit your taste:</p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-themes.png" alt="atom-themes" width="600" height="248" style="max-width: 100%; height: auto;"><br>
    
    <p>I was happy to see the "Monokai" theme in there since it's my personal favorite.</p>
    <p>Now, remember how I mentioned previously that you had access to the developer tools and that Atom editor windows are basically rendered web pages? Well, what this means is that you have a ton of flexibility in customizing the look and feel of things, because you're able to inspect DOM nodes and see what styles have been applied to them. Atom allows you to define your own styles in a LESS stylesheet called <code>styles.less</code>, giving you really granular control over the look of specific types of elements. Getting to the stylesheet is as simple as going to <strong>Atom &gt; Open Your Stylesheet</strong> and making your changes in the appropriate section.</p>
    <pre>.editor {&#x000A;    &#x000A;      .meta.tag.sgml.doctype.html { font-size: 26px; }&#x000A;    &#x000A;    }</pre>
    <p>In this case, I updated the <code>.editor</code> class by adding the classes that define how the <code>DOCTYPE</code> of a file will look inside the editor. I made the font size <code>26px</code> to be purposely large. The following image shows how this update affected the rendering of my HTML code:</p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-less.png" alt="atom-less" width="441" height="173" style="max-width: 100%; height: auto;"><br>
    
    <p>As you can see, you can <em>really</em> dig deep into Atom and customize it to your heart's content since it's basically HTML and DOM under the hood.</p>
    <p>Along with being able to install new themes, Atom also provides a built-in package manager that allows you to extend the functionality of the editor. This is analogous to Sublime Package Control, except it's already baked into the editor itself as opposed to being forced to install a separate script to get it.</p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-packages.png" alt="atom-packages" width="600" height="346" style="max-width: 100%; height: auto;"><br>
    
    <p>Installing a package is as easy as clicking the <strong>Install</strong> button. The editor provides a list of "featured" packages along with a search functionality that pulls from the main package registry.</p>
    <p>If you want to do this via the command-line, Atom provides a CLI for it called <code>apm</code> (Atom Package Manager) that allows you to install any package with the following command:</p>
    <pre>apm install &lt;package name&gt;</pre>
    <p>So installing the <em><a href="https://atom.io/packages/autocomplete" rel="nofollow external" class="bo">autocomplete</a></em> package would look like this:</p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-apm-install.png" alt="atom-apm-install" width="585" height="451" style="max-width: 100%; height: auto;"><br>
    
    <p>Currently, the <a href="https://atom.io/packages" rel="nofollow external" class="bo">number of packages available</a> is small, but that's to be expected at this stage. </p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-packages-registry.png" alt="atom-packages-registry" width="600" height="446" style="max-width: 100%; height: auto;"><br>
    
    <p>You'll be able to find great packages though for things like:</p>
    <ul>
    <li><a href="https://atom.io/packages/markdown-preview" rel="nofollow external" class="bo">Previewing Markdown</a></li>
    <li><a href="https://atom.io/packages/go-to-line" rel="nofollow external" class="bo">Going to a specific line</a></li>
    <li>
    <a href="https://atom.io/packages/autosave" rel="nofollow external" class="bo">Autosave</a> when your editor goes out of focus</li>
    </ul>
    <p>And many more. I can't imagine it'll be long before GitHub recruits all of the Sublime package creators to port their work over. In fact, there's already documentation showing how you can <a href="https://atom.io/docs/v0.60.0/converting-a-text-mate-bundle" rel="nofollow external" class="bo">convert your TextMate Bundle over to Atom</a>. Since many TextMate Bundles are compatible with Sublime, it seems conceivable that some Sublime packages <em>may</em> be able to be converted over, but don't hold me to that since I haven't tested it out myself.</p>
    <p>This is also a good opportunity for <a href="https://atom.io/docs/v0.60.0/contributing" rel="nofollow external" class="bo">contributors</a> to jump in and <a href="https://atom.io/docs/v0.60.0/creating-a-package" rel="nofollow external" class="bo">offer up new packages</a>. While Atom has most of the basics, it's missing some important ones, like linters and syntax highlighters. That's a void that needs to be filled and I can imagine it happening in short order.</p>
    <p>Key bindings are also customizable using the local <code>~/.atom/keymap.cson</code>. You can open this file manually or by going to the <strong>Atom &gt; Open Your Keymap</strong> menu option. Opening the file will show you some examples of how to edit the key bindings. </p>
    <p>The one key binding you'll need to remember is <strong>Command-Shift-P</strong>, which pops up the command palette and displays all of the possible key bindings with associated functionality. </p>
    
    <img src="https://cdn.tutsplus.com/net/uploads/2014/02/atom-command-palette.png" alt="atom-command-palette" width="501" height="371" style="max-width: 100%; height: auto;"><br>
    
    <p>The <a href="https://atom.io/docs/v0.60.0/getting-started" rel="nofollow external" class="bo">Getting Started</a> guide offers you some basic guidance on how to use Atom and is worth the read. But just know that the project site is a bit sparse on documentation right now, so some of the editor's capabilities you'll have to learn by trial and error.</p>
    <h2>Stacking Up Against Other Editors</h2>
    <p>Many of you are probably asking how it stacks up against your favorite editor. Since Sublime is my personal choice, I can say that Atom is a fairly decent beta product, but not something I'd switch to immediately. Sublime's built-in functionality plus extensive package ecosystem makes it a very mature editor to work with.</p>
    <p>Having said that, Atom is backed by GitHub and that holds a ton of weight. There's major geek cred there and I'm pretty confident we're going to see a major run on new packages, especially considering the extensibility that Atom provides via Chromium and Node.</p>
    <p>For now, GitHub is offering Atom free during the beta period, giving developers a chance to tinker with it and get their hands dirty. If they can keep pricing competitive and rapidly build up the package ecosystem, I think Atom will end up being my new editor of choice.</p>
    </div>
]]>
</Body>
<Summary>It's been awhile since we've seen any updates in the editor space. The last big splash was made by Sublime Text which took the web development community by storm, especially once Package Control...</Summary>
<Website>http://code.tutsplus.com/tutorials/check-out-atom-githubs-new-development-editor--net-37030</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41863/guest@my.umbc.edu/7079cb799623422075c3aae410f5c460/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>Thu, 27 Feb 2014 09:00:58 -0500</PostedAt>
<EditAt>Thu, 27 Feb 2014 09:00:54 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="41860" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41860">
<Title>Interview with Michael Sabo of DB Networks</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h4>Interview with Michael Sabo of DB Networks</h4>
    <br><br><div>
    <span></span><div>Interview with Michael Sabo of DB Networks<br><span>Read more at <a href="http://www.virtual-strategy.com/2014/02/25/interview-michael-sabo-db-networks#HWpJsod5OT5fbHCD.99" rel="nofollow external" class="bo">http://www.virtual-strategy.com/2014/02/25/interview-michael-sabo-db-networks#HWpJsod5OT5fbHCD.99</a></span>
    </div>
    </div>
    </div>
]]>
</Body>
<Summary>Interview with Michael Sabo of DB Networks     Interview with Michael Sabo of DB Networks Read more at...</Summary>
<Website>http://www.virtual-strategy.com/2014/02/25/interview-michael-sabo-db-networks</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41860/guest@my.umbc.edu/eaad44f0afaa6752ce0bbc0df2ac1491/api/pixel</TrackingUrl>
<Group token="bwtech">bwtech@UMBC Research and Technology Park</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bwtech</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/original.png?1760034935</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/large.png?1760034935</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/medium.png?1760034935</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/small.png?1760034935</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxsmall.png?1760034935</AvatarUrl>
<Sponsor>bwtech@UMBC</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 27 Feb 2014 08:49:19 -0500</PostedAt>
<EditAt>Thu, 27 Feb 2014 08:49:30 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="41859" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41859">
<Title>CyberHive in UMBC Magazine</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h1>Rooms To Grow</h1>
    <h4><strong>UMBC alumni, professors and students find new spaces and places for innovation.</strong></h4>
    <p><em>Photography by Marlayna Demond ’11</em></p>
    <p>* * * *</p>
    <p><em>Much of the journey of creation takes place in the space of the 
    human mind. Yet that journey is not a solitary one. Intellects require 
    companionship. Great ideas spark new approaches – and more new ideas – 
    when they are tested by conversation and forged in collaboration. And 
    those combinations require spaces to encourage and enhance their work.</em></p>
    <p><em>A research university such as UMBC excels in creating such 
    spaces. Not only do its professors and students create them on (or 
    nearby) the campus, but the university’s alumni carry that spirit of 
    exploration into our community.</em></p>
    <p><em>We invite you to take a closer looks at these spaces where the 
    next great ideas in numerous disciplines are being developed or taught 
    right now by members of the UMBC community.</em></p>
    <p><br></p>
    <h3>THE CYBER HIVE</h3>
    <p><a href="http://umbcmagazine.files.wordpress.com/2014/02/w14-cyberhive.jpg" rel="nofollow external" class="bo"><img alt="cyberhive" src="http://umbcmagazine.files.wordpress.com/2014/02/w14-cyberhive.jpg?w=705&amp;h=470" height="208" width="313" style="max-width: 100%; height: auto;"></a><br></p>
    <p>Proximity. Potentiality. Coffee.</p>
    <p>This morning, you can almost hear the first two qualities over the 
    hiss of the coffeemaker as the employees of Integrata Security watch a 
    presentation by their CEO, Mike Geppi in the CyberHive – a joint project
     between bwtech@UMBC, the Maryland Department of Business and Economic 
    Development, Corporate Office Properties Trust (COPT) and Merritt 
    Properties.</p>
    <p>The Cyber Hive is a collaborative space with four tenants (including 
    Integrata Security) and six affiliates. Tenants have dedicated office 
    space and access to the common areas, while affiliates have access to 
    the common areas. “It’s very high tech,” says Geppi.</p>
    <p>Integrata Security is developing technology for secure wireless 
    networks. The National Security Agency (NSA) was interested in how to 
    make wireless networks secure, and after a survey of commercially 
    available solutions, the agency determined that none was secure enough. 
    So the NSA invented a new technology, which Integrata has licensed and 
    is developing for commercial and government use.</p>
    <p>For Geppi, part of the CyberHive’s allure is its location. “Being 
    close to the NSA is fantastic,” he says. “Not only is the location of 
    the CyberHive great but we also have access to the talent on the UMBC 
    campus.”</p>
    <p>Ellen Hemmerly, president and executive director of bwtech@UMBC, says
     that combination was just what she and her team had in mind with the 
    venture, which will further boost the research park’s already burgeoning
     presence in the cybertechnology field.</p>
    <p>“It adds to our cyber program at bwtech@UMBC by providing co-working 
    space and meeting space that will facilitate the growing of our 
    affiliate program, which houses cybersecurity companies that don’t need a
     dedicated office space,” she says “We also hope it will facilitate 
    partnerships between cyber companies, UMBC faculty and students.”</p>
    <p>Geppi says the design of the Cyber Hive makes it a naturally 
    collaborative environment. “We do interact with other companies and 
    that’s a real benefit. Having startups talk with each other. It 
    typically leads to opportunity. We can develop strategic partnerships or
     find customers. Some of the entrepreneurs here are going through the 
    exact same thing I’m going through and it’s good to be able to compare 
    notes.”</p>
    <p>While Geppi meets with his team, Tyler Simon and John Linford meet in
     a private office.  They are both research scientists for Paratools, a 
    software engineering firm.  Simon, who is also a research scientist in 
    the computer science and electrical engineering department at UMBC, 
    agrees with Geppi about the Cyber Hive’s possibilities for 
    collaboration.</p>
    <p>“People are more likely to collaborate because they just walk by,” 
    Simon observes. “It’s better than just a bunch of closed offices.”</p>
    <p>Linford concurs: “It’s the first incubator I’ve been in that has that feature.”</p>
    <p><em>– Nicole Ruediger</em></p>
    <p><em>For more information about the Cyber Hive: <a href="http://www.bwtechumbc.com/pdf/cyberhive.pdf" rel="nofollow external" class="bo">http://www.bwtechumbc.com/pdf/cyberhive.pdf</a></em></p>
    </div>
]]>
</Body>
<Summary>Rooms To Grow  UMBC alumni, professors and students find new spaces and places for innovation.   Photography by Marlayna Demond ’11   * * * *   Much of the journey of creation takes place in the...</Summary>
<Website>http://umbcmagazine.wordpress.com/umbc-magazine-winter-2014/rooms-to-grow/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41859/guest@my.umbc.edu/0d6e3dc01771d6f08580a305d06718d8/api/pixel</TrackingUrl>
<Group token="bwtech">bwtech@UMBC Research and Technology Park</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bwtech</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/original.png?1760034935</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/large.png?1760034935</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/medium.png?1760034935</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/small.png?1760034935</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxsmall.png?1760034935</AvatarUrl>
<Sponsor>bwtech@UMBC</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 27 Feb 2014 08:47:16 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41861" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41861">
<Title>PicUMBC #7: Who's Looking Up?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <span>by David Hoffman and Craig Berger</span><br><span><br></span><br><div><a href="http://1.bp.blogspot.com/-K2Z0ZySVQhw/Uw39L9S7IoI/AAAAAAAADwc/3pTTiEmN5es/s1600/photo+(3).JPG" rel="nofollow external" class="bo"><img src="http://1.bp.blogspot.com/-K2Z0ZySVQhw/Uw39L9S7IoI/AAAAAAAADwc/3pTTiEmN5es/s1600/photo+(3).JPG" height="318" width="320" style="max-width: 100%; height: auto;"></a></div>
    <span><br></span><br><div><a href="http://3.bp.blogspot.com/-T4OnoiSW_-E/UvlPWrKrcSI/AAAAAAAADsg/_CqNEtBCkDE/s1600/photo+(5).JPG" rel="nofollow external" class="bo"></a></div>
    <span>UMBC is full of treasures and oddities hidden in plain view. Here's one of them. Where is this person? Let us know by email at CoCreateUMBC [at] umbc.edu. Bonus points for sending us a photo of yourself with this work of art (by email, or via the </span><a href="https://www.facebook.com/cocreateumbc" rel="nofollow external" class="bo">Co-Create UMBC Facebook page</a><span> or Twitter (#PicUMBC)). The prize for being the first to identify the location of this treasure/oddity correctly (and specifically): You'll be celebrated in the next PicUMBC post.</span><br><span><br></span><strong><span>PicUMBC #6, Revisited:</span></strong><br><span><br></span><br><div><a href="http://3.bp.blogspot.com/-mjEHC4pmn0s/UwOU-WbhIUI/AAAAAAAADuo/b-m31HuYwsM/s1600/photo.JPG" rel="nofollow external" class="bo"><img src="http://3.bp.blogspot.com/-mjEHC4pmn0s/UwOU-WbhIUI/AAAAAAAADuo/b-m31HuYwsM/s1600/photo.JPG" height="320" width="236" style="max-width: 100%; height: auto;"></a></div>
    <span><br></span><br><div><a href="http://1.bp.blogspot.com/-4QyQlikVFtg/UvRKRKFJz0I/AAAAAAAADro/qxNeXp5lBV0/s1600/photo+4.JPG" rel="nofollow external" class="bo"></a></div>
    <span>Jay Hong, Lynitta Karley and Zsade Fleming all correctly identified Usher's location: the wall behind the Famous Famiglia counter in The Commons. So did  Dylan Cook and Yiannis Balanos, who earned  bonus points for submitting this photo:</span><br><span><br></span><br><div><a href="http://1.bp.blogspot.com/-ipwcKVwPlL0/Uw3-8GItOBI/AAAAAAAADwo/nFcSLmn__Rk/s1600/PicUMBC+%236+Dylan+Yiannis.JPG" rel="nofollow external" class="bo"><img src="http://1.bp.blogspot.com/-ipwcKVwPlL0/Uw3-8GItOBI/AAAAAAAADwo/nFcSLmn__Rk/s1600/PicUMBC+%236+Dylan+Yiannis.JPG" height="320" width="240" style="max-width: 100%; height: auto;"></a></div>
    <br><span>But the winners, with bonus points, in record time, were Josh Massey and Sarah Lilly:</span><br><span><br></span><br><div><a href="http://4.bp.blogspot.com/-1hqKpVMuxa4/Uw3_sQLYuMI/AAAAAAAADww/-PI9F_JpWzk/s1600/PicUMBC+%236+Josh+Sarah.png" rel="nofollow external" class="bo"><img src="http://4.bp.blogspot.com/-1hqKpVMuxa4/Uw3_sQLYuMI/AAAAAAAADww/-PI9F_JpWzk/s1600/PicUMBC+%236+Josh+Sarah.png" height="320" width="240" style="max-width: 100%; height: auto;"></a></div>
    <span><br></span><span>Congrats to Josh and Sarah. Who's next?</span><br><span><br></span><em><span><a href="http://cocreateumbc.blogspot.com/" rel="nofollow external" class="bo">Co-Create UMBC</a> is a blog for and about UMBC, written by David Hoffman and Craig Berger from Student Life. Join the <a href="http://my.umbc.edu/groups/co-create" rel="nofollow external" class="bo">Co-Create UMBC group</a> on MyUMBC. Like <a href="https://www.facebook.com/cocreateumbc" rel="nofollow external" class="bo">Co-Create UMBC on Facebook</a>. And follow <a href="https://twitter.com/CoCreateUMBC" rel="nofollow external" class="bo">David</a> and <a href="https://twitter.com/CraigBerger" rel="nofollow external" class="bo">Craig</a> on Twitter.</span></em><span> </span>
    </div>
]]>
</Body>
<Summary>by David Hoffman and Craig Berger         UMBC is full of treasures and oddities hidden in plain view. Here's one of them. Where is this person? Let us know by email at CoCreateUMBC [at] umbc.edu....</Summary>
<Website>http://cocreateumbc.blogspot.com/2014/02/picumbc-7-whos-looking-up.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41861/guest@my.umbc.edu/fdab0fb3c375de52d99365fa1f964caa/api/pixel</TrackingUrl>
<Tag>picumbc</Tag>
<Group token="co-create">Co-Create UMBC</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/co-create</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xsmall.png?1499890363</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/original.jpg?1499890363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xxlarge.png?1499890363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xlarge.png?1499890363</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/large.png?1499890363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/medium.png?1499890363</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/small.png?1499890363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xsmall.png?1499890363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xxsmall.png?1499890363</AvatarUrl>
<Sponsor>Co-Create UMBC</Sponsor>
<PawCount>28</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 27 Feb 2014 08:44:00 -0500</PostedAt>
<EditAt>Thu, 27 Feb 2014 08:44:00 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="41857" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41857">
<Title>Blackboard Down for Maintenance 10 pm 2/28 to 1 am 3/1</Title>
<Body>
<![CDATA[
    <div class="html-content">The UMBC Blackboard server will be down from 10 pm Friday 2/28 to 1 am Saturday 3/1.  This down time is during the <a href="http://www.umbc.edu/blogs/oit-news/archives/2011/08/blackboard_week.html" rel="nofollow external" class="bo">regularly scheduled maintenance window</a> and is necessary for DoIT staff to perform <span>system-wide upgrades, including patches and fixes, need to be applied. Please be sure to save or submit any work before this time. Any unsaved or unsubmitted work will immediately be lost when the system shuts down.</span><div><br></div>
    <div>After Blackboard is back online, please clear your Internet browser cache and cookies before logging in. Step-by-step instructions are on <a href="https://wiki.umbc.edu/x/gIAc" rel="nofollow external" class="bo">https://wiki.umbc.edu/x/gIAc</a>
    </div>
    </div>
]]>
</Body>
<Summary>The UMBC Blackboard server will be down from 10 pm Friday 2/28 to 1 am Saturday 3/1.  This down time is during the regularly scheduled maintenance window and is necessary for DoIT staff to...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41857/guest@my.umbc.edu/e9b90b8111eeac6c8894f18c238f0993/api/pixel</TrackingUrl>
<Group token="bbannouncements">Blackboard Announcements</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bbannouncements</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/xsmall.png?1437137819</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/original.png?1437137819</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/xxlarge.png?1437137819</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/xlarge.png?1437137819</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/large.png?1437137819</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/medium.png?1437137819</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/small.png?1437137819</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/xsmall.png?1437137819</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/xxsmall.png?1437137819</AvatarUrl>
<Sponsor>Blackboard Announcements</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/857/89ad49151f7fe46a62314005263bdbc4/xxlarge.jpg?1393508095</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/857/89ad49151f7fe46a62314005263bdbc4/xlarge.jpg?1393508095</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/857/89ad49151f7fe46a62314005263bdbc4/large.jpg?1393508095</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/857/89ad49151f7fe46a62314005263bdbc4/medium.jpg?1393508095</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/857/89ad49151f7fe46a62314005263bdbc4/small.jpg?1393508095</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/857/89ad49151f7fe46a62314005263bdbc4/xsmall.jpg?1393508095</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/857/89ad49151f7fe46a62314005263bdbc4/xxsmall.jpg?1393508095</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>21</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 27 Feb 2014 08:37:55 -0500</PostedAt>
<EditAt>Mon, 24 Mar 2014 12:16:12 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="41855" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41855">
<Title>Summer Research Opportunity in Psychology, Pharmacology</Title>
<Tagline>University of Kentucky; $4,000 Stipend!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong><span><u>S</u>ummer <u>T</u></span><span>raining in <u>A</u></span><span>lcohol <u>R</u></span><span>esearch</span></strong></p>
    <p>The University of Kentucky offers a 10-­week, paid laboratory experience for talented undergraduate students interested in gaining research experience in alcohol-­related disorders such as alcoholism, fetal alcohol syndrome, cancer, and pain. This is a competitive program designed for students considering a career in a science, technology, engineering or math-­related fields, but especially graduate study. Opportunities range from applied psychological approaches in humans to basic cellular mechanisms of alcohol action in cell culture. Students will spend the summer performing independent research under the supervision of faculty mentors, graduate students and postdoctoral fellows, give a scientific presentation that describes their accomplishments, and have the opportunity to contribute to front-­line research in either of these areas.</p>
    </div>
]]>
</Body>
<Summary>Summer Training in Alcohol Research  The University of Kentucky offers a 10-­week, paid laboratory experience for talented undergraduate students interested in gaining research experience in...</Summary>
<Website>http://psychology.as.uky.edu/uk-star</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41855/guest@my.umbc.edu/5b69557c7a273f320cdd59fd404fe98e/api/pixel</TrackingUrl>
<Tag>pharmacology</Tag>
<Tag>psychology</Tag>
<Tag>research</Tag>
<Tag>summer</Tag>
<Group token="undergradresearch">Undergraduate Research</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/undergradresearch</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xsmall.png?1600355057</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/original.jpg?1600355057</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xxlarge.png?1600355057</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xlarge.png?1600355057</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/large.png?1600355057</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/medium.png?1600355057</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/small.png?1600355057</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xsmall.png?1600355057</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xxsmall.png?1600355057</AvatarUrl>
<Sponsor>Undergraduate Research</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/855/676a50b58679afc0e573776d7cbb3835/xxlarge.jpg?1393506169</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/855/676a50b58679afc0e573776d7cbb3835/xlarge.jpg?1393506169</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/855/676a50b58679afc0e573776d7cbb3835/large.jpg?1393506169</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/855/676a50b58679afc0e573776d7cbb3835/medium.jpg?1393506169</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/855/676a50b58679afc0e573776d7cbb3835/small.jpg?1393506169</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/855/676a50b58679afc0e573776d7cbb3835/xsmall.jpg?1393506169</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/855/676a50b58679afc0e573776d7cbb3835/xxsmall.jpg?1393506169</ThumbnailUrl>
<PawCount>14</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 27 Feb 2014 08:03:09 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41856" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41856">
<Title>Bits Blog: Federal Court Orders YouTube to Take Down Controversial Anti-Islam Video</Title>
<Body>
<![CDATA[
    <div class="html-content">The “Innocence of Muslims” video set off a fierce debate over free speech, but a federal court ruling on Wednesday was about an entirely different legal issue: copyright.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F02%2F26%2Ffederal-court-orders-youtube-to-take-down-controversial-anti-islam-video%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Federal+Court+Orders+YouTube+to+Take+Down+Controversial+Anti-Islam+Video" 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%2F2014%2F02%2F26%2Ffederal-court-orders-youtube-to-take-down-controversial-anti-islam-video%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Federal+Court+Orders+YouTube+to+Take+Down+Controversial+Anti-Islam+Video" 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%2F2014%2F02%2F26%2Ffederal-court-orders-youtube-to-take-down-controversial-anti-islam-video%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Federal+Court+Orders+YouTube+to+Take+Down+Controversial+Anti-Islam+Video" 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%2F2014%2F02%2F26%2Ffederal-court-orders-youtube-to-take-down-controversial-anti-islam-video%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Federal+Court+Orders+YouTube+to+Take+Down+Controversial+Anti-Islam+Video" 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%2F2014%2F02%2F26%2Ffederal-court-orders-youtube-to-take-down-controversial-anti-islam-video%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Federal+Court+Orders+YouTube+to+Take+Down+Controversial+Anti-Islam+Video" 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/186531170604/u/0/f/640387/c/34625/s/379952a4/sc/1/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531170604/u/0/f/640387/c/34625/s/379952a4/sc/1/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186531170604/u/0/f/640387/c/34625/s/379952a4/sc/1/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531170604/u/0/f/640387/c/34625/s/379952a4/sc/1/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186531170604/u/0/f/640387/c/34625/s/379952a4/sc/1/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531170604/u/0/f/640387/c/34625/s/379952a4/sc/1/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186531170604/u/0/f/640387/c/34625/s/379952a4/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531170604/u/0/f/640387/c/34625/s/379952a4/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The “Innocence of Muslims” video set off a fierce debate over free speech, but a federal court ruling on Wednesday was about an entirely different legal issue: copyright.      </Summary>
<Website>http://bits.blogs.nytimes.com/2014/02/26/federal-court-orders-youtube-to-take-down-controversial-anti-islam-video/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41856/guest@my.umbc.edu/4ae30d683e2d1b75ad1d7ed3924cc4f8/api/pixel</TrackingUrl>
<Tag>copyrights-and-copyright-violations</Tag>
<Tag>freedom-of-speech-and-expression</Tag>
<Tag>google-inc</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>innocence-of-muslims-movie</Tag>
<Tag>internet</Tag>
<Tag>new</Tag>
<Tag>policy</Tag>
<Tag>technology</Tag>
<Tag>video-recordings-and-downloads</Tag>
<Tag>york</Tag>
<Tag>youtube-com</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, 27 Feb 2014 07:41:12 -0500</PostedAt>
<EditAt>Thu, 27 Feb 2014 19:08:40 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="41896" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41896">
<Title>Cover Feature: Cloud Engineered</Title>
<Body>
<![CDATA[
    <div class="html-content">Oracle updates engineered systems to improve performance, increase capacity, and deliver consolidated cloud services.</div>
]]>
</Body>
<Summary>Oracle updates engineered systems to improve performance, increase capacity, and deliver consolidated cloud services.</Summary>
<Website>http://www.oracle.com/technetwork/issue-archive/2014/14-mar/o24briefs-2147181.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41896/guest@my.umbc.edu/d859a01c69afe0f1604aa85bc8677c0a/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>pl-sql</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>Thu, 27 Feb 2014 04:32:27 -0500</PostedAt>
<EditAt>Thu, 27 Feb 2014 04:32:27 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="41854" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41854">
<Title>Making Embedded Content Work In Responsive Design</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>A few HTML elements don’t play nice with responsive layouts. One of these is the good ol’ <code>iframe</code>, which you may need to use when embedding content from external sources such as YouTube.</p>
    <p>In this article, we’ll show you how to make embedded content responsive using CSS, so that content such as video and calendars resize with the browser’s viewport. For those occasions when non-coders will be embedding video on your website and you don’t want to rely on them adding extra markup, <strong>we’ll also look at a solution that uses JavaScript instead of CSS</strong>.</p>
    <p>(You can see a <a href="http://rachelmccollin.co.uk/blog/responsive-iframes/" rel="nofollow external" class="bo">demo of these techniques</a> on my blog.)</p>
    <h3>The Markup For Embedded Content</h3>
    <p>Services such as YouTube provide code that you can copy and paste into your own website to embed content. I tend to recommend to my clients that they host video with YouTube because it will save them server space and, regardless of the user’s browser or device, YouTube will display the video correctly. The two main ways to embed video on a website are the HTML5 <code>video</code> element, which doesn’t work in legacy versions of Internet Explorer, and Flash, which doesn’t work on iOS devices and isn’t standards-compliant.</p>
    <p>When you embed content from an external source, the code will include an <code>iframe</code>:</p>
    <pre><code>&#x000A;    &lt;iframe src="<a href="http://www.youtube.com/embed/4aQwT3n2c1Q">http://www.youtube.com/embed/4aQwT3n2c1Q</a>" height="315" width="560" allowfullscreen="" frameborder="0"&gt;&lt;/iframe&gt;&#x000A;    </code></pre>
    <p>This <code>iframe</code> enables external content to be displayed on your website, because it includes a URL that points to the source of the streamed content.</p>
    <p>However, you’ll notice that our <code>iframe</code> includes <code>width</code> and <code>height</code> attributes. Remove these and the iframe will disappear because it would have no dimensions. And you can’t fix this in your style sheet, unfortunately.</p>
    <p>The <code>width</code> attribute means that, on a screen narrower than 560 pixels, <strong>the embedded content will protrude outside of its containing element</strong>, breaking the layout. In the example below, I’ve added the code above to a page of my blog. The screenshot is taken from an iPhone in portrait mode (320 pixels wide), and the rest of the page has been shrunk so that the embedded content fits the screen. <strong>Far from ideal!</strong></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/02/01-non-responsive-video-large.png" rel="nofollow external" class="bo"><img alt="Video breaks the layout in a responsive website on iPhone" src="http://media.smashingmagazine.com/wp-content/uploads/2014/02/01-non-responsive-video.png" width="320" height="480" style="max-width: 100%; height: auto;"></a><br><em>Screenshot taken from an iPhone in portrait mode (320px wide). (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/02/01-non-responsive-video.png" rel="nofollow external" class="bo">Larger view</a>)</em></p>
    <p>Fortunately, there is a way around this using CSS. First, I’ll show you how to do this with embedded video, and then with calendars.</p>
    <h3>Responsive Video</h3>
    <h4>The Markup</h4>
    <p>To make embedded content responsive, you need to add a containing wrapper around the <code>iframe</code>. Your markup would be as follows:</p>
    <pre><code>&#x000A;    &lt;div&gt;&#x000A;        &lt;iframe src="<a href="http://www.youtube.com/embed/4aQwT3n2c1Q">http://www.youtube.com/embed/4aQwT3n2c1Q</a>" height="315" width="560" allowfullscreen="" frameborder="0"&gt;&#x000A;        &lt;/iframe&gt;&#x000A;    &lt;/div&gt;&#x000A;    </code></pre>
    <p>The next step is to add styling to this new wrapper and the <code>iframe</code> within it.</p>
    <h4>The CSS</h4>
    <p>First, we style the containing wrapper with the <code>.video-container</code> class. As proposed by Thierry Koblentz in his ALA article <a href="http://alistapart.com/article/creating-intrinsic-ratios-for-video/" rel="nofollow external" class="bo">“Creating Intrinsic Ratios For Video”</a>, we can use the following snippet in our style sheet:</p>
    <pre><code>&#x000A;    .video-container {&#x000A;        position: relative;&#x000A;        padding-bottom: 56.25%;&#x000A;        padding-top: 30px;&#x000A;        height: 0;&#x000A;        overflow: hidden;&#x000A;    }&#x000A;    </code></pre>
    <p>This does a few things:</p>
    <ul>
    <li>Setting the <code>position</code> to <code>relative</code> lets us use absolute positioning for the <code>iframe</code> itself, which we’ll get to shortly.</li>
    <li>The <code>padding-bottom</code> value is calculated out of  the aspect ratio of the video. In this case, the aspect ratio is 16:9, which means that the height will be 56.25% of the width. For a video with a 4:3 aspect ratio, we set <code>padding-bottom</code> to 75%.</li>
    <li>The <code>padding-top</code> value is set to 30 pixels to allow space for the chrome — this is specific to YouTube videos.</li>
    <li>The <code>height</code> is set to <code>0</code> because <code>padding-bottom</code> gives the element the height it needs. We do not set the width because it will automatically resize with the responsive element that contains this div.</li>
    <li>Setting <code>overflow</code> to <code>hidden</code> ensures that any content protruding outside of this element will be hidden from view.</li>
    </ul>
    <p><strong>We also need to style the iframe itself.</strong> Add the following to your style sheet:</p>
    <pre><code>&#x000A;    .video-container iframe {&#x000A;        position: absolute;&#x000A;        top:0;&#x000A;        left: 0;&#x000A;        width: 100%;&#x000A;        height: 100%;&#x000A;    }&#x000A;    </code></pre>
    <p>This targets <code>iframe</code>s inside containers with the <code>.video-container</code> class. Let’s work through the code:</p>
    <ul>
    <li>Absolute positioning is used because the containing element has a height of <code>0</code>. If the iframe were positioned normally, we would have given it a height of <code>0</code> as well.</li>
    <li>The <code>top</code> and <code>left</code> properties position the iframe correctly in the containing element.</li>
    <li>The <code>width</code> and <code>height</code> properties ensure that the video takes up 100% of the space used by the containing element (which is actually set with padding).</li>
    </ul>
    <p>Having done this, the video will now resize with the screen’s width. Here’s how it will look on a desktop:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/02/02-desktop-video-after-large.png" rel="nofollow external" class="bo"><img alt="Responsive video as seen on the desktop (in the flow of the content, fitting nicely)" src="http://media.smashingmagazine.com/wp-content/uploads/2014/02/02-desktop-video-after.png" width="500" height="459" style="max-width: 100%; height: auto;"></a><br><em>Desktop screenshot of the video resizing the screen’s width. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/02/02-desktop-video-after-large.png" rel="nofollow external" class="bo">Larger view</a>)</em></p>
    <p>And here’s how it will look on a screen that is 320 pixels wide:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/02/03-responsive-video-iphone-large.png" rel="nofollow external" class="bo"><img alt="Responsive video fits into the layout on a 320px wide screen" src="http://media.smashingmagazine.com/wp-content/uploads/2014/02/03-responsive-video-iphone.png" width="320" height="480" style="max-width: 100%; height: auto;"></a><br><em>The video on a 320 pixels wide screen. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/02/03-responsive-video-iphone-large.png" rel="nofollow external" class="bo">Larger view</a>)</em></p>
    <p>Let’s move on to other sources of embedded content — specifically, Google calendars.</p>
    <h3>Responsive Calendar</h3>
    <h4>The Markup</h4>
    <p>The CSS to make any form of embedded content responsive is essentially the same, but different content will have different aspect ratios, which means you’ll need to set the <code>padding-bottom</code> value accordingly.</p>
    <p>Below is a screenshot of a website that I manage for a primary school, a website that <strong>embeds a Google calendar</strong>. As you can see, the calendar breaks the layout on a small screen. In this case, the website is displayed at the correct width, but the calendar goes beyond the screen’s width.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/02/04-non-responsive-calendar-large.png" rel="nofollow external" class="bo"><img alt="A celandar as seen on a responsive website on an iPhone - not all of the calendar is visible" src="http://media.smashingmagazine.com/wp-content/uploads/2014/02/04-non-responsive-calendar.png" width="320" height="480" style="max-width: 100%; height: auto;"></a><br><em>The calendar breaks the layout on a small screen. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2014/02/04-non-responsive-calendar-large.png" rel="nofollow external" class="bo">Larger view</a>)</em></p>
    <p>The markup for the embedded calendar is as follows:</p>
    <pre><code>&#x000A;    &lt;iframe src="<a href="https://www.google.com/calendar/embed?height=600&amp;amp;wkst=1&amp;amp;bgcolor=%23FFFFFF&amp;amp;src=60aqhusbghf7v0qvvbfu1ml22k%40group.calendar.google.com&amp;amp;color=%232952A3&amp;amp;ctz=Europe%2FLondon">https://www.google.com/calendar/embed?height=600&amp;amp;wkst=1&amp;amp;bgcolor=%23FFFFFF&amp;amp;src=60aqhusbghf7v0qvvbfu1ml22k%40group.calendar.google.com&amp;amp;color=%232952A3&amp;amp;ctz=Europe%2FLondon</a>" style=" border-width:0 " width="800" height="600" frameborder="0" scrolling="no"&gt;&lt;/iframe&gt;&#x000A;    </code></pre>
    <p>To make a calendar responsive, add a div with a class of <code>.calendar-container</code> to contain the iframe:</p>
    <pre><code>&#x000A;    &lt;div&gt;&#x000A;        &lt;iframe src="<a href="https://www.google.com/calendar/embed?height=600&amp;amp;wkst=1&amp;amp;bgcolor=%23FFFFFF&amp;amp;src=60aqhusbghf7v0qvvbfu1ml22k%40group.calendar.google.com&amp;amp;color=%232952A3&amp;amp;ctz=Europe%2FLondon">https://www.google.com/calendar/embed?height=600&amp;amp;wkst=1&amp;amp;bgcolor=%23FFFFFF&amp;amp;src=60aqhusbghf7v0qvvbfu1ml22k%40group.calendar.google.com&amp;amp;color=%232952A3&amp;amp;ctz=Europe%2FLondon</a>" style=" border-width:0 " width="800" height="600" frameborder="0" scrolling="no"&gt;&#x000A;        &lt;/iframe&gt;&#x000A;    &lt;/div&gt;&#x000A;    </code></pre>
    <p>The next step is to style this div.</p>
    <h4>The CSS</h4>
    <p>The CSS for a calendar is almost identical to the CSS for a video, with two exceptions: The aspect ratio will be different, and <code>padding-top</code> isn’t needed.</p>
    <p>Add the following to your style sheet:</p>
    <pre><code>&#x000A;    .calendar-container {&#x000A;        position: relative;&#x000A;        padding-bottom: 75%;&#x000A;        height: 0;&#x000A;        overflow: hidden;&#x000A;    }&#x000A;    </code></pre>
    <p>In this case, the <code>iframe</code> is 800 pixels wide and 600 pixels high, which gives us an aspect ratio of 4:3. So, set <code>padding-bottom</code> to be <code>75%</code>.</p>
    <p>Having done this, we need to apply the same styling to the iframe element in this new container:</p>
    <pre><code>&#x000A;    .calendar-container iframe {&#x000A;        position: absolute;&#x000A;        top:0;&#x000A;        left: 0;&#x000A;        width: 100%;&#x000A;        height: 100%;&#x000A;    }&#x000A;    </code></pre>
    <p>This is exactly the same styling that we applied to the video.</p>
    <p>Now, the calendar will resize with the browser window, as shown here in Opera Mobile on an Android phone:</p>
    <p><img alt="A responsive calendar fits into the width of a 320px wide screen" src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/05-responsive-calendar.png" width="320" height="533" style="max-width: 100%; height: auto;"></p>
    <p>As long as you remember to wrap your embedded calendars and videos with the appropriate containing element, then this CSS will work for any new videos and calendars that you add to your website.</p>
    <p>The problem, however, is that although you can fit the whole calendar on a page, it’s still <strong>almost unusable because click targets are so small</strong> and no information is visible. If you absolutely have to display Google Calendar, you can, but if you can use more usable responsive calendar solutions like simple CSS (setting <code>display: block</code> on table rows, for example), or <a href="http://w3widgets.com/responsive-calendar/" rel="nofollow external" class="bo">w3widgets Responsive calendar</a> or <a href="http://tympanus.net/codrops/2012/11/27/calendario-a-flexible-calendar-plugin/" rel="nofollow external" class="bo">Calendario</a> for your own calendars, your users might appreciate it.</p>
    <h3>Responsive Video With CSS or JavaScript</h3>
    <p>If you’re developing a responsive website using a content management system, then one or more of the website’s editors will probably have to embed video at some point. You can point your editors to <a href="http://embedresponsively.com/" rel="nofollow external" class="bo">EmbedResponsively.com</a> which <strong>generates responsive &lt;embed&gt; codes</strong> for embedding rich third-party media with one click, with CSS alone. Alternatively, you could use a JavaScript solution, to relieve nervous editors from having to add extra CSS and markup. However, as long as you can avoid this path, the better, of course.</p>
    <p>Until recently, most solutions were plugins, which are OK to an extent but can have performance issues. A popular plugin is <a href="http://fitvidsjs.com" rel="nofollow external" class="bo">FitVids.js</a>, developed by Chris Coyier and Paravel.</p>
    <p>A more current solution is to use just a script — such as <a href="http://toddmotto.com/fluid-and-responsive-youtube-and-vimeo-videos-with-fluidvids-js/" rel="nofollow external" class="bo">FluidVids.js</a>, developed by Todd Motto. FluidVids.js is <a href="http://gomakethings.com/using-fluidvids-js/" rel="nofollow external" class="bo">simple to use</a>:</p>
    <ol>
    <li>
    <a href="http://github.com/toddmotto/fluidvids/archive/master.zip" rel="nofollow external" class="bo">Download the script</a> (ZIP) from GitHub and upload it to your server with the same folder structure that the downloaded files come in. This will place the script itself in a folder named <code>dist</code>.</li>
    <li>Call the script in each page’s <code>&lt;head&gt;</code> section with the following code:</li>
    </ol>
    <pre><code>&#x000A;    &lt;script src="dist/fluidvids.js&gt;&lt;/script&gt;&#x000A;    </code></pre>
    <p>That’s all you need to do to make videos resize on all devices that support JavaScript. It works not only for YouTube, but for Vimeo, too. The problem, however, is that if you users don’t have JavaScript support or the JavaScript hasn’t loaded yet or JavaScript hasn’t loaded correctly, the only fallback you can use is to add the following to your style sheet:</p>
    <pre><code>&#x000A;    iframe {&#x000A;        max-width: 100%; &#x000A;    }&#x000A;    </code></pre>
    <p>This will ensure that video resizes to the width of the browser’s window. But it won’t resize the video’s height; unfortunately, <code>iframe</code> just doesn’t work this way. So, the video won’t break your layout, but it won’t look very good either. This is not really a good option, so <strong>if you can avoid using JavaScript for videos, it’s a good idea to do so</strong>.</p>
    <h3>Responsive Google Maps</h3>
    <p>Apart from videos and calendars, another common issue is the embedding of Google maps, responsively. Basically, we again use the same intrinsic ratio technique, and when setting <code>padding-bottom</code> for the wrapper, we just divide the height by width and add the aspect ratio in CSS.</p>
    <p>Usually, the code generated by Google Maps would look like this:</p>
    <pre><code>&lt;iframe src="<a href="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3022.260812859955!2d-73.990184!3d40.756288!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb134c693ac14a04c!2sThe+TimesCenter!5e0!3m2!1sen!2suk!4v1393485725496">https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3022.260812859955!2d-73.990184!3d40.756288!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb134c693ac14a04c!2sThe+TimesCenter!5e0!3m2!1sen!2suk!4v1393485725496</a>" width="500" height="450" frameborder="0" style="border:0"&gt;&lt;/iframe&gt;</code></pre>
    <p>We just wrap a <code>div</code> around the <code>iframe</code> and apply the familiar CSS styling to it:</p>
    <pre><code>&#x000A;    .google-maps {&#x000A;        position: relative;&#x000A;        padding-bottom: 90%; // (450 ÷ 500 = 0.9 = 90%)&#x000A;        height: 0;&#x000A;        overflow: hidden;&#x000A;    }&#x000A;    .google-maps iframe {&#x000A;        position: absolute;&#x000A;        top: 0;&#x000A;        left: 0;&#x000A;        width: 100%;&#x000A;        height: 100%;&#x000A;    }&#x000A;    </code></pre>
    <p>And this is what the markup will look like:</p>
    <pre><code>&#x000A;    &lt;div class="google-maps"&gt;&#x000A;    &lt;iframe src="<a href="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d7098.94326104394!2d78.0430654485247!3d27.172909818538997!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2s!4v1385710909804">https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d7098.94326104394!2d78.0430654485247!3d27.172909818538997!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2s!4v1385710909804</a>" width="500" height="450" frameborder="0" style="border:0"&gt;&lt;/iframe&gt;&#x000A;    &lt;/div&gt;</code></pre>
    <p>Voilá! Again, we can just use <a href="http://embedresponsively.com/" rel="nofollow external" class="bo">EmbedResponsively</a> to generate the copy-paste-code with one click.</p>
    
    <div></div>
    <h3>Summary</h3>
    <p>Embedded content has a habit of breaking responsive layouts, because it’s contained in an <code>iframe</code> with a fixed width. In this article, we’ve seen how to add a single containing wrapper, and some CSS, to ensure that all embedded content contained in an <code>iframe</code> resizes with the browser’s window.</p>
    <p>Sometimes it’s good enough, but sometimes you might need to come up with more advanced solutions, since resizing isn’t always a solution. We’ve also looked at <code>embed</code> code generators and alternative solutions, using JavaScript, which might be necessary in some cases, especially if editors have to deal with many videos and don’t have technical skills required, or CMS doesn’t allow for inline styling.</p>
    <p>How do you embed third-party content on your responsive websites? Have you discovered any particular tricks or techniques? What does your workflow for embedding such content look like?</p>
    <p><em>(al, vf, il)</em></p>
    <p><em>Front page image credits: <a href="http://www.flickr.com/photos/juhansonin/8142671926/" rel="nofollow external" class="bo">Juhan Sonin</a>.</em></p>
    <hr>
    <p><small>© Rachel McCollin for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2014.</small></p>
    </div>
]]>
</Body>
<Summary>        A few HTML elements don’t play nice with responsive layouts. One of these is the good ol’ iframe, which you may need to use when embedding content from external sources such as YouTube....</Summary>
<Website>http://www.smashingmagazine.com/2014/02/27/making-embedded-content-work-in-responsive-design/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41854/guest@my.umbc.edu/4f03615951e29f2300afbb1a14f23a3b/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mobile</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>Thu, 27 Feb 2014 04:22:26 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41853" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41853">
<Title>The best of DesignFaves.com, February 2014</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2014/02/thumbnail28.jpg" width="200" height="160" style="max-width: 100%; height: auto;">For designers passionate about the latest developments across the full spectrum of visual design, there’s a brand new site that features some of the most exciting, innovative and inspiring design projects taking place today. Every day our sister-site, <a href="http://www.designfaves.com/" rel="nofollow external" class="bo">DesignFaves.com,</a> trawls the web seeking out the projects with the most buzz surrounding them and delivers a compact, visual summary right to your inbox.</p> <p>Focused on all fields of design, you’ll find graphic design, art, architecture, furniture design, fashion, branding, photography, and everything else that’s visual and engaging.</p> <p>You can sign up for the newsletter and get your daily dose of design inspiration each morning, or browse through the site when you’re feeling tapped for new ideas. Whoever you are, and whatever you love, you’ll find fresh projects on DesignFaves.com.</p> <p>Every month we’ll be bringing you a summary of the best the site has to offer, here are our favorite projects for February:</p> <p> </p> <p>Action packed car jumps or weird hovering automobiles?</p> <p><a href="http://www.designfaves.com/2014/02/action-packed-car-jumps-weird-hovering-automobiles" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0011.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <p>Solemn chapel is iconic testament to enduring culture</p> <p><a href="http://www.designfaves.com/2014/02/solemn-chapel-iconic-testament-enduring-culture" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0021.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <p><a href="http://www.designfaves.com/2014/02/hypnotic-video-endlessly-walking-transforming-creature" rel="nofollow external" class="bo">Hypnotic video</a> of an endlessly walking and transforming creature</p> <p></p>
    <div class="embed-container"><iframe src="//player.vimeo.com/video/85596568" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div> <p> </p> <p>Family photos with mannequins poke fun at the American dream</p> <p><a href="http://www.designfaves.com/2014/02/family-photos-mannequins-poke-fun-american-dream" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0041.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>Printable touch technology might revolutionize manufacturing</p> <p><a href="http://www.designfaves.com/2014/02/printable-touch-technology-revolutionize-manufacturing" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0051.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>8,000 sheets of rice paper assembled into massive ‘boat’ installation</p> <p><a href="http://www.designfaves.com/2014/02/8000-sheets-rice-paper-assembled-massive-boat-installation" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0061.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>12 hilarious pictures of dogs transformed into fashion models</p> <p><a href="http://www.designfaves.com/2014/02/12-hilarious-pictures-dogs-transformed-fashion-models" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0071.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>Delicate sculptures created through paper folding</p> <p><a href="http://www.designfaves.com/2014/02/delicate-sculptures-created-paper-folding" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0081.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>‘Sad Keanu Reeves’ meme is now a 3D printed figurine</p> <p><a href="http://www.designfaves.com/2014/02/sad-keanu-reeves-meme-3d-printed-figurine" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0091.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>Simple street art personifies inanimate objects</p> <p><a href="http://www.designfaves.com/2014/02/simple-street-art-personifies-inanimate-objects" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0101.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>Miniature clones help this photographer at work</p> <p><a href="http://www.designfaves.com/2014/02/miniature-clones-photographer-work" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0111.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>18 classic rock album covers… minus dead band members</p> <p><a href="http://www.designfaves.com/2014/02/18-classic-rock-album-covers-dead-band-members" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0121.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>Intimate ocean photos give a new perspective on waves</p> <p><a href="http://www.designfaves.com/2014/02/intimate-oceanic-photos-give-perspective-waves" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0131.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>Stitching the industrialization of daily life</p> <p><a href="http://www.designfaves.com/2014/02/stitching-industrialization-daily-life" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0141.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p>Learn about this man’s shocking method to document his travels</p> <p><a href="http://www.designfaves.com/2014/02/learn-mans-shocking-method-document-travels" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/02/0151.jpg" width="650" alt="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <p> <em><strong>Which of these posts is your favorite? What would you like to see DesignFaves.com cover? Let us know in the comments.</strong></em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/photoscissors.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Remove Image Backgrounds with PhotoScissors (Win/Mac) – only $9.97!</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="The best of DesignFaves.com, February 2014" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2014/02/the-best-of-designfaves-com-february-2014/" 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%2F2014%2F02%2Fthe-best-of-designfaves-com-february-2014%2F&amp;t=The+best+of+DesignFaves.com%2C+February+2014" 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%2F2014%2F02%2Fthe-best-of-designfaves-com-february-2014%2F&amp;t=The+best+of+DesignFaves.com%2C+February+2014" 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%2F2014%2F02%2Fthe-best-of-designfaves-com-february-2014%2F&amp;t=The+best+of+DesignFaves.com%2C+February+2014" 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%2F2014%2F02%2Fthe-best-of-designfaves-com-february-2014%2F&amp;t=The+best+of+DesignFaves.com%2C+February+2014" 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%2F2014%2F02%2Fthe-best-of-designfaves-com-february-2014%2F&amp;t=The+best+of+DesignFaves.com%2C+February+2014" 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/187558277752/u/49/f/661066/c/35285/s/3796d9e3/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187558277752/u/49/f/661066/c/35285/s/3796d9e3/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/187558277752/u/49/f/661066/c/35285/s/3796d9e3/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187558277752/u/49/f/661066/c/35285/s/3796d9e3/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/187558277752/u/49/f/661066/c/35285/s/3796d9e3/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187558277752/u/49/f/661066/c/35285/s/3796d9e3/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/187558277752/u/49/f/661066/c/35285/s/3796d9e3/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187558277752/u/49/f/661066/c/35285/s/3796d9e3/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>For designers passionate about the latest developments across the full spectrum of visual design, there’s a brand new site that features some of the most exciting, innovative and inspiring design...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/3796d9e3/sc/4/l/0L0Swebdesignerdepot0N0C20A140C0A20Cthe0Ebest0Eof0Edesignfaves0Ecom0Efebruary0E20A140C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41853/guest@my.umbc.edu/712987416b2bfc0772e008dcfed26245/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>art-projects</Tag>
<Tag>cool-stories</Tag>
<Tag>css</Tag>
<Tag>culture</Tag>
<Tag>design</Tag>
<Tag>design-inspiration</Tag>
<Tag>designfaves</Tag>
<Tag>designfaves-com</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>inspiration</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web-news</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, 27 Feb 2014 03:15:39 -0500</PostedAt>
<EditAt>Thu, 27 Feb 2014 03:15:39 -0500</EditAt>
</NewsItem>

</News>
