38 private links
Design requires free, sometimes chaotic exploration. But design also means organisation and structure. Sketch can be good in both aspects, but moving from exploration to structured layouts with text styles and unified colors is hard. Either you start clean files from scratch, or you use what you have and try to tidy it up. The Style Inventory is meant to help you with that. It gives you an overview of all your used styles and helps you to merge styles of similar layers into one. This repositiory also contains a few other helpful plugins.
This is a small command-line program for OS X that moves files or folders to the trash.
You could build a Photoshop document that contained many different icons, with one Layer Comp set up to display each icon. You could then use that Photoshop document as a Linked Smart Object in other documents and be able to choose a specific icon by selecting the corresponding Layer Comp. Think of it as a single Smart Object that acts as a library of elements.
You can remove pictures just from the device by going to the upper left and clicking on the "Photos". That should bring up a menu, where you scroll down almost to the bottom to get to "On Device". Bringing up that list is just the photos on the device (instead of all the photos that G+ knows about), and when you delete there it only affects the device storage, not the backed up version. See https://support.google.com/plus/answer/3453521?hl=en for a (very) little more detail.
Accelerate open-source development with our community of 17,857 members.
Affinity Designer is the fastest, smoothest, most precise vector graphic design software available. Whether you’re working on graphics for marketing materials, websites, icons, UI design or just like creating cool concept art, Affinity Designer will revolutionise how you work.
An assortment of random sketch plugins
Like all good things in life, October can be understood at a glance. The principles it implements are natural and existed in programming for a long time. We've just collected and brought them into the realm of web development.
Pack up your content, markup, and style. Leave the database behind.
Features in Sketch that make me feel I can’t never go back to Photoshop
ArchView can open archive file online without downloading the whole archive. Just like normal web pages. It is very fast since it merely fetches a small portion of the archive file from server. ArchView supports RAR, ZIP formats and ISO CD image; HTTP, FTP and file: protocols. And it can present XUL or HTML interface.
Old version here https://addons.mozilla.org/en-US/firefox/addon/archview/?src=search
PopClip appears when you select text with your mouse on your Mac. Instantly copy & paste, and access actions like search, spelling, dictionary and over 100 more.
aText accelerates your typing by replacing abbreviations with frequently used phrases you define.
Lifehacker: Text expansion, also known as typing shortcuts, can save you hours of typing each day. You type a small word or combination of characters and it'll expand into full, complex sentences that you often use. We love aText because it offers so many great features and only costs $5. If you haven't yet jumped on the text expansion train, it's time.
With the evolution of sound from century to century. We started to absorb the history of Music from Live Performances to High-definition sound & streaming today to create VOX — a digital music player for the future sound of Music. A player dedicated strictly for music with a content-driven design, support of HD/Lossless files & integration with the most popular streaming services. Get it now!
Create and configure lightweight, reproducible, and portable development environments.
SVG files, especially exported from various editors, usually contains a lot of redundant and useless information such as editor metadata, comments, hidden elements, default or non-optimal values and other stuff that can be safely removed or converted without affecting SVG rendering result. SVGO to the help. + https://github.com/svg/svgo-gui
Light Flow allows you to take control of your notification LED colors and makes them successively flash one color after another.
Create stories, games, and animations
Share with others around the world
toodleTasks is a task management application for Android, BlackBerry and HP webos that sync with toodledo (www.toodledo.com). The app is available for both phones and tablets.
SVG profiles
SVG 1.0: all modern desktop and mobile browsers support SVG 1.1, so never choose this option.
SVG 1.1: You will almost always want this.
SVG Tiny/Basic: this is a subset of SVG intended for mobile devices. Only a handful of devices support SVG Tiny and not the full spec, so go for SVG 1.1.
Note: SVG Tiny does not reduce the file size, it's just a subset of SVG that is adequate for low processing power devices. It will discard gradients, opacity, embedded fonts and filters. Erik Dahlström says: All SVG 1.1 full viewers should be able to display all of the SVG 1.1 Tiny/Basic content (according to spec), and probably all of the SVG 1.2 Tiny content that Illustrator produces too.
Fonts note: if you don't have any text in your image this setting doesn't matter.
Adobe CEF: never use this option of you intend to display it in browsers. It's Adobe's way of embedding fonts in SVG files, as far as I know this is only supported by Adobe's SVG viewer plugin.
SVG: this embeds the font as SVG, which is not supported by Firefox, but is a good option if you intend to support only mobile devices (which usually run webkit).
Create outlines: you will want to do this most of the time, unless you have a large amount of text. If you have a large amount of text you will want to embed the font with WOFF but you will have to do this by hand.
Subsetting:
None: this will negate the previous setting and will not embed any font, if you don't care that the font falls back to some other font in the user's computer choose this.
Only Glyphs used: you will want this most of the time if you choose to embed the font. It only embeds the characters used so it doesn't inflate your file size.
[rest of subsetting]: this is fairly clear, you can choose to include the entire font or subsets of it. It is only useful if your SVG is dynamic and the text might change based on user input.
Images: this only matters if you are including bitmap images
Embed: this is usually what you want, it encodes the image as a data uri so that you just upload one file instead of the svg file with it's companion bitmap images.
Link: use this only if you have several svg files that reference one bitmap file (so it's not downloaded every time it renders the svg file).
Note that linked bitmap images won't display if the SVG is displayed through the <img> tag, because img doesn't allow loading external resources. Furthermore: webkit has a bug that does not display bitmap images within svg files even if you embed them. In short: use a plain <svg> tag if you intend to embed or link bitmap images, don't use <img>.