ni David Polonia By feedproxy.google.com Published On :: Fri, 08 May 2020 08:52:38 +0000 Full Article Inspiration siteinspire Web
ni Limnia By feedproxy.google.com Published On :: Fri, 08 May 2020 08:54:41 +0000 Full Article Inspiration siteinspire Web
ni Scurry: A Race-To-Finish Scavenger Hunt App By feedproxy.google.com Published On :: Thu, 26 Mar 2020 13:58:00 -0400 We have a lot of traditions here at Viget, many of which you may have read about - TTT, FLF, Pointless Weekend. There are others, but you have to be an insider for more information on those. Pointless Weekend is one of our favorite traditions, though. It’s been around over a decade and some pretty fun work has come out of it over the years, like Storyboard, Baby Bookie, and Short Order. At a high level, we take 48 hours to build a tool, experiment, or stunt as a team, across all four of our offices. These projects are entirely separate from our client work and we use them to try out new technologies, explore roles on the team, and stress-test our processes. The first step for a Pointless Weekend is assembling the teams. We had two teams this year, with a record number of participants. You can read about TrailBuddy, what the other team built, here. The Scurry team was split between the DC and Durham offices, so all meetings were held via Hangout. Once we were assembled, we set out to understand the constraints and the goals of our Pointless Project. We went into this weekend with an extra pep in our step, as we were determined to build something for the upcoming Viget 20th anniversary TTT this summer. Here’s what we knew we wanted: An activity all Vigets could do together, where they could create memories, and share broadly on socialSomething that we could use in a spotty network at C Lazy U Ranch in ColoradoA product we can share with others: corporate groups, families and friends, schools, bachelor/ette parties We landed on a scavenger hunt native app, which we named Scurry (Scavenger + Hurry = Scurry. Brilliant, right?). There are already a few scavenger apps available, so we set out to create something that was Quick and easy to set up huntsFree and intuitive for usersA nice combination of trivia and activitiesSocial! We wanted to enable teams to share photos and progress One of the main reasons we have Pointless Weekends is to test out new technologies and processes. In that vein, we tried out Notion as our central organizing tool - we used it for user journeys, data modeling, and even writing tickets, which we typically use Github for. We tested out Notion as our primary tool, writing tickets and tracking progress. When we built the app, we needed to prepare for spotty network service, as internet connectivity isn’t guaranteed at C Lazy U Ranch – where our Viget20 celebration will be. A Progressive Web Application (PWA) didn't make sense for our tech requirements, so we chose the route of creating a native application. There are a number of options available to build native applications. But, as we were looking to make as much progress as possible in 48-hours, we chose one of our favorite frameworks: React Native. React Native allows developers to build true, cross-platform native applications, using some of our favorite technologies: javascript, the React framework, and a native-specific variant of CSS. We decided on the turn-key solution Expo. Expo has extra tooling allowing for easy development, deployment, and debugging. This is a snap shot of our app and Expo. Our frontend developers were able to immediately dive in making screens and styling components, and quickly made the mockups in Whimsical a reality. On the backend, we used the supported library to connect to the backend datastore, Firebase. Firebase is a hosted solution for data storage, with key features built-in like authentication, realtime updates, and offline support. Our backend developer worked behind the frontend developers hooking those views up to live data. Both of these tools, Expo and Firebase, were easy to use and allowed us to focus on building a working application quickly, rather than being mired in setup or bespoke solutions to common problems. Whimsical is one of our favorite tools for building out mockups of an app. We made impressive progress in our 48-hour sprint, but there’s still some work to do. We have some additional features we hope to add before TTT, which will require additional testing and refining. For now, stay tuned and sign up for our newsletter. We’ll be sure to share when Scurry is ready for the world! Full Article News & Culture
ni 5 things to Note in a New Phoenix 1.5 App By feedproxy.google.com Published On :: Fri, 24 Apr 2020 13:44:00 -0400 Yesterday (Apr 22, 2020) Phoenix 1.5 was officially released ???? There’s a long list of changes and improvements, but the big feature is better integration with LiveView. I’ve previously written about why LiveView interests me, so I was quite excited to dive into this release. After watching this awesome Twitter clone in 15 minutes demo from Chris McCord, I had to try out some of the new features. I generated a new phoenix app with the —live flag, installed dependencies and started a server. Here are five new features I noticed. 1. Database actions in browser Oops! Looks like I forgot to configure the database before starting the server. There’s now a helpful message and a button in the browser that can run the command for me. There’s a similar button when migrations are pending. This is a really smooth UX to fix a very common error while developing. 2. New Tagline! Peace-of-mind from prototype to production This phrase looked unfamiliar, so I went digging. Turns out that the old tagline was “A productive web framework that does not compromise speed or maintainability.” (I also noticed that it was previously “speed and maintainability” until this PR from 2019 was opened on a dare to clarify the language.) Chris McCord updated the language while adding phx.new —live. I love this framing, particularly for LiveView. I am very excited about the progressive enhancement path for LiveView apps. A project can start out with regular, server rendered HTML templates. This is a very productive way to work, and a great way to start a prototype for just about any website. Updating those templates to work with LiveView is an easier lift than a full rebuild in React. And finally, when you’re in production you have the peace-of-mind that the reliable BEAM provides. 3. Live dependency search There’s now a big search bar right in the middle of the page. You can search through the dependencies in your app and navigate to the hexdocs for them. This doesn’t seem terribly useful, but is a cool demo of LiveView. The implementation is a good illustration of how compact a feature like this can be using LiveView. 4. LiveDashboard This is the really cool one. In the top right of that page you see a link to LiveDashboard. Clicking it will take you to a page that looks like this. This page is built with LiveView, and gives you a ton of information about your running system. This landing page has version numbers, memory usage, and atom count. Clicking over to metrics brings you to this page. By default it will tell you how long average queries are taking, but the metrics are configurable so you can define your own custom telemetry options. The other tabs include process info, so you can monitor specific processes in your system: And ETS tables, the in memory storage that many apps use for caching: The dashboard is a really nice thing to get out of the box and makes it free for application developers to monitor their running system. It’s also developing very quickly. I tried an earlier version a week ago which didn’t support ETS tables, ports or sockets. I made a note to look into adding them, but it's already done! I’m excited to follow along and see where this project goes. 5. New LiveView generators 1.5 introduces a new generator mix phx.gen.live.. Like other generators, it will create all the code you need for a basic resource in your app, including the LiveView modules. The interesting part here is that it introduces patterns for organizing LiveView code, which is something I have previously been unsure about. At first glance, the new organization makes sense and feels like a good approach. I look forward to seeing how this works on a real project. Learn More We're hiring Application Developers in our Boulder, Chattanooga, Durham, Falls Church and Remote (U.S. Only) offices. Learn more and introduce yourself. Conclusion The 1.5 release brings more changes under the hood of course, but these are the first five differences you’ll notice after generating a new Phoenix 1.5 app with LiveView. Congratulations to the entire Phoenix team, but particularly José Valim and Chris McCord for getting this work released. Full Article Code Back-end Engineering
ni New Project Launch: Sanibel Communities for Clean Water By feedproxy.google.com Published On :: Tue, 11 Jul 2017 19:37:32 +0000 We created the program identity and website for this City of Sanibel initiative. Full Article Featured Graphic / Print Design Logo Design Southwest Florida Web Design Website Launches Wordpress logo design Sanibel Web Design
ni How To Design An Iconic Logo By www.noupe.com Published On :: Fri, 08 May 2020 05:46:01 PDT https://www.noupe.com/design/how-to-design-an-iconic-logo.html Full Article
ni Trump officials say people with disabilities must not be denied lifesaving coronavirus care By feedproxy.google.com Published On :: Mon, 30 Mar 2020 14:09:48 EDT Patients with disabilities must receive the same level of lifesaving medical treatment from hospitals during the coronavirus pandemic as able-bodied patients, the Trump administration said. Full Article
ni Troops to receive Purple Hearts for injuries during Iranian missile barrage on al-Asad airbase in Iraq By feedproxy.google.com Published On :: Wed, 29 Apr 2020 13:50:08 EDT There will be Purple Hearts awarded to troops injured during the Jan. 8 Iranian missile barrage on the al-Asad airbase in Iraq, a defense official told Military Times. Full Article
ni Affinity Airbrush Shading Brushes for Premium Members By blog.spoongraphics.co.uk Published On :: Fri, 17 Apr 2020 07:00:36 +0000 Access All Areas members have been requesting more Affinity Designer resources, so this week members can download this great set of Airbrush Shading Brushes made specifically for Affinity, courtesy of The Artifex Forge. Add organic texture shading to designs and illustrations with ease! This versatile shading brush pack contains a wide variety of textures – […] The post Affinity Airbrush Shading Brushes for Premium Members appeared first on Spoon Graphics. Full Article Premium access all areas affinity resources
ni Support Communication During Conversation By feedproxy.google.com Published On :: Wednesday, April 29, 2020 - 12:54pm Full Article
ni Troops to receive Purple Hearts for injuries during Iranian missile barrage on al-Asad airbase in Iraq By feedproxy.google.com Published On :: Wednesday, April 29, 2020 - 1:50pm There will be Purple Hearts awarded to troops injured during the Jan. 8 Iranian missile barrage on the al-Asad airbase in Iraq, a defense official told Military Times. Full Article
ni Remapping the Neural Pathways of Humanity By feedproxy.google.com Published On :: Monday, May 4, 2020 - 10:47am The pandemic has changed the daily lives of everyone. How we work, how we shop, and how we interact with each other are all shifting. Comparing life as it is now with how it used to be can lead to sadness or despair and what's called "ambiguous loss." Full Article
ni How to use social proof for gaining credibility and boosting conversions By feedproxy.google.com Published On :: Fri, 21 Feb 2020 05:59:00 +0000 The internet has given many web companies the chance to rise and meet new audiences. The challenge for these companies is the competition to grow the customer base and build the companies’ credibility. One of the ways to do that is to use social proof as a marketing tool. Many people make decisions regarding a […] Full Article Blog How-to & tutorials UX Web design
ni Lazy Object Initialization By feedproxy.google.com Published On :: Mon, 17 Feb 2020 13:13:33 +0000 The Firefox DevTools underlying code, which is written with JavaScript and HTML, is a complex application. Due to the complexity and amount of work going on, the DevTools team has done everything they can to load as little as possible. Furthermore the team has a system of lazily importing and initializing objects when they’re needed. […] The post Lazy Object Initialization appeared first on David Walsh Blog. Full Article JavaScript
ni Nikon D750: Answers to Your Real Questions By feedproxy.google.com Published On :: Wed, 15 Apr 2020 17:36:43 +0000 Whether you’ve just purchased the Nikon D750 or you’re still in the research phase, you likely already know this is a DSLR with an amazing price point. It’s still one of the top rated cameras, even after more than 5 years on the market. Lightweight and extremely reliable, with excellent dynamic range, the Nikon D750 is a full frame DSLR Continue Reading The post Nikon D750: Answers to Your Real Questions appeared first on Photodoto. Full Article Cameras & Equipment Accessories answers to questions lenses nikon d750
ni Tips for Digitizing and Organizing Old Photos By feedproxy.google.com Published On :: Mon, 02 May 2016 15:42:00 +0000 Technology continues to transform the world at a mind-numbing pace. Every year it seems, new technologies emerge that put our traditional ways of doing things to shame. Some of these methods are inherently superior, such as the movement toward digital media. While you might not be able to physically feel it in the palms of your hands, having digital media can ensure that you never lose pictures, photos and other forms of media. Most people have old photos laying around that they’d like to ensure last forever, but they haven’t taken the time to digitize and organize them. We’ll review some tips on how to digitize and organize your old photos so that they stand the test of time. Procure a Capture Solution There are a few different ways in which you can begin the process of digitizing your old photos. The first solution is through the use of a ... Read more The post Tips for Digitizing and Organizing Old Photos appeared first on Digital Photography Tutorials. Full Article Photo Editing cloud-based storage service digitizing your old photos Google Photos
ni Tutorial: Trendy Splitscreen Layout With CSS3 Animations (Pt. 1) By webdesignerwall.com Published On :: Thu, 29 Dec 2016 18:00:54 +0000 There is no better time than the end of the year for some fresh inspiration! One of the most popular trends this year, features splitscreen layouts, lots of white space, clean typography and subtle effects. With this playful trend in mind, I’ve created a two-part tutorial to show you how to use flexbox, 3D transforms […] The post Tutorial: Trendy Splitscreen Layout With CSS3 Animations (Pt. 1) appeared first on Web Designer Wall. Full Article Tutorials CSS jQuery
ni Tutorial: Duo Layout With CSS3 Animations & Transitions (Pt. 2) By webdesignerwall.com Published On :: Thu, 05 Jan 2017 11:00:01 +0000 Last week I demonstrated how to build a split-screen website layout using CSS flexbox and viewport units that offers an alternative way to present a brand’s featured content. Clicking on one side or the other navigates further into the site without a page load, using CSS transitions and 3d transforms. This week, I’ll show you […] The post Tutorial: Duo Layout With CSS3 Animations & Transitions (Pt. 2) appeared first on Web Designer Wall. Full Article Tutorials CSS jQuery
ni Easy CSS Animation With Transition & Transforms By webdesignerwall.com Published On :: Thu, 19 Jan 2017 13:00:43 +0000 Recently, I walked you through how to create a simple landing page that used a couple different CSS animation techniques. “Animation” is a loose term, in web design usually referring to anything that involves movement. CSS transitions are one tool we are given to manipulate elements on state changes or mouse events, and when combines […] The post Easy CSS Animation With Transition & Transforms appeared first on Web Designer Wall. Full Article Tutorials CSS
ni Easy CSS Animation Using @keyframes By webdesignerwall.com Published On :: Mon, 23 Jan 2017 18:08:52 +0000 CSS Transitions and transforms work beautifully for creating visual interactions based on single state changes. To have more control over what happens and when, you can use the CSS animation property to create easy CSS animation using @keyframes. This technique has a wide range of design application and can be used to build dazzling pre-loaders, […] The post Easy CSS Animation Using @keyframes appeared first on Web Designer Wall. Full Article Tutorials CSS jQuery
ni Warning: Avoid This Scam Targeting Photographers By feedproxy.google.com Published On :: Wed, 07 Jun 2017 07:04:25 +0000 Over at All Things Photo, I’ve shared a video detailing a scam targeting photographers selling prints online. Also included in the video are 7 tips to avoid being scammed online. While the video is on the long side it’s worth a listen to protect yourself and learn the limitations of fraud protection with your bank and insurance companies. If you’re driving you can also listen to the podcast recording via the All Things Photo podcast. If you haven’t already I welcome you to follow All Things Photo on YouTube, Twitter and Facebook. Full Article All Things Photo Photography Podcast
ni Cell Phones for Seniors: Stay Independent, Stay Safe By unlimitedcellphoneplansblog.wordpress.com Published On :: Wed, 18 Apr 2018 07:31:44 +0000 GPS is a must in any cell phone for seniors. It’ll help them get their bearings when they’re lost via GPS navigation and maps and it’ll help you (or emergency services). Cell Phones for Seniors Full Article Senior Phones and Plans senior cell phone plans
ni We’re Drowning in Seas of Plastic By feedproxy.google.com Published On :: Fri, 20 Apr 2018 18:15:31 +0000 By David Suzuki David Suzuki Foundation The fossil fuel era must end, or it will spell humanity’s end. The threat isn’t just from pollution and accelerating climate change. Rapid, wasteful exploitation of these valuable resources has also led to a … Continue reading → Full Article Points of View & Opinions plastic pollution
ni We Must Heed Storm Warnings to Build a Brighter Future By feedproxy.google.com Published On :: Fri, 21 Sep 2018 21:28:49 +0000 By David Suzuki with contributions from Senior Editor Ian Hanington David Suzuki Foundation In 2012, North Carolina’s Coastal Resources Commission warned that sea levels there could rise by a metre over the next century. The warning was based in part … Continue reading → Full Article Points of View & Opinions Climate Change forecasts Global Warming sea level rise
ni 5 Tips That You Absolutely Must Know To Design A Unique Metal Business Card By icanbecreative.com Published On :: Sat, 04 Apr 2020 04:15:51 PDT Every day thousands of business cards exchange hands, and these business cards often get lost in mounds of other cards. Often, clients are unable to reach you just because they couldn't find your... Full Article Design Roud-up
ni How Can SEO Help Market Your Designing Agency? By icanbecreative.com Published On :: Sun, 12 Apr 2020 17:28:24 PDT It's unusual, as indeed Google says that in case you've got to enlist an SEO strategy, you ought to do so early instead of late, like when you're appropriate arranging to launch a new site. Because... Full Article SEO
ni Loosening the Caregiver's Grip By feedproxy.google.com Published On :: Monday, June 11, 2018 - 12:47pm It happens slowly, like that metaphorical frog you’ve heard about. Possessiveness and controlling behavior in TBI caregivers is something that creeps up on you, and I suspect it is common — not because people are trying to be annoying, but because they care so much and want to see that their loved one is treated well in every respect. Full Article
ni Scurry: A Race-To-Finish Scavenger Hunt App By feedproxy.google.com Published On :: Thu, 26 Mar 2020 13:58:00 -0400 We have a lot of traditions here at Viget, many of which you may have read about - TTT, FLF, Pointless Weekend. There are others, but you have to be an insider for more information on those. Pointless Weekend is one of our favorite traditions, though. It’s been around over a decade and some pretty fun work has come out of it over the years, like Storyboard, Baby Bookie, and Short Order. At a high level, we take 48 hours to build a tool, experiment, or stunt as a team, across all four of our offices. These projects are entirely separate from our client work and we use them to try out new technologies, explore roles on the team, and stress-test our processes. The first step for a Pointless Weekend is assembling the teams. We had two teams this year, with a record number of participants. You can read about TrailBuddy, what the other team built, here. The Scurry team was split between the DC and Durham offices, so all meetings were held via Hangout. Once we were assembled, we set out to understand the constraints and the goals of our Pointless Project. We went into this weekend with an extra pep in our step, as we were determined to build something for the upcoming Viget 20th anniversary TTT this summer. Here’s what we knew we wanted: An activity all Vigets could do together, where they could create memories, and share broadly on socialSomething that we could use in a spotty network at C Lazy U Ranch in ColoradoA product we can share with others: corporate groups, families and friends, schools, bachelor/ette parties We landed on a scavenger hunt native app, which we named Scurry (Scavenger + Hurry = Scurry. Brilliant, right?). There are already a few scavenger apps available, so we set out to create something that was Quick and easy to set up huntsFree and intuitive for usersA nice combination of trivia and activitiesSocial! We wanted to enable teams to share photos and progress One of the main reasons we have Pointless Weekends is to test out new technologies and processes. In that vein, we tried out Notion as our central organizing tool - we used it for user journeys, data modeling, and even writing tickets, which we typically use Github for. We tested out Notion as our primary tool, writing tickets and tracking progress. When we built the app, we needed to prepare for spotty network service, as internet connectivity isn’t guaranteed at C Lazy U Ranch – where our Viget20 celebration will be. A Progressive Web Application (PWA) didn't make sense for our tech requirements, so we chose the route of creating a native application. There are a number of options available to build native applications. But, as we were looking to make as much progress as possible in 48-hours, we chose one of our favorite frameworks: React Native. React Native allows developers to build true, cross-platform native applications, using some of our favorite technologies: javascript, the React framework, and a native-specific variant of CSS. We decided on the turn-key solution Expo. Expo has extra tooling allowing for easy development, deployment, and debugging. This is a snap shot of our app and Expo. Our frontend developers were able to immediately dive in making screens and styling components, and quickly made the mockups in Whimsical a reality. On the backend, we used the supported library to connect to the backend datastore, Firebase. Firebase is a hosted solution for data storage, with key features built-in like authentication, realtime updates, and offline support. Our backend developer worked behind the frontend developers hooking those views up to live data. Both of these tools, Expo and Firebase, were easy to use and allowed us to focus on building a working application quickly, rather than being mired in setup or bespoke solutions to common problems. Whimsical is one of our favorite tools for building out mockups of an app. We made impressive progress in our 48-hour sprint, but there’s still some work to do. We have some additional features we hope to add before TTT, which will require additional testing and refining. For now, stay tuned and sign up for our newsletter. We’ll be sure to share when Scurry is ready for the world! Full Article News & Culture
ni 5 things to Note in a New Phoenix 1.5 App By feedproxy.google.com Published On :: Fri, 24 Apr 2020 13:44:00 -0400 Yesterday (Apr 22, 2020) Phoenix 1.5 was officially released ???? There’s a long list of changes and improvements, but the big feature is better integration with LiveView. I’ve previously written about why LiveView interests me, so I was quite excited to dive into this release. After watching this awesome Twitter clone in 15 minutes demo from Chris McCord, I had to try out some of the new features. I generated a new phoenix app with the —live flag, installed dependencies and started a server. Here are five new features I noticed. 1. Database actions in browser Oops! Looks like I forgot to configure the database before starting the server. There’s now a helpful message and a button in the browser that can run the command for me. There’s a similar button when migrations are pending. This is a really smooth UX to fix a very common error while developing. 2. New Tagline! Peace-of-mind from prototype to production This phrase looked unfamiliar, so I went digging. Turns out that the old tagline was “A productive web framework that does not compromise speed or maintainability.” (I also noticed that it was previously “speed and maintainability” until this PR from 2019 was opened on a dare to clarify the language.) Chris McCord updated the language while adding phx.new —live. I love this framing, particularly for LiveView. I am very excited about the progressive enhancement path for LiveView apps. A project can start out with regular, server rendered HTML templates. This is a very productive way to work, and a great way to start a prototype for just about any website. Updating those templates to work with LiveView is an easier lift than a full rebuild in React. And finally, when you’re in production you have the peace-of-mind that the reliable BEAM provides. 3. Live dependency search There’s now a big search bar right in the middle of the page. You can search through the dependencies in your app and navigate to the hexdocs for them. This doesn’t seem terribly useful, but is a cool demo of LiveView. The implementation is a good illustration of how compact a feature like this can be using LiveView. 4. LiveDashboard This is the really cool one. In the top right of that page you see a link to LiveDashboard. Clicking it will take you to a page that looks like this. This page is built with LiveView, and gives you a ton of information about your running system. This landing page has version numbers, memory usage, and atom count. Clicking over to metrics brings you to this page. By default it will tell you how long average queries are taking, but the metrics are configurable so you can define your own custom telemetry options. The other tabs include process info, so you can monitor specific processes in your system: And ETS tables, the in memory storage that many apps use for caching: The dashboard is a really nice thing to get out of the box and makes it free for application developers to monitor their running system. It’s also developing very quickly. I tried an earlier version a week ago which didn’t support ETS tables, ports or sockets. I made a note to look into adding them, but it's already done! I’m excited to follow along and see where this project goes. 5. New LiveView generators 1.5 introduces a new generator mix phx.gen.live.. Like other generators, it will create all the code you need for a basic resource in your app, including the LiveView modules. The interesting part here is that it introduces patterns for organizing LiveView code, which is something I have previously been unsure about. At first glance, the new organization makes sense and feels like a good approach. I look forward to seeing how this works on a real project. Learn More We're hiring Application Developers in our Boulder, Chattanooga, Durham, Falls Church and Remote (U.S. Only) offices. Learn more and introduce yourself. Conclusion The 1.5 release brings more changes under the hood of course, but these are the first five differences you’ll notice after generating a new Phoenix 1.5 app with LiveView. Congratulations to the entire Phoenix team, but particularly José Valim and Chris McCord for getting this work released. Full Article Code Back-end Engineering
ni Illustrator Tutorial: How to Create an Icognito Icon By feedproxy.google.com Published On :: Wed, 11 Sep 2019 18:04:04 +0000 Welcome back to another Illustrator based tutorial, in which we’re going to take a close look behind the process of creating an incognito icon, using nothing more than a couple of simple shapes and tools. So, assuming you already have the software running in the background, bring it up and let’s jump straight into it! […] The post Illustrator Tutorial: How to Create an Icognito Icon appeared first on Bittbox. Full Article How To Illustrator Adobe adobe illustrator Featured icon incognito incognito icon line art line icon Vector vector icon
ni Adobe buys Nitobi By feedproxy.google.com Published On :: Wed, 05 Oct 2011 01:52:57 +0000 As it kicked off its yearly developer event, Adobe announced that it had acquired Nitobi Software, maker of PhoneGap open source software for cross-platform mobile application building with HTML5 and JavaScript. In a blog, Nitobi CEO Andre Charland pledged to pursue donation of the PhoneGap code to the Apache Software Foundation ”to ensure open stewardship Read the rest... Full Article Front Page html5 JavaScript Mobile
ni METAL INJECTION LIVECAST #551 - Where Nickelback Shines with special guest Comedian Brian Posehn By feedproxy.google.com Published On :: Wed, 22 Jan 2020 03:00:18 +0000 We're so excited to have a huge guest on the show – big time comedian and noted metalhead, Brian Posehn,... The post METAL INJECTION LIVECAST #551 - Where Nickelback Shines with special guest Comedian Brian Posehn appeared first on Metal Injection. Full Article Metal Injection Livecast
ni METAL INJECTION LIVECAST #552 - Penis II Society By feedproxy.google.com Published On :: Wed, 29 Jan 2020 01:33:01 +0000 What's with all the good drummers dying? We kick things off discussing the sad news. Noa discussed locking herself out... The post METAL INJECTION LIVECAST #552 - Penis II Society appeared first on Metal Injection. Full Article Metal Injection Livecast
ni Drowning in Plastic By feedproxy.google.com Published On :: Wed, 29 Jan 2020 18:29:16 +0000 Simon Scarr and Marco Hernandez at Reuters created Drowning in Plastic, visualizing the amount of plastic bottles we consume, recycle and throw away every hour, day, month, year and decade.Around the world, almost 1 million plastic bottles are purchased every minute. As the environmental impact of that tide of plastic becomes a growing political issue, major packaged goods sellers and retailers are under pressure to cut the flow of the single-use bottles and containers that are clogging the world’s waterways.Plastic production has surged in the last 50 years, leading to widespread use of inexpensive disposable products that are having a devastating effect on the environment. Images of plastic debris-strewn beaches and dead animals with stomachs full of plastic have sparked outrage.Polyethylene terephthalate (PET) bottles are commonly used for soft drinks and mineral water, but can also be used in other household or personal care products. Data from Euromonitor International, shows that more than 480 billion of these bottles were sold last year alone. That’s almost 1 million every minute, as shown in the animation at the top of this page. The illustrations below show what that pile of plastic would look like if it was collected over a longer period of time. The visuals of massive piles of plastic bottles next to recognizable landmarks helps provide context and scale to readers.They also provided a nice Sankey Diagram showing the fate of most plastic bottles is to end up in the landfill. Found on FlowingData Full Article
ni DataViz Community COVID-19 Resources By feedproxy.google.com Published On :: Mon, 13 Apr 2020 16:07:55 +0000 Not an infographic today.Free online classes, discounts on software, extended trial periods, free online data sources, etc. as a result of the COVID-19 pandemic.As the Organizer for the DFW Data Visualization Meetup Group, I've started this publicly viewable Google Sheet for the local DataViz community listing various resources that companies are making available during the pandemic. Turns out, these are valuable to DataViz designers everywhere, not just DFW, so I'm sharing the link with all of you. I’ll continue to update this list as I learn about new resources during the pandemic. Please use the submission link in the spreadsheet if you know of any DataViz-related offers or deals I should add!-Randy Full Article
ni California Study: Four Widely Used Neonicotinoid Pesticides Harm Bees By feedproxy.google.com Published On :: Thu, 02 Aug 2018 18:33:52 +0000 Center for Biological Diversity Press Release WASHINGTON – Four commonly used neonicotinoid pesticides can harm bees and other pollinators, according to a new analysis by California’s Department of Pesticide Regulation. The study found that current approved uses of the “neonics” … Continue reading → Full Article Endangered Species ET News Bee California EPA Neonicotinoid Pesticides save the bees
ni ‘Warning Bells Going Off’ as NOAA Forecasts Entire Great Barrier Reef at Risk of Coral Bleaching and Death By feedproxy.google.com Published On :: Fri, 26 Oct 2018 20:20:14 +0000 By Jessica Corbett Common Dreams “This is a wake-up call,” says one Australian marine biologist. “Given sea temperatures usually increase as we get towards March, this is probably conservative.” Delivering yet another “wake-up call” after recent studies have shown that … Continue reading → Full Article ET News Ocean ET Global Warming Great Barrier Reef NOAA
ni Humanity ‘Sleepwalking Towards the Edge of a Cliff’: 60% of Earth’s Wildlife Wiped Out Since 1970 By feedproxy.google.com Published On :: Tue, 30 Oct 2018 20:36:31 +0000 By Julia Conley Common Dreams “Nature is not a ‘nice to have’—it is our life-support system.” Scientists from around the world issued a stark warning to humanity Tuesday in a semi-annual report on the Earth’s declining biodiversity, which shows that … Continue reading → Full Article Biodiversity ET News biodiversity extinction mass extinction wildlife
ni Insects Are ‘Glue in Nature’ and Must Be Rescued to Save Humanity, Says Top Scientist By feedproxy.google.com Published On :: Tue, 07 May 2019 22:23:24 +0000 By Jake Johnson Common Dreams Rapidly falling insect populations, said Anne Sverdrup-Thygeson, “will make it even more difficult than today to get enough food for the human population of the planet, to get good health and freshwater for everybody.” A … Continue reading → Full Article Endangered Species ET Perspectives
ni Finnish Air Force FA-18C Hornet By www.flickr.com Published On :: Sun, 02 Aug 2015 06:23:53 -0700 Andrew Rickmann posted a photo: Full Article
ni Finnish Air Force FA-18C Hornet By www.flickr.com Published On :: Sun, 02 Aug 2015 06:23:54 -0700 Andrew Rickmann posted a photo: Full Article
ni New EPA Web Portal Helps Communities Prepare for Climate Change By feedproxy.google.com Published On :: Thu, 06 Oct 2016 19:18:57 +0000 By The EPA The U.S. Environmental Protection Agency (EPA) today launched a new online portal that will provide local leaders in the nation’s 40,000 communities with information and tools to increase resilience to climate change. Using a self-guided format, the … Continue reading → Full Article Climate & Climate Change ET News climate adaptation Climate Change EPA
ni ‘Warning Bells Going Off’ as NOAA Forecasts Entire Great Barrier Reef at Risk of Coral Bleaching and Death By feedproxy.google.com Published On :: Fri, 26 Oct 2018 20:20:14 +0000 By Jessica Corbett Common Dreams “This is a wake-up call,” says one Australian marine biologist. “Given sea temperatures usually increase as we get towards March, this is probably conservative.” Delivering yet another “wake-up call” after recent studies have shown that … Continue reading → Full Article ET News Ocean ET Global Warming Great Barrier Reef NOAA
ni Humanity ‘Sleepwalking Towards the Edge of a Cliff’: 60% of Earth’s Wildlife Wiped Out Since 1970 By feedproxy.google.com Published On :: Tue, 30 Oct 2018 20:36:31 +0000 By Julia Conley Common Dreams “Nature is not a ‘nice to have’—it is our life-support system.” Scientists from around the world issued a stark warning to humanity Tuesday in a semi-annual report on the Earth’s declining biodiversity, which shows that … Continue reading → Full Article Biodiversity ET News biodiversity extinction mass extinction wildlife
ni Insects Are ‘Glue in Nature’ and Must Be Rescued to Save Humanity, Says Top Scientist By feedproxy.google.com Published On :: Tue, 07 May 2019 22:23:24 +0000 By Jake Johnson Common Dreams Rapidly falling insect populations, said Anne Sverdrup-Thygeson, “will make it even more difficult than today to get enough food for the human population of the planet, to get good health and freshwater for everybody.” A … Continue reading → Full Article Endangered Species ET Perspectives
ni 'And the award goes to...' How to avoid winning a Procrustes Award for bad UX By feedproxy.google.com Published On :: Mon, 1 Apr 2019 07:48:51 GMT We're familiar with awarding prizes for excellence, from the Oscars to The International Design Awards. But what if we started giving prizes to shame bad examples of design? Enter the Procrustes Awards. Full Article
ni Talking to computers (part 1): Why is speech recognition so difficult? By feedproxy.google.com Published On :: Thu, 3 Jun 2019 08:31:15 GMT Although the performance of today's speech recognition systems is impressive, the experience for many is still one of errors, corrections, frustration and abandoning speech in favour of alternative interaction methods. We take a closer look at speech and find out why speech recognition is so difficult. Full Article
ni The minimalist field researcher: What's in my bag? By feedproxy.google.com Published On :: Mon, 2 Sep 2019 08:11:19 GMT When carried out in a lab, user experience research is gear heavy. You need technology to record audio, video and the screen of the device under test. In contrast, when carried out in the field, user experience research is more lightweight. Even so, there are a few non-obvious items of kit that I find essential on a field visit. Full Article
ni Transitioning from academic research to UX research By feedproxy.google.com Published On :: Mon, 7 Oct 2019 08:08:19 GMT Doing UX research in a university is very different to doing UX research in a business setting. If you're an academic making the leap, what are the main differences you need to keep in mind? Full Article
ni What is cognitive load and why does it matter in web and interface design? By feedproxy.google.com Published On :: Thu, 27 Jun 2019 15:25:28 +0000 Successful design manages cognitive load. Cognitive load is a technical term for “mental effort,” more specifically it’s the total amount of mental effort required for a given task. Completing any task requires some level of mental effort. This includes learning new information, analyzing stimuli, and working with short and long-term memory. Mental energy which has […] The post What is cognitive load and why does it matter in web and interface design? appeared first on Psychology of Web Design | 3.7 Blog. Full Article Psychology of Design User Experience Web Design