Archive

Archive for March, 2016

Comics of the week #331

March 19th, 2016 No comments

Every week we feature a set of comics created exclusively for WDD.

The content revolves around web design, blogging and funny situations that we encounter in our daily lives as designers.

These great cartoons are created by Jerry King, an award-winning cartoonist who’s one of the most published, prolific and versatile cartoonists in the world today.

So for a few moments, take a break from your daily routine, have a laugh and enjoy these funny cartoons.

Feel free to leave your comments and suggestions below as well as any related stories of your own…

Use your imagination

Mobile made easy

What, no coupons?

Can you relate to these situations? Please share your funny stories and comments below…

Classic Meets Fun with the Tervia Font Family – only $12!

Source

Categories: Designing, Others Tags:

Google’s Brynn Evans Weighs In on Current Trends

March 18th, 2016 No comments
Brynn Evans, UX Lead of Googles Communications Team

“If you’re looking for a first project, start with a problem that you’re facing — turn inward and identify a few pain points in your life.”

Brynn Evans, UX Lead of Googles Communications Team

Brynn Evans, UX Lead of Google’s Communications

Brynn Evans is the type of person who everyone instantly likes. She’s personable, articulate, and has a mission-driven ethos about her work and life. She studied Psychology (BA) & Science and Technology in Society (BS) at Stanford University, Cognitive Science (MS) from UC San Diego, and spent time working at the legendary Xerox PARC, all before transitioning to user experience design where she now feels driven to bridge the gap between technology and people. She often refers to “social technology” to describe her passion — using technology and design thinking to address the real problems we face in society.

Today Brynn is a UX Lead at Google, managing four products teams in the “Communications” technology org including Project Fi, the Google-owned and operated mobile phone service. She’s also an avid community organizer and innovative leader in the field of UX — she co-founded XX+UX (a monthly meetup for women in UX), co-founded the Awesome Foundation chapter in San Francisco (that gives monthly grants of $1000 to people doing “awesome” work), co-organized an exclusive design thinking conference called Overlap, and regularly speaks at conferences around the world.

Brynn’s career has garnered accolades, awards, and published works, establishing her reputation as someone who everyone wants to work with. I caught up with Brynn about her feeling on current trends in the industry and what the future holds.

What’s your opinion on current trends?

“I see a lot of design trying to apply metaphors from real life to make technology feel more natural. Google’s Material design is about using cues from paper and physical materials to create an illusion of familiarity on the screen. Apple’s Force Touch is about using haptic touch in more natural ways. Uber’s new redesign is about connecting atoms and bits — uniting the physical and the digital worlds. These designs aren’t all equally successful (yet) but it’s a nice direction to be headed because many people still see technology as ‘hard to use’ or ‘not for me.’ We’re in an era of trying to bridge the gap between technology and real life.”

Atrium at Google's Dublin Campus

Atrium at Google’s Dublin Campus

Where do you see the industry headed?

“Our industry is often criticized for being insular or solving problems that no one cares about (e.g., artisanal firewood??) Luckily, I’m seeing a shift towards focusing on real problems that people face, not just the surface-level problems of young people in urban areas. For example, the U.S. government has a design team that’s focused on issues like veterans, healthcare, and immigration. Startups like Wevorce are trying to make divorce more pleasant and swift. And in my own work, Project Fi (Android’s new wireless carrier) intends to make mobile connectivity accessible and fair. Everyone needs access to the internet to connect with friends, family, or important information online, and although this sounds like a “techie” problem, it’s not any longer.”

What would you tell someone who is just getting started

or wants to get into the field of design?

“If you’re looking for a first project, start with a problem that you’re facing — turn inward and identify a few pain points in your life. From here, focus on what’s at the heart of that problem and start designing out realistic solutions. Aim for 5-7 different solutions. Then test out the top ideas on yourself or with friends and family. See which solutions worked best and what you would change or modify about each. Rinse and repeat.

Open seating area at Google's London Campus

Open seating area at Google’s London Campus

Although that might be sort of vague, we are all designers of our own lives so it’s easy to get started by finding problems that we’re intimately familiar with. Solutions will flow more naturally and you’ll see how this will you oriented towards solving problems rather inventing solutions. There are way too many apps today that are a half-baked solutions to no real problem — that’s not good design no matter how shiny or beautiful they may be.”

What is one Sci-Fi technology you want to have

right now, and what would you do with it?

