Skip to main content

Design Tools to Help You Create Your Next Project- Part 2

Skuawk Public Domain Photos


“Artistically Loud” images, you’ll find them on Skuwak Public Domain Photos. This collection is more limited than what you’ll find on some of the other photos sites, but if the aesthetic fits what you’re looking for, this is a hidden gem.



Death to Stock is a simple stock photography resource that is built around “packs” of photos, each of which has a particular theme. Sign up for their email and get packs delivered right to your inbox. You can also sign up for a premium subscription and get access to all 1,500+ photos and videos across the site.



The team at Snappa created StockSnap, and the result is thousands of images you can use under Creative Commons Zero (CC0). You can browse by popular searches, or sort through images based on date, trending, views, downloads, and more.



The quality of photos on Pixabay is a bit more hit or miss, but the selection is much larger—you’ll have close to a million photos to choose from. All images and videos on this site fall under Creative Commons Zero (CC0), so feel free to download, modify, distribute, and use them royalty free. You can also find illustrations and vector graphics on this site.




Burst launched not too long ago, and already features over 1,000 beautiful free images. This resource exsits specifically to help entrepreneurs build more visually appealing websites, products, and marketing campaigns. Most of the photos you find on this site were taken in-house and typically trend around various business themes. They even have a bunch of in-depth case studies to help you start your own business.



It has to be said: we just love the name LOL Colors. This site features a curated selection of color palette inspiration. If you’re starting from scratch and aren’t quite sure what you’re looking for yet, this is a fun and quick way to browse through various color scheme options.






Comments

Popular posts from this blog

Design Tools to Help You Create Your Next Project- Part 3

Coolors Coolors   is a super fast color scheme generator. You can explore thousands of pre-existing color schemes (each one features five colors). Or, you can generate your own in a matter of minutes. Once you go to the “generate” page, hit the space bar to start with a different color scheme, and then you can adjust each color’s hue, saturation, and brightness accordingly. Web Gradients Web Gradients   is a collection of almost 200 background gradients, created by the  itmeo  team. You can use each of these content backdrops for any part of your website. You’ll find a .PNG version of each gradient, as well as easy-to-copy CSS3 crossbrowser code. Bonus: there are even curated packs for  Sketch  &  Photoshop . Color Hunt On  Color Hunt , browse through countless palettes, comprised of four colors each. You can browse and sort through the list based on what’s hot and popular, or just pick “random” and see what comes u...

WordPress 4.8 Release Candidate 2 on June 1, 2017

The second release candidate for WordPress 4.8 is now available. To test WordPress 4.8, you can use the  WordPress Beta Tester  plugin or you can  download the release candidate here  (zip). We’ve made  a handful of changes  since releasing RC 1 last week. For more details about what’s new in version 4.8, check out the  Beta 1 ,  Beta 2 , and  RC1  blog posts. Think you’ve found a bug?  Please post to the  Alpha/Beta support forum . If any known issues come up, you’ll be able to  find them here . Happy testing!                                                                                                                   ...

Node.js + MySQL Example: Handling 100's of GigaBytes of Data

Through this Node.js & MySQL example project, we will take a look at how you can efficiently handle  billions of rows  that take up  hundreds of gigabytes  of storage space.                          Secondary goal with this article is to help you decide if Node.js + MySQL is a good fit for your needs, and to provide help with implementing such a solution. The actual code we will use throughout this blogpost  can be found on GitHub . Why Node.js and MySQL? Use MySQL to store the distributed tracing data of the users of our  Node.js Monitoring & Debugging Tool  called Trace. We chose MySQL, because at the time of the decision, Postgres was not really good at updating rows, while for us, updating immutable data would have been unreasonably complex. Most think if anyone has millions/billions of rows, they should use a NoSQL solution such as Cassandra or Mongo. Unfortun...