<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Disqus - Latest Comments for dsande</title><link>http://disqus.com/by/dsande/</link><description></description><atom:link href="http://disqus.com/dsande/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 19 Jan 2018 12:55:57 -0000</lastBuildDate><item><title>Re: Making of: Prioritab, a Chrome Extension - bitsandbites</title><link>http://bitsandbites.me/blog/2015/01/24/making-of-prioritab/#comment-3716098527</link><description>&lt;p&gt;Any chance you guys are considering adding a 'This Year' list to the app?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Fri, 19 Jan 2018 12:55:57 -0000</pubDate></item><item><title>Re: Stop Arguing So Much with Your Mixins</title><link>http://127.0.0.1:4000/stop-arguing-with-your-mixins#comment-2560523631</link><description>&lt;p&gt;I can say that is an alternative, but I can't agree it's better. There are issues with that use that don't fit the problem I set out to solve as the genesis of this article.&lt;/p&gt;&lt;p&gt;If it works for you ... #winning&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Wed, 09 Mar 2016 15:37:45 -0000</pubDate></item><item><title>Re: How to Use Sass to Build One Project With Multiple Themes</title><link>http://webdesign.tutsplus.com/tutorials/how-to-use-sass-to-build-one-project-with-multiple-themes--cms-22104#comment-1641111245</link><description>&lt;p&gt;&lt;a href="http://anotheruiguy.gitbooks.io/sassintherealworld_book-i/" rel="nofollow noopener" target="_blank" title="http://anotheruiguy.gitbooks.io/sassintherealworld_book-i/"&gt;http://anotheruiguy.gitbook...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Chapter 5 is dedicated to file management.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Fri, 17 Oct 2014 14:21:01 -0000</pubDate></item><item><title>Re: Why I Choose Stylus (And You Should Too)</title><link>http://webdesign.tutsplus.com/articles/why-i-choose-stylus-and-you-should-too--webdesign-18412#comment-1256571790</link><description>&lt;p&gt;This is a great article and you put a lot of thought into the comparisons. But your reasons for choosing Stylus over Sass (Sass is spelled with lowercase letters, only the SCSS syntax is with all caps), are short sighted. Yes, the original Sass is written in Ruby and requires the Ruby language to be installed, but there is NOT a requirement for Rails at all.&lt;/p&gt;&lt;p&gt;It's the new kid on the block, but your research glosses over the Sass port written in C/C++ called libsass. This version is ultimately universal allowing for any other language to create native wrappers that fit it's architecture the best.&lt;/p&gt;&lt;p&gt;Already there are Node, Python and .NET wrappers.&lt;/p&gt;&lt;p&gt;While Stylus is cool written as JavaScript, there is something even more powerful about being able to use libsass in a native application language for local development and deployment purposes.&lt;/p&gt;&lt;p&gt;Here is an example project for setting up Node-Sass with a Node.js project&lt;br&gt;&lt;a href="https://github.com/anotheruiguy/node-sass-boilerplate" rel="nofollow noopener" target="_blank" title="https://github.com/anotheruiguy/node-sass-boilerplate"&gt;https://github.com/anotheru...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Sat, 22 Feb 2014 16:32:58 -0000</pubDate></item><item><title>Re: Use lengths, not strings</title><link>http://hugogiraudel.com/2013/09/03/use-lengths-not-strings/#comment-1046826272</link><description>&lt;p&gt;Agreeing with all of this, I too have an aversion to tutorials that either convert a value into a string or use interpolation to chain a value to a unit of measurement.&lt;/p&gt;&lt;p&gt;Along the lines of what Jacob did, I too have a preference to using more common values and using the power of Sass to convert.&lt;/p&gt;&lt;p&gt;Using a simple `value to em` converting function, I can accomplish the same output, but input a value that more closely represents a `pixel` size given from a designer or comp.&lt;/p&gt;&lt;p&gt;$font-size: 12&lt;/p&gt;&lt;p&gt;@function em($target, $context: $font_size)&lt;br&gt;  @return $target / $context * 1em&lt;/p&gt;&lt;p&gt;$value: 160.44&lt;br&gt;$length: em($value)&lt;/p&gt;&lt;p&gt;whatever&lt;br&gt;  padding-top: round($length)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Mon, 16 Sep 2013 12:36:09 -0000</pubDate></item><item><title>Re: Joining LinkedIn</title><link>http://chriseppstein.github.com/blog/2013/04/22/joining-linkedin#comment-872269729</link><description>&lt;p&gt;HA! When I read this, all I could think of was the conversation we had on SassCast on this very topic.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Mon, 22 Apr 2013 10:55:19 -0000</pubDate></item><item><title>Re: Joining LinkedIn</title><link>http://chriseppstein.github.com/blog/2013/04/22/joining-linkedin#comment-872268991</link><description>&lt;p&gt;Dreamjob achieved! Best of luck with the new gig.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Mon, 22 Apr 2013 10:54:19 -0000</pubDate></item><item><title>Re: How to structure a Sass project</title><link>http://thesassway.com/beginner/how-to-structure-a-sass-project#comment-855979033</link><description>&lt;p&gt;I guess it all depends on how you are structuring your framework. Are you using local variables or global? Are you wanting to keep your variables close to your mixins or in a global config file?&lt;/p&gt;&lt;p&gt;As John points out, taking a modulare approach really helps to keep things isolated and manageable.&lt;/p&gt;&lt;p&gt;If you are saying that you have a general `_vars` and `_mixins` file, you may get some additional insight from my article on cleaning out your Sass junk drawer(&lt;a href="http://gist.io/4436524)" rel="nofollow noopener" target="_blank" title="http://gist.io/4436524)"&gt;http://gist.io/4436524)&lt;/a&gt;.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Mon, 08 Apr 2013 01:38:27 -0000</pubDate></item><item><title>Re: How to structure a Sass project</title><link>http://thesassway.com/beginner/how-to-structure-a-sass-project#comment-853392319</link><description>&lt;p&gt;Great article John! Thanks for the props at the end.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Fri, 05 Apr 2013 14:56:20 -0000</pubDate></item><item><title>Re: Announcing! New Learning Adventures (Try Them for Free)</title><link>http://blog.teamtreehouse.com/announcing-new-learning-adventures-try-them-out-for-free#comment-771940764</link><description>&lt;p&gt;The 'try Sass' link posted is a good start, but if want to play with all the features of Sass and the different libraries, &lt;a href="http://SassMeister.com" rel="nofollow noopener" target="_blank" title="SassMeister.com"&gt;SassMeister.com&lt;/a&gt; is something you have to check out.&lt;/p&gt;&lt;p&gt;It also has support for importing and exporting Gists from GitHub.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Fri, 18 Jan 2013 13:00:08 -0000</pubDate></item><item><title>Re: Announcing! New Learning Adventures (Try Them for Free)</title><link>http://blog.teamtreehouse.com/announcing-new-learning-adventures-try-them-out-for-free#comment-771938450</link><description>&lt;p&gt;Are you talking about code hinting? Most newer editors are starting to support Sass natively, but if you need additional support look here &lt;a href="http://sass-lang.com/editors.html" rel="nofollow noopener" target="_blank" title="http://sass-lang.com/editors.html"&gt;http://sass-lang.com/editor...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Fri, 18 Jan 2013 12:56:58 -0000</pubDate></item><item><title>Re: Source Maps with Chrome Canary and Rails — Codeography</title><link>http://www.codeography.com/2012/12/08/source-maps-with-chrome-canary-and-rails-3.html#comment-738067738</link><description>&lt;p&gt;You can go to &lt;a href="http://toadstool-app.herokuapp.com/" rel="nofollow noopener" target="_blank" title="http://toadstool-app.herokuapp.com/"&gt;http://toadstool-app.heroku...&lt;/a&gt; and inspect. The rendered CSS from that project is in the debug state. &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Sat, 15 Dec 2012 21:28:10 -0000</pubDate></item><item><title>Re: 30 Amazing Resources for Sass Lovers</title><link>http://designshack.net/articles/css/30-amazing-resources-for-sass-lovers/#comment-720981986</link><description>&lt;p&gt;I would be remissed if I didn't talk about Toadstool, a Style Guide framework. Concepts are simple, build in the abstract and apply to the semantic.&lt;br&gt;&lt;a href="https://github.com/Anotheruiguy/toadstool" rel="nofollow noopener" target="_blank" title="https://github.com/Anotheruiguy/toadstool"&gt;https://github.com/Anotheru...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Tue, 27 Nov 2012 22:20:56 -0000</pubDate></item><item><title>Re: Front-end Maintainability with Sass and Style Guides</title><link>http://ec2-174-129-7-73.compute-1.amazonaws.com/2011/front-end-maintainability-with-sass-and-style-guides#comment-600194937</link><description>&lt;p&gt;Wow, this is a great problem to solve. One that I don't think is best served in this forum. Do you G+? If you do, please follow me at &lt;a href="http://goo.gl/Knh49" rel="nofollow noopener" target="_blank" title="http://goo.gl/Knh49"&gt;http://goo.gl/Knh49&lt;/a&gt; and I'd love to have a conversation about this.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Fri, 27 Jul 2012 19:14:52 -0000</pubDate></item><item><title>Re: Front-end Maintainability with Sass and Style Guides</title><link>http://ec2-174-129-7-73.compute-1.amazonaws.com/2011/front-end-maintainability-with-sass-and-style-guides#comment-600026324</link><description>&lt;p&gt;You are not alone. Compass' version of blueprint is a great development framework, but not a style guide framework. To fill this gap I started creating a project called Toadstool. Your team is welcome to take all or some of the code if that helps to speed up the process.  &lt;/p&gt;&lt;p&gt;It is my goal to have this as a fully functional style guide framework that people can spin up, edit and make awesome happen fast. &lt;/p&gt;&lt;p&gt;&lt;a href="https://github.com/Anotheruiguy" rel="nofollow noopener" target="_blank" title="https://github.com/Anotheruiguy"&gt;https://github.com/Anotheru...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Fri, 27 Jul 2012 15:58:50 -0000</pubDate></item><item><title>Re: How Sass Can Shape The Future Of CSS - Articles</title><link>http://thesassway.com/articles/how-sass-can-shape-the-future-of-css#comment-369397745</link><description>&lt;p&gt;Peter, this is a great article.&lt;/p&gt;&lt;p&gt;I am glad to see that concepts introduced in SASS are being taken into consideration, but these proposals fall a bit short?  That variable is pretty ridiculous.&lt;/p&gt;&lt;p&gt;I am somewhat taken back by the fact that Webkit tried to move the ball forward to only be slapped by the W3C? WTH?&lt;/p&gt;&lt;p&gt;Personally I am sick of these arguments as of late. Between the W3C trying to assert leadership when they clearly do not, and the insane assertions of others that things like vendor prefixes are killing CSS and that CSS processors are the devil's work.&lt;/p&gt;&lt;p&gt;As Wikipedia so well puts it, "A style sheet language, or style language, is a computer language that expresses the presentation of structured documents." CSS is a programming language, not a paint brush. And with all languages, it must evolve and improve in order to meet it's user's needs.&lt;/p&gt;&lt;p&gt;This garbage that handcrafted CSS is an art and 'no machine will ever process my code' is laughable. Last time I checked, a browser is processing your code. The people who get it are trying to move the ball forward and create a language that will embrace the growing needs and increasing complexity of websites versus these luddites.&lt;/p&gt;&lt;p&gt;CSS in it's current form is dead. I am talking dinosaure dead. Are you on the train, cause it's leaving the station with you or without!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Mon, 21 Nov 2011 10:57:25 -0000</pubDate></item><item><title>Re: The Strake - To Photoshop or Not To Photoshop</title><link>http://thestrake.com/post/37179665#comment-599356</link><description>&lt;p&gt;100% agree.  I too read Jason's post and felt that there was a left field thing going on here.&lt;/p&gt;&lt;p&gt;Either building web apps or web sites, there is a design concept that needs to be considered.  I have meet other designers that share this 'no PSD' thought  and go straight to HTML/CSS, but oddly enough, all their projects look the same?  There is no opportunity to creatively approach an idea.  With this process you are locked into a pattern that is hard to escape.&lt;/p&gt;&lt;p&gt;But yes, once you have defined the UI and design of a project, a mature designer will compose a UI guideline with all the creative elements assembled.  From there on out, any new screens are best created either as wireframes or HTML mock ups to simply communicate the idea.&lt;/p&gt;&lt;p&gt;I will agree that photoshop is a very involved process and it is not collaborative either.  All designers will hold that PSD close to their heart.  So, tools like OmniGraffle or using HTML is a great, cheep way to execute UI and allow for collaboration.  &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dsande</dc:creator><pubDate>Thu, 05 Jun 2008 11:43:32 -0000</pubDate></item></channel></rss>