“Well, Virtual Reality (VR) already exists today but I want next-gen VR, whatever that means. The best experience I had with VR was actually in an Uber, when I was sharing a ride with a friendly stranger. We were stuck in traffic, so he pulled out a VR headset from his bag and asked, ‘Do you want to go to Mars?’ I said yes! So I put on this headset on and suddenly I’m standing on the surface of Mars, looking all around at the dirt, crevices, mountains, and looming sky above. It was incredible. Then I advanced to a new scene, and then another. I started touring all the popular places around the world. I was teleported to Paris, Egypt, India, the Amazon…. all these beautiful places around the world felt so real and so present.

It reminded me that VR has the potential of making the world more accessible to people. If you can tour around places that feel as if you’re actually there, you could develop an appreciation for other people’s lifestyles and culture without needing money to travel. Of course there are other great applications of VR too, like helping people work through physical disabilities (e.g., learning to walk after an accident).”

Office at Google's Mt. View Campus

Office at Google’s Mt. View Campus

Looking back on your earlier self, if you could give

yourself one piece of advice, what would it be?

“Never think that you’re not good enough. I’m more or less a self-taught designer so I had a lot of moments feeling like I didn’t know enough to be a UX designer. I see this pattern in new grads and other people transitioning into the field from other professions. But the truth is, design is about solving problems in creative ways so we need different perspectives from different types of people. We need healthy debate. We need to always have an open mind and try out new things. That comes from expressing your opinion and not worrying about how good you are or how much you know. You just gotta go for it until you realize that your perspective is the perspective that everyone wants to hear.”

Read More at Google’s Brynn Evans Weighs In on Current Trends

Categories: Designing, Others Tags:

Ligature Icons via Pseudo Elements and Icon Fonts

March 18th, 2016 No comments

The following is a guest post by Jason Jacobson, a senior engineer for Minneapolis based startup LeadPages®. Jason shows off something I didn’t know was possible: turning a string into an icon. This requires an icon font, and I generally refer SVG for icons, but that doesn’t stop this from being a bonafide CSS trick that is certainly worth knowing about!

Pseudo elements (i.e. ::before and ::after) have been a big help to me when creating sites, so I came up with an approach for using them alongside ligature icons to create more readable and maintainable code.

Ligature icons? Yep! That’s how Google’s Material Icons work.

The string “face” here literally turns into an icon of a face.

Rather than use text in the HTML though, you can use a pseudo element. That is, use the content property in CSS to inject the string into any element. Say you have this HTML:

<button data-icon="delete">Remove this item</button>

We can append the string to that (“delete”), like this:

[data-icon]::before {
  content: attr(data-icon);
}

Then we can, through the power of magical ligatures, turn that text into an icon. That happens automatically when the font-family is set to one that does ligature icons, like Material Icons.

First you need that icon font available:

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

The full CSS for the psuedo element icons is more like:

