As a software program engineer that lives an excessive amount of of his life on a pc, I like retaining my machine as clear as potential. I do not preserve rogue downloaded recordsdata and removes apps once I do not want them. A part of retaining a clear, performant system is eradicating empty directories.
To determine empty directories, I take advantage of the next command:
discover . -type d --empty
To take away empty directories, we will add a --delete
flag:
discover . -type d --empty --delete
Holding a clear machine is simple when you already know the instruments that may aid you. discover
makes figuring out and eliminating straightforward, so do not be afraid to make use of it!
CSS @helps
Function detection through JavaScript is a shopper facet finest apply and for all the suitable causes, however sadly that very same performance hasn’t been out there inside CSS. What we find yourself doing is repeating the identical properties a number of occasions with every browser prefix. Yuck. One other factor we…
LightFace: Fb Lightbox for MooTools
One of many net elements I’ve all the time beloved has been Fb’s modal dialog. This “lightbox” is not like others: no darkish overlay, no obnoxious animating to dimension, and it would not attempt to do “an excessive amount of.” With Fb’s dialog in thoughts, I’ve created LightFace: a Fb lightbox…
Detect Vendor Prefix with JavaScript
No matter our place on vendor prefixes, we’ve got to stay with them and often use them to make issues work. These prefixes can be utilized in two codecs: the CSS format (
-moz-
, as in-moz-element
) and the JS format (navigator.mozApps
). The superior X-Tag challenge has…
Source link