ot [ASAP] Development of a Raltegravir-based Photoaffinity-Labeled Probe for Human Immunodeficiency Virus-1 Integrase Capture By feedproxy.google.com Published On :: Tue, 05 May 2020 04:00:00 GMT ACS Medicinal Chemistry LettersDOI: 10.1021/acsmedchemlett.0c00009 Full Article
ot Sono Motors Introduces The SION Solar Powered Car By latestsolarnews.com Published On :: Sat, 23 Sep 2017 18:45:01 +0000 The fantasy of having the capacity to drive to work in a solar-powered car is at last turning into a reality. Sono Motors simply uncovered the SION solar-powered electric car gives you the ability to travel up to 18 miles utilizing only energy from the sun. Best of all, the SION isn’t only for the … The post Sono Motors Introduces The SION Solar Powered Car appeared first on LatestSolarNews. Full Article News
ot 4 Benefits Of Solar LED Lights For Parking Lots By latestsolarnews.com Published On :: Sun, 08 Jul 2018 21:32:34 +0000 The future is solar LED lights. You will see them in the parking lots and other large areas around a city. They are cheap and save a good deal of money on electricity bills. Nowadays, the majority of parking lots feature the conventional lights that get their power from the grid. These products are not … The post 4 Benefits Of Solar LED Lights For Parking Lots appeared first on LatestSolarNews. Full Article Power Generation
ot Filtering (photo) filters By simurai.com Published On :: Sun, 20 Jul 2014 00:00:00 +0000 A lot of photo apps allow you to add filters before sharing. The typical UI for picking a filter is a row of little thumbnails that can be horizontally scrolled. I’m sure you’ve used it many times. It looks something like this: The problem A filter picker like that is easy to understand and works pretty well. But in my case, there is something that has been bugging me a bit. Here is how I use it: I start with the first thumbnail and then just keep tapping one after the other. If there is a filter that I like, I try to remember its name. And somewhat its position, but more like “somewhere at the beginning”. Then once I reach the end, I start scrolling back trying to find the ones I liked. Usually there are like 2-3 filters that I would like to quickly compare before making my final choice. But it’s quite hard to scroll between them, especially if they are far apart. Also having to remember their name/position costs some precious brain power. Now, I don’t really know how most people use these filter pickers. Could be that: Most people just stop once they found a filter they kinda like and don’t bother trying the rest. Or some have a few favorites and know their name/position already. You could also just look at the little thumbnails. But some filters are very similar and I need to see them on the actual photo to judge. Possible solutions So I was thinking about some possible improvements: 1. Order by popularity Automatically order the filters based on how often they get used. This makes filters that you use most appear at the beginning and are easier to get to. You could always keep scrolling in case you’re in the mood for something new. This would of course mess it up for people that have filters remembered by position. But not sure how many actually do that. 2. Manual re-order Let people manually reorder the position. Could be done similar like the home screen icons on iOS (long press until they wiggle, then drag around). I would probably move my favorites to the front and also sort based on color/style. 3. Narrow down Let people temporarily toss away the filters they don’t want. This would allow you to narrow down your selection to just a few for easier comparison. Of course, all the filters would be back next time you take a new photo. Or probably even better (3B): Instead of throwing away the ones you don’t like (could be tedious if there are a lot of filters), you could push up only the ones you like and they would move to the right with a visual separator. It’s similar how you can pin a Chrome browser tab to separate it from the rest. Then once you scrolled to the end, you would have all your previously selected filters next to each other, waiting to be the lucky winner. Conclusion I understand that the suggestions might make a photo app more complicated and harder to explain to a new user. But it could be more a “power user” feature that you’re not forced to use if you don’t want to. Anyways, in case I’m not the only one with this (small) problem, I hope some day we will have a better way to filter filters. Ohh.. and let me know if you’re already using an app that tackles this somehow. Update Thanks for all the comments. Good to see more people thinking about this. I played around a bit more with the demo, mostly after the conversation with Ignacio in the comments below. So here a 4th option: 4. Select and cycle Let people select a couple filters and then cycle through them by tapping on the photo. It’s actually similar to 3B, but it keeps the UI simple by using the photo as the secondary navigation control. Here the steps how to use: You can tab each filter until you find one you like. If you tab a 2nd time on that filter, it gets selected as a “favorite”. It will move up a little to visualize it. You can keep trying other filters and mark more as favorites. Once you reached the end (or think you have enough), you can tap on the photo above the filter picker to quickly cycle through all your previously selected (favorited) filters. Now comparing different filters is really quick and easy. Try the demo. The implementation of the demo could still be improved. It is a bit hard to discover that you can tap the photo to cycle through your favorites. Might need some visual clue to help understand it better. Adding swipe gestures instead of tapping would also improve UX. Or to remove a filter from your favorite selection, you could just swipe down on the image. Also note that the filters are CSS based and still a bit glitchy when animating. But you should get the idea. Update II Manuel Haring explored a similar concept where you can push up filters to narrow down your selection. Here a larger video that has even a third selection stage. Full Article
ot Back to the :roots By simurai.com Published On :: Wed, 09 Sep 2015 00:00:00 +0000 The cascade in CSS is a curse and blessing at the same time. It usually works quite well, but there are issues that let people get all worked up and ask the question Do We Even Need CSS Anymore. I can somewhat relate to that - but I also think it’s not the cascade alone and also about fighting specificity. Not running into issues with specificity is hard. Almost as hard as pronouncing that word. In this post I’ll try to show a few ways how you can make the cascade be your friend and maybe reduce the need of overriding and thus encounter less fighting with specificity. Tip 1: For every CSS property that you write, try to move it up the tree as far as possible. In other words: Back to the :root. For example, our site has a side bar and we want to add a short bio to it. The markup might look something like this: <body> <main class=“Posts”> <aside class=“SideBar”> <nav class=“Nav”> <p class=“Bio”> And the CSS: .Bio { font-size: .8em; line-height: 1.5; color: #888; } That would work. But if we look at the Nav that is already in the SideBar, chances are good that some of the styles are the same. In our case it’s font-size and color. So let’s remove those properties from Nav and Bio and add it to the shared parent element, the SideBar. .SideBar { font-size: .8em; color: #888; } And as it turns out, that line-height: 1.5; is already defined for our Posts. So since it seems that the whole page uses the same line-height, let’s remove it from the Bio and Post elements and move it all up to the root node. :root { line-height: 1.5; } This probably sounds like common sense, but often it’s tempting to just style your new thing without even looking if some of the sibling elements define the same thing. This also happens when you copy&paste styles from another section or when pasting some snippets you found online. It might take a bit more time to refactor and seems scary, but it should keep our CSS in a healthier state. Style the branches, not each leaf Tip 2: Style certain properties always as a combo. A good example is the color and background-color combo. Unless you make only small tweaks, it’s probably a good idea to always change them together. When adding a background color to an element, it might not contain any text, but probably some child will. Therefore if we set foreground and background color together, we can always be sure we won’t run into any legibility and contrast issues. Also, next time we change a background color, we don’t have to hunt for all the text colors that need to be changed too, it’s right there in the same place. Screenshot from Colorable Tip 3: Use “dynamic” values, such as currentColor and ems. Sometimes it might make sense to use the text color for other properties. Like for border, box-shadow or for the fill of SVG icons. Instead of defining them directly you can use currentColor and it will be the same the color property. And since color inherits by default, you might can change it in only one place. Similarly ems are mapped to font-size allowing you to scale everything by just changing the :root font size. Here a few more details on currentColor and EMs. Tip 4: Override UA Styles to inherit from its parents. Form controls like buttons, inputs get styled by the browser in a certain way. Overriding them with inherit makes them adapt to your own styles. button, input, select, textarea { color: inherit; font-family: inherit; font-style: inherit; font-weight: inherit; } The example above is taken from sanitize.css. normalize.css does the same, so if you use them, you’re already covered. You can also try to restyle other inputs like a range slider, radio, checkbox etc. And as seen above, by using currentColor, make them automatically match the color property. And maybe move them from a light into a dark theme without changing anything. Conclusion That’s all nice stuff, but who is it for? Well, of course it can’t be forced upon every situation. I would say small and simple web sites benefit the most. But even when using a preprocessor, it might not hurt if it reduces the amount of CSS that gets output or when a few variables aren’t even needed. Also it seems suited for the “single purpose class” approach like Tachyons. It might reduce complexity and the amount of classes that are needed. Another interesting thing could be the upcoming custom properties a.k.a. CSS variables. Unlike variables in preprocessors, when overriding a custom property, it will only affect the current selector scope. So in a sense they will be “cascading variables”. But I still have to try that out and see how it works in practice. ps. It is possible that this post is inspired by this tweet. Full Article
ot DuoTone themes By simurai.com Published On :: Fri, 01 Jan 2016 00:00:00 +0000 Double-hue syntax themes for Atom. DuoTone themes use only 2 hues (7 shades in total). It tones down less important parts (like punctuation and brackets) and highlights only the important ones. This leads to a more calm color scheme, but still lets you find the stuff you’re looking for. A big thanks goes to @braver who did most of the initial language support. Color variations And here some more color variations created by other theme authors. Full Article
ot Unlock Your Team’s Potential With Teamstack By www.webdesignerdepot.com Published On :: Tue, 21 Apr 2020 10:45:38 +0000 Teamstack is a password manager for your whole team. Running in the cloud it allows you to manage your tools and resources, and seamlessly scale your teams’ access, from a single, easy-to-use control panel. Teamstack is powerful, and secure with multi-factor authentication, single sign-in, SAML and form-based authentication. It works with desktop and mobile apps, […] Full Article Sponsored multi-factor authentication password management secure apps secure logins team passwords Teamstack
ot The matter of photography in the Americas / Natalia Brizuela and Jodi Roberts ; with contributions by Lisa Blackmore, Amy Sara Carroll, Marianela D'Aprile, María Fernanda Domínguez, Heloisa Espada, Rachel Price, Diana Ruiz, Tatiane Santa Ro By library.mit.edu Published On :: Sun, 16 Feb 2020 06:00:01 EST Rotch Library - TR184.B75 2018 Full Article
ot For your pleasure: Johannes Brus, photoworks and sculptures / with an essay by Clément Chéroux By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - N6888.B745 A4 2018 Full Article
ot The shrinking universe: Ireland at Venice 2019 / Eva Rothschild By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - N6488.I8 V433 2019 I73 Full Article
ot I have forgotten the night / Joël Andrianomearisoa ; curated by Rina Ralay Ranaivo and Emmanuel Daydé By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - N6488.I8 V433 2019 M28 Full Article
ot Failed images: photography and its counter-practices / Ernst van Alphen By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - TR183.A47 2018 Full Article
ot Altered states: Substanzen in der zeitgenössischen Kunst = substances in contemporary art / herausgegeben von = edited by Milena Mercer ; Texte = texts, Max Daly ... [and thirteen others] By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - N8251.S555 A48 2018 Full Article
ot Neuer Norden Zürich: ein Kunstprojekt im öffentlichen Raum, 9. Juni-2. September 2018 = New north Zurich: a public art project, 9th of June-2nd of September 2018 / herausgegeben von Christoph Doswald ; fotografiert von Pierluigi Macor ; Übe By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - N6496.3.S9 Z876 2018 Full Article
ot Scott Vendes's Menice By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - N6488.I8 V433 2019 B33 Full Article
ot Albanian pavilion 2019: maybe the cosmos is not so extraordinary: Driant Zaneli By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - N6488.I8 V433 2019 A38 Full Article
ot Moon shine / Rachel Boillot By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - TR647.B626 2019 Full Article
ot Dorothy Iannone: a cookbook / Dorothy Iannone ; [edited by Clément Dirié] By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - N6537.I26 A4 2018 Full Article
ot T.C. Cannon: at the edge of America / edited by Karen Kramer ; with contributions by heather ahtone, Sherwin Bitsui, Caitlin Cooper, Frank Buffalo Hyde, Trevor Fairbrother, Santee Frazier, Joy Harjo, Joan Naviyuk Kane, Karen Kramer, Deana McCloud, America By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - NX512.C36 A4 2018 Full Article
ot Conversation pieces: the world of Bruegel / Abdelkader Benali, Alexandra van Dongen, Katrien Lichtert, Sabine Pénot, Lucinda Timmermans ; translation, Patrick Lennon, Michael Lomax By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - ND673.B73 B46 2018 Full Article
ot Photography reframed: new visions in contemporary photographic culture / edited by Ben Burbridge and Annebella Pollen By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - TR185.P52 2018 Full Article
ot Yves Netzhammer: Installationen 2008-2018 / Gesamtverantwortung, Katharina Epprecht ; Hrsg. von Jennifer Burkard ; Autoren, Claudia Bader [and four others] By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - N7153.N47 A4 2018 Full Article
ot The birth of the idea of photography / Francois Brunet ; translated by Shane B. Lillis By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - TR15 B7813 2019 Full Article
ot My art guide: Venice 2019, 58th Biennale Arte: national participations, collateral events, exhibitions, events, museums, foundations, restaurants, hotels, city maps By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - N6488.I8 V433 2019 A11 Full Article
ot What is "Islamic" art?: between religion and perception / Wendy M.K. Shaw By library.mit.edu Published On :: Sun, 8 Mar 2020 06:00:02 EDT Rotch Library - N6260.S56 2019 Full Article
ot Qarajeh to Quba: rugs and flatweaves from East Azarbaijan and the Transcaucasus / Raoul E. Tschebull ; photography by Don Tuttle By library.mit.edu Published On :: Sun, 8 Mar 2020 06:00:02 EDT Rotch Library - NK2875.7.A9 T73 2019 Full Article
ot Art beyond borders: artistic exchange in communist Europe (1945-1989) / edited by Jérôme Bazin, Pascal Dubourg Glatigny, and Piotr Piotrowski By library.mit.edu Published On :: Sun, 8 Mar 2020 06:00:02 EDT Online Resource Full Article
ot Khatt: Egypt's calligraphic landscape / photography by Noha Zayed ; edited by Basma Hamdy By library.mit.edu Published On :: Sun, 22 Mar 2020 06:00:01 EDT Rotch Library - NK3633.A2 Z36 2018 Full Article
ot Inside Tangier: houses & gardens / Nicolò Castellini Baldissera ; photography, Guido Taroni ; foreword, Hamish Bowles By library.mit.edu Published On :: Sun, 22 Mar 2020 06:00:01 EDT Rotch Library - NK2087.75.A1 B35 2019 Full Article
ot Hot, cold, heavy, light: 100 art writings, 1988-2018 / Peter Schjeldahl ; edited with an introduction by Jarrett Earnest By library.mit.edu Published On :: Sun, 22 Mar 2020 06:00:01 EDT Rotch Library - N7445.2.S35 2019 Full Article
ot Caught in a whirlwind: a cultural history of Ottoman Baghdad as reflected in its illustrated manuscripts / by Melis Taner By library.mit.edu Published On :: Sun, 22 Mar 2020 06:00:01 EDT Rotch Library - ND3239.I72 B338 2020 Full Article
ot Embodied performance as applied research, art and pedagogy / Julie-Ann Scott By library.mit.edu Published On :: Sun, 29 Mar 2020 06:00:01 EDT Dewey Library - N345.S36 2018 Full Article
ot Vineyards / photographs by Fred Lyon By library.mit.edu Published On :: Sun, 29 Mar 2020 06:00:01 EDT Rotch Library - TR660.5.L97 2019 Full Article
ot Conservation of modern oil paintings / Klaas Jan van den Berg [and 7 others], editors By library.mit.edu Published On :: Sun, 5 Apr 2020 06:00:02 EDT Online Resource Full Article
ot Painting with fire: Sir Joshua Reynolds, photography, and the temporally evolving chemical object / Matthew C. Hunter By library.mit.edu Published On :: Sun, 19 Apr 2020 06:00:02 EDT Online Resource Full Article
ot Medieval art in motion: the inventory and gift giving of Queen Clémence de Hongrie / Mariah Proctor-Tiffany By library.mit.edu Published On :: Sun, 26 Apr 2020 06:00:01 EDT Rotch Library - N5262.C56 P76 2019 Full Article
ot Folk masters: a portrait of America / photographs by Tom Pich ; text by Barry Bergey By library.mit.edu Published On :: Sun, 26 Apr 2020 06:00:01 EDT Rotch Library - TR681.A7 P53 2018 Full Article
ot Gauguin: portraits / edited by Cornelia Homburg, Christopher Riopelle ; with contributions by Elizabeth C. Childs [and five others] By library.mit.edu Published On :: Sun, 26 Apr 2020 06:00:01 EDT Rotch Library - ND553.G27 A4 2019 Full Article
ot Constructing imperial Berlin: photography and the metropolis / Miriam Paeslack By library.mit.edu Published On :: Sun, 26 Apr 2020 06:00:01 EDT Rotch Library - TR74.B47 P34 2019 Full Article
ot Affect, emotion, and subjectivity in early modern Muslim Empires: new studies in Ottoman, Safavid, and Mughal art and culture / edited by Kishwar Rizvi By library.mit.edu Published On :: Sun, 26 Apr 2020 06:00:01 EDT Rotch Library - NX650.E46 A39 2018 Full Article
ot Photography and the art market / Juliet Hacking By library.mit.edu Published On :: Sun, 26 Apr 2020 06:00:01 EDT Dewey Library - N8600.H335 2018 Full Article
ot The counterpunch (and other horizontal poems) = El contragolpe (y otros poemas horizontales) / Juan Carlos Flores ; translated by Kristin Dykstra By library.mit.edu Published On :: Sun, 4 Sep 2016 06:09:45 EDT Hayden Library - PQ7390.F459 C6613 2016 Full Article
ot Football and literature in South America / David Wood By library.mit.edu Published On :: Sun, 2 Jul 2017 06:13:01 EDT Hayden Library - PQ7081.W66 2017 Full Article
ot Otredad = Otherness / Claribel Alegría; edited by Fred Whitehead By library.mit.edu Published On :: Sun, 16 Jul 2017 06:12:14 EDT Hayden Library - PQ7539.A47 O87 2017 Full Article
ot La presse moderniste en Argentine de 1896 à 1905 / Joëlle Guyot ; préface d'Enrique Marini Palmieri By library.mit.edu Published On :: Sun, 30 Jul 2017 06:13:10 EDT Online Resource Full Article
ot Vampire in love and other stories / Enrique Vila-Matas ; translated from the Spanish by Margaret Jull Costa By library.mit.edu Published On :: Sun, 1 Oct 2017 06:13:17 EDT Hayden Library - PQ6672.I37 A2 2016 Full Article
ot Petite fleur / Iosi Havilio ; translated by Lorna Scott Fox By library.mit.edu Published On :: Sun, 4 Mar 2018 06:20:59 EST Hayden Library - PQ7798.418.A89 P4713 2017 Full Article
ot The golden cockerel & other writings / Juan Rulfo ; translated from the Spanish, with an introduction and additional materials, by Douglas J. Weatherford By library.mit.edu Published On :: Sun, 19 Aug 2018 06:44:31 EDT Hayden Library - PQ7297.R89 A2 2017 Full Article
ot The other tiger: recent poetry from Latin America / selected and translated by Richard Gwyn By library.mit.edu Published On :: Sun, 19 Aug 2018 06:44:31 EDT Hayden Library - PQ7557.E5 O84 2016 Full Article
ot Fronteras conquistadas: correspondencia Alfonso Reyes-Silvio Zavala, 1937-1958 / compilación, introducción y notas de Alberto Enríquez Perea By library.mit.edu Published On :: Sun, 7 Oct 2018 06:29:04 EDT Online Resource Full Article