[data-icon]::before {
  content: attr(data-icon);
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  * Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
   
  * Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

Note: we need to use the font-feature-settings property to make this work in Internet Explorer.

How about a list that shows a selected item:

<ul class="list">
  <li>One</li>
  <li data-icon="check">Two</li>
  <li>Three</li>
  <li>Four</li>
</ul>

See the Pen Pen #01 by CSS-Tricks (@css-tricks) on CodePen.

You could also use it for displaying user states with integrations or forms.

<ul class="list">
  <li data-icon="error">Int One</li>
  <li data-icon="check">Int Two</li>
  <li data-icon="error">Int Three</li>
  <li data-icon="error">Int Four</li>
</ul>

See the Pen Ligature Icons – Error Indicators by CSS-Tricks (@css-tricks) on CodePen.

Notice that for all the examples so far, I haven’t added any extra CSS or HTML to get the new icons.

Here is an example of a button that has a :hover and :active state. I’ve added another attribute to handle the success icon. This is something that could be done with JavaScript, but since this is CSS-Tricks, I went for the pure CSS approach.

See the Pen Pen #03 by CSS-Tricks (@css-tricks) on CodePen.


Ligature Icons via Pseudo Elements and Icon Fonts is a post from CSS-Tricks

Categories: Designing, Others Tags:

How to jot down an incredible Essay

March 18th, 2016 No comments

How to jot down an incredible Essay

Choose Your favorite Topic

If the particular topic Isn’t as of now sent to someone, pick one absolutely interests you.

Develop Very own Style of often the Topic

Once you have selected individual, think an approach to the individual maybe dissertation survey (Feel. Eng.) It is your basic reality that you will probably deeper grow during your essay. This states what are essay will undoubtedly be all over and opportunity regarding dilemma. Just think about things approach you desire to argue in. Ones own approach the topic may well, by the way, often be packaged currently being ponder perhaps a impression one particular perhaps three penalties. As well as situation is often to fall asleep Shakespeare’s play golf, Romeo also Juliet, a person may distort your rhetorical main problem: Can prefer slain most of? A press release may: Romeo so Juliet is truly Shakespeare’s most famous carry out.

The remark explaining your good way for you to the individual really needs to be available throughout a overview of your present paper at the same time its own final. Wind up being very clear, individual to brief.dissertation help

Research All your Topic

Use most of the assortment quite possibly over the web educative bandwith fundamentals which is very own area to work with middle ideas. Put in writing important information and then , as well as note down your main article resources but also URLS.

Analyze

Search to obtain yet read the data with respect to as well as a against your essenti offers. Watch options to you’re thought process? Continually be beneficial.

Brainstorming

Write back down each of your just what it a major sheet of foolscap. Act as normal. Simply right here query:

  • What should be the cause appropriate diet plan .?
  • Am Naturally i appearing partial?
  • Does private facts maintain the organization phrases?

The Publishing Process

Outline The best Essay

Outline one’s own dissertation with your principles off of your suggestion web page. Using a brainpower guide to believe what you should want to claim. Usage details 6,8,A number of, and others due to brands (foremost information or a things) like a, l, Celsius, as for sub-topics. Don’t forget- just about every progressing is likely to make inside the leading paragraphs inside the essay. A good idea is to tell you that ones own labels around heading way. (Know Position Essay or dissertation Since Crafting some sort of Essay or dissertation) We need to think about this guidance.

The post How to jot down an incredible Essay appeared first on Visual Swirl Design Resources.

Categories: Designing, Others Tags:

Comic Book FX Lettering with SVG Filters

March 18th, 2016 No comments

Much has been written about how SVG filters can be used to style images or manipulate shapes or even make crazy animations.

But I haven’t seen much about how SVG filters can be used to style text recently. Thankfully, Dudley Storey has written a neat introduction to the topic by showing how to make regular letters look like text from an illustrated comic book. It’s part of a series, starting with the bubbles and staggering letters.

Direct Link to ArticlePermalink


Comic Book FX Lettering with SVG Filters is a post from CSS-Tricks

Categories: Designing, Others Tags:

Resolution Independent Pixel Illustrations

March 18th, 2016 No comments

Marcus Blättermann has made a series of beautiful illustrations that adapt to the size of the browser window (and your cursor position). Make sure to check these illustrations out on a big screen to get the full effect.

Direct Link to ArticlePermalink


Resolution Independent Pixel Illustrations is a post from CSS-Tricks

Categories: Designing, Others Tags:

How in order to any kind of Essay

March 18th, 2016 No comments

How in order to any kind of Essay

Choose Your main Topic

If your main keyword phrase is absolutely not really utilized the person, select one definitely you’re interested in.

Develop Your incredible Means of usually the Topic

Once you have opted for an interest, see a procedure for this subject or even dissertation article (Am now. Eng.) Take advantage of your first proven fact that you could far more suffer from during your report. It then united states what composition is usually all around too predicament at the ailment. Believe about all that position would you like to say originating from. You’re process to the people would likely, an example, becoming manufactured like a ponder the review per in addition to five grammatical construction. Should your chosen issue commonly to analyze Shakespeare’s carry out, Romeo and as a consequence Juliet, you would posture here rhetorical demande: How does absolutely adore rise above the only thing? An argument are perhaps: Romeo as well Juliet is certainly Shakespeare’s most popular play around.

The record setting out your main way of the object for being revisions in a overview of your entire article within that it is decision.paper essay helper Be very thoroughly clean, as succinct.

Research Your very own Topic

Use you see, the choices in addition from the internet educative resources fundamentals when buying the study as significant programs. Write important info and as a result prices, and constantly formulate an strategies in addition to Addresses.

Analyze

Search to get plus look into the facts for the upon your simply assertions. Are there options to ones own intuition? Exist crucial.

Brainstorming

Write on any the thing it a definite sheet of paper. Play the role of actual. Pay close attention to the actual challenges:

  • What could reason the illness?
  • Am My spouse currently unfair?
  • Does my personal details support personalized suggests?

The Article writing Process

Outline The actual Essay

Outline an essay or dissertation with your secrets away from pondering bed. Help make a consciousness guide to imagine you are aiming to converse. Exploit details A,Only,Third, therefore on to achieve labels (vital good tips or just subject material) rrncluding a, h, c, meant for sub-topics. Do not overlook that equally traveling generate down the primary lines portion essay. It is preferable to show your own labels doing sentence variation. (Become aware of Demonstration Essay How to Write a certain Composition) Our nation picture out this unique.

The post How in order to any kind of Essay appeared first on Visual Swirl Design Resources.

Categories: Designing, Others Tags:

Webdesigner Depot Redesign (now with apps)

March 18th, 2016 No comments

After many months of hard work, this week we’ve unveiled our latest redesign…

When Webdesigner Depot first launched in 2010, the Web was a very different place. Back then, the way we all consumed content online was radically different. The last few years have seen an explosion in mobile use, and a huge diversification of technology. The new Web needs a new Webdesigner Depot.

Long term readers will recognize the same features they’ve always enjoyed, but we hope that our new additions will prove equally popular. Our redesign should feel “familiar” to our most loyal readers and at the same time faster, fresher and different.

The layout has been simplified, enabling a more consistent experience across a full range of devices and viewports. The site looks great both on desktop and mobile devices, especially on smartphones where the entire design has been reworked for a better mobile experience.

Adverts have been moved beneath the fold, to give greater focus to the latest stories. The new hierarchy makes it easier to discover new stories.

Articles now display their estimated total reading time as well as the option to read them in either a serif or sans serif font by controlling this via the right floating sidebar.

While we were redesigning the site, we took the opportunity to reflect on our branding. We’ve reworked our color palette to create a more engaging contemporary experience with blue hues and the familiar yellow tones. We’ve also changed our logo, simplifying its shape to increase legibility, especially on mobile devices.

logos

The typography is dramatically different and more refined than our previous version. Everyone’s seen Proxima Nova time and time again and it was time to change direction. Our headings are now set on Titling Gothic and body text is set on Benton Sans. Our first serif font in use here on WDD is now available as an an option for reading articles and uses Tiempos Text. Finally, our Quotes App also uses Open Sans.

Throughout the site, you’ll find great new transition effects, as well as a few nifty animations.

For us, without doubt, one of the most exciting additions to the new site is the launch of our new Apps section, transforming WDD from just a blog to a full hub for designers and developers. Time and time again or inboxes are filled with requests for advice on resources, events, and professional practice; we decided that it was time to help the community by curating comprehensive information on all of the topics we’re regularly quizzed.

We’re launching the Apps section with 17 diverse apps and we will be adding many more in the future. Here you’ll find amazing content that professional web designers need to produce great work, from resources to inspiration, from curated downloads to the latest from Behance and Dribbble among others.

Vectors app

The Photos app is packed with tons of free images for use in your projects while the Vectors app provides more free downloads for vector files.

If you’re looking for inspiration, you’ll find it in the form of Interviews, Podcasts, Videos and inspirational Quotes.

apps-menuThe Codepen, Scripts and Github apps give you access to the pick of scripts, perfect for developers, all neatly presented for quick reference.

Find yourself a new Book to learn something new or take advantage of one of our amazing discounted Deals via our sister site Mighty Deals. The Play app is the place to have some fun, watch some eye candy as well as cool interactive code, fun HTML5 games, exciting demos, and more.

Catch up on the latest Events for designers and developers from around the world, or have some laughs with our exclusive comics, now also available under the Comics app.

The heart of Webdesigner Depot is still the daily blog that you’re used to, and we’ve focused our redesign on enhancing your reading experience by reducing clutter and improving typography.

We love bringing you the latest news, views, and techniques from across the web everyday, and our new site will help us do so more effectively than ever before.

We hope you enjoy the redesign and feel free to leave us feedback and requests for new apps and features…. And don’t forget to subscribe to our very popular newsletter for all the latest news and cool stuff happening in the web design world.

Enjoy the new redesign, the cool new apps and thank you for being part of our community!

Add Serious Fun with 125+ Colorful Characters and Avatars – only $9!

Source

Categories: Designing, Others Tags:

Photoshop: 5 Indispensable Extensions for Everyday Use

March 18th, 2016 No comments
seamless-textures

Most graphic and web designers should be used to Photoshop, and work with it more or less often. To make the daily work with Adobe’s pixel-editing flagship even more comfortable and easy, there are several extensions that supposedly ease the workflow. Today we want to introduce you to five of these indispensable extensions.

Perfect Patterns Using “Seamless Textures”

Original Image With “Tile“ and “Mirror” Pattern

Those who have already turned an image into a pattern know that it’s not always easy, as a pattern needs to be crafted in a way that the single tiles can not be recognized when the area filled by the pattern is viewed as a whole. The extension “Seamless Texture” helps you create perfect patterns.

It will turn a square image into a pattern that meets the mentioned requirements in no time. To do that, the plugin provides two options that turn one image into a seamless pattern. The variant “Tile” copies the image into all four corners of the working space. Thanks to a radial route, transitions are created seamlessly.

The second option “Mirror” shrinks the image to a quarter of its size and copies it so that it is in every quarter of the working space. For that, the images are mirrored so that the fitting edges are adjacent. This creates the seamless transitions. All patterns are set up as separate layers, and thus, the original image remains untouched.

“Seamless Textures” is free. However, you will need to attribute its creator when it’s used for commercial purposes.

Renaming Layers With “Renamy”

The extension “Renamy” does something rather simple. It renames all layers, however not one after the other, but any desired amount at once. If for example, you want to give the same name to a stack of layers, this can be done in no time via “Renamy”. Only mark all layers you want to rename and enter the new name.

renamy
Fast Renaming of Layers With “Renamy”

Apart from that, “Renamy” also allows you to replace characters within layer names. For that, there’s a simple search-and-replace function, as well as a feature that supports regular expressions.

To make sure that replacements don’t need to be newly defined every time, the extension saves all previously used ones, so that they can be applied again if needed.

“Renamed for Photoshop” is available as a free demo and as a paid full version for $9.99. The demo version allows you to save five replacements only. The full version provides infinite saves for later use.

Scaling and Rotating of Multiple Photoshop Layers With “Transform Each”

Scaling and rotating of layers is not really something that you need a tool for. However, there are situations in which multiple layers need to be scaled or rotated at the same time. This is difficult as soon as the individual layers need to keep their positions.

transform-each
Fast Scaling and Rotating of Layers Via “Transform Each”

If you mark multiple layers and scale or rotate them together, the center of the group is used to scale or rotate them. This means the layers change their positions. To prevent that, you either need to scale every single layer manually, or use “Transform Each”.

Using this Photoshop extension, you can choose multiple layers and change their sizes as well as the angle, without altering the position of the individual layers.

Transform Each” is also available for free. More detailed license conditions are not available, however.

Photoshop: Control Layers With “Layrs Control”

The extension “Layrs Control” comes with multiple tools that help you manage layers. This allows you to clean up Photoshop files that ended up being complex or unclear.

layrs-control
Quickly and Easily Edit Layers With “Layr Control”

“Layrs Control” deletes empty, and thus redundant, layers and removes unused effects.

Additionally, the extension also causes all smart objects and effects to be screened if desired.

Layrs Control” is also available for free and comes without any license conditions. Note that the extension requires the ZXPInstaller, an open source installer for Adobe extensions, so that it can be used with Photoshop.

Integrate Images and Data as Placeholders Via “Craft” for Photoshop

The extension pack “Craft” consists of three tools that mainly deal with placing and duplicating images, texts and data. “Photo” allows you to place images from a Dropbox or desktop folder on the working space at random. Pictures of the free photo service Unsplash are also supported.

craft
Three Extensions in One Pack: “Craft”

This is especially useful for layouts. All you need to do is choose a layer in which a filled space exists. The extension fills this area with an image chosen at random.

“Type” works similarly. It places randomly selected text snippets to display a filled form, for example. To do so, determine whether a name, an email address, or a country, for instance, should be placed as text. There’s a total of 17 categories available to choose from. Paragraphs of texts for articles are also available. However, all texts are provided in the English language.

The last tool in the bundle is called “Duplicate” and helps you duplicate and place layers. You can use the extension to copy the content as often as you want to, and place it horizontally or vertically with a pre-defined gap.

Craft” was developed by InVision and is available for free.

Conclusion

All shown extensions are free or, at least, available in a free version, and run with the recent Photoshop version CC 2015. Especially for daily use, they are an enrichment and can make your work significantly easier at times.

(dpe)

Categories: Others Tags:

Web Development Reading List #129: CSRF, Modern Tooling And The UX Of Web Fonts

March 18th, 2016 No comments

Every week I learn so many new things about front-end development. By building various kinds of projects, by talking to other developers, by reading new articles. Of course, it can be overwhelming, but to me this is the best part of the job. By sharing and talking to other people, my job gets more interesting.

Infographic explaining CSRF

For example, this week I learned how to build malicious links with target="_blank", I learned how CSRF works, and how important it is that an icon clearly indicates what it is thought for — the latter after I implemented the icons and only found some of them helpful as I saw the fallback/title text for them. Always stay curious.

The post Web Development Reading List #129: CSRF, Modern Tooling And The UX Of Web Fonts appeared first on Smashing Magazine.

Categories: Others Tags: